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 b4192ffdc427f753601853591576a2c2112ba204 into 38865af4ab4ffecb7f9597e796827c2cc918fb0f
- Loading branch information
SDKAuto
committed
Aug 6, 2024
1 parent
af56b65
commit 983dc60
Showing
19 changed files
with
2,367 additions
and
269 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": "a8e5c4873958fd80cc5cb980ba023e97b6f5afcb", | ||
"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.27.1" | ||
} |
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
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.