Skip to content

Commit 470f324

Browse files
author
SDKAuto
committed
CodeGen from PR 33757 in Azure/azure-rest-api-specs
Merge c337a5599a9046b772a3f6d6a2a51667e36e5f7e into a67a8c166cdbcb357ac3e56cbc1c1e285b52706a
1 parent 7102446 commit 470f324

File tree

1,295 files changed

+21581
-27420
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,295 files changed

+21581
-27420
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-04-07)
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"commit": "70eec0726034ed22734168f3cd3d2b641dbc5723",
2+
"commit": "ce3f5641e4afe84667a437f7b9d03c7f0deb1baf",
33
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
44
"autorest": "3.10.2",
55
"use": [
66
"@autorest/[email protected]",
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/[email protected] --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/[email protected] --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: 381 additions & 372 deletions
Large diffs are not rendered by default.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "4.0.0b21"
9+
VERSION = "4.0.0b22"

sdk/sql/azure-mgmt-sql/azure/mgmt/sql/aio/_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_async.AsyncTokenCredential
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: "AsyncTokenCredential", 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)