azure-mgmt-network


Nameazure-mgmt-network JSON
Version 25.3.0 PyPI version JSON
download
home_pagehttps://github.com/Azure/azure-sdk-for-python
SummaryMicrosoft Azure Network Management Client Library for Python
upload_time2024-02-22 05:20:26
maintainerNone
docs_urlNone
authorMicrosoft Corporation
requires_python>=3.8
licenseMIT License
keywords azure azure sdk
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # Microsoft Azure SDK for Python

This is the Microsoft Azure Network Management Client Library.
This package has been tested with Python 3.8+.
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).

## _Disclaimer_

_Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_

## Getting started

### Prerequisites

- Python 3.8+ is required to use this package.
- [Azure subscription](https://azure.microsoft.com/free/)

### Install the package

```bash
pip install azure-mgmt-network
pip install azure-identity
```

### Authentication

By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configure of following environment variables.

- `AZURE_CLIENT_ID` for Azure client ID.
- `AZURE_TENANT_ID` for Azure tenant ID.
- `AZURE_CLIENT_SECRET` for Azure client secret.

In addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.

With above configuration, client can be authenticated by following code:

```python
from azure.identity import DefaultAzureCredential
from azure.mgmt.network import NetworkManagementClient
import os

sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = NetworkManagementClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
```

## Examples

Code samples for this package can be found at:
- [Search Network Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com
- [Azure Python Mgmt SDK Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)


## Troubleshooting

## Next steps

## Provide Feedback

If you encounter any bugs or have suggestions, please file an issue in the
[Issues](https://github.com/Azure/azure-sdk-for-python/issues)
section of the project. 


# Release History

## 25.3.0 (2024-02-22)

### Features Added

  - Model BastionHost has a new parameter zones

## 25.2.0 (2023-12-18)

### Features Added

  - Added operation NetworkManagementClientOperationsMixin.begin_delete_bastion_shareable_link_by_token
  - Added operation NetworkSecurityPerimetersOperations.patch
  - Model ApplicationGatewayListener has a new parameter host_names
  - Model FirewallPolicyIntrusionDetection has a new parameter profile
  - Model NetworkVirtualAppliance has a new parameter internet_ingress_public_ips

## 25.1.0 (2023-09-15)

### Features Added

  - Model BastionHost has a new parameter network_acls
  - Model BastionHost has a new parameter virtual_network
  - Model FirewallPolicy has a new parameter size
  - Model FirewallPolicyRuleCollectionGroup has a new parameter size
  - Model Subnet has a new parameter default_outbound_access
  - Model VirtualNetworkGateway has a new parameter auto_scale_configuration

## 25.0.0 (2023-08-18)

### Features Added

  - Added operation LoadBalancersOperations.migrate_to_ip_based
  - Model BackendAddressPool has a new parameter sync_mode

### Breaking Changes

  - Removed operation group NspLinkReconcileOperations
  - Removed operation group NspLinkReferenceReconcileOperations

## 24.0.0 (2023-07-21)

### Breaking Changes

  - Removed `HTTP_STATUS499` from enum `ApplicationGatewayCustomErrorStatusCode`

### Features Added

  - Added enum `AdminState`
  - Model ActiveConnectivityConfiguration has a new parameter resource_guid
  - Model ActiveDefaultSecurityAdminRule has a new parameter resource_guid
  - Model ActiveSecurityAdminRule has a new parameter resource_guid
  - Model AdminRule has a new parameter resource_guid
  - Model AdminRuleCollection has a new parameter resource_guid
  - Model ApplicationGateway has a new parameter default_predefined_ssl_policy
  - Model ConfigurationGroup has a new parameter resource_guid
  - Model ConnectivityConfiguration has a new parameter resource_guid
  - Model DefaultAdminRule has a new parameter resource_guid
  - Model EffectiveConnectivityConfiguration has a new parameter resource_guid
  - Model EffectiveDefaultSecurityAdminRule has a new parameter resource_guid
  - Model EffectiveSecurityAdminRule has a new parameter resource_guid
  - Model NetworkGroup has a new parameter resource_guid
  - Model NetworkManager has a new parameter resource_guid
  - Model SecurityAdminConfiguration has a new parameter resource_guid
  - Model VirtualNetworkGateway has a new parameter admin_state

## 23.1.0 (2023-05-20)

### Features Added

  - Added operation AzureFirewallsOperations.begin_packet_capture
  - Added operation group NetworkVirtualApplianceConnectionsOperations
  - Model ApplicationRule has a new parameter http_headers_to_insert
  - Model BastionHost has a new parameter enable_kerberos
  - Model NetworkInterface has a new parameter auxiliary_sku
  - Model NetworkVirtualAppliance has a new parameter additional_nics
  - Model NetworkVirtualAppliance has a new parameter virtual_appliance_connections
  - Model PolicySettings has a new parameter file_upload_enforcement
  - Model PolicySettings has a new parameter log_scrubbing
  - Model PolicySettings has a new parameter request_body_enforcement
  - Model PolicySettings has a new parameter request_body_inspect_limit_in_kb
  - Model PrivateEndpointConnection has a new parameter private_endpoint_location
  - Model PublicIPAddressDnsSettings has a new parameter domain_name_label_scope
  - Model VirtualApplianceNicProperties has a new parameter instance_name
  - Model WebApplicationFirewallCustomRule has a new parameter group_by_user_session
  - Model WebApplicationFirewallCustomRule has a new parameter rate_limit_duration
  - Model WebApplicationFirewallCustomRule has a new parameter rate_limit_threshold

## 23.0.1 (2023-04-26)

### Bugs Fixed

  - Fix calling failure for those operations which could be called by client directly #30057

## 23.0.0 (2023-03-29)

### Other Changes

  - Initial stable release with our new combined multiapi package. Package size is now 5% of what it used to be.

### Breaking Changes

  - All query and header parameters are now keyword-only
  - Removed api version subfolders. This means you can no longer access any `azure.mgmt.network.v20xx_xx_xx` modules.
  - Removed `.models` method from `NetworkManagementClient`. Instead, import models from `azure.mgmt.network.models`.

## 22.3.0 (2023-03-20)

### Features Added

  - Model ExpressRouteCircuit has a new parameter authorization_status
  - Model NspAccessRule has a new parameter email_addresses
  - Model NspAccessRule has a new parameter phone_numbers
  - Model NspLink has a new parameter remote_perimeter_location
  - Model NspLinkReference has a new parameter remote_perimeter_location
  - Model VirtualNetwork has a new parameter flow_logs
  - Model WebApplicationFirewallCustomRule has a new parameter state
  - Operation VpnGatewaysOperations.begin_reset has a new optional parameter ip_configuration_id

## 23.0.0b2 (2023-02-20)

### Other Changes

  - Continued package size improvements. The whole package is now 5% of the latest stable release

### Breaking Changes

  - Removed api version subfolders. This means you can no longer access any `azure.mgmt.network.v20xx_xx_xx` modules
  - Removed `.models` method from `NetworkManagementClient`

## 23.0.0b1 (2022-12-19)

### Other Changes

  - Preview package with the same multiapi support but much reduced package size.

### Breaking Changes

  - All query and header parameters are now keyword-only
  - Can not individually access each API version's client and operations

## 22.2.0 (2022-12-15)

### Features Added

  - Model BackendAddressPool has a new parameter virtual_network
  - Model NetworkVirtualAppliance has a new parameter delegation
  - Model NetworkVirtualAppliance has a new parameter deployment_type
  - Model NetworkVirtualAppliance has a new parameter partner_managed_resource
  - Model PolicySettings has a new parameter custom_block_response_body
  - Model PolicySettings has a new parameter custom_block_response_status_code

## 22.1.0 (2022-10-24)

### Features Added

  - Added operation group NspLinkReconcileOperations
  - Added operation group NspLinkReferenceReconcileOperations
  - Added operation group NspLinkReferencesOperations
  - Added operation group NspLinksOperations

## 22.0.0 (2022-10-12)

### Features Added

  - Added operation PublicIPAddressesOperations.begin_ddos_protection_status
  - Added operation VirtualHubsOperations.begin_get_inbound_routes
  - Added operation VirtualHubsOperations.begin_get_outbound_routes
  - Added operation VirtualNetworksOperations.begin_list_ddos_protection_status
  - Added operation group ApplicationGatewayWafDynamicManifestsDefaultOperations
  - Added operation group ApplicationGatewayWafDynamicManifestsOperations
  - Added operation group NspAssociationReconcileOperations
  - Added operation group RouteMapsOperations
  - Added operation group VipSwapOperations
  - Model ApplicationGatewayClientAuthConfiguration has a new parameter verify_client_revocation
  - Model ApplicationGatewayFirewallRule has a new parameter action
  - Model ApplicationGatewayFirewallRule has a new parameter rule_id_string
  - Model ApplicationGatewayFirewallRule has a new parameter state
  - Model ApplicationGatewayFirewallRuleSet has a new parameter tiers
  - Model CustomIpPrefix has a new parameter asn
  - Model CustomIpPrefix has a new parameter express_route_advertise
  - Model CustomIpPrefix has a new parameter geo
  - Model CustomIpPrefix has a new parameter prefix_type
  - Model DdosProtectionPlan has a new parameter public_ip_addresses
  - Model DdosSettings has a new parameter ddos_protection_plan
  - Model DdosSettings has a new parameter protection_mode
  - Model ExpressRouteConnection has a new parameter enable_private_link_fast_path
  - Model ExpressRouteGateway has a new parameter allow_non_virtual_wan_traffic
  - Model ExpressRouteLink has a new parameter colo_location
  - Model ExpressRoutePort has a new parameter billing_type
  - Model ManagedRuleOverride has a new parameter action
  - Model NetworkInterface has a new parameter disable_tcp_state_tracking
  - Model NspProfile has a new parameter diagnostic_settings_version
  - Model Probe has a new parameter probe_threshold
  - Model RoutingConfiguration has a new parameter inbound_route_map
  - Model RoutingConfiguration has a new parameter outbound_route_map
  - Model VirtualHub has a new parameter route_maps
  - Model VirtualNetworkGateway has a new parameter allow_remote_vnet_traffic
  - Model VirtualNetworkGateway has a new parameter allow_virtual_wan_traffic
  - Model VirtualNetworkGateway has a new parameter virtual_network_gateway_policy_groups
  - Model VirtualNetworkGatewayConnection has a new parameter enable_private_link_fast_path
  - Model VirtualNetworkGatewayConnectionListEntity has a new parameter enable_private_link_fast_path
  - Model VnetRoute has a new parameter static_routes_config
  - Model VpnClientConfiguration has a new parameter vng_client_connection_configurations

### Breaking Changes

  - Model DdosCustomPolicy no longer has parameter protocol_custom_settings
  - Model DdosCustomPolicy no longer has parameter public_ip_addresses
  - Model DdosSettings no longer has parameter ddos_custom_policy
  - Model DdosSettings no longer has parameter protected_ip
  - Model DdosSettings no longer has parameter protection_coverage
  - Operation NetworkManagementClientOperationsMixin.list_active_connectivity_configurations has a new parameter top
  - Operation NetworkManagementClientOperationsMixin.list_active_security_admin_rules has a new parameter top
  - Operation NetworkManagementClientOperationsMixin.list_network_manager_effective_connectivity_configurations has a new parameter top
  - Operation NetworkManagementClientOperationsMixin.list_network_manager_effective_security_admin_rules has a new parameter top
  - Operation NetworkManagerDeploymentStatusOperations.list has a new parameter top
  - Removed operation NetworkSecurityPerimetersOperations.check_members
  - Removed operation NetworkSecurityPerimetersOperations.query
  - Removed operation group NspAssociationsProxyOperations

## 21.0.1 (2022-08-17)

### Bugs Fixed

  - Add `__version__` to `__init__.py` for package

## 21.0.0 (2022-08-05)

**Features**

  - Added operation AdminRuleCollectionsOperations.begin_delete
  - Added operation AdminRulesOperations.begin_delete
  - Added operation AzureFirewallsOperations.begin_list_learned_prefixes
  - Added operation ConnectivityConfigurationsOperations.begin_delete
  - Added operation NetworkGroupsOperations.begin_delete
  - Added operation NetworkManagementClientOperationsMixin.express_route_provider_port
  - Added operation NetworkManagementClientOperationsMixin.list_active_connectivity_configurations
  - Added operation NetworkManagementClientOperationsMixin.list_active_security_admin_rules
  - Added operation NetworkManagementClientOperationsMixin.list_network_manager_effective_connectivity_configurations
  - Added operation NetworkManagementClientOperationsMixin.list_network_manager_effective_security_admin_rules
  - Added operation NetworkManagerCommitsOperations.begin_post
  - Added operation NetworkManagersOperations.begin_delete
  - Added operation NetworkManagersOperations.patch
  - Added operation NetworkSecurityPerimetersOperations.check_members
  - Added operation NetworkSecurityPerimetersOperations.query
  - Added operation SecurityAdminConfigurationsOperations.begin_delete
  - Added operation group ExpressRouteProviderPortsLocationOperations
  - Added operation group ManagementGroupNetworkManagerConnectionsOperations
  - Added operation group NspAccessRulesReconcileOperations
  - Added operation group NspAssociationsProxyOperations
  - Added operation group ScopeConnectionsOperations
  - Added operation group StaticMembersOperations
  - Added operation group SubscriptionNetworkManagerConnectionsOperations
  - Model ApplicationGatewayRoutingRule has a new parameter priority
  - Model CustomIpPrefix has a new parameter no_internet_advertise
  - Model FirewallPolicy has a new parameter explicit_proxy
  - Model FirewallPolicySNAT has a new parameter auto_learn_private_ranges
  - Model NetworkManagerPropertiesNetworkManagerScopes has a new parameter cross_tenant_scopes
  - Model NetworkSecurityGroup has a new parameter flush_connection
  - Model NetworkSecurityPerimeter has a new parameter perimeter_guid
  - Model PacketCapture has a new parameter scope
  - Model PacketCapture has a new parameter target_type
  - Model PacketCaptureParameters has a new parameter scope
  - Model PacketCaptureParameters has a new parameter target_type
  - Model PacketCaptureResult has a new parameter scope
  - Model PacketCaptureResult has a new parameter target_type
  - Model PacketCaptureResultProperties has a new parameter scope
  - Model PacketCaptureResultProperties has a new parameter target_type
  - Model VirtualHub has a new parameter virtual_router_auto_scale_configuration

**Breaking changes**

  - Model ActiveBaseSecurityAdminRule no longer has parameter configuration_display_name
  - Model ActiveBaseSecurityAdminRule no longer has parameter rule_collection_display_name
  - Model ActiveConnectivityConfiguration no longer has parameter display_name
  - Model ActiveDefaultSecurityAdminRule no longer has parameter configuration_display_name
  - Model ActiveDefaultSecurityAdminRule no longer has parameter display_name
  - Model ActiveDefaultSecurityAdminRule no longer has parameter rule_collection_display_name
  - Model ActiveSecurityAdminRule no longer has parameter configuration_display_name
  - Model ActiveSecurityAdminRule no longer has parameter display_name
  - Model ActiveSecurityAdminRule no longer has parameter rule_collection_display_name
  - Model AdminRule no longer has parameter display_name
  - Model ConfigurationGroup no longer has parameter conditional_membership
  - Model ConfigurationGroup no longer has parameter display_name
  - Model ConfigurationGroup no longer has parameter group_members
  - Model ConfigurationGroup no longer has parameter member_type
  - Model ConnectivityConfiguration no longer has parameter display_name
  - Model DefaultAdminRule no longer has parameter display_name
  - Model EffectiveBaseSecurityAdminRule no longer has parameter configuration_display_name
  - Model EffectiveBaseSecurityAdminRule no longer has parameter rule_collection_display_name
  - Model EffectiveConnectivityConfiguration no longer has parameter display_name
  - Model EffectiveDefaultSecurityAdminRule no longer has parameter configuration_display_name
  - Model EffectiveDefaultSecurityAdminRule no longer has parameter display_name
  - Model EffectiveDefaultSecurityAdminRule no longer has parameter rule_collection_display_name
  - Model EffectiveSecurityAdminRule no longer has parameter configuration_display_name
  - Model EffectiveSecurityAdminRule no longer has parameter display_name
  - Model EffectiveSecurityAdminRule no longer has parameter rule_collection_display_name
  - Model FirewallPolicy no longer has parameter explicit_proxy_settings
  - Model NetworkGroup no longer has parameter conditional_membership
  - Model NetworkGroup no longer has parameter display_name
  - Model NetworkGroup no longer has parameter group_members
  - Model NetworkGroup no longer has parameter member_type
  - Model NetworkManager no longer has parameter display_name
  - Model NetworkSecurityPerimeter no longer has parameter description
  - Model NetworkSecurityPerimeter no longer has parameter display_name
  - Model NetworkSecurityPerimeter no longer has parameter etag
  - Model NspProfile no longer has parameter enabled_log_categories
  - Parameter commit_type of model NetworkManagerCommit is now required
  - Parameter group_connectivity of model ConnectivityGroupItem is now required
  - Parameter network_group_id of model ConnectivityGroupItem is now required
  - Parameter network_group_id of model NetworkManagerSecurityGroupItem is now required
  - Parameter target_locations of model NetworkManagerCommit is now required
  - Removed operation AdminRuleCollectionsOperations.delete
  - Removed operation AdminRulesOperations.delete
  - Removed operation ConnectivityConfigurationsOperations.delete
  - Removed operation NetworkGroupsOperations.delete
  - Removed operation NetworkManagerCommitsOperations.post
  - Removed operation NetworkManagersOperations.delete
  - Removed operation NetworkManagersOperations.patch_tags
  - Removed operation SecurityAdminConfigurationsOperations.delete

## 20.0.0 (2022-05-10)

**Features**

  - Added operation FirewallPoliciesOperations.update_tags
  - Added operation PerimeterAssociableResourceTypesOperations.list
  - Added operation group ConfigurationPolicyGroupsOperations
  - Added operation group ExpressRoutePortAuthorizationsOperations
  - Added operation group NspAccessRulesOperations
  - Added operation group NspAssociationsOperations
  - Added operation group NspProfilesOperations
  - Model ApplicationGateway has a new parameter backend_settings_collection
  - Model ApplicationGateway has a new parameter listeners
  - Model ApplicationGateway has a new parameter routing_rules
  - Model ApplicationGatewayProbe has a new parameter pick_host_name_from_backend_settings
  - Model BackendAddressPool has a new parameter drain_period_in_seconds
  - Model ExpressRouteCircuit has a new parameter authorization_key
  - Model FirewallPolicyIntrusionDetectionConfiguration has a new parameter private_ranges
  - Model LoadBalancerBackendAddress has a new parameter admin_state
  - Model NetworkInterface has a new parameter auxiliary_mode
  - Model P2SConnectionConfiguration has a new parameter configuration_policy_group_associations
  - Model P2SConnectionConfiguration has a new parameter previous_configuration_policy_group_associations
  - Model VirtualHub has a new parameter hub_routing_preference
  - Model VirtualNetworkGatewayConnection has a new parameter gateway_custom_bgp_ip_addresses
  - Model VirtualNetworkGatewayConnectionListEntity has a new parameter gateway_custom_bgp_ip_addresses
  - Model VpnServerConfiguration has a new parameter configuration_policy_groups
  - Model VpnSiteLinkConnection has a new parameter vpn_gateway_custom_bgp_addresses

**Breaking changes**

  - Removed operation PerimeterAssociableResourceTypesOperations.get

## 19.3.0 (2021-11-05)

**Features**

  - Model LoadBalancerBackendAddress has a new parameter inbound_nat_rules_port_mapping
  - Model VpnNatRuleMapping has a new parameter port_range
  - Model OwaspCrsExclusionEntry has a new parameter exclusion_managed_rule_sets
  - Model VirtualNetworkPeering has a new parameter remote_virtual_network_encryption
  - Model NetworkInterface has a new parameter vnet_encryption_supported
  - Model VirtualNetworkGateway has a new parameter disable_ip_sec_replay_protection
  - Model VirtualNetwork has a new parameter encryption
  - Model BackendAddressPool has a new parameter inbound_nat_rules
  - Added operation LoadBalancersOperations.begin_list_inbound_nat_rule_port_mappings
  - Added operation group FirewallPolicyIdpsSignaturesOverridesOperations
  - Added operation group RoutingIntentOperations
  - Added operation group FirewallPolicyIdpsSignaturesOperations
  - Added operation group FirewallPolicyIdpsSignaturesFilterValuesOperations

## 19.2.0 (2021-10-21)

**Features**

  - Added operation group AdminRuleCollectionsOperations
  - Added operation group SecurityUserConfigurationsOperations
  - Added operation group ConnectivityConfigurationsOperations
  - Added operation group ActiveSecurityUserRulesOperations
  - Added operation group NetworkManagerCommitsOperations
  - Added operation group NetworkManagersOperations
  - Added operation group NetworkManagerDeploymentStatusOperations
  - Added operation group ActiveConnectivityConfigurationsOperations
  - Added operation group NetworkManagerEffectiveSecurityAdminRulesOperations
  - Added operation group UserRuleCollectionsOperations
  - Added operation group ActiveSecurityAdminRulesOperations
  - Added operation group UserRulesOperations
  - Added operation group NetworkGroupsOperations
  - Added operation group EffectiveVirtualNetworksOperations
  - Added operation group NetworkSecurityPerimetersOperations
  - Added operation group PerimeterAssociableResourceTypesOperations
  - Added operation group AdminRulesOperations
  - Added operation group SecurityAdminConfigurationsOperations
  - Added operation group EffectiveConnectivityConfigurationsOperations
  - Removed old api-version `2017-08-01`

## 19.1.0 (2021-10-09)

**Features**

  - Model ServiceEndpointPolicy has a new parameter service_alias
  - Model ServiceEndpointPolicy has a new parameter contextual_service_endpoint_policies
  - Model ApplicationGatewayRequestRoutingRule has a new parameter load_distribution_policy
  - Model BgpConnection has a new parameter hub_virtual_network_connection
  - Model BastionHost has a new parameter enable_ip_connect
  - Model BastionHost has a new parameter disable_copy_paste
  - Model BastionHost has a new parameter enable_tunneling
  - Model BastionHost has a new parameter scale_units
  - Model BastionHost has a new parameter enable_file_copy
  - Model BastionHost has a new parameter enable_shareable_link
  - Model DscpConfiguration has a new parameter qos_definition_collection
  - Model ServiceTagInformation has a new parameter service_tag_change_number
  - Model VnetRoute has a new parameter bgp_connections
  - Model VpnGateway has a new parameter enable_bgp_route_translation_for_nat
  - Model ServiceEndpointPolicyDefinition has a new parameter type
  - Model ApplicationGateway has a new parameter global_configuration
  - Model ApplicationGateway has a new parameter load_distribution_policies
  - Model InboundNatRule has a new parameter frontend_port_range_end
  - Model InboundNatRule has a new parameter frontend_port_range_start
  - Model InboundNatRule has a new parameter backend_address_pool
  - Model PrivateEndpoint has a new parameter ip_configurations
  - Model PrivateEndpoint has a new parameter application_security_groups
  - Model PrivateEndpoint has a new parameter custom_network_interface_name
  - Model NetworkVirtualAppliance has a new parameter ssh_public_key
  - Model ApplicationGatewayUrlPathMap has a new parameter default_load_distribution_policy
  - Model FirewallPolicy has a new parameter sql
  - Model FirewallPolicy has a new parameter explicit_proxy_settings
  - Model VirtualHub has a new parameter kind
  - Model ApplicationGatewayPathRule has a new parameter load_distribution_policy
  - Added operation BastionHostsOperations.begin_update_tags
  - Added operation group ServiceTagInformationOperations

## 19.0.0 (2021-05-14)

**Features**

  - Model ApplicationGatewayTrustedClientCertificate has a new parameter validated_cert_data
  - Model ApplicationGatewayTrustedClientCertificate has a new parameter client_cert_issuer_dn
  - Model VirtualNetwork has a new parameter flow_timeout_in_minutes
  - Model FrontendIPConfiguration has a new parameter gateway_load_balancer
  - Model IPAddressAvailabilityResult has a new parameter is_platform_reserved
  - Model CustomIpPrefix has a new parameter custom_ip_prefix_parent
  - Model CustomIpPrefix has a new parameter failed_reason
  - Model CustomIpPrefix has a new parameter child_custom_ip_prefixes
  - Model CustomIpPrefix has a new parameter authorization_message
  - Model CustomIpPrefix has a new parameter signed_message
  - Model VirtualNetworkPeering has a new parameter peering_sync_level
  - Model VirtualNetworkPeering has a new parameter resource_guid
  - Model VirtualNetworkPeering has a new parameter do_not_verify_remote_gateways
  - Model VirtualNetworkPeering has a new parameter type
  - Model VirtualNetworkPeering has a new parameter remote_virtual_network_address_space
  - Model Subnet has a new parameter application_gateway_ip_configurations
  - Model Subnet has a new parameter type
  - Model LoadBalancingRule has a new parameter backend_address_pools
  - Model EffectiveNetworkSecurityGroupAssociation has a new parameter network_manager
  - Model BastionHost has a new parameter sku
  - Model VirtualNetworkGateway has a new parameter extended_location
  - Model VirtualNetworkGateway has a new parameter nat_rules
  - Model VirtualNetworkGateway has a new parameter enable_bgp_route_translation_for_nat
  - Model NetworkInterface has a new parameter workload_type
  - Model NetworkInterface has a new parameter private_link_service
  - Model NetworkInterface has a new parameter nic_type
  - Model NetworkInterface has a new parameter migration_phase
  - Model Delegation has a new parameter type
  - Model PublicIPPrefix has a new parameter nat_gateway
  - Model VirtualNetworkGatewayConnection has a new parameter egress_nat_rules
  - Model VirtualNetworkGatewayConnection has a new parameter ingress_nat_rules
  - Model NetworkInterfaceIPConfiguration has a new parameter gateway_load_balancer
  - Model NetworkInterfaceIPConfiguration has a new parameter type
  - Model AvailablePrivateEndpointType has a new parameter display_name
  - Model PublicIPAddress has a new parameter delete_option
  - Model PublicIPAddress has a new parameter nat_gateway
  - Model PublicIPAddress has a new parameter service_public_ip_address
  - Model PublicIPAddress has a new parameter linked_public_ip_address
  - Model PublicIPAddress has a new parameter migration_phase
  - Model VirtualHub has a new parameter preferred_routing_gateway
  - Model BackendAddressPool has a new parameter tunnel_interfaces
  - Model ServiceTagInformationPropertiesFormat has a new parameter state
  - Added operation LoadBalancersOperations.begin_swap_public_ip_addresses
  - Added operation group VirtualNetworkGatewayNatRulesOperations

**Breaking changes**

  - Operation VirtualNetworkPeeringsOperations.begin_create_or_update has a new signature
  - Model VirtualNetworkGateway no longer has parameter virtual_network_extended_location

## 18.0.0 (2021-03-08)

**Features**

  - Model VpnConnection has a new parameter traffic_selector_policies
  - Model VirtualNetworkGateway has a new parameter virtual_network_extended_location
  - Model VirtualNetworkGateway has a new parameter v_net_extended_location_resource_id
  - Model VpnClientConfiguration has a new parameter vpn_authentication_types
  - Model LoadBalancerBackendAddress has a new parameter subnet
  - Model ServiceEndpointPolicy has a new parameter kind
  - Model FirewallPolicy has a new parameter snat
  - Model FirewallPolicy has a new parameter insights
  - Added operation VirtualNetworkGatewayConnectionsOperations.begin_reset_connection
  - Added operation VpnLinkConnectionsOperations.begin_get_ike_sas
  - Added operation VpnLinkConnectionsOperations.begin_reset_connection

**Breaking changes**

  - Model VirtualNetworkGateway no longer has parameter extended_location
  - Model VirtualNetworkGateway no longer has parameter virtual_network_extended_location_resource_id

## 17.1.0 (2021-01-26)

**Features**
  - Model PrivateEndpoint has a new parameter extended_location
  - Model VpnGateway has a new parameter nat_rules
  - Model ExpressRouteConnection has a new parameter express_route_gateway_bypass
  - Model SecurityRule has a new parameter type
  - Model PrivateLinkService has a new parameter extended_location
  - Model Route has a new parameter type
  - Model Route has a new parameter has_bgp_override
  - Model RouteTable has a new parameter resource_guid
  - Model VpnSiteLinkConnection has a new parameter ingress_nat_rules
  - Model VpnSiteLinkConnection has a new parameter vpn_link_connection_mode
  - Model VpnSiteLinkConnection has a new parameter egress_nat_rules
  - Model BackendAddressPool has a new parameter location
  - Model CustomIpPrefix has a new parameter extended_location
  - Added operation ExpressRouteGatewaysOperations.begin_update_tags
  - Added operation VirtualNetworkGatewayConnectionsOperations.begin_get_ike_sas
  - Added operation group NatRulesOperations

## 17.0.0 (2020-11-25)

**Features**

  - Model PublicIPPrefix has a new parameter extended_location
  - Model PublicIPPrefixSku has a new parameter tier
  - Model NatRule has a new parameter translated_fqdn
  - Model NetworkInterface has a new parameter extended_location
  - Model ApplicationRule has a new parameter terminate_tls
  - Model ApplicationRule has a new parameter web_categories
  - Model ApplicationRule has a new parameter target_urls
  - Model VirtualNetworkGatewayConnection has a new parameter connection_mode
  - Model LoadBalancer has a new parameter extended_location
  - Model PublicIPAddress has a new parameter extended_location
  - Model LoadBalancerSku has a new parameter tier
  - Model VirtualNetwork has a new parameter extended_location
  - Model P2SVpnGateway has a new parameter is_routing_preference_internet
  - Model IpGroup has a new parameter firewall_policies
  - Model VpnGateway has a new parameter is_routing_preference_internet
  - Model VirtualNetworkGateway has a new parameter extended_location
  - Model VirtualNetworkGateway has a new parameter virtual_network_extended_location_resource_id
  - Model VirtualNetworkGatewayConnectionListEntity has a new parameter connection_mode
  - Model FirewallPolicy has a new parameter sku
  - Model FirewallPolicy has a new parameter transport_security
  - Model FirewallPolicy has a new parameter identity
  - Model FirewallPolicy has a new parameter intrusion_detection
  - Model VirtualHub has a new parameter allow_branch_to_branch_traffic
  - Model PublicIPAddressSku has a new parameter tier
  - Model ServiceTagsListResult has a new parameter next_link
  - Model LoadBalancerBackendAddress has a new parameter load_balancer_frontend_ip_configuration
  - Added operation NetworkInterfacesOperations.list_cloud_service_network_interfaces
  - Added operation NetworkInterfacesOperations.get_cloud_service_network_interface
  - Added operation NetworkInterfacesOperations.list_cloud_service_role_instance_network_interfaces
  - Added operation PublicIPAddressesOperations.list_cloud_service_role_instance_public_ip_addresses
  - Added operation PublicIPAddressesOperations.list_cloud_service_public_ip_addresses
  - Added operation PublicIPAddressesOperations.get_cloud_service_public_ip_address
  - Added operation group WebCategoriesOperations

**Breaking changes**

  - Operation ConnectionMonitorsOperations.begin_create_or_update has a new signature
  - Model VirtualHub no longer has parameter enable_virtual_router_route_propogation

## 16.0.0 (2020-09-15)

**Features**

  - Model VirtualNetworkPeering has a new parameter remote_bgp_communities
  - Model VirtualHub has a new parameter virtual_router_asn
  - Model VirtualHub has a new parameter routing_state
  - Model VirtualHub has a new parameter ip_configurations
  - Model VirtualHub has a new parameter virtual_router_ips
  - Model VirtualHub has a new parameter enable_virtual_router_route_propogation
  - Model VirtualHub has a new parameter bgp_connections
  - Model FirewallPolicyRule has a new parameter description
  - Model ExpressRouteLinkMacSecConfig has a new parameter sci_state
  - Model VpnGateway has a new parameter ip_configurations
  - Model P2SConnectionConfiguration has a new parameter enable_internet_security
  - Model ConnectionMonitorEndpoint has a new parameter type
  - Model ConnectionMonitorEndpoint has a new parameter coverage_level
  - Model ConnectionMonitorEndpoint has a new parameter scope
  - Model FirewallPolicy has a new parameter rule_collection_groups
  - Model FirewallPolicy has a new parameter dns_settings
  - Model NetworkInterface has a new parameter dscp_configuration
  - Model NetworkVirtualAppliance has a new parameter address_prefix
  - Model NetworkVirtualAppliance has a new parameter cloud_init_configuration_blobs
  - Model NetworkVirtualAppliance has a new parameter boot_strap_configuration_blobs
  - Model NetworkVirtualAppliance has a new parameter cloud_init_configuration
  - Model NetworkVirtualAppliance has a new parameter inbound_security_rules
  - Model NetworkVirtualAppliance has a new parameter nva_sku
  - Model NetworkVirtualAppliance has a new parameter virtual_appliance_sites
  - Model ConnectionMonitorTcpConfiguration has a new parameter destination_port_behavior
  - Model ApplicationGatewayHttpListener has a new parameter ssl_profile
  - Model P2SVpnGateway has a new parameter custom_dns_servers
  - Model ApplicationGateway has a new parameter private_link_configurations
  - Model ApplicationGateway has a new parameter trusted_client_certificates
  - Model ApplicationGateway has a new parameter private_endpoint_connections
  - Model ApplicationGateway has a new parameter ssl_profiles
  - Model HubIPAddresses has a new parameter public_i_ps
  - Model PublicIPPrefix has a new parameter custom_ip_prefix
  - Model ApplicationGatewayFrontendIPConfiguration has a new parameter private_link_configuration
  - Model VpnSite has a new parameter o365_policy
  - Model ConnectivityHop has a new parameter previous_links
  - Model ConnectivityHop has a new parameter previous_hop_ids
  - Model ConnectivityHop has a new parameter links
  - Added operation ExpressRoutePortsOperations.generate_loa
  - Added operation FlowLogsOperations.update_tags
  - Added operation HubVirtualNetworkConnectionsOperations.begin_create_or_update
  - Added operation HubVirtualNetworkConnectionsOperations.begin_delete
  - Added operation VpnGatewaysOperations.begin_stop_packet_capture
  - Added operation VpnGatewaysOperations.begin_start_packet_capture
  - Added operation VpnGatewaysOperations.begin_update_tags
  - Added operation VpnConnectionsOperations.begin_stop_packet_capture
  - Added operation VpnConnectionsOperations.begin_start_packet_capture
  - Added operation PrivateLinkServicesOperations.begin_check_private_link_service_visibility_by_resource_group
  - Added operation PrivateLinkServicesOperations.begin_check_private_link_service_visibility
  - Added operation VirtualHubsOperations.begin_get_effective_virtual_hub_routes
  - Added operation P2SVpnGatewaysOperations.begin_reset
  - Added operation P2SVpnGatewaysOperations.begin_update_tags
  - Added operation group CustomIPPrefixesOperations
  - Added operation group VirtualApplianceSitesOperations
  - Added operation group DscpConfigurationOperations
  - Added operation group VirtualHubIpConfigurationOperations
  - Added operation group VirtualHubBgpConnectionOperations
  - Added operation group InboundSecurityRuleOperations
  - Added operation group VirtualApplianceSkusOperations
  - Added operation group ApplicationGatewayPrivateLinkResourcesOperations
  - Added operation group ApplicationGatewayPrivateEndpointConnectionsOperations
  - Added operation group FirewallPolicyRuleCollectionGroupsOperations
  - Added operation group VirtualHubBgpConnectionsOperations

**Breaking changes**

  - Model VirtualHub no longer has parameter virtual_network_connections
  - Model FirewallPolicyRule no longer has parameter priority
  - Model FirewallPolicy no longer has parameter transport_security
  - Model FirewallPolicy no longer has parameter rule_groups
  - Model FirewallPolicy no longer has parameter intrusion_system_mode
  - Model FirewallPolicy no longer has parameter identity
  - Model NetworkVirtualAppliance no longer has parameter boot_strap_configuration_blob
  - Model NetworkVirtualAppliance no longer has parameter sku
  - Model NetworkVirtualAppliance no longer has parameter cloud_init_configuration_blob
  - Model NatRuleCondition no longer has parameter terminate_tls
  - Model HubIPAddresses no longer has parameter public_ip_addresses
  - Model ApplicationRuleCondition no longer has parameter target_urls
  - Removed operation VpnGatewaysOperations.update_tags
  - Removed operation PrivateLinkServicesOperations.check_private_link_service_visibility_by_resource_group
  - Removed operation PrivateLinkServicesOperations.check_private_link_service_visibility
  - Removed operation P2SVpnGatewaysOperations.update_tags

## 16.0.0b1 (2020-06-17)

This is beta preview version.
For detailed changelog please refer to equivalent stable version 10.2.0 (https://pypi.org/project/azure-mgmt-network/10.2.0/)

This version uses a next-generation code generator that introduces important breaking changes, but also important new features (like unified authentication and async programming).

**General breaking changes**

- Credential system has been completly revamped:

  - `azure.common.credentials` or `msrestazure.azure_active_directory` instances are no longer supported, use the `azure-identity` classes instead: https://pypi.org/project/azure-identity/
  - `credentials` parameter has been renamed `credential`

- The `config` attribute no longer exists on a client, configuration should be passed as kwarg. Example: `MyClient(credential, subscription_id, enable_logging=True)`. For a complete set of
  supported options, see the [parameters accept in init documentation of azure-core](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md#available-policies)
- You can't import a `version` module anymore, use `__version__` instead
- Operations that used to return a `msrest.polling.LROPoller` now returns a `azure.core.polling.LROPoller` and are prefixed with `begin_`.
- Exceptions tree have been simplified and most exceptions are now `azure.core.exceptions.HttpResponseError` (`CloudError` has been removed).
- Most of the operation kwarg have changed. Some of the most noticeable:

  - `raw` has been removed. Equivalent feature can be found using `cls`, a callback that will give access to internal HTTP response for advanced user
  - For a complete set of
  supported options, see the [parameters accept in Request documentation of azure-core](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md#available-policies)

**General new features**

- Type annotations support using `typing`. SDKs are mypy ready.
- This client has now stable and official support for async. Check the `aio` namespace of your package to find the async client.
- This client now support natively tracing library like OpenCensus or OpenTelemetry. See this [tracing quickstart](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/core/azure-core-tracing-opentelemetry) for an overview.


## 10.2.0 (2020-04-10)

**Features**

  - Model VpnConnection has a new parameter routing_configuration
  - Model NatRuleCondition has a new parameter terminate_tls
  - Model HubVirtualNetworkConnection has a new parameter routing_configuration
  - Model ExpressRouteConnection has a new parameter routing_configuration
  - Model FirewallPolicy has a new parameter transport_security
  - Model FirewallPolicy has a new parameter identity
  - Model FirewallPolicy has a new parameter threat_intel_whitelist
  - Model ApplicationRuleCondition has a new parameter target_urls
  - Model P2SConnectionConfiguration has a new parameter routing_configuration
  - Model BackendAddressPool has a new parameter load_balancer_backend_addresses
  - Added operation LoadBalancerBackendAddressPoolsOperations.create_or_update
  - Added operation LoadBalancerBackendAddressPoolsOperations.delete
  - Added operation group HubRouteTablesOperations

## 10.1.0 (2020-04-10)

**Features**

  - Model VpnConnection has a new parameter dpd_timeout_seconds
  - Model FirewallPolicy has a new parameter intrusion_system_mode
  - Model Subnet has a new parameter ip_allocations
  - Model ApplicationGateway has a new parameter force_firewall_policy_association
  - Model PrivateEndpoint has a new parameter custom_dns_configs
  - Model VirtualNetworkGatewayConnection has a new parameter dpd_timeout_seconds
  - Model VpnClientConfiguration has a new parameter radius_servers
  - Model VirtualNetwork has a new parameter ip_allocations
  - Model VirtualHub has a new parameter security_partner_provider
  - Model VpnServerConfiguration has a new parameter radius_servers
  - Added operation group PrivateDnsZoneGroupsOperations
  - Added operation group SecurityPartnerProvidersOperations
  - Added operation group IpAllocationsOperations

## 10.0.0 (2020-03-31)

**Features**

  - Model VirtualNetworkGatewayConnection has a new parameter use_local_azure_ip_address
  - Model NetworkRuleCondition has a new parameter source_ip_groups
  - Model NetworkRuleCondition has a new parameter destination_ip_groups
  - Model VirtualNetworkGatewayIPConfiguration has a new parameter private_ip_address
  - Model BgpSettings has a new parameter bgp_peering_addresses
  - Model ExpressRouteCircuitConnection has a new parameter ipv6_circuit_connection_config
  - Model ApplicationGatewayHttpListener has a new parameter host_names
  - Model ApplicationRuleCondition has a new parameter source_ip_groups
  - Model VirtualNetworkGateway has a new parameter enable_private_ip_address
  - Model LocalNetworkGateway has a new parameter fqdn
  - Model VpnSiteLink has a new parameter fqdn
  - Model NetworkSecurityGroup has a new parameter flow_logs
  - Added operation NetworkManagementClientOperationsMixin.put_bastion_shareable_link
  - Added operation NetworkManagementClientOperationsMixin.get_bastion_shareable_link
  - Added operation NetworkManagementClientOperationsMixin.delete_bastion_shareable_link
  - Added operation NetworkManagementClientOperationsMixin.disconnect_active_sessions
  - Added operation NetworkManagementClientOperationsMixin.get_active_sessions
  - Added operation group NetworkVirtualAppliancesOperations

**Breaking changes**

  - Model ApplicationGatewayHttpListener no longer has parameter hostnames

## 9.0.0 (2020-01-17)

**Features**

  - Model AzureFirewall has a new parameter ip_groups
  - Model AzureFirewall has a new parameter
    management_ip_configuration
  - Model ConnectionMonitorResult has a new parameter endpoints
  - Model ConnectionMonitorResult has a new parameter
    connection_monitor_type
  - Model ConnectionMonitorResult has a new parameter
    test_configurations
  - Model ConnectionMonitorResult has a new parameter test_groups
  - Model ConnectionMonitorResult has a new parameter outputs
  - Model ConnectionMonitorResult has a new parameter notes
  - Model AzureFirewallIPConfiguration has a new parameter type
  - Model ConnectionMonitor has a new parameter endpoints
  - Model ConnectionMonitor has a new parameter test_configurations
  - Model ConnectionMonitor has a new parameter test_groups
  - Model ConnectionMonitor has a new parameter outputs
  - Model ConnectionMonitor has a new parameter notes
  - Model DdosSettings has a new parameter protected_ip
  - Model ApplicationGatewayRewriteRuleActionSet has a new parameter
    url_configuration
  - Added operation
    P2sVpnGatewaysOperations.disconnect_p2s_vpn_connections
  - Added operation
    VirtualNetworkGatewaysOperations.disconnect_virtual_network_gateway_vpn_connections
  - Added operation group FlowLogsOperations

**Breaking changes**

  - Operation
    ExpressRouteCircuitAuthorizationsOperations.create_or_update has a
    new signature
  - Model ConnectionMonitorParameters has a new signature

## 8.0.0 (2019-11-12)

**Features**

  - Model PrivateLinkServiceConnectionState has a new parameter
    actions_required
  - Model ConnectivityParameters has a new parameter
    preferred_ip_version

**Breaking changes**

  - Model PrivateLinkServiceConnectionState no longer has parameter
    action_required

## 7.0.0 (2019-10-22)

**Features**

  - Model ApplicationGatewayHttpListener has a new parameter hostnames
  - Model ApplicationGatewayHttpListener has a new parameter
    firewall_policy
  - Model ApplicationGatewayPathRule has a new parameter
    firewall_policy
  - Model P2SVpnGateway has a new parameter
    p2_sconnection_configurations
  - Model VpnServerConfiguration has a new parameter
    vpn_client_root_certificates
  - Model VpnServerConfiguration has a new parameter
    radius_server_root_certificates
  - Model VpnServerConfiguration has a new parameter
    radius_client_root_certificates
  - Model VpnServerConfiguration has a new parameter
    vpn_client_revoked_certificates
  - Model ExpressRouteConnection has a new parameter
    enable_internet_security
  - Model AzureFirewallApplicationRule has a new parameter
    source_ip_groups
  - Model WebApplicationFirewallPolicy has a new parameter
    path_based_rules
  - Model WebApplicationFirewallPolicy has a new parameter
    http_listeners
  - Model PrivateLinkService has a new parameter enable_proxy_protocol
  - Model AzureFirewallNetworkRule has a new parameter
    destination_ip_groups
  - Model AzureFirewallNetworkRule has a new parameter
    source_ip_groups
  - Model AzureFirewallNetworkRule has a new parameter
    destination_fqdns
  - Model VirtualWAN has a new parameter virtual_wan_type
  - Model VirtualHub has a new parameter sku
  - Model VirtualHub has a new parameter virtual_hub_route_table_v2s
  - Model AzureFirewallNatRule has a new parameter translated_fqdn
  - Model AzureFirewallNatRule has a new parameter source_ip_groups
  - Model PrivateEndpointConnection has a new parameter link_identifier
  - Model AzureFirewall has a new parameter additional_properties
  - Added operation RouteFiltersOperations.update_tags
  - Added operation ServiceEndpointPoliciesOperations.update_tags
  - Added operation
    PrivateLinkServicesOperations.get_private_endpoint_connection
  - Added operation
    PrivateLinkServicesOperations.list_private_endpoint_connections
  - Added operation group VirtualHubRouteTableV2sOperations
  - Added operation group IpGroupsOperations

**Breaking changes**

  - Operation AzureFirewallsOperations.update_tags has a new signature
  - Operation
    ExpressRouteCircuitAuthorizationsOperations.create_or_update has a
    new signature
  - Model P2SVpnGateway no longer has parameter
    p2s_connection_configurations
  - Model VpnServerConfiguration no longer has parameter
    vpn_server_config_vpn_client_root_certificates
  - Model VpnServerConfiguration no longer has parameter
    vpn_server_config_radius_client_root_certificates
  - Model VpnServerConfiguration no longer has parameter
    vpn_server_config_vpn_client_revoked_certificates
  - Model VpnServerConfiguration no longer has parameter
    vpn_server_config_radius_server_root_certificates
  - Removed operation RouteFiltersOperations.update
  - Removed operation VirtualRoutersOperations.update
  - Removed operation RouteFilterRulesOperations.update
  - Removed operation VirtualRouterPeeringsOperations.update
  - Removed operation FirewallPoliciesOperations.update_tags
  - Removed operation ServiceEndpointPoliciesOperations.update

## 6.0.0 (2019-10-09)

**Features**

  - Model VirtualNetwork has a new parameter bgp_communities
  - Model VirtualHub has a new parameter azure_firewall
  - Model VirtualHub has a new parameter security_provider_name
  - Model P2SVpnGateway has a new parameter
    p2s_connection_configurations
  - Model P2SVpnGateway has a new parameter vpn_server_configuration
  - Model AzureFirewall has a new parameter sku
  - Model VirtualNetworkGateway has a new parameter
    inbound_dns_forwarding_endpoint
  - Model VirtualNetworkGateway has a new parameter
    enable_dns_forwarding
  - Added operation
    P2sVpnGatewaysOperations.get_p2s_vpn_connection_health_detailed
  - Added operation
    NetworkManagementClientOperationsMixin.generatevirtualwanvpnserverconfigurationvpnprofile
  - Added operation group VpnServerConfigurationsOperations
  - Added operation group
    VpnServerConfigurationsAssociatedWithVirtualWanOperations
  - Added operation group AvailableServiceAliasesOperations

**Breaking changes**

  - Model WebApplicationFirewallPolicy has a new required parameter
    managed_rules
  - Model P2SVpnGateway no longer has parameter
    vpn_client_address_pool
  - Model P2SVpnGateway no longer has parameter custom_routes
  - Model P2SVpnGateway no longer has parameter
    p2_svpn_server_configuration
  - Model VirtualWAN no longer has parameter security_provider_name
  - Model VirtualWAN no longer has parameter
    p2_svpn_server_configurations
  - Model PolicySettings has a new signature

## 5.1.0 (2019-10-03)

**Features**

  - Model VirtualNetworkGateway has a new parameter
    vpn_gateway_generation
  - Model ExpressRoutePort has a new parameter identity
  - Model VirtualNetworkGatewayConnection has a new parameter
    traffic_selector_policies
  - Model ExpressRouteLink has a new parameter mac_sec_config
  - Model VirtualNetworkGatewayConnectionListEntity has a new parameter
    traffic_selector_policies
  - Model NetworkInterfaceIPConfiguration has a new parameter
    private_link_connection_properties
  - Model ApplicationGatewayRequestRoutingRule has a new parameter
    priority
  - Added operation
    VirtualNetworkGatewayConnectionsOperations.stop_packet_capture
  - Added operation
    VirtualNetworkGatewayConnectionsOperations.start_packet_capture
  - Added operation ConnectionMonitorsOperations.update_tags
  - Added operation
    VirtualNetworkGatewaysOperations.stop_packet_capture
  - Added operation
    VirtualNetworkGatewaysOperations.start_packet_capture
  - Added operation group VirtualRoutersOperations
  - Added operation group VirtualRouterPeeringsOperations

## 5.0.0 (2019-08-27)

**Features**

  - Model PrivateLinkServiceIpConfiguration has a new parameter primary
  - Model PrivateLinkServiceIpConfiguration has a new parameter etag
  - Model PrivateLinkServiceIpConfiguration has a new parameter type
  - Model PrivateLinkServiceIpConfiguration has a new parameter id
  - Model AzureFirewall has a new parameter virtual_hub
  - Model AzureFirewall has a new parameter hub_ip_addresses
  - Model AzureFirewall has a new parameter firewall_policy
  - Model PrivateLinkServiceConnection has a new parameter
    provisioning_state
  - Model PrivateLinkServiceConnection has a new parameter etag
  - Model PrivateLinkServiceConnection has a new parameter type
  - Model PublicIPPrefix has a new parameter
    load_balancer_frontend_ip_configuration
  - Model ApplicationGatewayOnDemandProbe has a new parameter
    backend_address_pool
  - Model ApplicationGatewayOnDemandProbe has a new parameter
    backend_http_settings
  - Model PrivateEndpointConnection has a new parameter
    provisioning_state
  - Model PrivateEndpointConnection has a new parameter etag
  - Model PrivateEndpointConnection has a new parameter type
  - Added operation SubnetsOperations.unprepare_network_policies
  - Added operation group FirewallPolicyRuleGroupsOperations
  - Added operation group FirewallPoliciesOperations

**Breaking changes**

  - Model PrivateLinkServiceIpConfiguration no longer has parameter
    public_ip_address
  - Model ApplicationGatewayOnDemandProbe no longer has parameter
    backend_pool_name
  - Model ApplicationGatewayOnDemandProbe no longer has parameter
    backend_http_setting_name

## 4.0.0 (2019-07-19)

**Features**

  - Model Subnet has a new parameter
    private_link_service_network_policies
  - Model Subnet has a new parameter
    private_endpoint_network_policies
  - Model VpnSite has a new parameter vpn_site_links
  - Model LoadBalancingRule has a new parameter type
  - Model BackendAddressPool has a new parameter outbound_rules
  - Model BackendAddressPool has a new parameter type
  - Model InboundNatPool has a new parameter type
  - Model OutboundRule has a new parameter type
  - Model InboundNatRule has a new parameter type
  - Model Probe has a new parameter type
  - Model FrontendIPConfiguration has a new parameter
    private_ip_address_version
  - Model FrontendIPConfiguration has a new parameter type
  - Model AvailablePrivateEndpointType has a new parameter name
  - Model AvailablePrivateEndpointType has a new parameter
    resource_name
  - Model VpnConnection has a new parameter vpn_link_connections
  - Added operation
    AvailablePrivateEndpointTypesOperations.list_by_resource_group
  - Added operation AzureFirewallsOperations.update_tags
  - Added operation
    PrivateLinkServicesOperations.check_private_link_service_visibility_by_resource_group
  - Added operation
    PrivateLinkServicesOperations.list_auto_approved_private_link_services
  - Added operation
    PrivateLinkServicesOperations.check_private_link_service_visibility
  - Added operation
    PrivateLinkServicesOperations.list_auto_approved_private_link_services_by_resource_group
  - Added operation group VpnLinkConnectionsOperations
  - Added operation group VpnSiteLinkConnectionsOperations
  - Added operation group VpnSiteLinksOperations

**Breaking changes**

  - Operation SubnetsOperations.prepare_network_policies has a new
    signature
  - Model PrepareNetworkPoliciesRequest no longer has parameter
    resource_group_name
  - Model AvailablePrivateEndpointType no longer has parameter
    service_name
  - Removed operation group
    AvailableResourceGroupPrivateEndpointTypesOperations

## 3.0.0 (2019-05-24)

**Features**

  - Model NetworkInterface has a new parameter private_endpoint
  - Model ServiceAssociationLink has a new parameter type
  - Model ServiceAssociationLink has a new parameter allow_delete
  - Model ServiceAssociationLink has a new parameter locations
  - Model Subnet has a new parameter private_endpoints
  - Model PatchRouteFilter has a new parameter ipv6_peerings
  - Model ExpressRouteCircuitPeering has a new parameter type
  - Model ApplicationGatewayProbe has a new parameter port
  - Model RouteFilter has a new parameter ipv6_peerings
  - Model ExpressRouteCircuitAuthorization has a new parameter type
  - Model PeerExpressRouteCircuitConnection has a new parameter type
  - Model AzureFirewall has a new parameter zones
  - Model ResourceNavigationLink has a new parameter type
  - Model ExpressRouteCircuitConnection has a new parameter type
  - Model VpnConnection has a new parameter
    use_policy_based_traffic_selectors
  - Model NatGateway has a new parameter zones
  - Model VpnClientConfiguration has a new parameter aad_audience
  - Model VpnClientConfiguration has a new parameter aad_issuer
  - Model VpnClientConfiguration has a new parameter aad_tenant
  - Added operation
    VirtualNetworkGatewaysOperations.get_vpnclient_connection_health
  - Added operation
    P2sVpnGatewaysOperations.get_p2s_vpn_connection_health
  - Added operation VpnGatewaysOperations.reset
  - Added operation group BastionHostsOperations
  - Added operation group NetworkManagementClientOperationsMixin
  - Added operation group PrivateLinkServicesOperations
  - Added operation group
    AvailableResourceGroupPrivateEndpointTypesOperations
  - Added operation group ServiceAssociationLinksOperations
  - Added operation group ResourceNavigationLinksOperations
  - Added operation group ServiceTagsOperations
  - Added operation group PrivateEndpointsOperations
  - Added operation group AvailablePrivateEndpointTypesOperations

**Breaking changes**

  - Model NetworkInterface no longer has parameter interface_endpoint
  - Model Subnet no longer has parameter interface_endpoints
  - Removed operation group InterfaceEndpointsOperations

**General Breaking changes**

This version uses a next-generation code generator that *might*
introduce breaking changes if you were importing from the v20xx_yy_zz
API folders. In summary, some modules were incorrectly
visible/importable and have been renamed. This fixed several issues
caused by usage of classes that were not supposed to be used in the
first place.

  - NetworkManagementClient cannot be imported from
    `azure.mgmt.network.v20xx_yy_zz.network_management_client`
    anymore (import from `azure.mgmt.network.v20xx_yy_zz` works like
    before)
  - NetworkManagementClientConfiguration import has been moved from
    `azure.mgmt.network.v20xx_yy_zz.network_management_client` to
    `azure.mgmt.network.v20xx_yy_zz`
  - A model `MyClass` from a "models" sub-module cannot be imported
    anymore using `azure.mgmt.network.v20xx_yy_zz.models.my_class`
    (import from `azure.mgmt.network.v20xx_yy_zz.models` works like
    before)
  - An operation class `MyClassOperations` from an `operations`
    sub-module cannot be imported anymore using
    `azure.mgmt.network.v20xx_yy_zz.operations.my_class_operations`
    (import from `azure.mgmt.network.v20xx_yy_zz.operations` works
    like before)

Last but not least, HTTP connection pooling is now enabled by default.
You should always use a client as a context manager, or call close(), or
use no more than one client per process.

## 2.7.0 (2019-04-25)

**Features**

  - Model P2SVpnGateway has a new parameter custom_routes
  - Model Subnet has a new parameter nat_gateway
  - Model VpnConnection has a new parameter
    use_local_azure_ip_address
  - Model EffectiveRoute has a new parameter
    disable_bgp_route_propagation
  - Model VirtualNetworkGateway has a new parameter custom_routes
  - Added operation
    ApplicationGatewaysOperations.backend_health_on_demand
  - Added operation DdosProtectionPlansOperations.update_tags
  - Added operation group NatGatewaysOperations

**Bug fixes and preview API updates**

  - Parameter output_blob_sas_url of model
    GetVpnSitesConfigurationRequest is now required
  - Operation VpnSitesConfigurationOperations.download has a new
    signature
  - Model ExpressRouteCircuit no longer has parameter
    allow_global_reach

## 2.6.0 (2019-03-21)

**Features**

  - Model ApplicationGateway has a new parameter firewall_policy
  - Model ApplicationGatewayBackendHealthServer has a new parameter
    health_probe_log
  - Model ExpressRouteCircuitPeering has a new parameter
    peered_connections
  - Model ExpressRouteCircuit has a new parameter global_reach_enabled
  - Added operation group PeerExpressRouteCircuitConnectionsOperations
  - Added operation group WebApplicationFirewallPoliciesOperations

**Bugfixes**

  - Fix incorrect operation
    ApplicationGatewaysOperations.list_available_request_headers
  - Fix incorrect operation
    ApplicationGatewaysOperations.list_available_server_variables
  - Fix incorrect operation
    ApplicationGatewaysOperations.list_available_response_headers

## 2.6.0rc1 (2019-02-15)

**Features**

  - Model AzureFirewall has a new parameter threat_intel_mode
  - Model ApplicationGatewayRewriteRule has a new parameter conditions
  - Model ApplicationGatewayRewriteRule has a new parameter
    rule_sequence
  - Model ApplicationGatewayAutoscaleConfiguration has a new parameter
    max_capacity
  - Added operation SubnetsOperations.prepare_network_policies

## 2.5.1 (2019-01-15)

**Features**

  - Add missing ddos_custom_policies operations

## 2.5.0 (2019-01-04)

**Features**

  - Model PublicIPAddress has a new parameter ddos_settings
  - Added operation
    ApplicationGatewaysOperations.list_available_request_headers
  - Added operation
    ApplicationGatewaysOperations.list_available_server_variables
  - Added operation
    ApplicationGatewaysOperations.list_available_response_headers
  - Added operation ApplicationSecurityGroupsOperations.update_tags

## 2.4.0 (2018-11-27)

**Features**

  - Model ApplicationGatewaySslCertificate has a new parameter
    key_vault_secret_id
  - Model ApplicationGatewayRequestRoutingRule has a new parameter
    rewrite_rule_set
  - Model FlowLogInformation has a new parameter format
  - Model ApplicationGateway has a new parameter identity
  - Model ApplicationGateway has a new parameter rewrite_rule_sets
  - Model TrafficAnalyticsConfigurationProperties has a new parameter
    traffic_analytics_interval
  - Model ApplicationGatewayPathRule has a new parameter
    rewrite_rule_set
  - Model ApplicationGatewayUrlPathMap has a new parameter
    default_rewrite_rule_set

**Breaking changes**

  - Model ApplicationGatewayTrustedRootCertificate no longer has
    parameter keyvault_secret_id (replaced by key_vault_secret_id)

## 2.3.0 (2018-11-07)

**Features**

  - Model ApplicationGatewayWebApplicationFirewallConfiguration has a
    new parameter exclusions
  - Model ApplicationGatewayWebApplicationFirewallConfiguration has a
    new parameter file_upload_limit_in_mb
  - Model ApplicationGatewayWebApplicationFirewallConfiguration has a
    new parameter max_request_body_size_in_kb
  - Model ApplicationGatewayHttpListener has a new parameter
    custom_error_configurations
  - Model ExpressRouteCircuit has a new parameter bandwidth_in_gbps
  - Model ExpressRouteCircuit has a new parameter stag
  - Model ExpressRouteCircuit has a new parameter express_route_port
  - Model EvaluatedNetworkSecurityGroup has a new parameter applied_to
  - Model NetworkConfigurationDiagnosticResult has a new parameter
    profile
  - Model ApplicationGateway has a new parameter
    custom_error_configurations
  - Added operation group LoadBalancerOutboundRulesOperations
  - Added operation group ExpressRouteLinksOperations
  - Added operation group ExpressRoutePortsOperations
  - Added operation group ExpressRoutePortsLocationsOperations

**Breaking changes**

  - Model NetworkConfigurationDiagnosticResult no longer has parameter
    traffic_query
  - Operation
    NetworkWatchersOperations.get_network_configuration_diagnostic
    has a new signature (no longer takes target_resource_id, queries,
    but a NetworkConfigurationDiagnosticParameters instance)

## 2.2.1 (2018-09-14)

**Bugfixes**

  - Fix unexpected exception with network_profiles.delete

## 2.2.0 (2018-09-11)

Default API version is now 2018-08-01

**Features**

  - Model AzureFirewall has a new parameter nat_rule_collections
  - Model VirtualHub has a new parameter route_table
  - Model VirtualHub has a new parameter virtual_network_connections
  - Model VirtualHub has a new parameter p2_svpn_gateway
  - Model VirtualHub has a new parameter express_route_gateway
  - Model VirtualHub has a new parameter vpn_gateway
  - Model VirtualWAN has a new parameter allow_vnet_to_vnet_traffic
  - Model VirtualWAN has a new parameter
    p2_svpn_server_configurations
  - Model VirtualWAN has a new parameter
    office365_local_breakout_category
  - Model VirtualWAN has a new parameter
    allow_branch_to_branch_traffic
  - Model VirtualWAN has a new parameter security_provider_name
  - Model VpnSite has a new parameter is_security_site
  - Model VpnConnection has a new parameter connection_bandwidth
  - Model VpnConnection has a new parameter enable_internet_security
  - Model VpnConnection has a new parameter
    vpn_connection_protocol_type
  - Model VpnConnection has a new parameter enable_rate_limiting
  - Model ServiceEndpointPolicy has a new parameter subnets
  - Model AzureFirewallApplicationRule has a new parameter fqdn_tags
  - Model AzureFirewallApplicationRule has a new parameter target_fqdns
  - Model VpnGateway has a new parameter vpn_gateway_scale_unit
  - Model ApplicationGatewayBackendHttpSettings has a new parameter
    trusted_root_certificates
  - Model VirtualNetworkGatewayConnection has a new parameter
    connection_protocol
  - Model ExpressRouteCircuitPeering has a new parameter
    express_route_connection
  - Model Subnet has a new parameter delegations
  - Model Subnet has a new parameter address_prefixes
  - Model Subnet has a new parameter ip_configuration_profiles
  - Model Subnet has a new parameter service_association_links
  - Model Subnet has a new parameter interface_endpoints
  - Model Subnet has a new parameter purpose
  - Model ApplicationGateway has a new parameter
    trusted_root_certificates
  - Model NetworkInterface has a new parameter tap_configurations
  - Model NetworkInterface has a new parameter hosted_workloads
  - Model NetworkInterface has a new parameter interface_endpoint
  - Model VirtualNetworkGatewayConnectionListEntity has a new parameter
    connection_protocol
  - Model HubVirtualNetworkConnection has a new parameter
    enable_internet_security
  - Model NetworkInterfaceIPConfiguration has a new parameter
    virtual_network_taps
  - Added operation
    VirtualNetworkGatewaysOperations.reset_vpn_client_shared_key
  - Added operation group ExpressRouteConnectionsOperations
  - Added operation group AzureFirewallFqdnTagsOperations
  - Added operation group VirtualNetworkTapsOperations
  - Added operation group NetworkProfilesOperations
  - Added operation group P2sVpnServerConfigurationsOperations
  - Added operation group AvailableDelegationsOperations
  - Added operation group InterfaceEndpointsOperations
  - Added operation group P2sVpnGatewaysOperations
  - Added operation group AvailableResourceGroupDelegationsOperations
  - Added operation group ExpressRouteGatewaysOperations
  - Added operation group NetworkInterfaceTapConfigurationsOperations

**Breaking changes**

  - Model VirtualHub no longer has parameter
    hub_virtual_network_connections
  - Model VpnConnection no longer has parameter
    connection_bandwidth_in_mbps
  - Model AzureFirewallApplicationRule no longer has parameter
    target_urls
  - Model VpnGateway no longer has parameter policies
  - Model AzureFirewallIPConfiguration no longer has parameter
    internal_public_ip_address
  - Model ApplicationGatewayAutoscaleConfiguration has a new signature
  - Renamed virtual_wa_ns to virtual_wans

## 2.1.0 (2018-08-28)

Default API version is now 2018-07-01

**Features**

  - Model ExpressRouteCircuit has a new parameter allow_global_reach
  - Model PublicIPAddress has a new parameter public_ip_prefix
  - Model BackendAddressPool has a new parameter outbound_rule
    (replaces outbound_nat_rule)
  - Model FrontendIPConfiguration has a new parameter outbound_rules
    (replaces outbound_nat_rule)
  - Model FrontendIPConfiguration has a new parameter public_ip_prefix
  - Model LoadBalancingRule has a new parameter enable_tcp_reset
  - Model VirtualNetworkGatewayConnectionListEntity has a new parameter
    express_route_gateway_bypass
  - Model VirtualNetworkGatewayConnection has a new parameter
    express_route_gateway_bypass
  - Model Subnet has a new parameter service_endpoint_policies
  - Model InboundNatPool has a new parameter enable_tcp_reset
  - Model LoadBalancer has a new parameter outbound_rules (replaces
    outbound_nat_rule)
  - Model InboundNatRule has a new parameter enable_tcp_reset
  - Added operation group ServiceEndpointPolicyDefinitionsOperations
  - Added operation group ServiceEndpointPoliciesOperations
  - Added operation group PublicIPPrefixesOperations

**Breaking changes**

  - Model BackendAddressPool no longer has parameter outbound_nat_rule
    (now outbound_rules)
  - Model FrontendIPConfiguration no longer has parameter
    outbound_nat_rules (now outbound_rules)
  - Model LoadBalancer no longer has parameter outbound_nat_rules (now
    outbound_rules)

## 2.0.1 (2018-08-07)

**Bugfixes**

  - Fix packet_captures.get_status empty output

## 2.0.0 (2018-07-27)

**Features**

  - Supports now 2018-06-01 and 2018-04-01. 2018-06-01 is the new
    default.
  - Client class can be used as a context manager to keep the underlying
    HTTP session open for performance

**Features starting 2018-04-01**

  - Model FlowLogInformation has a new parameter
    flow_analytics_configuration
  - Model ApplicationGateway has a new parameter enable_fips
  - Model ApplicationGateway has a new parameter
    autoscale_configuration
  - Model ApplicationGateway has a new parameter zones
  - Model ConnectionSharedKey has a new parameter id
  - Added operation group HubVirtualNetworkConnectionsOperations
  - Added operation group AzureFirewallsOperations
  - Added operation group VirtualHubsOperations
  - Added operation group VpnGatewaysOperations
  - Added operation group VpnSitesOperations
  - Added operation group VirtualWANsOperations
  - Added operation group VpnSitesConfigurationOperations
  - Added operation group VpnConnectionsOperations

**Breaking changes starting 2018-04-01**

  - Operation
    VirtualNetworkGatewayConnectionsOperations.set_shared_key has a
    new parameter "id"
  - Operation DdosProtectionPlansOperations.create_or_update parameter
    "parameters" has been flatten to "tags/location"

**Breaking changes starting 2018-06-01**

  - The new class VpnConnection introduced in 2018-04-01 renamed
    "connection_bandwidth" to "connection_bandwidth_in_mbps"

## 2.0.0rc3 (2018-06-14)

**Bugfixes**

  - API version 2018-02-01 enum Probe now supports HTTPS (standard SKU
    load balancer)
  - API version 2015-06-15 adding missing "primary" in
    NetworkInterfaceIPConfiguration

## 2.0.0rc2 (2018-04-03)

**Features**

  - All clients now support Azure profiles.
  - API version 2018-02-01 is now the default
  - Express Route Circuit Connection (considered preview)
  - Express Route Provider APIs
  - GetTopologyOperation supports query parameter
  - Feature work for setting Custom IPsec/IKE policy for Virtual Network
    Gateway point-to-site clients
  - DDoS Protection Plans

## 2.0.0rc1 (2018-03-07)

**General Breaking changes**

This version uses a next-generation code generator that *might*
introduce breaking changes.

  - Model signatures now use only keyword-argument syntax. All
    positional arguments must be re-written as keyword-arguments. To
    keep auto-completion in most cases, models are now generated for
    Python 2 and Python 3. Python 3 uses the "*" syntax for
    keyword-only arguments.
  - Enum types now use the "str" mixin (class AzureEnum(str, Enum)) to
    improve the behavior when unrecognized enum values are encountered.
    While this is not a breaking change, the distinctions are important,
    and are documented here:
    <https://docs.python.org/3/library/enum.html#others> At a glance:
      - "is" should not be used at all.
      - "format" will return the string value, where "%s" string
        formatting will return `NameOfEnum.stringvalue`. Format syntax
        should be prefered.
  - New Long Running Operation:
      - Return type changes from
        `msrestazure.azure_operation.AzureOperationPoller` to
        `msrest.polling.LROPoller`. External API is the same.
      - Return type is now **always** a `msrest.polling.LROPoller`,
        regardless of the optional parameters used.
      - The behavior has changed when using `raw=True`. Instead of
        returning the initial call result as `ClientRawResponse`,
        without polling, now this returns an LROPoller. After polling,
        the final resource will be returned as a `ClientRawResponse`.
      - New `polling` parameter. The default behavior is
        `Polling=True` which will poll using ARM algorithm. When
        `Polling=False`, the response of the initial call will be
        returned without polling.
      - `polling` parameter accepts instances of subclasses of
        `msrest.polling.PollingMethod`.
      - `add_done_callback` will no longer raise if called after
        polling is finished, but will instead execute the callback right
        away.

**Network Breaking changes**

  - Operation network_watcher.get_topology changed method signature

**Features**

  - Add API Version 2018-01-01. Not default yet in this version.
  - Add ConnectionMonitor operation group (2017-10/11-01)
  - Add target_virtual_network / target_subnet to topology_parameter
    (2017-10/11-01)
  - Add idle_timeout_in_minutes / enable_floating_ip to
    inbound_nat_pool (2017-11-01)

**Bugfixes**

  - Fix peer_asn validation rules (2017-10/11-01)

## 1.7.1 (2017-12-20)

**Bugfixes**

Fix `SecurityRule` constructor parameters order to respect the one
used until 1.5.0. This indeed introduces a breaking change for users of
1.6.0 and 1.7.0, but this constructor signature change was not expected,
and following semantic versionning all 1.x versions should follow the
same signature.

This fixes third party library, like Ansible, that expects (for
excellent reasons) this SDK to follow strictly semantic versionning with
regards to breaking changes and have their dependency system asking for
`>=1.0;<2.0`

## 1.7.0 (2017-12-14)

**Features**

  - Add iptag. IpTag is way to restrict the range of IPaddresses to be
    allocated.
  - Default API version is now 2017-11-01

**Bug fixes**

  - Added valid ASN range in ExpressRouteCircuitPeering (#1672)

## 1.6.0 (2017-11-28)

**Bug fixes**

  - Accept space in location for "usage" (i.e. "west us").
  - sourceAddressPrefix, sourceAddressPrefixes and
    sourceApplicationSecurityGroups are mutually exclusive and one only
    is needed, meaning none of them is required by itself. Thus,
    sourceAddressPrefix is not required anymore.
  - destinationAddressPrefix, destinationAddressPrefixes and
    destinationApplicationSecurityGroups are mutually exclusive and one
    only is needed, meaning none of them is required by itself. Thus,
    destinationAddressPrefix is not required anymore.
  - Client now accept unicode string as a valid subscription_id
    parameter
  - Restore missing azure.mgmt.network.__version__

**Features**

  - Client now accept a "profile" parameter to define API version per
    operation group.
  - Add update_tags to most of the resources
  - Add operations group to list all available rest API operations
  - NetworkInterfaces_ListVirtualMachineScaleSetIpConfigurations
  - NetworkInterfaces_GetVirtualMachineScaleSetIpConfiguration

## 1.5.0 (2017-09-26)

**Features**

  - Availability Zones
  - Add network_watchers.get_azure_reachability_report
  - Add network_watchers.list_available_providers
  - Add virtual_network_gateways.supported_vpn_devices
  - Add virtual_network_gateways.vpn_device_configuration_script

## 1.5.0rc1 (2017-09-18)

**Features**

  - Add ApiVersion 2017-09-01 (new default)
  - Add application_security_groups (ASG) operations group
  - Add ASG to network_interface operations
  - Add ASG to IP operations
  - Add source/destination ASGs to network security rules
  - Add DDOS protection and VM protection to vnet operations

**Bug fix**

  - check_dns_name_availability now correctly defines
    "domain_name_label" as required and not optional

## 1.4.0 (2017-08-23)

**Features**

  - Add ApiVersion 2017-08-01 (new default)
  - Added in both 2017-08-01 and 2017-06-01:
      - virtual_network_gateways.list_connections method
      - default_security_rules operations group
      - inbound_nat_rules operations group
      - load_balancer_backend_address_pools operations group
      - load_balancer_frontend_ip_configurations operations group
      - load_balancer_load_balancing_rules operations group
      - load_balancer_network_interfaces operations group
      - load_balancer_probes operations group
      - network_interface_ip_configurations operations group
      - network_interface_load_balancers operations group
      - EffectiveNetworkSecurityGroup.tag_map attribute
      - EffectiveNetworkSecurityRule.source_port_ranges attribute
      - EffectiveNetworkSecurityRule.destination_port_ranges attribute
      - EffectiveNetworkSecurityRule.source_address_prefixes attribute
      - EffectiveNetworkSecurityRule.destination_address_prefixes
        attribute
      - SecurityRule.source_port_ranges attribute
      - SecurityRule.destination_port_ranges attribute
      - SecurityRule.source_address_prefixes attribute
      - SecurityRule.destination_address_prefixes attribute
  - Added in 2017-08-01 only
      - PublicIPAddress.sku
      - LoadBalancer.sku

**Changes on preview**

>   - "available_private_access_services" is renamed
>     "available_endpoint_services"
>   - "radius_secret" parsing fix (was unable to work in 1.3.0)

## 1.3.0 (2017-07-10)

**Preview features**

  - Adding "available_private_access_services" operation group
    (preview)
  - Adding "radius_secret" in Virtual Network Gateway (preview)

**Bug Fixes**

  - VMSS Network ApiVersion fix in 2017-06-01 (point to 2017-03-30)

## 1.2.0 (2017-07-03)

**Features**

Adding the following features to both 2017-03-01 and 2017-06-01:

  - express route ipv6
  - VMSS Network (get, list, etc.)
  - VMSS Public IP (get, list, etc.)

## 1.1.0 (2017-06-27)

**Features**

  - Add list_usage in virtual networks (2017-03-01)
  - Add ApiVersion 2017-06-01 (new default)

This new ApiVersion is for new Application Gateway features:

>   - ApplicationGateway Ssl Policy custom cipher suites support [new
>     properties added to Sslpolicy Property of
>     ApplciationGatewayPropertiesFormat]
>   - Get AvailableSslOptions api [new resource
>     ApplicationGatewayAvailableSslOptions and child resource
>     ApplicationGatewayPredefinedPolicy]
>   - Redirection support [new child resource
>     ApplicationGatewayRedirectConfiguration for Application Gateway,
>     new properties in UrlPathMap, PathRules and RequestRoutingRule]
>   - Azure Websites feature support [new properties in
>     ApplicationGatewayBackendHttpSettingsPropertiesFormat,
>     ApplicationGatewayProbePropertiesFormat, schema for property
>     ApplicationGatewayProbeHealthResponseMatch]

## 1.0.0 (2017-05-15)

  - Tag 1.0.0rc3 as stable (same content)

## 1.0.0rc3 (2017-05-03)

**Features**

  - Added check connectivity api to network watcher

## 1.0.0rc2 (2017-04-18)

**Features**

  - Add ApiVersion 2016-12-01 and 2017-03-01
  - 2017-03-01 is now default ApiVersion

**Bugfixes**

  - Restore access to NetworkWatcher and PacketCapture from 2016-09-01

## 1.0.0rc1 (2017-04-11)

**Features**

To help customers with sovereign clouds (not general Azure), this
version has official multi ApiVersion support for 2015-06-15 and
2016-09-01

## 0.30.1 (2017-03-27)

  - Add NetworkWatcher
  - Add PacketCapture
  - Add new methods to Virtualk Network Gateway
      - get_bgp_peer_status
      - get_learned_routes
      - get_advertised_routes

## 0.30.0 (2016-11-01)

  - Initial preview release. Based on API version 2016-09-01.

## 0.20.0 (2015-08-31)

  - Initial preview release. Based on API version 2015-05-01-preview.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Azure/azure-sdk-for-python",
    "name": "azure-mgmt-network",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "azure,azure sdk",
    "author": "Microsoft Corporation",
    "author_email": "azpysdkhelp@microsoft.com",
    "download_url": "https://files.pythonhosted.org/packages/26/20/c09aefc1f7a14b90161589b0dc9aeaef60b4b8a5edcad2e06f8af9086018/azure-mgmt-network-25.3.0.tar.gz",
    "platform": null,
    "description": "# Microsoft Azure SDK for Python\n\nThis is the Microsoft Azure Network Management Client Library.\nThis package has been tested with Python 3.8+.\nFor a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).\n\n## _Disclaimer_\n\n_Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_\n\n## Getting started\n\n### Prerequisites\n\n- Python 3.8+ is required to use this package.\n- [Azure subscription](https://azure.microsoft.com/free/)\n\n### Install the package\n\n```bash\npip install azure-mgmt-network\npip install azure-identity\n```\n\n### Authentication\n\nBy default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configure of following environment variables.\n\n- `AZURE_CLIENT_ID` for Azure client ID.\n- `AZURE_TENANT_ID` for Azure tenant ID.\n- `AZURE_CLIENT_SECRET` for Azure client secret.\n\nIn addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.\n\nWith above configuration, client can be authenticated by following code:\n\n```python\nfrom azure.identity import DefaultAzureCredential\nfrom azure.mgmt.network import NetworkManagementClient\nimport os\n\nsub_id = os.getenv(\"AZURE_SUBSCRIPTION_ID\")\nclient = NetworkManagementClient(credential=DefaultAzureCredential(), subscription_id=sub_id)\n```\n\n## Examples\n\nCode samples for this package can be found at:\n- [Search Network Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com\n- [Azure Python Mgmt SDK Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)\n\n\n## Troubleshooting\n\n## Next steps\n\n## Provide Feedback\n\nIf you encounter any bugs or have suggestions, please file an issue in the\n[Issues](https://github.com/Azure/azure-sdk-for-python/issues)\nsection of the project. \n\n\n# Release History\n\n## 25.3.0 (2024-02-22)\n\n### Features Added\n\n  - Model BastionHost has a new parameter zones\n\n## 25.2.0 (2023-12-18)\n\n### Features Added\n\n  - Added operation NetworkManagementClientOperationsMixin.begin_delete_bastion_shareable_link_by_token\n  - Added operation NetworkSecurityPerimetersOperations.patch\n  - Model ApplicationGatewayListener has a new parameter host_names\n  - Model FirewallPolicyIntrusionDetection has a new parameter profile\n  - Model NetworkVirtualAppliance has a new parameter internet_ingress_public_ips\n\n## 25.1.0 (2023-09-15)\n\n### Features Added\n\n  - Model BastionHost has a new parameter network_acls\n  - Model BastionHost has a new parameter virtual_network\n  - Model FirewallPolicy has a new parameter size\n  - Model FirewallPolicyRuleCollectionGroup has a new parameter size\n  - Model Subnet has a new parameter default_outbound_access\n  - Model VirtualNetworkGateway has a new parameter auto_scale_configuration\n\n## 25.0.0 (2023-08-18)\n\n### Features Added\n\n  - Added operation LoadBalancersOperations.migrate_to_ip_based\n  - Model BackendAddressPool has a new parameter sync_mode\n\n### Breaking Changes\n\n  - Removed operation group NspLinkReconcileOperations\n  - Removed operation group NspLinkReferenceReconcileOperations\n\n## 24.0.0 (2023-07-21)\n\n### Breaking Changes\n\n  - Removed `HTTP_STATUS499` from enum `ApplicationGatewayCustomErrorStatusCode`\n\n### Features Added\n\n  - Added enum `AdminState`\n  - Model ActiveConnectivityConfiguration has a new parameter resource_guid\n  - Model ActiveDefaultSecurityAdminRule has a new parameter resource_guid\n  - Model ActiveSecurityAdminRule has a new parameter resource_guid\n  - Model AdminRule has a new parameter resource_guid\n  - Model AdminRuleCollection has a new parameter resource_guid\n  - Model ApplicationGateway has a new parameter default_predefined_ssl_policy\n  - Model ConfigurationGroup has a new parameter resource_guid\n  - Model ConnectivityConfiguration has a new parameter resource_guid\n  - Model DefaultAdminRule has a new parameter resource_guid\n  - Model EffectiveConnectivityConfiguration has a new parameter resource_guid\n  - Model EffectiveDefaultSecurityAdminRule has a new parameter resource_guid\n  - Model EffectiveSecurityAdminRule has a new parameter resource_guid\n  - Model NetworkGroup has a new parameter resource_guid\n  - Model NetworkManager has a new parameter resource_guid\n  - Model SecurityAdminConfiguration has a new parameter resource_guid\n  - Model VirtualNetworkGateway has a new parameter admin_state\n\n## 23.1.0 (2023-05-20)\n\n### Features Added\n\n  - Added operation AzureFirewallsOperations.begin_packet_capture\n  - Added operation group NetworkVirtualApplianceConnectionsOperations\n  - Model ApplicationRule has a new parameter http_headers_to_insert\n  - Model BastionHost has a new parameter enable_kerberos\n  - Model NetworkInterface has a new parameter auxiliary_sku\n  - Model NetworkVirtualAppliance has a new parameter additional_nics\n  - Model NetworkVirtualAppliance has a new parameter virtual_appliance_connections\n  - Model PolicySettings has a new parameter file_upload_enforcement\n  - Model PolicySettings has a new parameter log_scrubbing\n  - Model PolicySettings has a new parameter request_body_enforcement\n  - Model PolicySettings has a new parameter request_body_inspect_limit_in_kb\n  - Model PrivateEndpointConnection has a new parameter private_endpoint_location\n  - Model PublicIPAddressDnsSettings has a new parameter domain_name_label_scope\n  - Model VirtualApplianceNicProperties has a new parameter instance_name\n  - Model WebApplicationFirewallCustomRule has a new parameter group_by_user_session\n  - Model WebApplicationFirewallCustomRule has a new parameter rate_limit_duration\n  - Model WebApplicationFirewallCustomRule has a new parameter rate_limit_threshold\n\n## 23.0.1 (2023-04-26)\n\n### Bugs Fixed\n\n  - Fix calling failure for those operations which could be called by client directly #30057\n\n## 23.0.0 (2023-03-29)\n\n### Other Changes\n\n  - Initial stable release with our new combined multiapi package. Package size is now 5% of what it used to be.\n\n### Breaking Changes\n\n  - All query and header parameters are now keyword-only\n  - Removed api version subfolders. This means you can no longer access any `azure.mgmt.network.v20xx_xx_xx` modules.\n  - Removed `.models` method from `NetworkManagementClient`. Instead, import models from `azure.mgmt.network.models`.\n\n## 22.3.0 (2023-03-20)\n\n### Features Added\n\n  - Model ExpressRouteCircuit has a new parameter authorization_status\n  - Model NspAccessRule has a new parameter email_addresses\n  - Model NspAccessRule has a new parameter phone_numbers\n  - Model NspLink has a new parameter remote_perimeter_location\n  - Model NspLinkReference has a new parameter remote_perimeter_location\n  - Model VirtualNetwork has a new parameter flow_logs\n  - Model WebApplicationFirewallCustomRule has a new parameter state\n  - Operation VpnGatewaysOperations.begin_reset has a new optional parameter ip_configuration_id\n\n## 23.0.0b2 (2023-02-20)\n\n### Other Changes\n\n  - Continued package size improvements. The whole package is now 5% of the latest stable release\n\n### Breaking Changes\n\n  - Removed api version subfolders. This means you can no longer access any `azure.mgmt.network.v20xx_xx_xx` modules\n  - Removed `.models` method from `NetworkManagementClient`\n\n## 23.0.0b1 (2022-12-19)\n\n### Other Changes\n\n  - Preview package with the same multiapi support but much reduced package size.\n\n### Breaking Changes\n\n  - All query and header parameters are now keyword-only\n  - Can not individually access each API version's client and operations\n\n## 22.2.0 (2022-12-15)\n\n### Features Added\n\n  - Model BackendAddressPool has a new parameter virtual_network\n  - Model NetworkVirtualAppliance has a new parameter delegation\n  - Model NetworkVirtualAppliance has a new parameter deployment_type\n  - Model NetworkVirtualAppliance has a new parameter partner_managed_resource\n  - Model PolicySettings has a new parameter custom_block_response_body\n  - Model PolicySettings has a new parameter custom_block_response_status_code\n\n## 22.1.0 (2022-10-24)\n\n### Features Added\n\n  - Added operation group NspLinkReconcileOperations\n  - Added operation group NspLinkReferenceReconcileOperations\n  - Added operation group NspLinkReferencesOperations\n  - Added operation group NspLinksOperations\n\n## 22.0.0 (2022-10-12)\n\n### Features Added\n\n  - Added operation PublicIPAddressesOperations.begin_ddos_protection_status\n  - Added operation VirtualHubsOperations.begin_get_inbound_routes\n  - Added operation VirtualHubsOperations.begin_get_outbound_routes\n  - Added operation VirtualNetworksOperations.begin_list_ddos_protection_status\n  - Added operation group ApplicationGatewayWafDynamicManifestsDefaultOperations\n  - Added operation group ApplicationGatewayWafDynamicManifestsOperations\n  - Added operation group NspAssociationReconcileOperations\n  - Added operation group RouteMapsOperations\n  - Added operation group VipSwapOperations\n  - Model ApplicationGatewayClientAuthConfiguration has a new parameter verify_client_revocation\n  - Model ApplicationGatewayFirewallRule has a new parameter action\n  - Model ApplicationGatewayFirewallRule has a new parameter rule_id_string\n  - Model ApplicationGatewayFirewallRule has a new parameter state\n  - Model ApplicationGatewayFirewallRuleSet has a new parameter tiers\n  - Model CustomIpPrefix has a new parameter asn\n  - Model CustomIpPrefix has a new parameter express_route_advertise\n  - Model CustomIpPrefix has a new parameter geo\n  - Model CustomIpPrefix has a new parameter prefix_type\n  - Model DdosProtectionPlan has a new parameter public_ip_addresses\n  - Model DdosSettings has a new parameter ddos_protection_plan\n  - Model DdosSettings has a new parameter protection_mode\n  - Model ExpressRouteConnection has a new parameter enable_private_link_fast_path\n  - Model ExpressRouteGateway has a new parameter allow_non_virtual_wan_traffic\n  - Model ExpressRouteLink has a new parameter colo_location\n  - Model ExpressRoutePort has a new parameter billing_type\n  - Model ManagedRuleOverride has a new parameter action\n  - Model NetworkInterface has a new parameter disable_tcp_state_tracking\n  - Model NspProfile has a new parameter diagnostic_settings_version\n  - Model Probe has a new parameter probe_threshold\n  - Model RoutingConfiguration has a new parameter inbound_route_map\n  - Model RoutingConfiguration has a new parameter outbound_route_map\n  - Model VirtualHub has a new parameter route_maps\n  - Model VirtualNetworkGateway has a new parameter allow_remote_vnet_traffic\n  - Model VirtualNetworkGateway has a new parameter allow_virtual_wan_traffic\n  - Model VirtualNetworkGateway has a new parameter virtual_network_gateway_policy_groups\n  - Model VirtualNetworkGatewayConnection has a new parameter enable_private_link_fast_path\n  - Model VirtualNetworkGatewayConnectionListEntity has a new parameter enable_private_link_fast_path\n  - Model VnetRoute has a new parameter static_routes_config\n  - Model VpnClientConfiguration has a new parameter vng_client_connection_configurations\n\n### Breaking Changes\n\n  - Model DdosCustomPolicy no longer has parameter protocol_custom_settings\n  - Model DdosCustomPolicy no longer has parameter public_ip_addresses\n  - Model DdosSettings no longer has parameter ddos_custom_policy\n  - Model DdosSettings no longer has parameter protected_ip\n  - Model DdosSettings no longer has parameter protection_coverage\n  - Operation NetworkManagementClientOperationsMixin.list_active_connectivity_configurations has a new parameter top\n  - Operation NetworkManagementClientOperationsMixin.list_active_security_admin_rules has a new parameter top\n  - Operation NetworkManagementClientOperationsMixin.list_network_manager_effective_connectivity_configurations has a new parameter top\n  - Operation NetworkManagementClientOperationsMixin.list_network_manager_effective_security_admin_rules has a new parameter top\n  - Operation NetworkManagerDeploymentStatusOperations.list has a new parameter top\n  - Removed operation NetworkSecurityPerimetersOperations.check_members\n  - Removed operation NetworkSecurityPerimetersOperations.query\n  - Removed operation group NspAssociationsProxyOperations\n\n## 21.0.1 (2022-08-17)\n\n### Bugs Fixed\n\n  - Add `__version__` to `__init__.py` for package\n\n## 21.0.0 (2022-08-05)\n\n**Features**\n\n  - Added operation AdminRuleCollectionsOperations.begin_delete\n  - Added operation AdminRulesOperations.begin_delete\n  - Added operation AzureFirewallsOperations.begin_list_learned_prefixes\n  - Added operation ConnectivityConfigurationsOperations.begin_delete\n  - Added operation NetworkGroupsOperations.begin_delete\n  - Added operation NetworkManagementClientOperationsMixin.express_route_provider_port\n  - Added operation NetworkManagementClientOperationsMixin.list_active_connectivity_configurations\n  - Added operation NetworkManagementClientOperationsMixin.list_active_security_admin_rules\n  - Added operation NetworkManagementClientOperationsMixin.list_network_manager_effective_connectivity_configurations\n  - Added operation NetworkManagementClientOperationsMixin.list_network_manager_effective_security_admin_rules\n  - Added operation NetworkManagerCommitsOperations.begin_post\n  - Added operation NetworkManagersOperations.begin_delete\n  - Added operation NetworkManagersOperations.patch\n  - Added operation NetworkSecurityPerimetersOperations.check_members\n  - Added operation NetworkSecurityPerimetersOperations.query\n  - Added operation SecurityAdminConfigurationsOperations.begin_delete\n  - Added operation group ExpressRouteProviderPortsLocationOperations\n  - Added operation group ManagementGroupNetworkManagerConnectionsOperations\n  - Added operation group NspAccessRulesReconcileOperations\n  - Added operation group NspAssociationsProxyOperations\n  - Added operation group ScopeConnectionsOperations\n  - Added operation group StaticMembersOperations\n  - Added operation group SubscriptionNetworkManagerConnectionsOperations\n  - Model ApplicationGatewayRoutingRule has a new parameter priority\n  - Model CustomIpPrefix has a new parameter no_internet_advertise\n  - Model FirewallPolicy has a new parameter explicit_proxy\n  - Model FirewallPolicySNAT has a new parameter auto_learn_private_ranges\n  - Model NetworkManagerPropertiesNetworkManagerScopes has a new parameter cross_tenant_scopes\n  - Model NetworkSecurityGroup has a new parameter flush_connection\n  - Model NetworkSecurityPerimeter has a new parameter perimeter_guid\n  - Model PacketCapture has a new parameter scope\n  - Model PacketCapture has a new parameter target_type\n  - Model PacketCaptureParameters has a new parameter scope\n  - Model PacketCaptureParameters has a new parameter target_type\n  - Model PacketCaptureResult has a new parameter scope\n  - Model PacketCaptureResult has a new parameter target_type\n  - Model PacketCaptureResultProperties has a new parameter scope\n  - Model PacketCaptureResultProperties has a new parameter target_type\n  - Model VirtualHub has a new parameter virtual_router_auto_scale_configuration\n\n**Breaking changes**\n\n  - Model ActiveBaseSecurityAdminRule no longer has parameter configuration_display_name\n  - Model ActiveBaseSecurityAdminRule no longer has parameter rule_collection_display_name\n  - Model ActiveConnectivityConfiguration no longer has parameter display_name\n  - Model ActiveDefaultSecurityAdminRule no longer has parameter configuration_display_name\n  - Model ActiveDefaultSecurityAdminRule no longer has parameter display_name\n  - Model ActiveDefaultSecurityAdminRule no longer has parameter rule_collection_display_name\n  - Model ActiveSecurityAdminRule no longer has parameter configuration_display_name\n  - Model ActiveSecurityAdminRule no longer has parameter display_name\n  - Model ActiveSecurityAdminRule no longer has parameter rule_collection_display_name\n  - Model AdminRule no longer has parameter display_name\n  - Model ConfigurationGroup no longer has parameter conditional_membership\n  - Model ConfigurationGroup no longer has parameter display_name\n  - Model ConfigurationGroup no longer has parameter group_members\n  - Model ConfigurationGroup no longer has parameter member_type\n  - Model ConnectivityConfiguration no longer has parameter display_name\n  - Model DefaultAdminRule no longer has parameter display_name\n  - Model EffectiveBaseSecurityAdminRule no longer has parameter configuration_display_name\n  - Model EffectiveBaseSecurityAdminRule no longer has parameter rule_collection_display_name\n  - Model EffectiveConnectivityConfiguration no longer has parameter display_name\n  - Model EffectiveDefaultSecurityAdminRule no longer has parameter configuration_display_name\n  - Model EffectiveDefaultSecurityAdminRule no longer has parameter display_name\n  - Model EffectiveDefaultSecurityAdminRule no longer has parameter rule_collection_display_name\n  - Model EffectiveSecurityAdminRule no longer has parameter configuration_display_name\n  - Model EffectiveSecurityAdminRule no longer has parameter display_name\n  - Model EffectiveSecurityAdminRule no longer has parameter rule_collection_display_name\n  - Model FirewallPolicy no longer has parameter explicit_proxy_settings\n  - Model NetworkGroup no longer has parameter conditional_membership\n  - Model NetworkGroup no longer has parameter display_name\n  - Model NetworkGroup no longer has parameter group_members\n  - Model NetworkGroup no longer has parameter member_type\n  - Model NetworkManager no longer has parameter display_name\n  - Model NetworkSecurityPerimeter no longer has parameter description\n  - Model NetworkSecurityPerimeter no longer has parameter display_name\n  - Model NetworkSecurityPerimeter no longer has parameter etag\n  - Model NspProfile no longer has parameter enabled_log_categories\n  - Parameter commit_type of model NetworkManagerCommit is now required\n  - Parameter group_connectivity of model ConnectivityGroupItem is now required\n  - Parameter network_group_id of model ConnectivityGroupItem is now required\n  - Parameter network_group_id of model NetworkManagerSecurityGroupItem is now required\n  - Parameter target_locations of model NetworkManagerCommit is now required\n  - Removed operation AdminRuleCollectionsOperations.delete\n  - Removed operation AdminRulesOperations.delete\n  - Removed operation ConnectivityConfigurationsOperations.delete\n  - Removed operation NetworkGroupsOperations.delete\n  - Removed operation NetworkManagerCommitsOperations.post\n  - Removed operation NetworkManagersOperations.delete\n  - Removed operation NetworkManagersOperations.patch_tags\n  - Removed operation SecurityAdminConfigurationsOperations.delete\n\n## 20.0.0 (2022-05-10)\n\n**Features**\n\n  - Added operation FirewallPoliciesOperations.update_tags\n  - Added operation PerimeterAssociableResourceTypesOperations.list\n  - Added operation group ConfigurationPolicyGroupsOperations\n  - Added operation group ExpressRoutePortAuthorizationsOperations\n  - Added operation group NspAccessRulesOperations\n  - Added operation group NspAssociationsOperations\n  - Added operation group NspProfilesOperations\n  - Model ApplicationGateway has a new parameter backend_settings_collection\n  - Model ApplicationGateway has a new parameter listeners\n  - Model ApplicationGateway has a new parameter routing_rules\n  - Model ApplicationGatewayProbe has a new parameter pick_host_name_from_backend_settings\n  - Model BackendAddressPool has a new parameter drain_period_in_seconds\n  - Model ExpressRouteCircuit has a new parameter authorization_key\n  - Model FirewallPolicyIntrusionDetectionConfiguration has a new parameter private_ranges\n  - Model LoadBalancerBackendAddress has a new parameter admin_state\n  - Model NetworkInterface has a new parameter auxiliary_mode\n  - Model P2SConnectionConfiguration has a new parameter configuration_policy_group_associations\n  - Model P2SConnectionConfiguration has a new parameter previous_configuration_policy_group_associations\n  - Model VirtualHub has a new parameter hub_routing_preference\n  - Model VirtualNetworkGatewayConnection has a new parameter gateway_custom_bgp_ip_addresses\n  - Model VirtualNetworkGatewayConnectionListEntity has a new parameter gateway_custom_bgp_ip_addresses\n  - Model VpnServerConfiguration has a new parameter configuration_policy_groups\n  - Model VpnSiteLinkConnection has a new parameter vpn_gateway_custom_bgp_addresses\n\n**Breaking changes**\n\n  - Removed operation PerimeterAssociableResourceTypesOperations.get\n\n## 19.3.0 (2021-11-05)\n\n**Features**\n\n  - Model LoadBalancerBackendAddress has a new parameter inbound_nat_rules_port_mapping\n  - Model VpnNatRuleMapping has a new parameter port_range\n  - Model OwaspCrsExclusionEntry has a new parameter exclusion_managed_rule_sets\n  - Model VirtualNetworkPeering has a new parameter remote_virtual_network_encryption\n  - Model NetworkInterface has a new parameter vnet_encryption_supported\n  - Model VirtualNetworkGateway has a new parameter disable_ip_sec_replay_protection\n  - Model VirtualNetwork has a new parameter encryption\n  - Model BackendAddressPool has a new parameter inbound_nat_rules\n  - Added operation LoadBalancersOperations.begin_list_inbound_nat_rule_port_mappings\n  - Added operation group FirewallPolicyIdpsSignaturesOverridesOperations\n  - Added operation group RoutingIntentOperations\n  - Added operation group FirewallPolicyIdpsSignaturesOperations\n  - Added operation group FirewallPolicyIdpsSignaturesFilterValuesOperations\n\n## 19.2.0 (2021-10-21)\n\n**Features**\n\n  - Added operation group AdminRuleCollectionsOperations\n  - Added operation group SecurityUserConfigurationsOperations\n  - Added operation group ConnectivityConfigurationsOperations\n  - Added operation group ActiveSecurityUserRulesOperations\n  - Added operation group NetworkManagerCommitsOperations\n  - Added operation group NetworkManagersOperations\n  - Added operation group NetworkManagerDeploymentStatusOperations\n  - Added operation group ActiveConnectivityConfigurationsOperations\n  - Added operation group NetworkManagerEffectiveSecurityAdminRulesOperations\n  - Added operation group UserRuleCollectionsOperations\n  - Added operation group ActiveSecurityAdminRulesOperations\n  - Added operation group UserRulesOperations\n  - Added operation group NetworkGroupsOperations\n  - Added operation group EffectiveVirtualNetworksOperations\n  - Added operation group NetworkSecurityPerimetersOperations\n  - Added operation group PerimeterAssociableResourceTypesOperations\n  - Added operation group AdminRulesOperations\n  - Added operation group SecurityAdminConfigurationsOperations\n  - Added operation group EffectiveConnectivityConfigurationsOperations\n  - Removed old api-version `2017-08-01`\n\n## 19.1.0 (2021-10-09)\n\n**Features**\n\n  - Model ServiceEndpointPolicy has a new parameter service_alias\n  - Model ServiceEndpointPolicy has a new parameter contextual_service_endpoint_policies\n  - Model ApplicationGatewayRequestRoutingRule has a new parameter load_distribution_policy\n  - Model BgpConnection has a new parameter hub_virtual_network_connection\n  - Model BastionHost has a new parameter enable_ip_connect\n  - Model BastionHost has a new parameter disable_copy_paste\n  - Model BastionHost has a new parameter enable_tunneling\n  - Model BastionHost has a new parameter scale_units\n  - Model BastionHost has a new parameter enable_file_copy\n  - Model BastionHost has a new parameter enable_shareable_link\n  - Model DscpConfiguration has a new parameter qos_definition_collection\n  - Model ServiceTagInformation has a new parameter service_tag_change_number\n  - Model VnetRoute has a new parameter bgp_connections\n  - Model VpnGateway has a new parameter enable_bgp_route_translation_for_nat\n  - Model ServiceEndpointPolicyDefinition has a new parameter type\n  - Model ApplicationGateway has a new parameter global_configuration\n  - Model ApplicationGateway has a new parameter load_distribution_policies\n  - Model InboundNatRule has a new parameter frontend_port_range_end\n  - Model InboundNatRule has a new parameter frontend_port_range_start\n  - Model InboundNatRule has a new parameter backend_address_pool\n  - Model PrivateEndpoint has a new parameter ip_configurations\n  - Model PrivateEndpoint has a new parameter application_security_groups\n  - Model PrivateEndpoint has a new parameter custom_network_interface_name\n  - Model NetworkVirtualAppliance has a new parameter ssh_public_key\n  - Model ApplicationGatewayUrlPathMap has a new parameter default_load_distribution_policy\n  - Model FirewallPolicy has a new parameter sql\n  - Model FirewallPolicy has a new parameter explicit_proxy_settings\n  - Model VirtualHub has a new parameter kind\n  - Model ApplicationGatewayPathRule has a new parameter load_distribution_policy\n  - Added operation BastionHostsOperations.begin_update_tags\n  - Added operation group ServiceTagInformationOperations\n\n## 19.0.0 (2021-05-14)\n\n**Features**\n\n  - Model ApplicationGatewayTrustedClientCertificate has a new parameter validated_cert_data\n  - Model ApplicationGatewayTrustedClientCertificate has a new parameter client_cert_issuer_dn\n  - Model VirtualNetwork has a new parameter flow_timeout_in_minutes\n  - Model FrontendIPConfiguration has a new parameter gateway_load_balancer\n  - Model IPAddressAvailabilityResult has a new parameter is_platform_reserved\n  - Model CustomIpPrefix has a new parameter custom_ip_prefix_parent\n  - Model CustomIpPrefix has a new parameter failed_reason\n  - Model CustomIpPrefix has a new parameter child_custom_ip_prefixes\n  - Model CustomIpPrefix has a new parameter authorization_message\n  - Model CustomIpPrefix has a new parameter signed_message\n  - Model VirtualNetworkPeering has a new parameter peering_sync_level\n  - Model VirtualNetworkPeering has a new parameter resource_guid\n  - Model VirtualNetworkPeering has a new parameter do_not_verify_remote_gateways\n  - Model VirtualNetworkPeering has a new parameter type\n  - Model VirtualNetworkPeering has a new parameter remote_virtual_network_address_space\n  - Model Subnet has a new parameter application_gateway_ip_configurations\n  - Model Subnet has a new parameter type\n  - Model LoadBalancingRule has a new parameter backend_address_pools\n  - Model EffectiveNetworkSecurityGroupAssociation has a new parameter network_manager\n  - Model BastionHost has a new parameter sku\n  - Model VirtualNetworkGateway has a new parameter extended_location\n  - Model VirtualNetworkGateway has a new parameter nat_rules\n  - Model VirtualNetworkGateway has a new parameter enable_bgp_route_translation_for_nat\n  - Model NetworkInterface has a new parameter workload_type\n  - Model NetworkInterface has a new parameter private_link_service\n  - Model NetworkInterface has a new parameter nic_type\n  - Model NetworkInterface has a new parameter migration_phase\n  - Model Delegation has a new parameter type\n  - Model PublicIPPrefix has a new parameter nat_gateway\n  - Model VirtualNetworkGatewayConnection has a new parameter egress_nat_rules\n  - Model VirtualNetworkGatewayConnection has a new parameter ingress_nat_rules\n  - Model NetworkInterfaceIPConfiguration has a new parameter gateway_load_balancer\n  - Model NetworkInterfaceIPConfiguration has a new parameter type\n  - Model AvailablePrivateEndpointType has a new parameter display_name\n  - Model PublicIPAddress has a new parameter delete_option\n  - Model PublicIPAddress has a new parameter nat_gateway\n  - Model PublicIPAddress has a new parameter service_public_ip_address\n  - Model PublicIPAddress has a new parameter linked_public_ip_address\n  - Model PublicIPAddress has a new parameter migration_phase\n  - Model VirtualHub has a new parameter preferred_routing_gateway\n  - Model BackendAddressPool has a new parameter tunnel_interfaces\n  - Model ServiceTagInformationPropertiesFormat has a new parameter state\n  - Added operation LoadBalancersOperations.begin_swap_public_ip_addresses\n  - Added operation group VirtualNetworkGatewayNatRulesOperations\n\n**Breaking changes**\n\n  - Operation VirtualNetworkPeeringsOperations.begin_create_or_update has a new signature\n  - Model VirtualNetworkGateway no longer has parameter virtual_network_extended_location\n\n## 18.0.0 (2021-03-08)\n\n**Features**\n\n  - Model VpnConnection has a new parameter traffic_selector_policies\n  - Model VirtualNetworkGateway has a new parameter virtual_network_extended_location\n  - Model VirtualNetworkGateway has a new parameter v_net_extended_location_resource_id\n  - Model VpnClientConfiguration has a new parameter vpn_authentication_types\n  - Model LoadBalancerBackendAddress has a new parameter subnet\n  - Model ServiceEndpointPolicy has a new parameter kind\n  - Model FirewallPolicy has a new parameter snat\n  - Model FirewallPolicy has a new parameter insights\n  - Added operation VirtualNetworkGatewayConnectionsOperations.begin_reset_connection\n  - Added operation VpnLinkConnectionsOperations.begin_get_ike_sas\n  - Added operation VpnLinkConnectionsOperations.begin_reset_connection\n\n**Breaking changes**\n\n  - Model VirtualNetworkGateway no longer has parameter extended_location\n  - Model VirtualNetworkGateway no longer has parameter virtual_network_extended_location_resource_id\n\n## 17.1.0 (2021-01-26)\n\n**Features**\n  - Model PrivateEndpoint has a new parameter extended_location\n  - Model VpnGateway has a new parameter nat_rules\n  - Model ExpressRouteConnection has a new parameter express_route_gateway_bypass\n  - Model SecurityRule has a new parameter type\n  - Model PrivateLinkService has a new parameter extended_location\n  - Model Route has a new parameter type\n  - Model Route has a new parameter has_bgp_override\n  - Model RouteTable has a new parameter resource_guid\n  - Model VpnSiteLinkConnection has a new parameter ingress_nat_rules\n  - Model VpnSiteLinkConnection has a new parameter vpn_link_connection_mode\n  - Model VpnSiteLinkConnection has a new parameter egress_nat_rules\n  - Model BackendAddressPool has a new parameter location\n  - Model CustomIpPrefix has a new parameter extended_location\n  - Added operation ExpressRouteGatewaysOperations.begin_update_tags\n  - Added operation VirtualNetworkGatewayConnectionsOperations.begin_get_ike_sas\n  - Added operation group NatRulesOperations\n\n## 17.0.0 (2020-11-25)\n\n**Features**\n\n  - Model PublicIPPrefix has a new parameter extended_location\n  - Model PublicIPPrefixSku has a new parameter tier\n  - Model NatRule has a new parameter translated_fqdn\n  - Model NetworkInterface has a new parameter extended_location\n  - Model ApplicationRule has a new parameter terminate_tls\n  - Model ApplicationRule has a new parameter web_categories\n  - Model ApplicationRule has a new parameter target_urls\n  - Model VirtualNetworkGatewayConnection has a new parameter connection_mode\n  - Model LoadBalancer has a new parameter extended_location\n  - Model PublicIPAddress has a new parameter extended_location\n  - Model LoadBalancerSku has a new parameter tier\n  - Model VirtualNetwork has a new parameter extended_location\n  - Model P2SVpnGateway has a new parameter is_routing_preference_internet\n  - Model IpGroup has a new parameter firewall_policies\n  - Model VpnGateway has a new parameter is_routing_preference_internet\n  - Model VirtualNetworkGateway has a new parameter extended_location\n  - Model VirtualNetworkGateway has a new parameter virtual_network_extended_location_resource_id\n  - Model VirtualNetworkGatewayConnectionListEntity has a new parameter connection_mode\n  - Model FirewallPolicy has a new parameter sku\n  - Model FirewallPolicy has a new parameter transport_security\n  - Model FirewallPolicy has a new parameter identity\n  - Model FirewallPolicy has a new parameter intrusion_detection\n  - Model VirtualHub has a new parameter allow_branch_to_branch_traffic\n  - Model PublicIPAddressSku has a new parameter tier\n  - Model ServiceTagsListResult has a new parameter next_link\n  - Model LoadBalancerBackendAddress has a new parameter load_balancer_frontend_ip_configuration\n  - Added operation NetworkInterfacesOperations.list_cloud_service_network_interfaces\n  - Added operation NetworkInterfacesOperations.get_cloud_service_network_interface\n  - Added operation NetworkInterfacesOperations.list_cloud_service_role_instance_network_interfaces\n  - Added operation PublicIPAddressesOperations.list_cloud_service_role_instance_public_ip_addresses\n  - Added operation PublicIPAddressesOperations.list_cloud_service_public_ip_addresses\n  - Added operation PublicIPAddressesOperations.get_cloud_service_public_ip_address\n  - Added operation group WebCategoriesOperations\n\n**Breaking changes**\n\n  - Operation ConnectionMonitorsOperations.begin_create_or_update has a new signature\n  - Model VirtualHub no longer has parameter enable_virtual_router_route_propogation\n\n## 16.0.0 (2020-09-15)\n\n**Features**\n\n  - Model VirtualNetworkPeering has a new parameter remote_bgp_communities\n  - Model VirtualHub has a new parameter virtual_router_asn\n  - Model VirtualHub has a new parameter routing_state\n  - Model VirtualHub has a new parameter ip_configurations\n  - Model VirtualHub has a new parameter virtual_router_ips\n  - Model VirtualHub has a new parameter enable_virtual_router_route_propogation\n  - Model VirtualHub has a new parameter bgp_connections\n  - Model FirewallPolicyRule has a new parameter description\n  - Model ExpressRouteLinkMacSecConfig has a new parameter sci_state\n  - Model VpnGateway has a new parameter ip_configurations\n  - Model P2SConnectionConfiguration has a new parameter enable_internet_security\n  - Model ConnectionMonitorEndpoint has a new parameter type\n  - Model ConnectionMonitorEndpoint has a new parameter coverage_level\n  - Model ConnectionMonitorEndpoint has a new parameter scope\n  - Model FirewallPolicy has a new parameter rule_collection_groups\n  - Model FirewallPolicy has a new parameter dns_settings\n  - Model NetworkInterface has a new parameter dscp_configuration\n  - Model NetworkVirtualAppliance has a new parameter address_prefix\n  - Model NetworkVirtualAppliance has a new parameter cloud_init_configuration_blobs\n  - Model NetworkVirtualAppliance has a new parameter boot_strap_configuration_blobs\n  - Model NetworkVirtualAppliance has a new parameter cloud_init_configuration\n  - Model NetworkVirtualAppliance has a new parameter inbound_security_rules\n  - Model NetworkVirtualAppliance has a new parameter nva_sku\n  - Model NetworkVirtualAppliance has a new parameter virtual_appliance_sites\n  - Model ConnectionMonitorTcpConfiguration has a new parameter destination_port_behavior\n  - Model ApplicationGatewayHttpListener has a new parameter ssl_profile\n  - Model P2SVpnGateway has a new parameter custom_dns_servers\n  - Model ApplicationGateway has a new parameter private_link_configurations\n  - Model ApplicationGateway has a new parameter trusted_client_certificates\n  - Model ApplicationGateway has a new parameter private_endpoint_connections\n  - Model ApplicationGateway has a new parameter ssl_profiles\n  - Model HubIPAddresses has a new parameter public_i_ps\n  - Model PublicIPPrefix has a new parameter custom_ip_prefix\n  - Model ApplicationGatewayFrontendIPConfiguration has a new parameter private_link_configuration\n  - Model VpnSite has a new parameter o365_policy\n  - Model ConnectivityHop has a new parameter previous_links\n  - Model ConnectivityHop has a new parameter previous_hop_ids\n  - Model ConnectivityHop has a new parameter links\n  - Added operation ExpressRoutePortsOperations.generate_loa\n  - Added operation FlowLogsOperations.update_tags\n  - Added operation HubVirtualNetworkConnectionsOperations.begin_create_or_update\n  - Added operation HubVirtualNetworkConnectionsOperations.begin_delete\n  - Added operation VpnGatewaysOperations.begin_stop_packet_capture\n  - Added operation VpnGatewaysOperations.begin_start_packet_capture\n  - Added operation VpnGatewaysOperations.begin_update_tags\n  - Added operation VpnConnectionsOperations.begin_stop_packet_capture\n  - Added operation VpnConnectionsOperations.begin_start_packet_capture\n  - Added operation PrivateLinkServicesOperations.begin_check_private_link_service_visibility_by_resource_group\n  - Added operation PrivateLinkServicesOperations.begin_check_private_link_service_visibility\n  - Added operation VirtualHubsOperations.begin_get_effective_virtual_hub_routes\n  - Added operation P2SVpnGatewaysOperations.begin_reset\n  - Added operation P2SVpnGatewaysOperations.begin_update_tags\n  - Added operation group CustomIPPrefixesOperations\n  - Added operation group VirtualApplianceSitesOperations\n  - Added operation group DscpConfigurationOperations\n  - Added operation group VirtualHubIpConfigurationOperations\n  - Added operation group VirtualHubBgpConnectionOperations\n  - Added operation group InboundSecurityRuleOperations\n  - Added operation group VirtualApplianceSkusOperations\n  - Added operation group ApplicationGatewayPrivateLinkResourcesOperations\n  - Added operation group ApplicationGatewayPrivateEndpointConnectionsOperations\n  - Added operation group FirewallPolicyRuleCollectionGroupsOperations\n  - Added operation group VirtualHubBgpConnectionsOperations\n\n**Breaking changes**\n\n  - Model VirtualHub no longer has parameter virtual_network_connections\n  - Model FirewallPolicyRule no longer has parameter priority\n  - Model FirewallPolicy no longer has parameter transport_security\n  - Model FirewallPolicy no longer has parameter rule_groups\n  - Model FirewallPolicy no longer has parameter intrusion_system_mode\n  - Model FirewallPolicy no longer has parameter identity\n  - Model NetworkVirtualAppliance no longer has parameter boot_strap_configuration_blob\n  - Model NetworkVirtualAppliance no longer has parameter sku\n  - Model NetworkVirtualAppliance no longer has parameter cloud_init_configuration_blob\n  - Model NatRuleCondition no longer has parameter terminate_tls\n  - Model HubIPAddresses no longer has parameter public_ip_addresses\n  - Model ApplicationRuleCondition no longer has parameter target_urls\n  - Removed operation VpnGatewaysOperations.update_tags\n  - Removed operation PrivateLinkServicesOperations.check_private_link_service_visibility_by_resource_group\n  - Removed operation PrivateLinkServicesOperations.check_private_link_service_visibility\n  - Removed operation P2SVpnGatewaysOperations.update_tags\n\n## 16.0.0b1 (2020-06-17)\n\nThis is beta preview version.\nFor detailed changelog please refer to equivalent stable version 10.2.0 (https://pypi.org/project/azure-mgmt-network/10.2.0/)\n\nThis version uses a next-generation code generator that introduces important breaking changes, but also important new features (like unified authentication and async programming).\n\n**General breaking changes**\n\n- Credential system has been completly revamped:\n\n  - `azure.common.credentials` or `msrestazure.azure_active_directory` instances are no longer supported, use the `azure-identity` classes instead: https://pypi.org/project/azure-identity/\n  - `credentials` parameter has been renamed `credential`\n\n- The `config` attribute no longer exists on a client, configuration should be passed as kwarg. Example: `MyClient(credential, subscription_id, enable_logging=True)`. For a complete set of\n  supported options, see the [parameters accept in init documentation of azure-core](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md#available-policies)\n- You can't import a `version` module anymore, use `__version__` instead\n- Operations that used to return a `msrest.polling.LROPoller` now returns a `azure.core.polling.LROPoller` and are prefixed with `begin_`.\n- Exceptions tree have been simplified and most exceptions are now `azure.core.exceptions.HttpResponseError` (`CloudError` has been removed).\n- Most of the operation kwarg have changed. Some of the most noticeable:\n\n  - `raw` has been removed. Equivalent feature can be found using `cls`, a callback that will give access to internal HTTP response for advanced user\n  - For a complete set of\n  supported options, see the [parameters accept in Request documentation of azure-core](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md#available-policies)\n\n**General new features**\n\n- Type annotations support using `typing`. SDKs are mypy ready.\n- This client has now stable and official support for async. Check the `aio` namespace of your package to find the async client.\n- This client now support natively tracing library like OpenCensus or OpenTelemetry. See this [tracing quickstart](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/core/azure-core-tracing-opentelemetry) for an overview.\n\n\n## 10.2.0 (2020-04-10)\n\n**Features**\n\n  - Model VpnConnection has a new parameter routing_configuration\n  - Model NatRuleCondition has a new parameter terminate_tls\n  - Model HubVirtualNetworkConnection has a new parameter routing_configuration\n  - Model ExpressRouteConnection has a new parameter routing_configuration\n  - Model FirewallPolicy has a new parameter transport_security\n  - Model FirewallPolicy has a new parameter identity\n  - Model FirewallPolicy has a new parameter threat_intel_whitelist\n  - Model ApplicationRuleCondition has a new parameter target_urls\n  - Model P2SConnectionConfiguration has a new parameter routing_configuration\n  - Model BackendAddressPool has a new parameter load_balancer_backend_addresses\n  - Added operation LoadBalancerBackendAddressPoolsOperations.create_or_update\n  - Added operation LoadBalancerBackendAddressPoolsOperations.delete\n  - Added operation group HubRouteTablesOperations\n\n## 10.1.0 (2020-04-10)\n\n**Features**\n\n  - Model VpnConnection has a new parameter dpd_timeout_seconds\n  - Model FirewallPolicy has a new parameter intrusion_system_mode\n  - Model Subnet has a new parameter ip_allocations\n  - Model ApplicationGateway has a new parameter force_firewall_policy_association\n  - Model PrivateEndpoint has a new parameter custom_dns_configs\n  - Model VirtualNetworkGatewayConnection has a new parameter dpd_timeout_seconds\n  - Model VpnClientConfiguration has a new parameter radius_servers\n  - Model VirtualNetwork has a new parameter ip_allocations\n  - Model VirtualHub has a new parameter security_partner_provider\n  - Model VpnServerConfiguration has a new parameter radius_servers\n  - Added operation group PrivateDnsZoneGroupsOperations\n  - Added operation group SecurityPartnerProvidersOperations\n  - Added operation group IpAllocationsOperations\n\n## 10.0.0 (2020-03-31)\n\n**Features**\n\n  - Model VirtualNetworkGatewayConnection has a new parameter use_local_azure_ip_address\n  - Model NetworkRuleCondition has a new parameter source_ip_groups\n  - Model NetworkRuleCondition has a new parameter destination_ip_groups\n  - Model VirtualNetworkGatewayIPConfiguration has a new parameter private_ip_address\n  - Model BgpSettings has a new parameter bgp_peering_addresses\n  - Model ExpressRouteCircuitConnection has a new parameter ipv6_circuit_connection_config\n  - Model ApplicationGatewayHttpListener has a new parameter host_names\n  - Model ApplicationRuleCondition has a new parameter source_ip_groups\n  - Model VirtualNetworkGateway has a new parameter enable_private_ip_address\n  - Model LocalNetworkGateway has a new parameter fqdn\n  - Model VpnSiteLink has a new parameter fqdn\n  - Model NetworkSecurityGroup has a new parameter flow_logs\n  - Added operation NetworkManagementClientOperationsMixin.put_bastion_shareable_link\n  - Added operation NetworkManagementClientOperationsMixin.get_bastion_shareable_link\n  - Added operation NetworkManagementClientOperationsMixin.delete_bastion_shareable_link\n  - Added operation NetworkManagementClientOperationsMixin.disconnect_active_sessions\n  - Added operation NetworkManagementClientOperationsMixin.get_active_sessions\n  - Added operation group NetworkVirtualAppliancesOperations\n\n**Breaking changes**\n\n  - Model ApplicationGatewayHttpListener no longer has parameter hostnames\n\n## 9.0.0 (2020-01-17)\n\n**Features**\n\n  - Model AzureFirewall has a new parameter ip_groups\n  - Model AzureFirewall has a new parameter\n    management_ip_configuration\n  - Model ConnectionMonitorResult has a new parameter endpoints\n  - Model ConnectionMonitorResult has a new parameter\n    connection_monitor_type\n  - Model ConnectionMonitorResult has a new parameter\n    test_configurations\n  - Model ConnectionMonitorResult has a new parameter test_groups\n  - Model ConnectionMonitorResult has a new parameter outputs\n  - Model ConnectionMonitorResult has a new parameter notes\n  - Model AzureFirewallIPConfiguration has a new parameter type\n  - Model ConnectionMonitor has a new parameter endpoints\n  - Model ConnectionMonitor has a new parameter test_configurations\n  - Model ConnectionMonitor has a new parameter test_groups\n  - Model ConnectionMonitor has a new parameter outputs\n  - Model ConnectionMonitor has a new parameter notes\n  - Model DdosSettings has a new parameter protected_ip\n  - Model ApplicationGatewayRewriteRuleActionSet has a new parameter\n    url_configuration\n  - Added operation\n    P2sVpnGatewaysOperations.disconnect_p2s_vpn_connections\n  - Added operation\n    VirtualNetworkGatewaysOperations.disconnect_virtual_network_gateway_vpn_connections\n  - Added operation group FlowLogsOperations\n\n**Breaking changes**\n\n  - Operation\n    ExpressRouteCircuitAuthorizationsOperations.create_or_update has a\n    new signature\n  - Model ConnectionMonitorParameters has a new signature\n\n## 8.0.0 (2019-11-12)\n\n**Features**\n\n  - Model PrivateLinkServiceConnectionState has a new parameter\n    actions_required\n  - Model ConnectivityParameters has a new parameter\n    preferred_ip_version\n\n**Breaking changes**\n\n  - Model PrivateLinkServiceConnectionState no longer has parameter\n    action_required\n\n## 7.0.0 (2019-10-22)\n\n**Features**\n\n  - Model ApplicationGatewayHttpListener has a new parameter hostnames\n  - Model ApplicationGatewayHttpListener has a new parameter\n    firewall_policy\n  - Model ApplicationGatewayPathRule has a new parameter\n    firewall_policy\n  - Model P2SVpnGateway has a new parameter\n    p2_sconnection_configurations\n  - Model VpnServerConfiguration has a new parameter\n    vpn_client_root_certificates\n  - Model VpnServerConfiguration has a new parameter\n    radius_server_root_certificates\n  - Model VpnServerConfiguration has a new parameter\n    radius_client_root_certificates\n  - Model VpnServerConfiguration has a new parameter\n    vpn_client_revoked_certificates\n  - Model ExpressRouteConnection has a new parameter\n    enable_internet_security\n  - Model AzureFirewallApplicationRule has a new parameter\n    source_ip_groups\n  - Model WebApplicationFirewallPolicy has a new parameter\n    path_based_rules\n  - Model WebApplicationFirewallPolicy has a new parameter\n    http_listeners\n  - Model PrivateLinkService has a new parameter enable_proxy_protocol\n  - Model AzureFirewallNetworkRule has a new parameter\n    destination_ip_groups\n  - Model AzureFirewallNetworkRule has a new parameter\n    source_ip_groups\n  - Model AzureFirewallNetworkRule has a new parameter\n    destination_fqdns\n  - Model VirtualWAN has a new parameter virtual_wan_type\n  - Model VirtualHub has a new parameter sku\n  - Model VirtualHub has a new parameter virtual_hub_route_table_v2s\n  - Model AzureFirewallNatRule has a new parameter translated_fqdn\n  - Model AzureFirewallNatRule has a new parameter source_ip_groups\n  - Model PrivateEndpointConnection has a new parameter link_identifier\n  - Model AzureFirewall has a new parameter additional_properties\n  - Added operation RouteFiltersOperations.update_tags\n  - Added operation ServiceEndpointPoliciesOperations.update_tags\n  - Added operation\n    PrivateLinkServicesOperations.get_private_endpoint_connection\n  - Added operation\n    PrivateLinkServicesOperations.list_private_endpoint_connections\n  - Added operation group VirtualHubRouteTableV2sOperations\n  - Added operation group IpGroupsOperations\n\n**Breaking changes**\n\n  - Operation AzureFirewallsOperations.update_tags has a new signature\n  - Operation\n    ExpressRouteCircuitAuthorizationsOperations.create_or_update has a\n    new signature\n  - Model P2SVpnGateway no longer has parameter\n    p2s_connection_configurations\n  - Model VpnServerConfiguration no longer has parameter\n    vpn_server_config_vpn_client_root_certificates\n  - Model VpnServerConfiguration no longer has parameter\n    vpn_server_config_radius_client_root_certificates\n  - Model VpnServerConfiguration no longer has parameter\n    vpn_server_config_vpn_client_revoked_certificates\n  - Model VpnServerConfiguration no longer has parameter\n    vpn_server_config_radius_server_root_certificates\n  - Removed operation RouteFiltersOperations.update\n  - Removed operation VirtualRoutersOperations.update\n  - Removed operation RouteFilterRulesOperations.update\n  - Removed operation VirtualRouterPeeringsOperations.update\n  - Removed operation FirewallPoliciesOperations.update_tags\n  - Removed operation ServiceEndpointPoliciesOperations.update\n\n## 6.0.0 (2019-10-09)\n\n**Features**\n\n  - Model VirtualNetwork has a new parameter bgp_communities\n  - Model VirtualHub has a new parameter azure_firewall\n  - Model VirtualHub has a new parameter security_provider_name\n  - Model P2SVpnGateway has a new parameter\n    p2s_connection_configurations\n  - Model P2SVpnGateway has a new parameter vpn_server_configuration\n  - Model AzureFirewall has a new parameter sku\n  - Model VirtualNetworkGateway has a new parameter\n    inbound_dns_forwarding_endpoint\n  - Model VirtualNetworkGateway has a new parameter\n    enable_dns_forwarding\n  - Added operation\n    P2sVpnGatewaysOperations.get_p2s_vpn_connection_health_detailed\n  - Added operation\n    NetworkManagementClientOperationsMixin.generatevirtualwanvpnserverconfigurationvpnprofile\n  - Added operation group VpnServerConfigurationsOperations\n  - Added operation group\n    VpnServerConfigurationsAssociatedWithVirtualWanOperations\n  - Added operation group AvailableServiceAliasesOperations\n\n**Breaking changes**\n\n  - Model WebApplicationFirewallPolicy has a new required parameter\n    managed_rules\n  - Model P2SVpnGateway no longer has parameter\n    vpn_client_address_pool\n  - Model P2SVpnGateway no longer has parameter custom_routes\n  - Model P2SVpnGateway no longer has parameter\n    p2_svpn_server_configuration\n  - Model VirtualWAN no longer has parameter security_provider_name\n  - Model VirtualWAN no longer has parameter\n    p2_svpn_server_configurations\n  - Model PolicySettings has a new signature\n\n## 5.1.0 (2019-10-03)\n\n**Features**\n\n  - Model VirtualNetworkGateway has a new parameter\n    vpn_gateway_generation\n  - Model ExpressRoutePort has a new parameter identity\n  - Model VirtualNetworkGatewayConnection has a new parameter\n    traffic_selector_policies\n  - Model ExpressRouteLink has a new parameter mac_sec_config\n  - Model VirtualNetworkGatewayConnectionListEntity has a new parameter\n    traffic_selector_policies\n  - Model NetworkInterfaceIPConfiguration has a new parameter\n    private_link_connection_properties\n  - Model ApplicationGatewayRequestRoutingRule has a new parameter\n    priority\n  - Added operation\n    VirtualNetworkGatewayConnectionsOperations.stop_packet_capture\n  - Added operation\n    VirtualNetworkGatewayConnectionsOperations.start_packet_capture\n  - Added operation ConnectionMonitorsOperations.update_tags\n  - Added operation\n    VirtualNetworkGatewaysOperations.stop_packet_capture\n  - Added operation\n    VirtualNetworkGatewaysOperations.start_packet_capture\n  - Added operation group VirtualRoutersOperations\n  - Added operation group VirtualRouterPeeringsOperations\n\n## 5.0.0 (2019-08-27)\n\n**Features**\n\n  - Model PrivateLinkServiceIpConfiguration has a new parameter primary\n  - Model PrivateLinkServiceIpConfiguration has a new parameter etag\n  - Model PrivateLinkServiceIpConfiguration has a new parameter type\n  - Model PrivateLinkServiceIpConfiguration has a new parameter id\n  - Model AzureFirewall has a new parameter virtual_hub\n  - Model AzureFirewall has a new parameter hub_ip_addresses\n  - Model AzureFirewall has a new parameter firewall_policy\n  - Model PrivateLinkServiceConnection has a new parameter\n    provisioning_state\n  - Model PrivateLinkServiceConnection has a new parameter etag\n  - Model PrivateLinkServiceConnection has a new parameter type\n  - Model PublicIPPrefix has a new parameter\n    load_balancer_frontend_ip_configuration\n  - Model ApplicationGatewayOnDemandProbe has a new parameter\n    backend_address_pool\n  - Model ApplicationGatewayOnDemandProbe has a new parameter\n    backend_http_settings\n  - Model PrivateEndpointConnection has a new parameter\n    provisioning_state\n  - Model PrivateEndpointConnection has a new parameter etag\n  - Model PrivateEndpointConnection has a new parameter type\n  - Added operation SubnetsOperations.unprepare_network_policies\n  - Added operation group FirewallPolicyRuleGroupsOperations\n  - Added operation group FirewallPoliciesOperations\n\n**Breaking changes**\n\n  - Model PrivateLinkServiceIpConfiguration no longer has parameter\n    public_ip_address\n  - Model ApplicationGatewayOnDemandProbe no longer has parameter\n    backend_pool_name\n  - Model ApplicationGatewayOnDemandProbe no longer has parameter\n    backend_http_setting_name\n\n## 4.0.0 (2019-07-19)\n\n**Features**\n\n  - Model Subnet has a new parameter\n    private_link_service_network_policies\n  - Model Subnet has a new parameter\n    private_endpoint_network_policies\n  - Model VpnSite has a new parameter vpn_site_links\n  - Model LoadBalancingRule has a new parameter type\n  - Model BackendAddressPool has a new parameter outbound_rules\n  - Model BackendAddressPool has a new parameter type\n  - Model InboundNatPool has a new parameter type\n  - Model OutboundRule has a new parameter type\n  - Model InboundNatRule has a new parameter type\n  - Model Probe has a new parameter type\n  - Model FrontendIPConfiguration has a new parameter\n    private_ip_address_version\n  - Model FrontendIPConfiguration has a new parameter type\n  - Model AvailablePrivateEndpointType has a new parameter name\n  - Model AvailablePrivateEndpointType has a new parameter\n    resource_name\n  - Model VpnConnection has a new parameter vpn_link_connections\n  - Added operation\n    AvailablePrivateEndpointTypesOperations.list_by_resource_group\n  - Added operation AzureFirewallsOperations.update_tags\n  - Added operation\n    PrivateLinkServicesOperations.check_private_link_service_visibility_by_resource_group\n  - Added operation\n    PrivateLinkServicesOperations.list_auto_approved_private_link_services\n  - Added operation\n    PrivateLinkServicesOperations.check_private_link_service_visibility\n  - Added operation\n    PrivateLinkServicesOperations.list_auto_approved_private_link_services_by_resource_group\n  - Added operation group VpnLinkConnectionsOperations\n  - Added operation group VpnSiteLinkConnectionsOperations\n  - Added operation group VpnSiteLinksOperations\n\n**Breaking changes**\n\n  - Operation SubnetsOperations.prepare_network_policies has a new\n    signature\n  - Model PrepareNetworkPoliciesRequest no longer has parameter\n    resource_group_name\n  - Model AvailablePrivateEndpointType no longer has parameter\n    service_name\n  - Removed operation group\n    AvailableResourceGroupPrivateEndpointTypesOperations\n\n## 3.0.0 (2019-05-24)\n\n**Features**\n\n  - Model NetworkInterface has a new parameter private_endpoint\n  - Model ServiceAssociationLink has a new parameter type\n  - Model ServiceAssociationLink has a new parameter allow_delete\n  - Model ServiceAssociationLink has a new parameter locations\n  - Model Subnet has a new parameter private_endpoints\n  - Model PatchRouteFilter has a new parameter ipv6_peerings\n  - Model ExpressRouteCircuitPeering has a new parameter type\n  - Model ApplicationGatewayProbe has a new parameter port\n  - Model RouteFilter has a new parameter ipv6_peerings\n  - Model ExpressRouteCircuitAuthorization has a new parameter type\n  - Model PeerExpressRouteCircuitConnection has a new parameter type\n  - Model AzureFirewall has a new parameter zones\n  - Model ResourceNavigationLink has a new parameter type\n  - Model ExpressRouteCircuitConnection has a new parameter type\n  - Model VpnConnection has a new parameter\n    use_policy_based_traffic_selectors\n  - Model NatGateway has a new parameter zones\n  - Model VpnClientConfiguration has a new parameter aad_audience\n  - Model VpnClientConfiguration has a new parameter aad_issuer\n  - Model VpnClientConfiguration has a new parameter aad_tenant\n  - Added operation\n    VirtualNetworkGatewaysOperations.get_vpnclient_connection_health\n  - Added operation\n    P2sVpnGatewaysOperations.get_p2s_vpn_connection_health\n  - Added operation VpnGatewaysOperations.reset\n  - Added operation group BastionHostsOperations\n  - Added operation group NetworkManagementClientOperationsMixin\n  - Added operation group PrivateLinkServicesOperations\n  - Added operation group\n    AvailableResourceGroupPrivateEndpointTypesOperations\n  - Added operation group ServiceAssociationLinksOperations\n  - Added operation group ResourceNavigationLinksOperations\n  - Added operation group ServiceTagsOperations\n  - Added operation group PrivateEndpointsOperations\n  - Added operation group AvailablePrivateEndpointTypesOperations\n\n**Breaking changes**\n\n  - Model NetworkInterface no longer has parameter interface_endpoint\n  - Model Subnet no longer has parameter interface_endpoints\n  - Removed operation group InterfaceEndpointsOperations\n\n**General Breaking changes**\n\nThis version uses a next-generation code generator that *might*\nintroduce breaking changes if you were importing from the v20xx_yy_zz\nAPI folders. In summary, some modules were incorrectly\nvisible/importable and have been renamed. This fixed several issues\ncaused by usage of classes that were not supposed to be used in the\nfirst place.\n\n  - NetworkManagementClient cannot be imported from\n    `azure.mgmt.network.v20xx_yy_zz.network_management_client`\n    anymore (import from `azure.mgmt.network.v20xx_yy_zz` works like\n    before)\n  - NetworkManagementClientConfiguration import has been moved from\n    `azure.mgmt.network.v20xx_yy_zz.network_management_client` to\n    `azure.mgmt.network.v20xx_yy_zz`\n  - A model `MyClass` from a \"models\" sub-module cannot be imported\n    anymore using `azure.mgmt.network.v20xx_yy_zz.models.my_class`\n    (import from `azure.mgmt.network.v20xx_yy_zz.models` works like\n    before)\n  - An operation class `MyClassOperations` from an `operations`\n    sub-module cannot be imported anymore using\n    `azure.mgmt.network.v20xx_yy_zz.operations.my_class_operations`\n    (import from `azure.mgmt.network.v20xx_yy_zz.operations` works\n    like before)\n\nLast but not least, HTTP connection pooling is now enabled by default.\nYou should always use a client as a context manager, or call close(), or\nuse no more than one client per process.\n\n## 2.7.0 (2019-04-25)\n\n**Features**\n\n  - Model P2SVpnGateway has a new parameter custom_routes\n  - Model Subnet has a new parameter nat_gateway\n  - Model VpnConnection has a new parameter\n    use_local_azure_ip_address\n  - Model EffectiveRoute has a new parameter\n    disable_bgp_route_propagation\n  - Model VirtualNetworkGateway has a new parameter custom_routes\n  - Added operation\n    ApplicationGatewaysOperations.backend_health_on_demand\n  - Added operation DdosProtectionPlansOperations.update_tags\n  - Added operation group NatGatewaysOperations\n\n**Bug fixes and preview API updates**\n\n  - Parameter output_blob_sas_url of model\n    GetVpnSitesConfigurationRequest is now required\n  - Operation VpnSitesConfigurationOperations.download has a new\n    signature\n  - Model ExpressRouteCircuit no longer has parameter\n    allow_global_reach\n\n## 2.6.0 (2019-03-21)\n\n**Features**\n\n  - Model ApplicationGateway has a new parameter firewall_policy\n  - Model ApplicationGatewayBackendHealthServer has a new parameter\n    health_probe_log\n  - Model ExpressRouteCircuitPeering has a new parameter\n    peered_connections\n  - Model ExpressRouteCircuit has a new parameter global_reach_enabled\n  - Added operation group PeerExpressRouteCircuitConnectionsOperations\n  - Added operation group WebApplicationFirewallPoliciesOperations\n\n**Bugfixes**\n\n  - Fix incorrect operation\n    ApplicationGatewaysOperations.list_available_request_headers\n  - Fix incorrect operation\n    ApplicationGatewaysOperations.list_available_server_variables\n  - Fix incorrect operation\n    ApplicationGatewaysOperations.list_available_response_headers\n\n## 2.6.0rc1 (2019-02-15)\n\n**Features**\n\n  - Model AzureFirewall has a new parameter threat_intel_mode\n  - Model ApplicationGatewayRewriteRule has a new parameter conditions\n  - Model ApplicationGatewayRewriteRule has a new parameter\n    rule_sequence\n  - Model ApplicationGatewayAutoscaleConfiguration has a new parameter\n    max_capacity\n  - Added operation SubnetsOperations.prepare_network_policies\n\n## 2.5.1 (2019-01-15)\n\n**Features**\n\n  - Add missing ddos_custom_policies operations\n\n## 2.5.0 (2019-01-04)\n\n**Features**\n\n  - Model PublicIPAddress has a new parameter ddos_settings\n  - Added operation\n    ApplicationGatewaysOperations.list_available_request_headers\n  - Added operation\n    ApplicationGatewaysOperations.list_available_server_variables\n  - Added operation\n    ApplicationGatewaysOperations.list_available_response_headers\n  - Added operation ApplicationSecurityGroupsOperations.update_tags\n\n## 2.4.0 (2018-11-27)\n\n**Features**\n\n  - Model ApplicationGatewaySslCertificate has a new parameter\n    key_vault_secret_id\n  - Model ApplicationGatewayRequestRoutingRule has a new parameter\n    rewrite_rule_set\n  - Model FlowLogInformation has a new parameter format\n  - Model ApplicationGateway has a new parameter identity\n  - Model ApplicationGateway has a new parameter rewrite_rule_sets\n  - Model TrafficAnalyticsConfigurationProperties has a new parameter\n    traffic_analytics_interval\n  - Model ApplicationGatewayPathRule has a new parameter\n    rewrite_rule_set\n  - Model ApplicationGatewayUrlPathMap has a new parameter\n    default_rewrite_rule_set\n\n**Breaking changes**\n\n  - Model ApplicationGatewayTrustedRootCertificate no longer has\n    parameter keyvault_secret_id (replaced by key_vault_secret_id)\n\n## 2.3.0 (2018-11-07)\n\n**Features**\n\n  - Model ApplicationGatewayWebApplicationFirewallConfiguration has a\n    new parameter exclusions\n  - Model ApplicationGatewayWebApplicationFirewallConfiguration has a\n    new parameter file_upload_limit_in_mb\n  - Model ApplicationGatewayWebApplicationFirewallConfiguration has a\n    new parameter max_request_body_size_in_kb\n  - Model ApplicationGatewayHttpListener has a new parameter\n    custom_error_configurations\n  - Model ExpressRouteCircuit has a new parameter bandwidth_in_gbps\n  - Model ExpressRouteCircuit has a new parameter stag\n  - Model ExpressRouteCircuit has a new parameter express_route_port\n  - Model EvaluatedNetworkSecurityGroup has a new parameter applied_to\n  - Model NetworkConfigurationDiagnosticResult has a new parameter\n    profile\n  - Model ApplicationGateway has a new parameter\n    custom_error_configurations\n  - Added operation group LoadBalancerOutboundRulesOperations\n  - Added operation group ExpressRouteLinksOperations\n  - Added operation group ExpressRoutePortsOperations\n  - Added operation group ExpressRoutePortsLocationsOperations\n\n**Breaking changes**\n\n  - Model NetworkConfigurationDiagnosticResult no longer has parameter\n    traffic_query\n  - Operation\n    NetworkWatchersOperations.get_network_configuration_diagnostic\n    has a new signature (no longer takes target_resource_id, queries,\n    but a NetworkConfigurationDiagnosticParameters instance)\n\n## 2.2.1 (2018-09-14)\n\n**Bugfixes**\n\n  - Fix unexpected exception with network_profiles.delete\n\n## 2.2.0 (2018-09-11)\n\nDefault API version is now 2018-08-01\n\n**Features**\n\n  - Model AzureFirewall has a new parameter nat_rule_collections\n  - Model VirtualHub has a new parameter route_table\n  - Model VirtualHub has a new parameter virtual_network_connections\n  - Model VirtualHub has a new parameter p2_svpn_gateway\n  - Model VirtualHub has a new parameter express_route_gateway\n  - Model VirtualHub has a new parameter vpn_gateway\n  - Model VirtualWAN has a new parameter allow_vnet_to_vnet_traffic\n  - Model VirtualWAN has a new parameter\n    p2_svpn_server_configurations\n  - Model VirtualWAN has a new parameter\n    office365_local_breakout_category\n  - Model VirtualWAN has a new parameter\n    allow_branch_to_branch_traffic\n  - Model VirtualWAN has a new parameter security_provider_name\n  - Model VpnSite has a new parameter is_security_site\n  - Model VpnConnection has a new parameter connection_bandwidth\n  - Model VpnConnection has a new parameter enable_internet_security\n  - Model VpnConnection has a new parameter\n    vpn_connection_protocol_type\n  - Model VpnConnection has a new parameter enable_rate_limiting\n  - Model ServiceEndpointPolicy has a new parameter subnets\n  - Model AzureFirewallApplicationRule has a new parameter fqdn_tags\n  - Model AzureFirewallApplicationRule has a new parameter target_fqdns\n  - Model VpnGateway has a new parameter vpn_gateway_scale_unit\n  - Model ApplicationGatewayBackendHttpSettings has a new parameter\n    trusted_root_certificates\n  - Model VirtualNetworkGatewayConnection has a new parameter\n    connection_protocol\n  - Model ExpressRouteCircuitPeering has a new parameter\n    express_route_connection\n  - Model Subnet has a new parameter delegations\n  - Model Subnet has a new parameter address_prefixes\n  - Model Subnet has a new parameter ip_configuration_profiles\n  - Model Subnet has a new parameter service_association_links\n  - Model Subnet has a new parameter interface_endpoints\n  - Model Subnet has a new parameter purpose\n  - Model ApplicationGateway has a new parameter\n    trusted_root_certificates\n  - Model NetworkInterface has a new parameter tap_configurations\n  - Model NetworkInterface has a new parameter hosted_workloads\n  - Model NetworkInterface has a new parameter interface_endpoint\n  - Model VirtualNetworkGatewayConnectionListEntity has a new parameter\n    connection_protocol\n  - Model HubVirtualNetworkConnection has a new parameter\n    enable_internet_security\n  - Model NetworkInterfaceIPConfiguration has a new parameter\n    virtual_network_taps\n  - Added operation\n    VirtualNetworkGatewaysOperations.reset_vpn_client_shared_key\n  - Added operation group ExpressRouteConnectionsOperations\n  - Added operation group AzureFirewallFqdnTagsOperations\n  - Added operation group VirtualNetworkTapsOperations\n  - Added operation group NetworkProfilesOperations\n  - Added operation group P2sVpnServerConfigurationsOperations\n  - Added operation group AvailableDelegationsOperations\n  - Added operation group InterfaceEndpointsOperations\n  - Added operation group P2sVpnGatewaysOperations\n  - Added operation group AvailableResourceGroupDelegationsOperations\n  - Added operation group ExpressRouteGatewaysOperations\n  - Added operation group NetworkInterfaceTapConfigurationsOperations\n\n**Breaking changes**\n\n  - Model VirtualHub no longer has parameter\n    hub_virtual_network_connections\n  - Model VpnConnection no longer has parameter\n    connection_bandwidth_in_mbps\n  - Model AzureFirewallApplicationRule no longer has parameter\n    target_urls\n  - Model VpnGateway no longer has parameter policies\n  - Model AzureFirewallIPConfiguration no longer has parameter\n    internal_public_ip_address\n  - Model ApplicationGatewayAutoscaleConfiguration has a new signature\n  - Renamed virtual_wa_ns to virtual_wans\n\n## 2.1.0 (2018-08-28)\n\nDefault API version is now 2018-07-01\n\n**Features**\n\n  - Model ExpressRouteCircuit has a new parameter allow_global_reach\n  - Model PublicIPAddress has a new parameter public_ip_prefix\n  - Model BackendAddressPool has a new parameter outbound_rule\n    (replaces outbound_nat_rule)\n  - Model FrontendIPConfiguration has a new parameter outbound_rules\n    (replaces outbound_nat_rule)\n  - Model FrontendIPConfiguration has a new parameter public_ip_prefix\n  - Model LoadBalancingRule has a new parameter enable_tcp_reset\n  - Model VirtualNetworkGatewayConnectionListEntity has a new parameter\n    express_route_gateway_bypass\n  - Model VirtualNetworkGatewayConnection has a new parameter\n    express_route_gateway_bypass\n  - Model Subnet has a new parameter service_endpoint_policies\n  - Model InboundNatPool has a new parameter enable_tcp_reset\n  - Model LoadBalancer has a new parameter outbound_rules (replaces\n    outbound_nat_rule)\n  - Model InboundNatRule has a new parameter enable_tcp_reset\n  - Added operation group ServiceEndpointPolicyDefinitionsOperations\n  - Added operation group ServiceEndpointPoliciesOperations\n  - Added operation group PublicIPPrefixesOperations\n\n**Breaking changes**\n\n  - Model BackendAddressPool no longer has parameter outbound_nat_rule\n    (now outbound_rules)\n  - Model FrontendIPConfiguration no longer has parameter\n    outbound_nat_rules (now outbound_rules)\n  - Model LoadBalancer no longer has parameter outbound_nat_rules (now\n    outbound_rules)\n\n## 2.0.1 (2018-08-07)\n\n**Bugfixes**\n\n  - Fix packet_captures.get_status empty output\n\n## 2.0.0 (2018-07-27)\n\n**Features**\n\n  - Supports now 2018-06-01 and 2018-04-01. 2018-06-01 is the new\n    default.\n  - Client class can be used as a context manager to keep the underlying\n    HTTP session open for performance\n\n**Features starting 2018-04-01**\n\n  - Model FlowLogInformation has a new parameter\n    flow_analytics_configuration\n  - Model ApplicationGateway has a new parameter enable_fips\n  - Model ApplicationGateway has a new parameter\n    autoscale_configuration\n  - Model ApplicationGateway has a new parameter zones\n  - Model ConnectionSharedKey has a new parameter id\n  - Added operation group HubVirtualNetworkConnectionsOperations\n  - Added operation group AzureFirewallsOperations\n  - Added operation group VirtualHubsOperations\n  - Added operation group VpnGatewaysOperations\n  - Added operation group VpnSitesOperations\n  - Added operation group VirtualWANsOperations\n  - Added operation group VpnSitesConfigurationOperations\n  - Added operation group VpnConnectionsOperations\n\n**Breaking changes starting 2018-04-01**\n\n  - Operation\n    VirtualNetworkGatewayConnectionsOperations.set_shared_key has a\n    new parameter \"id\"\n  - Operation DdosProtectionPlansOperations.create_or_update parameter\n    \"parameters\" has been flatten to \"tags/location\"\n\n**Breaking changes starting 2018-06-01**\n\n  - The new class VpnConnection introduced in 2018-04-01 renamed\n    \"connection_bandwidth\" to \"connection_bandwidth_in_mbps\"\n\n## 2.0.0rc3 (2018-06-14)\n\n**Bugfixes**\n\n  - API version 2018-02-01 enum Probe now supports HTTPS (standard SKU\n    load balancer)\n  - API version 2015-06-15 adding missing \"primary\" in\n    NetworkInterfaceIPConfiguration\n\n## 2.0.0rc2 (2018-04-03)\n\n**Features**\n\n  - All clients now support Azure profiles.\n  - API version 2018-02-01 is now the default\n  - Express Route Circuit Connection (considered preview)\n  - Express Route Provider APIs\n  - GetTopologyOperation supports query parameter\n  - Feature work for setting Custom IPsec/IKE policy for Virtual Network\n    Gateway point-to-site clients\n  - DDoS Protection Plans\n\n## 2.0.0rc1 (2018-03-07)\n\n**General Breaking changes**\n\nThis version uses a next-generation code generator that *might*\nintroduce breaking changes.\n\n  - Model signatures now use only keyword-argument syntax. All\n    positional arguments must be re-written as keyword-arguments. To\n    keep auto-completion in most cases, models are now generated for\n    Python 2 and Python 3. Python 3 uses the \"*\" syntax for\n    keyword-only arguments.\n  - Enum types now use the \"str\" mixin (class AzureEnum(str, Enum)) to\n    improve the behavior when unrecognized enum values are encountered.\n    While this is not a breaking change, the distinctions are important,\n    and are documented here:\n    <https://docs.python.org/3/library/enum.html#others> At a glance:\n      - \"is\" should not be used at all.\n      - \"format\" will return the string value, where \"%s\" string\n        formatting will return `NameOfEnum.stringvalue`. Format syntax\n        should be prefered.\n  - New Long Running Operation:\n      - Return type changes from\n        `msrestazure.azure_operation.AzureOperationPoller` to\n        `msrest.polling.LROPoller`. External API is the same.\n      - Return type is now **always** a `msrest.polling.LROPoller`,\n        regardless of the optional parameters used.\n      - The behavior has changed when using `raw=True`. Instead of\n        returning the initial call result as `ClientRawResponse`,\n        without polling, now this returns an LROPoller. After polling,\n        the final resource will be returned as a `ClientRawResponse`.\n      - New `polling` parameter. The default behavior is\n        `Polling=True` which will poll using ARM algorithm. When\n        `Polling=False`, the response of the initial call will be\n        returned without polling.\n      - `polling` parameter accepts instances of subclasses of\n        `msrest.polling.PollingMethod`.\n      - `add_done_callback` will no longer raise if called after\n        polling is finished, but will instead execute the callback right\n        away.\n\n**Network Breaking changes**\n\n  - Operation network_watcher.get_topology changed method signature\n\n**Features**\n\n  - Add API Version 2018-01-01. Not default yet in this version.\n  - Add ConnectionMonitor operation group (2017-10/11-01)\n  - Add target_virtual_network / target_subnet to topology_parameter\n    (2017-10/11-01)\n  - Add idle_timeout_in_minutes / enable_floating_ip to\n    inbound_nat_pool (2017-11-01)\n\n**Bugfixes**\n\n  - Fix peer_asn validation rules (2017-10/11-01)\n\n## 1.7.1 (2017-12-20)\n\n**Bugfixes**\n\nFix `SecurityRule` constructor parameters order to respect the one\nused until 1.5.0. This indeed introduces a breaking change for users of\n1.6.0 and 1.7.0, but this constructor signature change was not expected,\nand following semantic versionning all 1.x versions should follow the\nsame signature.\n\nThis fixes third party library, like Ansible, that expects (for\nexcellent reasons) this SDK to follow strictly semantic versionning with\nregards to breaking changes and have their dependency system asking for\n`>=1.0;<2.0`\n\n## 1.7.0 (2017-12-14)\n\n**Features**\n\n  - Add iptag. IpTag is way to restrict the range of IPaddresses to be\n    allocated.\n  - Default API version is now 2017-11-01\n\n**Bug fixes**\n\n  - Added valid ASN range in ExpressRouteCircuitPeering (#1672)\n\n## 1.6.0 (2017-11-28)\n\n**Bug fixes**\n\n  - Accept space in location for \"usage\" (i.e. \"west us\").\n  - sourceAddressPrefix, sourceAddressPrefixes and\n    sourceApplicationSecurityGroups are mutually exclusive and one only\n    is needed, meaning none of them is required by itself. Thus,\n    sourceAddressPrefix is not required anymore.\n  - destinationAddressPrefix, destinationAddressPrefixes and\n    destinationApplicationSecurityGroups are mutually exclusive and one\n    only is needed, meaning none of them is required by itself. Thus,\n    destinationAddressPrefix is not required anymore.\n  - Client now accept unicode string as a valid subscription_id\n    parameter\n  - Restore missing azure.mgmt.network.__version__\n\n**Features**\n\n  - Client now accept a \"profile\" parameter to define API version per\n    operation group.\n  - Add update_tags to most of the resources\n  - Add operations group to list all available rest API operations\n  - NetworkInterfaces_ListVirtualMachineScaleSetIpConfigurations\n  - NetworkInterfaces_GetVirtualMachineScaleSetIpConfiguration\n\n## 1.5.0 (2017-09-26)\n\n**Features**\n\n  - Availability Zones\n  - Add network_watchers.get_azure_reachability_report\n  - Add network_watchers.list_available_providers\n  - Add virtual_network_gateways.supported_vpn_devices\n  - Add virtual_network_gateways.vpn_device_configuration_script\n\n## 1.5.0rc1 (2017-09-18)\n\n**Features**\n\n  - Add ApiVersion 2017-09-01 (new default)\n  - Add application_security_groups (ASG) operations group\n  - Add ASG to network_interface operations\n  - Add ASG to IP operations\n  - Add source/destination ASGs to network security rules\n  - Add DDOS protection and VM protection to vnet operations\n\n**Bug fix**\n\n  - check_dns_name_availability now correctly defines\n    \"domain_name_label\" as required and not optional\n\n## 1.4.0 (2017-08-23)\n\n**Features**\n\n  - Add ApiVersion 2017-08-01 (new default)\n  - Added in both 2017-08-01 and 2017-06-01:\n      - virtual_network_gateways.list_connections method\n      - default_security_rules operations group\n      - inbound_nat_rules operations group\n      - load_balancer_backend_address_pools operations group\n      - load_balancer_frontend_ip_configurations operations group\n      - load_balancer_load_balancing_rules operations group\n      - load_balancer_network_interfaces operations group\n      - load_balancer_probes operations group\n      - network_interface_ip_configurations operations group\n      - network_interface_load_balancers operations group\n      - EffectiveNetworkSecurityGroup.tag_map attribute\n      - EffectiveNetworkSecurityRule.source_port_ranges attribute\n      - EffectiveNetworkSecurityRule.destination_port_ranges attribute\n      - EffectiveNetworkSecurityRule.source_address_prefixes attribute\n      - EffectiveNetworkSecurityRule.destination_address_prefixes\n        attribute\n      - SecurityRule.source_port_ranges attribute\n      - SecurityRule.destination_port_ranges attribute\n      - SecurityRule.source_address_prefixes attribute\n      - SecurityRule.destination_address_prefixes attribute\n  - Added in 2017-08-01 only\n      - PublicIPAddress.sku\n      - LoadBalancer.sku\n\n**Changes on preview**\n\n>   - \"available_private_access_services\" is renamed\n>     \"available_endpoint_services\"\n>   - \"radius_secret\" parsing fix (was unable to work in 1.3.0)\n\n## 1.3.0 (2017-07-10)\n\n**Preview features**\n\n  - Adding \"available_private_access_services\" operation group\n    (preview)\n  - Adding \"radius_secret\" in Virtual Network Gateway (preview)\n\n**Bug Fixes**\n\n  - VMSS Network ApiVersion fix in 2017-06-01 (point to 2017-03-30)\n\n## 1.2.0 (2017-07-03)\n\n**Features**\n\nAdding the following features to both 2017-03-01 and 2017-06-01:\n\n  - express route ipv6\n  - VMSS Network (get, list, etc.)\n  - VMSS Public IP (get, list, etc.)\n\n## 1.1.0 (2017-06-27)\n\n**Features**\n\n  - Add list_usage in virtual networks (2017-03-01)\n  - Add ApiVersion 2017-06-01 (new default)\n\nThis new ApiVersion is for new Application Gateway features:\n\n>   - ApplicationGateway Ssl Policy custom cipher suites support [new\n>     properties added to Sslpolicy Property of\n>     ApplciationGatewayPropertiesFormat]\n>   - Get AvailableSslOptions api [new resource\n>     ApplicationGatewayAvailableSslOptions and child resource\n>     ApplicationGatewayPredefinedPolicy]\n>   - Redirection support [new child resource\n>     ApplicationGatewayRedirectConfiguration for Application Gateway,\n>     new properties in UrlPathMap, PathRules and RequestRoutingRule]\n>   - Azure Websites feature support [new properties in\n>     ApplicationGatewayBackendHttpSettingsPropertiesFormat,\n>     ApplicationGatewayProbePropertiesFormat, schema for property\n>     ApplicationGatewayProbeHealthResponseMatch]\n\n## 1.0.0 (2017-05-15)\n\n  - Tag 1.0.0rc3 as stable (same content)\n\n## 1.0.0rc3 (2017-05-03)\n\n**Features**\n\n  - Added check connectivity api to network watcher\n\n## 1.0.0rc2 (2017-04-18)\n\n**Features**\n\n  - Add ApiVersion 2016-12-01 and 2017-03-01\n  - 2017-03-01 is now default ApiVersion\n\n**Bugfixes**\n\n  - Restore access to NetworkWatcher and PacketCapture from 2016-09-01\n\n## 1.0.0rc1 (2017-04-11)\n\n**Features**\n\nTo help customers with sovereign clouds (not general Azure), this\nversion has official multi ApiVersion support for 2015-06-15 and\n2016-09-01\n\n## 0.30.1 (2017-03-27)\n\n  - Add NetworkWatcher\n  - Add PacketCapture\n  - Add new methods to Virtualk Network Gateway\n      - get_bgp_peer_status\n      - get_learned_routes\n      - get_advertised_routes\n\n## 0.30.0 (2016-11-01)\n\n  - Initial preview release. Based on API version 2016-09-01.\n\n## 0.20.0 (2015-08-31)\n\n  - Initial preview release. Based on API version 2015-05-01-preview.\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Microsoft Azure Network Management Client Library for Python",
    "version": "25.3.0",
    "project_urls": {
        "Homepage": "https://github.com/Azure/azure-sdk-for-python"
    },
    "split_keywords": [
        "azure",
        "azure sdk"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d81ffef7bc3eb004981e6740dd9ca21f3e2c245a00c3336eff07d936999de6ac",
                "md5": "c4bb765a10e59ade889972f9108617b5",
                "sha256": "87b5338d14c957bd3a28a5ec85fb74043749d1a16a48cd5978ef51c4a1036af3"
            },
            "downloads": -1,
            "filename": "azure_mgmt_network-25.3.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c4bb765a10e59ade889972f9108617b5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 660930,
            "upload_time": "2024-02-22T05:20:30",
            "upload_time_iso_8601": "2024-02-22T05:20:30.476437Z",
            "url": "https://files.pythonhosted.org/packages/d8/1f/fef7bc3eb004981e6740dd9ca21f3e2c245a00c3336eff07d936999de6ac/azure_mgmt_network-25.3.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2620c09aefc1f7a14b90161589b0dc9aeaef60b4b8a5edcad2e06f8af9086018",
                "md5": "e85f579a9c941c9a34686d21dda6588f",
                "sha256": "dce2cafb1ae0e563e0b5efc537dc98a7c0ad824d4261e64bed75f788196dd5c6"
            },
            "downloads": -1,
            "filename": "azure-mgmt-network-25.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "e85f579a9c941c9a34686d21dda6588f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 727785,
            "upload_time": "2024-02-22T05:20:26",
            "upload_time_iso_8601": "2024-02-22T05:20:26.401570Z",
            "url": "https://files.pythonhosted.org/packages/26/20/c09aefc1f7a14b90161589b0dc9aeaef60b4b8a5edcad2e06f8af9086018/azure-mgmt-network-25.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-22 05:20:26",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Azure",
    "github_project": "azure-sdk-for-python",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "azure-mgmt-network"
}
        
Elapsed time: 0.27431s