Skip to content

Commit 0b3fb9e

Browse files
azure-sdkmsyyc
andauthored
[AutoRelease] t2-network-2023-03-03-18337(can only be merged by SDK owner) (Azure#29128)
* code and test * Update CHANGELOG.md * changelog version * Update CHANGELOG.md --------- Co-authored-by: PythonSdkPipelines <PythonSdkPipelines> Co-authored-by: Yuchao Yan <yuchaoyan@microsoft.com> Co-authored-by: msyyc <70930885+msyyc@users.noreply.github.com>
1 parent fecd57a commit 0b3fb9e

File tree

1,220 files changed

+3179433
-145743
lines changed

Some content is hidden

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

1,220 files changed

+3179433
-145743
lines changed

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

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

3+
## 22.3.0 (2023-03-20)
4+
5+
### Features Added
6+
7+
- Model ExpressRouteCircuit has a new parameter authorization_status
8+
- Model NspAccessRule has a new parameter email_addresses
9+
- Model NspAccessRule has a new parameter phone_numbers
10+
- Model NspLink has a new parameter remote_perimeter_location
11+
- Model NspLinkReference has a new parameter remote_perimeter_location
12+
- Model VirtualNetwork has a new parameter flow_logs
13+
- Model WebApplicationFirewallCustomRule has a new parameter state
14+
- Operation VpnGatewaysOperations.begin_reset has a new optional parameter ip_configuration_id
15+
316
## 23.0.0b2 (2023-02-20)
417

518
### Other Changes
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"commit": "cb6219f411b14e368af6175587b302ac74b4263d",
2+
"commit": "c417434958b676b441ce184474210a8210a074b6",
33
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
44
"autorest": "3.9.2",
55
"use": [
6-
"@autorest/python@6.2.7",
6+
"@autorest/python@6.4.0",
77
"@autorest/modelerfour@4.24.3"
88
],
9-
"autorest_command": "autorest specification/network/resource-manager/readme.md --generate-sample=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --use=@autorest/python@6.2.7 --use=@autorest/modelerfour@4.24.3 --version=3.9.2 --version-tolerant=False",
9+
"autorest_command": "autorest specification/network/resource-manager/readme.md --generate-sample=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --use=@autorest/python@6.4.0 --use=@autorest/modelerfour@4.24.3 --version=3.9.2 --version-tolerant=False",
1010
"readme": "specification/network/resource-manager/readme.md"
1111
}

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

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,15 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
from ._client import NetworkManagementClient
10-
from ._version import VERSION
11-
12-
__version__ = VERSION
9+
from ._network_management_client import NetworkManagementClient
10+
__all__ = ['NetworkManagementClient']
1311

1412
try:
15-
from ._patch import __all__ as _patch_all
16-
from ._patch import * # pylint: disable=unused-wildcard-import
13+
from ._patch import patch_sdk # type: ignore
14+
patch_sdk()
1715
except ImportError:
18-
_patch_all = []
19-
from ._patch import patch_sdk as _patch_sdk
16+
pass
2017

21-
__all__ = [
22-
"NetworkManagementClient",
23-
]
24-
__all__.extend([p for p in _patch_all if p not in __all__])
18+
from ._version import VERSION
2519

26-
_patch_sdk()
20+
__version__ = VERSION

0 commit comments

Comments
 (0)