ppc64le/linux/: azure-mgmt-sql-4.0.0b21 metadata and description

Homepage Simple index

Microsoft Azure SQL Management Client Library for Python

author Microsoft Corporation
author_email [email protected]
classifiers
  • Development Status :: 4 - Beta
  • Programming Language :: Python
  • Programming Language :: Python :: 3 :: Only
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.8
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3.12
  • License :: OSI Approved :: MIT License
  • Environment :: MetaData :: IBM Python Ecosystem
description_content_type text/markdown
dynamic summary
keywords azure,azure sdk
license MIT License
license_file LICENSE
requires_dist
  • isodate>=0.6.1
  • typing-extensions>=4.6.0
  • azure-common>=1.1
  • azure-mgmt-core>=1.3.2
requires_python >=3.8
File Tox results History
azure_mgmt_sql-4.0.0b21-py3-none-any.whl
Size
1 MB
Type
Python Wheel
Python
3

Microsoft Azure SDK for Python

This is the Microsoft Azure SQL Management Client Library. This package has been tested with Python 3.8+. For a more complete view of Azure libraries, see the azure sdk python release.

Disclaimer

Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691

Getting started

Prerequisites

Install the package

pip install azure-mgmt-sql
pip install azure-identity

Authentication

By default, Azure Active Directory token authentication depends on correct configure of following environment variables.

In addition, Azure subscription ID can be configured via environment variable AZURE_SUBSCRIPTION_ID.

With above configuration, client can be authenticated by following code:

from azure.identity import DefaultAzureCredential
from azure.mgmt.sql import SqlManagementClient
import os

sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = SqlManagementClient(credential=DefaultAzureCredential(), subscription_id=sub_id)

Examples

Code samples for this package can be found at:

Troubleshooting

Next steps

Provide Feedback

If you encounter any bugs or have suggestions, please file an issue in the Issues section of the project.

Release History

4.0.0b21 (2025-03-23)

Features Added

Breaking Changes

4.0.0b20 (2024-11-04)

Features Added

Breaking Changes

4.0.0b19 (2024-09-09)

Features Added

Breaking Changes

4.0.0b18 (2024-07-11)

Bugs Fixed

4.0.0b17 (2024-05-20)

Features Added

4.0.0b16 (2024-04-07)

Features Added

Breaking Changes

4.0.0b15 (2024-01-11)

Features Added

4.0.0b14 (2023-12-18)

Features Added

4.0.0b13 (2023-11-17)

Features Added

4.0.0b12 (2023-08-30)

Features Added

4.0.0b11 (2023-07-28)

Features Added

4.0.0b10 (2023-04-11)

Features Added

4.0.0b9 (2023-03-24)

Features Added

4.0.0b8 (2023-02-17)

Features Added

Breaking Changes

4.0.0b7 (2023-01-29)

Features Added

4.0.0b6 (2022-12-30)

Features Added

4.0.0b5 (2022-11-10)

Features Added

4.0.0b4 (2022-09-29)

Features Added

Breaking Changes

4.0.0b3 (2022-07-06)

Features

Breaking changes

4.0.0b2 (2022-03-08)

Features

Breaking changes

4.0.0b1 (2021-12-21)

Features

Breaking changes

3.0.1 (2021-07-15)

Bugfixes

3.0.0 (2021-06-18)

Features

Breaking changes

2.1.0 (2021-05-24)

2.0.0 (2021-05-13)

Features

Breaking changes

1.0.0 (2020-11-24)

1.0.0b1 (2020-10-13)

This is beta preview version.

This version uses a next-generation code generator that introduces important breaking changes, but also important new features (like unified authentication and async programming).

General breaking changes

General new features

0.21.0 (2020-09-03)

Features

Breaking changes

0.20.0 (2020-06-22)

Features

0.19.0 (2020-06-22)

Features

0.18.0 (2020-03-23)

Features

0.17.0 (2020-03-02)

Features

0.16.0 (2019-12-17)

Features

Breaking changes

0.15.0 (2019-11-12)

Breaking changes

0.14.0 (2019-10-04)

Features

0.13.0 (2019-09-03)

Features

Breaking changes

General breaking changes

This version uses a next-generation code generator that might introduce breaking changes if from some import. In summary, some modules were incorrectly visible/importable and have been renamed. This fixed several issues caused by usage of classes that were not supposed to be used in the first place.

Last but not least, HTTP connection pooling is now enabled by default. You should always use a client as a context manager, or call close(), or use no more than one client per process.

0.12.0 (2019-03-28)

Features

0.11.0 (2018-11-08)

Features

0.10.0 (2018-10-18)

Features

Breaking changes

Note

0.9.1 (2018-05-24)

Features

0.9.0 (2018-04-25)

General Breaking changes

This version uses a next-generation code generator that might introduce breaking changes.

SQL Breaking changes

Features

0.8.6 (2018-03-22)

Features

0.8.5 (2018-01-18)

Features

0.8.4 (2017-11-14)

Features

0.8.3 (2017-10-24)

Features

0.8.2 (2017-10-18)

Features

0.8.1 (2017-10-04)

Features

0.8.0 (2017-09-07)

Disclaimer

We were using a slightly unorthodox convention for some operation ids. Some resource operations were "nested" inside others, e.g. blob auditing policies was nested inside databases as in client.databases.get_blob_auditing_policies(..) instead of the flattened ARM standard client.database_blob_auditing_policies.get(...).

This convention has lead to some inconsistencies, makes some APIs difficult to find, and is at odds with future APIs. For example if we wanted to implement listing db audit policies by server, continuing the current convention would be client.databases.list_blob_auditing_policies_by_server(..) which makes much less sense than the ARM standard which would beclient.database_blob_auditing_policies.list_by_server(...)`.

In order to resolve this and provide a good path moving forward, we have renamed the inconsistent operations to follow the ARM standard. This is an unfortunate breaking change, but it's best to do now while the SDK is still in preview and since most of these operations were only recently added.

Breaking changes

Features

Fixed bugs

0.7.1 (2017-06-30)

0.7.0 (2017-06-28)

Features

Breaking changes

0.6.0 (2017-06-13)

0.5.3 (2017-06-01)

0.5.2 (2017-05-31)

Features

0.5.1 (2017-04-28)

Bugfixes

0.5.0 (2017-04-19)

Breaking changes

New features

Notes

0.4.0 (2017-03-22)

Capabilities and security policy features.

Also renamed several types and operations for improved clarify and consistency.

Additions:

Classes and enums renamed:

Classes removed:

Operations renamed:

Operations removed:

0.3.3 (2017-03-14)

0.3.2 (2017-03-08)

0.3.1 (2017-03-01)

0.3.0 (2017-02-27)

Breaking changes

0.2.0 (2016-12-12)

Breaking changes

0.1.0 (2016-11-02)