Skip to content

Commit

Permalink
CodeGen from PR 19926 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge ec16559b960c34eae9b65f5fe4f3837bb6a6059b into 7473936304533e6716fc4563401bf265dda4cb64
  • Loading branch information
SDKAuto committed Aug 8, 2022
1 parent ddf94c6 commit ca2bd7a
Show file tree
Hide file tree
Showing 161 changed files with 12,861 additions and 8,934 deletions.
6 changes: 3 additions & 3 deletions sdk/synapse/azure-mgmt-synapse/_meta.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"autorest": "3.7.2",
"use": [
"@autorest/python@5.13.0",
"@autorest/python@5.16.0",
"@autorest/[email protected]"
],
"commit": "256b8ec7d045dbe2daf91030b0d6b7f09c8e42d9",
"commit": "198763d20e91875cd56ac4e87d4aa3e50a09e1f3",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest_command": "autorest specification/synapse/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] --version=3.7.2",
"autorest_command": "autorest specification/synapse/resource-manager/readme.md --python --python-sdks-folder=/mnt/vss/_work/1/s/azure-sdk-for-python/sdk --python3-only --use=@autorest/python@5.16.0 --use=@autorest/[email protected] --version=3.7.2",
"readme": "specification/synapse/resource-manager/readme.md"
}
13 changes: 9 additions & 4 deletions sdk/synapse/azure-mgmt-synapse/azure/mgmt/synapse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,14 @@
from ._version import VERSION

__version__ = VERSION

try:
from ._patch import __all__ as _patch_all
from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import
except ImportError:
_patch_all = []
from ._patch import patch_sdk as _patch_sdk
__all__ = ['SynapseManagementClient']
__all__.extend([p for p in _patch_all if p not in __all__])

# `._patch.py` is used for handwritten extensions to the generated code
# Example: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md
from ._patch import patch_sdk
patch_sdk()
_patch_sdk()
174 changes: 0 additions & 174 deletions sdk/synapse/azure-mgmt-synapse/azure/mgmt/synapse/_metadata.json

This file was deleted.

Loading

0 comments on commit ca2bd7a

Please sign in to comment.