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 1e089fd1e385182b2c3090fb00242ad11b552ee8 into c7b98b36e4023331545051284d8500adf98f02fe
- Loading branch information
SDKAuto
committed
Aug 2, 2024
1 parent
f59f42c
commit 2ade543
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": "0e07b94c054259e5864acc855eb3977fb6dee368", | ||
"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.