Skip to content

Commit

Permalink
CodeGen from PR 19484 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 831ca48fd0fdc65521efd199d26e3eaf7d0ae545 into 8f19637f5d779aa364f1f7cfeeb2c2b7d4980ad9
  • Loading branch information
SDKAuto committed Jun 20, 2022
1 parent cd545f8 commit 4f9ccd5
Show file tree
Hide file tree
Showing 161 changed files with 12,829 additions and 8,909 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/modelerfour@4.19.3"
],
"commit": "256b8ec7d045dbe2daf91030b0d6b7f09c8e42d9",
"commit": "9ec9cf5618e9739afc77d8d4316f63e7b0f1fb5f",
"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/modelerfour@4.19.3 --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/modelerfour@4.19.3 --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 4f9ccd5

Please sign in to comment.