Skip to content

Commit

Permalink
CodeGen from PR 19856 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
add aadObjectId property to kustoPool (Azure#19856)

Co-authored-by: Amit Elran <amelran@microsoft.com>
  • Loading branch information
SDKAuto and Amit Elran committed Jul 25, 2022
1 parent 70a3186 commit 68758d2
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/modelerfour@4.19.3"
],
"commit": "256b8ec7d045dbe2daf91030b0d6b7f09c8e42d9",
"commit": "4c50e5a4747fd0cb04e013890d891509dc567373",
"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 68758d2

Please sign in to comment.