Skip to content

Commit 2fdee8b

Browse files
author
SDKAuto
committed
CodeGen from PR 33936 in Azure/azure-rest-api-specs
Merge 2639ceb1b4a2fe3149ee579ce686306c1cd7ea95 into a19648565889eaae019e531c15f3045d1244c7ce
1 parent 6c30600 commit 2fdee8b

File tree

1,300 files changed

+27028
-32570
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,300 files changed

+27028
-32570
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release History
22

3+
## 4.0.0b22 (2025-05-13)
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

Lines changed: 3 additions & 3 deletions
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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"commit": "70eec0726034ed22734168f3cd3d2b641dbc5723",
2+
"commit": "370cc271b40081effe432bdd47b66103c0bb1449",
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.34.1",
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.34.1 --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

Lines changed: 0 additions & 6 deletions
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)

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

Lines changed: 395 additions & 382 deletions
Large diffs are not rendered by default.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# --------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See License.txt in the project root for license information.
4+
# Code generated by Microsoft (R) AutoRest Code Generator.
5+
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
6+
# --------------------------------------------------------------------------

0 commit comments

Comments
 (0)