-
Notifications
You must be signed in to change notification settings - Fork 3.3k
[RDBMS] Python SDK migration #17191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RDBMS] Python SDK migration #17191
Conversation
|
RDBMS |
...and_modules/rdbms/tests/latest/recordings/test_mysql_flexible_server_vnet_server_create.yaml
Show resolved
Hide resolved
src/azure-cli/azure/cli/command_modules/rdbms/_flexible_server_util.py
Outdated
Show resolved
Hide resolved
src/azure-cli/azure/cli/command_modules/rdbms/flexible_server_custom_common.py
Outdated
Show resolved
Hide resolved
src/azure-cli/azure/cli/command_modules/rdbms/flexible_server_custom_common.py
Outdated
Show resolved
Hide resolved
jiasli
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approve for core.
|
/azp run |
|
Azure Pipelines successfully started running 2 pipeline(s). |
|
CI tests passed with updated network module recording files (related to rdbms single servers) |
| from azure.identity import ClientSecretCredential | ||
| credentials = ClientSecretCredential( | ||
| client_id=client_id, | ||
| secret=getenv(CLIENT_SECRET), | ||
| tenant=getenv(TENANT_ID)) | ||
| client_secret=getenv(CLIENT_SECRET), | ||
| tenant_id=getenv(TENANT_ID)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unless AZURE_AUTHORITY_HOST is specified, this doesn't work for sovereign clouds or Azure stacks, since authority of cli_ctx is not passed to ClientSecretCredential.
Description
Upgrading the Python SDK version for rdbms to GA version (8.0.0)
Testing Guide
azdev test rdbms
History Notes
Upgraded Python SDK version to 8.0.0
[Component Name 1] BREAKING CHANGE: az command a: Make some customer-facing breaking change.
[Component Name 2] az command b: Add some customer-facing feature.
This checklist is used to make sure that common guidelines for a pull request are followed.
The PR title and description has followed the guideline in Submitting Pull Requests.
I adhere to the Command Guidelines.
I adhere to the Error Handling Guidelines.