Skip to content

Commit 4331416

Browse files
author
SDKAuto
committed
CodeGen from PR 33764 in Azure/azure-rest-api-specs
Merge f015efb47f4d22c053a0e783eeeac6cbf704f856 into cfa99e453cb5f4eecd04c631729cb38fa1a81df3
1 parent a175685 commit 4331416

File tree

1,299 files changed

+27158
-32567
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,299 files changed

+27158
-32567
lines changed

sdk/sql/azure-mgmt-sql/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release History
22

3+
## 4.0.0b22 (2025-04-18)
4+
5+
change log generation was timeout!!!
6+
37
## 4.0.0b21 (2025-03-23)
48

59
### Features Added

sdk/sql/azure-mgmt-sql/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Microsoft Azure SDK for Python
22

33
This is the Microsoft Azure SQL Management Client Library.
4-
This package has been tested with Python 3.8+.
4+
This package has been tested with Python 3.9+.
55
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).
66

77
## _Disclaimer_
@@ -12,7 +12,7 @@ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For
1212

1313
### Prerequisites
1414

15-
- Python 3.8+ is required to use this package.
15+
- Python 3.9+ is required to use this package.
1616
- [Azure subscription](https://azure.microsoft.com/free/)
1717

1818
### Install the package
@@ -24,7 +24,7 @@ pip install azure-identity
2424

2525
### Authentication
2626

27-
By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configure of following environment variables.
27+
By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configuration of the following environment variables.
2828

2929
- `AZURE_CLIENT_ID` for Azure client ID.
3030
- `AZURE_TENANT_ID` for Azure tenant ID.

sdk/sql/azure-mgmt-sql/_meta.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"commit": "70eec0726034ed22734168f3cd3d2b641dbc5723",
2+
"commit": "0688cc9b7ace67fd92a0325b43300dfdf56279d8",
33
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
44
"autorest": "3.10.2",
55
"use": [
6-
"@autorest/python@6.27.4",
6+
"@autorest/python@6.33.0",
77
"@autorest/[email protected]"
88
],
9-
"autorest_command": "autorest specification/sql/resource-manager/readme.md --generate-sample=True --generate-test=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/mnt/vss/_work/1/azure-sdk-for-python/sdk --tag=package-preview-2024-05 --use=@autorest/python@6.27.4 --use=@autorest/[email protected] --version=3.10.2 --version-tolerant=False",
9+
"autorest_command": "autorest specification/sql/resource-manager/readme.md --generate-sample=True --generate-test=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/mnt/vss/_work/1/s/azure-sdk-for-python/sdk --use=@autorest/python@6.33.0 --use=@autorest/[email protected] --version=3.10.2 --version-tolerant=False",
1010
"readme": "specification/sql/resource-manager/readme.md"
1111
}

sdk/sql/azure-mgmt-sql/azure/mgmt/sql/_configuration.py

-6
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,16 @@ class SqlManagementClientConfiguration: # pylint: disable=too-many-instance-att
2727
:type credential: ~azure.core.credentials.TokenCredential
2828
:param subscription_id: The subscription ID that identifies an Azure subscription. Required.
2929
:type subscription_id: str
30-
:keyword api_version: Api Version. Default value is "2024-05-01-preview". Note that overriding
31-
this default value may result in unsupported behavior.
32-
:paramtype api_version: str
3330
"""
3431

3532
def __init__(self, credential: "TokenCredential", subscription_id: str, **kwargs: Any) -> None:
36-
api_version: str = kwargs.pop("api_version", "2024-05-01-preview")
37-
3833
if credential is None:
3934
raise ValueError("Parameter 'credential' must not be None.")
4035
if subscription_id is None:
4136
raise ValueError("Parameter 'subscription_id' must not be None.")
4237

4338
self.credential = credential
4439
self.subscription_id = subscription_id
45-
self.api_version = api_version
4640
self.credential_scopes = kwargs.pop("credential_scopes", ["https://management.azure.com/.default"])
4741
kwargs.setdefault("sdk_moniker", "mgmt-sql/{}".format(VERSION))
4842
self.polling_interval = kwargs.get("polling_interval", 30)

0 commit comments

Comments
 (0)