Skip to content

Commit

Permalink
[AutoRelease] t2-rdbms-2022-07-11-58707(Do not merge) (Azure#25158)
Browse files Browse the repository at this point in the history
* code and test

* Update CHANGELOG.md

Co-authored-by: PythonSdkPipelines <PythonSdkPipelines>
Co-authored-by: Jiefeng Chen <51037443+BigCat20196@users.noreply.github.com>
  • Loading branch information
azure-sdk and BigCat20196 authored Jul 13, 2022
1 parent 443cbb2 commit da9039e
Show file tree
Hide file tree
Showing 119 changed files with 9,874 additions and 5,381 deletions.
7 changes: 7 additions & 0 deletions sdk/rdbms/azure-mgmt-rdbms/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Release History

## 10.2.0b1 (2022-07-13)

**Features**

- Added operation BackupsOperations.put
- Model ConfigurationListForBatchUpdate has a new parameter reset_all_to_default

## 10.1.0 (2022-03-07)

**Features**
Expand Down
1 change: 1 addition & 0 deletions sdk/rdbms/azure-mgmt-rdbms/MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ include *.md
include azure/__init__.py
include azure/mgmt/__init__.py
include LICENSE
include azure/mgmt/rdbms/py.typed
6 changes: 3 additions & 3 deletions sdk/rdbms/azure-mgmt-rdbms/_meta.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"autorest": "3.7.2",
"use": [
"@autorest/python@5.12.0",
"@autorest/python@5.16.0",
"@autorest/modelerfour@4.19.3"
],
"commit": "6b29b8552671eded065f51ee1b291582ab8cc149",
"commit": "6c11930fe7757c6416cb2580eeddb4e57695c707",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest_command": "autorest specification/mysql/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --python3-only --track2 --use=@autorest/python@5.12.0 --use=@autorest/modelerfour@4.19.3 --version=3.7.2",
"autorest_command": "autorest specification/mysql/resource-manager/readme.md --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --python3-only --use=@autorest/python@5.16.0 --use=@autorest/modelerfour@4.19.3 --version=3.7.2",
"readme": "specification/mysql/resource-manager/readme.md"
}
2 changes: 1 addition & 1 deletion sdk/rdbms/azure-mgmt-rdbms/azure/mgmt/rdbms/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# license information.
# --------------------------------------------------------------------------

VERSION = "10.1.0"
VERSION = "10.2.0b1"
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

VERSION = "10.1.0"
VERSION = "10.2.0b1"
13 changes: 9 additions & 4 deletions sdk/rdbms/azure-mgmt-rdbms/azure/mgmt/rdbms/mysql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,14 @@
from ._version import VERSION

__version__ = VERSION

try:
from ._patch import __all__ as _patch_all
from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import
except ImportError:
_patch_all = []
from ._patch import patch_sdk as _patch_sdk
__all__ = ['MySQLManagementClient']
__all__.extend([p for p in _patch_all if p not in __all__])

# `._patch.py` is used for handwritten extensions to the generated code
# Example: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md
from ._patch import patch_sdk
patch_sdk()
_patch_sdk()
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from azure.core.credentials import TokenCredential


class MySQLManagementClientConfiguration(Configuration):
class MySQLManagementClientConfiguration(Configuration): # pylint: disable=too-many-instance-attributes
"""Configuration for MySQLManagementClient.
Note that all parameters used to create this instance are saved as instance
Expand Down
168 changes: 0 additions & 168 deletions sdk/rdbms/azure-mgmt-rdbms/azure/mgmt/rdbms/mysql/_metadata.json

This file was deleted.

Loading

0 comments on commit da9039e

Please sign in to comment.