Skip to content

Commit ec855c2

Browse files
authored
fix readme (Azure#30417)
1 parent f9b457b commit ec855c2

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ With above configuration, client can be authenticated by following code:
3636

3737
```python
3838
from azure.identity import DefaultAzureCredential
39-
from azure.mgmt.rdbms import
39+
from azure.mgmt.rdbms.mysql import MySQLManagementClient
4040
import os
4141

4242
sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
43-
client = (credential=DefaultAzureCredential(), subscription_id=sub_id)
43+
client = MySQLManagementClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
4444
```
4545

4646
## Examples

sdk/rdbms/azure-mgmt-rdbms/sdk_packaging.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22
package_name = "azure-mgmt-rdbms"
33
package_pprint_name = "RDBMS Management"
44
package_doc_id = ""
5-
is_stable = true
5+
is_stable = false
6+
title = "MySQLManagementClient"
7+
sub_namespace = "mysql"

sdk/rdbms/azure-mgmt-rdbms/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
url='https://github.com/Azure/azure-sdk-for-python',
4848
keywords="azure, azure sdk", # update with search keywords relevant to the azure service / product
4949
classifiers=[
50-
'Development Status :: 5 - Production/Stable',
50+
'Development Status :: 4 - Beta',
5151
'Programming Language :: Python',
5252
'Programming Language :: Python :: 3 :: Only',
5353
'Programming Language :: Python :: 3',

0 commit comments

Comments
 (0)