forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CodeGen from PR 29330 in Azure/azure-rest-api-specs
Merge e23e4583adb5485f5a5d2834cc6acbbdfda60d52 into 46de0ae3b0fef1f322b5a14b2fa5b6a65da435a2
- Loading branch information
SDKAuto
committed
Jul 17, 2024
1 parent
461afb4
commit 2c24b6a
Showing
18 changed files
with
2,157 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
{ | ||
"commit": "abad0096677005817d2c19df2364663e5583c8fc", | ||
"commit": "b44b6019c2086d2e89d2d39a42c6d3389e40d903", | ||
"repository_url": "https://github.com/Azure/azure-rest-api-specs", | ||
"typespec_src": "specification/mongocluster/DocumentDB.MongoCluster.Management", | ||
"@azure-tools/typespec-python": "0.24.3", | ||
"@autorest/python": "6.14.3" | ||
"@azure-tools/typespec-python": "0.25.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
sdk/mongocluster/azure-mgmt-mongocluster/azure/mgmt/mongocluster/_validation.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for license information. | ||
# Code generated by Microsoft (R) Python Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is regenerated. | ||
# -------------------------------------------------------------------------- | ||
import functools | ||
|
||
|
||
def api_version_validation(**kwargs): | ||
params_added_on = kwargs.pop("params_added_on", {}) | ||
method_added_on = kwargs.pop("method_added_on", "") | ||
|
||
def decorator(func): | ||
@functools.wraps(func) | ||
def wrapper(*args, **kwargs): | ||
try: | ||
# this assumes the client has an _api_version attribute | ||
client = args[0] | ||
client_api_version = client._config.api_version # pylint: disable=protected-access | ||
except AttributeError: | ||
return func(*args, **kwargs) | ||
|
||
if method_added_on > client_api_version: | ||
raise ValueError( | ||
f"'{func.__name__}' is not available in API version " | ||
f"{client_api_version}. Pass service API version {method_added_on} or newer to your client." | ||
) | ||
|
||
unsupported = { | ||
parameter: api_version | ||
for api_version, parameters in params_added_on.items() | ||
for parameter in parameters | ||
if parameter in kwargs and api_version > client_api_version | ||
} | ||
if unsupported: | ||
raise ValueError( | ||
"".join( | ||
[ | ||
f"'{param}' is not available in API version {client_api_version}. " | ||
f"Use service API version {version} or newer.\n" | ||
for param, version in unsupported.items() | ||
] | ||
) | ||
) | ||
return func(*args, **kwargs) | ||
|
||
return wrapper | ||
|
||
return decorator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.