Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.13.0",
"@autorest/modelerfour@4.19.3"
],
"commit": "6b29b8552671eded065f51ee1b291582ab8cc149",
"commit": "18c07c2e1ec34de6ab47067fcd8768e912c93bb3",
"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=/mnt/vss/_work/1/s/azure-sdk-for-python/sdk --python3-only --use=@autorest/python@5.13.0 --use=@autorest/modelerfour@4.19.3 --version=3.7.2",
"readme": "specification/mysql/resource-manager/readme.md"
}
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.

Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@
# --------------------------------------------------------------------------

from copy import deepcopy
from typing import Any, Optional, TYPE_CHECKING
from typing import Any, TYPE_CHECKING

from msrest import Deserializer, Serializer

from azure.core.rest import HttpRequest, HttpResponse
from azure.mgmt.core import ARMPipelineClient
from msrest import Deserializer, Serializer

from . import models
from ._configuration import MySQLManagementClientConfiguration
Expand All @@ -21,8 +22,10 @@
# pylint: disable=unused-import,ungrouped-imports
from azure.core.credentials import TokenCredential

class MySQLManagementClient(MySQLManagementClientOperationsMixin):
"""The Microsoft Azure management API provides create, read, update, and delete functionality for Azure MySQL resources including servers, databases, firewall rules, VNET rules, log files and configurations with new business model.
class MySQLManagementClient(MySQLManagementClientOperationsMixin): # pylint: disable=too-many-instance-attributes
"""The Microsoft Azure management API provides create, read, update, and delete functionality for
Azure MySQL resources including servers, databases, firewall rules, VNET rules, log files and
configurations with new business model.

:ivar servers: ServersOperations operations
:vartype servers: azure.mgmt.rdbms.mysql.operations.ServersOperations
Expand Down Expand Up @@ -89,7 +92,7 @@ class MySQLManagementClient(MySQLManagementClientOperationsMixin):
:type credential: ~azure.core.credentials.TokenCredential
:param subscription_id: The ID of the target subscription.
:type subscription_id: str
:param base_url: Service URL. Default value is 'https://management.azure.com'.
:param base_url: Service URL. Default value is "https://management.azure.com".
:type base_url: str
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
Retry-After header is present.
Expand Down Expand Up @@ -138,7 +141,7 @@ def __init__(

def _send_request(
self,
request, # type: HttpRequest
request: HttpRequest,
**kwargs: Any
) -> HttpResponse:
"""Runs the network request through the client's chained policies.
Expand Down
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 = "1.0.0b1"
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from azure.core.credentials_async import AsyncTokenCredential


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
Loading