Skip to content

Commit 3bf5688

Browse files
authored
generate network track2 ga version (#13810)
1 parent 937a148 commit 3bf5688

File tree

5,853 files changed

+1214029
-912114
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,853 files changed

+1214029
-912114
lines changed

sdk/network/azure-mgmt-network/CHANGELOG.md

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,92 @@
11
# Release History
22

3+
## 16.0.0 (2020-09-15)
4+
5+
**Features**
6+
7+
- Model VirtualNetworkPeering has a new parameter remote_bgp_communities
8+
- Model VirtualHub has a new parameter virtual_router_asn
9+
- Model VirtualHub has a new parameter routing_state
10+
- Model VirtualHub has a new parameter ip_configurations
11+
- Model VirtualHub has a new parameter virtual_router_ips
12+
- Model VirtualHub has a new parameter enable_virtual_router_route_propogation
13+
- Model VirtualHub has a new parameter bgp_connections
14+
- Model FirewallPolicyRule has a new parameter description
15+
- Model ExpressRouteLinkMacSecConfig has a new parameter sci_state
16+
- Model VpnGateway has a new parameter ip_configurations
17+
- Model P2SConnectionConfiguration has a new parameter enable_internet_security
18+
- Model ConnectionMonitorEndpoint has a new parameter type
19+
- Model ConnectionMonitorEndpoint has a new parameter coverage_level
20+
- Model ConnectionMonitorEndpoint has a new parameter scope
21+
- Model FirewallPolicy has a new parameter rule_collection_groups
22+
- Model FirewallPolicy has a new parameter dns_settings
23+
- Model NetworkInterface has a new parameter dscp_configuration
24+
- Model NetworkVirtualAppliance has a new parameter address_prefix
25+
- Model NetworkVirtualAppliance has a new parameter cloud_init_configuration_blobs
26+
- Model NetworkVirtualAppliance has a new parameter boot_strap_configuration_blobs
27+
- Model NetworkVirtualAppliance has a new parameter cloud_init_configuration
28+
- Model NetworkVirtualAppliance has a new parameter inbound_security_rules
29+
- Model NetworkVirtualAppliance has a new parameter nva_sku
30+
- Model NetworkVirtualAppliance has a new parameter virtual_appliance_sites
31+
- Model ConnectionMonitorTcpConfiguration has a new parameter destination_port_behavior
32+
- Model ApplicationGatewayHttpListener has a new parameter ssl_profile
33+
- Model P2SVpnGateway has a new parameter custom_dns_servers
34+
- Model ApplicationGateway has a new parameter private_link_configurations
35+
- Model ApplicationGateway has a new parameter trusted_client_certificates
36+
- Model ApplicationGateway has a new parameter private_endpoint_connections
37+
- Model ApplicationGateway has a new parameter ssl_profiles
38+
- Model HubIPAddresses has a new parameter public_i_ps
39+
- Model PublicIPPrefix has a new parameter custom_ip_prefix
40+
- Model ApplicationGatewayFrontendIPConfiguration has a new parameter private_link_configuration
41+
- Model VpnSite has a new parameter o365_policy
42+
- Model ConnectivityHop has a new parameter previous_links
43+
- Model ConnectivityHop has a new parameter previous_hop_ids
44+
- Model ConnectivityHop has a new parameter links
45+
- Added operation ExpressRoutePortsOperations.generate_loa
46+
- Added operation FlowLogsOperations.update_tags
47+
- Added operation HubVirtualNetworkConnectionsOperations.begin_create_or_update
48+
- Added operation HubVirtualNetworkConnectionsOperations.begin_delete
49+
- Added operation VpnGatewaysOperations.begin_stop_packet_capture
50+
- Added operation VpnGatewaysOperations.begin_start_packet_capture
51+
- Added operation VpnGatewaysOperations.begin_update_tags
52+
- Added operation VpnConnectionsOperations.begin_stop_packet_capture
53+
- Added operation VpnConnectionsOperations.begin_start_packet_capture
54+
- Added operation PrivateLinkServicesOperations.begin_check_private_link_service_visibility_by_resource_group
55+
- Added operation PrivateLinkServicesOperations.begin_check_private_link_service_visibility
56+
- Added operation VirtualHubsOperations.begin_get_effective_virtual_hub_routes
57+
- Added operation P2SVpnGatewaysOperations.begin_reset
58+
- Added operation P2SVpnGatewaysOperations.begin_update_tags
59+
- Added operation group CustomIPPrefixesOperations
60+
- Added operation group VirtualApplianceSitesOperations
61+
- Added operation group DscpConfigurationOperations
62+
- Added operation group VirtualHubIpConfigurationOperations
63+
- Added operation group VirtualHubBgpConnectionOperations
64+
- Added operation group InboundSecurityRuleOperations
65+
- Added operation group VirtualApplianceSkusOperations
66+
- Added operation group ApplicationGatewayPrivateLinkResourcesOperations
67+
- Added operation group ApplicationGatewayPrivateEndpointConnectionsOperations
68+
- Added operation group FirewallPolicyRuleCollectionGroupsOperations
69+
- Added operation group VirtualHubBgpConnectionsOperations
70+
71+
**Breaking changes**
72+
73+
- Model VirtualHub no longer has parameter virtual_network_connections
74+
- Model FirewallPolicyRule no longer has parameter priority
75+
- Model FirewallPolicy no longer has parameter transport_security
76+
- Model FirewallPolicy no longer has parameter rule_groups
77+
- Model FirewallPolicy no longer has parameter intrusion_system_mode
78+
- Model FirewallPolicy no longer has parameter identity
79+
- Model NetworkVirtualAppliance no longer has parameter boot_strap_configuration_blob
80+
- Model NetworkVirtualAppliance no longer has parameter sku
81+
- Model NetworkVirtualAppliance no longer has parameter cloud_init_configuration_blob
82+
- Model NatRuleCondition no longer has parameter terminate_tls
83+
- Model HubIPAddresses no longer has parameter public_ip_addresses
84+
- Model ApplicationRuleCondition no longer has parameter target_urls
85+
- Removed operation VpnGatewaysOperations.update_tags
86+
- Removed operation PrivateLinkServicesOperations.check_private_link_service_visibility_by_resource_group
87+
- Removed operation PrivateLinkServicesOperations.check_private_link_service_visibility
88+
- Removed operation P2SVpnGatewaysOperations.update_tags
89+
390
## 16.0.0b1 (2020-06-17)
491

592
This is beta preview version.

sdk/network/azure-mgmt-network/azure/mgmt/network/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
__all__ = ['NetworkManagementClient']
1111

1212
try:
13-
from ._patch import patch_sdk
13+
from ._patch import patch_sdk # type: ignore
1414
patch_sdk()
1515
except ImportError:
1616
pass

sdk/network/azure-mgmt-network/azure/mgmt/network/_configuration.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
from azure.core.configuration import Configuration
1414
from azure.core.pipeline import policies
15+
from azure.mgmt.core.policies import ARMHttpLoggingPolicy
1516

1617
from ._version import VERSION
1718

@@ -43,8 +44,7 @@ def __init__(
4344

4445
self.credential = credential
4546
self.subscription_id = subscription_id
46-
self.credential_scopes = ['https://management.azure.com/.default']
47-
self.credential_scopes.extend(kwargs.pop('credential_scopes', []))
47+
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default'])
4848
kwargs.setdefault('sdk_moniker', 'azure-mgmt-network/{}'.format(VERSION))
4949
self._configure(**kwargs)
5050

@@ -57,6 +57,7 @@ def _configure(
5757
self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs)
5858
self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs)
5959
self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs)
60+
self.http_logging_policy = kwargs.get('http_logging_policy') or ARMHttpLoggingPolicy(**kwargs)
6061
self.retry_policy = kwargs.get('retry_policy') or policies.RetryPolicy(**kwargs)
6162
self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs)
6263
self.redirect_policy = kwargs.get('redirect_policy') or policies.RedirectPolicy(**kwargs)

0 commit comments

Comments
 (0)