Skip to content

Commit 83ff40e

Browse files
azclibotBigCat20196msyyc
authored
[AutoRelease] t2-network-2022-04-25-86183(Do not merge) (Azure#24162)
* code and test * update requirement * fix test Co-authored-by: PythonSdkPipelines <PythonSdkPipelines> Co-authored-by: Jiefeng Chen (WICRESOFT NORTH AMERICA LTD) <[email protected]> Co-authored-by: msyyc <[email protected]>
1 parent b580e49 commit 83ff40e

File tree

5,233 files changed

+2975334
-2939927
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,233 files changed

+2975334
-2939927
lines changed

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

+32
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
# Release History
22

3+
## 20.0.0 (2022-04-25)
4+
5+
**Features**
6+
7+
- Added operation FirewallPoliciesOperations.update_tags
8+
- Added operation PerimeterAssociableResourceTypesOperations.list
9+
- Added operation group ConfigurationPolicyGroupsOperations
10+
- Added operation group ExpressRoutePortAuthorizationsOperations
11+
- Added operation group NspAccessRulesOperations
12+
- Added operation group NspAssociationsOperations
13+
- Added operation group NspProfilesOperations
14+
- Model ApplicationGateway has a new parameter backend_settings_collection
15+
- Model ApplicationGateway has a new parameter listeners
16+
- Model ApplicationGateway has a new parameter routing_rules
17+
- Model ApplicationGatewayProbe has a new parameter pick_host_name_from_backend_settings
18+
- Model BackendAddressPool has a new parameter drain_period_in_seconds
19+
- Model ExpressRouteCircuit has a new parameter authorization_key
20+
- Model FirewallPolicyIntrusionDetectionConfiguration has a new parameter private_ranges
21+
- Model LoadBalancerBackendAddress has a new parameter admin_state
22+
- Model NetworkInterface has a new parameter auxiliary_mode
23+
- Model P2SConnectionConfiguration has a new parameter configuration_policy_group_associations
24+
- Model P2SConnectionConfiguration has a new parameter previous_configuration_policy_group_associations
25+
- Model VirtualHub has a new parameter hub_routing_preference
26+
- Model VirtualNetworkGatewayConnection has a new parameter gateway_custom_bgp_ip_addresses
27+
- Model VirtualNetworkGatewayConnectionListEntity has a new parameter gateway_custom_bgp_ip_addresses
28+
- Model VpnServerConfiguration has a new parameter configuration_policy_groups
29+
- Model VpnSiteLinkConnection has a new parameter vpn_gateway_custom_bgp_addresses
30+
31+
**Breaking changes**
32+
33+
- Removed operation PerimeterAssociableResourceTypesOperations.get
34+
335
## 19.3.0 (2021-11-05)
436

537
**Features**
+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"autorest": "3.4.5",
2+
"autorest": "3.7.2",
33
"use": [
4-
"@autorest/python@5.8.4",
5-
"@autorest/[email protected].2"
4+
"@autorest/python@5.13.0",
5+
"@autorest/[email protected].3"
66
],
7-
"commit": "200370117556209695877b7631afa7d6c100c356",
7+
"commit": "ba936cf8f3b4720dc025837281241fdc903f7e4d",
88
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
9-
"autorest_command": "autorest specification/network/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk --track2 --use=@autorest/python@5.8.4 --use=@autorest/[email protected].2 --version=3.4.5",
9+
"autorest_command": "autorest specification/network/resource-manager/readme.md --multiapi --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --python3-only --use=@autorest/python@5.13.0 --use=@autorest/[email protected].3 --version=3.7.2",
1010
"readme": "specification/network/resource-manager/readme.md"
1111
}

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +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
15+
from azure.mgmt.core.policies import ARMChallengeAuthenticationPolicy, ARMHttpLoggingPolicy
1616

1717
from ._version import VERSION
1818

@@ -68,4 +68,4 @@ def _configure(
6868
self.redirect_policy = kwargs.get('redirect_policy') or policies.RedirectPolicy(**kwargs)
6969
self.authentication_policy = kwargs.get('authentication_policy')
7070
if self.credential and not self.authentication_policy:
71-
self.authentication_policy = policies.BearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs)
71+
self.authentication_policy = ARMChallengeAuthenticationPolicy(self.credential, *self.credential_scopes, **kwargs)

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

+412-6
Large diffs are not rendered by default.

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

+103-34
Large diffs are not rendered by default.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# license information.
66
# --------------------------------------------------------------------------
77

8-
VERSION = "19.3.0"
8+
VERSION = "20.0.0"

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +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
15+
from azure.mgmt.core.policies import ARMHttpLoggingPolicy, AsyncARMChallengeAuthenticationPolicy
1616

1717
from .._version import VERSION
1818

@@ -64,4 +64,4 @@ def _configure(
6464
self.redirect_policy = kwargs.get('redirect_policy') or policies.AsyncRedirectPolicy(**kwargs)
6565
self.authentication_policy = kwargs.get('authentication_policy')
6666
if self.credential and not self.authentication_policy:
67-
self.authentication_policy = policies.AsyncBearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs)
67+
self.authentication_policy = AsyncARMChallengeAuthenticationPolicy(self.credential, *self.credential_scopes, **kwargs)

0 commit comments

Comments
 (0)