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
10 changes: 10 additions & 0 deletions sdk/sql/azure-mgmt-sql/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
Release History
===============

0.15.0 (2019-11-12)
+++++++++++++++++++

**Breaking changes**

- Operation DatabasesOperations.failover has a new signature
- Operation ManagedInstanceAdministratorsOperations.get has a new signature
- Operation ManagedInstanceAdministratorsOperations.delete has a new signature
- Operation ManagedInstanceAdministratorsOperations.create_or_update has a new signature

0.14.0 (2019-10-04)
+++++++++++++++++++

Expand Down
20 changes: 15 additions & 5 deletions sdk/sql/azure-mgmt-sql/azure/mgmt/sql/_sql_management_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
from .operations import ElasticPoolsOperations
from .operations import RecommendedElasticPoolsOperations
from .operations import ReplicationLinksOperations
from .operations import ServerAzureADAdministratorsOperations
from .operations import ServerCommunicationLinksOperations
from .operations import ServiceObjectivesOperations
from .operations import ElasticPoolActivitiesOperations
Expand Down Expand Up @@ -99,6 +98,9 @@
from .operations import ManagedDatabasesOperations
from .operations import PrivateEndpointConnectionsOperations
from .operations import PrivateLinkResourcesOperations
from .operations import ServerAzureADAdministratorsOperations
from .operations import WorkloadGroupsOperations
from .operations import WorkloadClassifiersOperations
from . import models


Expand Down Expand Up @@ -134,8 +136,6 @@ class SqlManagementClient(SDKClient):
:vartype recommended_elastic_pools: azure.mgmt.sql.operations.RecommendedElasticPoolsOperations
:ivar replication_links: ReplicationLinks operations
:vartype replication_links: azure.mgmt.sql.operations.ReplicationLinksOperations
:ivar server_azure_ad_administrators: ServerAzureADAdministrators operations
:vartype server_azure_ad_administrators: azure.mgmt.sql.operations.ServerAzureADAdministratorsOperations
:ivar server_communication_links: ServerCommunicationLinks operations
:vartype server_communication_links: azure.mgmt.sql.operations.ServerCommunicationLinksOperations
:ivar service_objectives: ServiceObjectives operations
Expand Down Expand Up @@ -280,6 +280,12 @@ class SqlManagementClient(SDKClient):
:vartype private_endpoint_connections: azure.mgmt.sql.operations.PrivateEndpointConnectionsOperations
:ivar private_link_resources: PrivateLinkResources operations
:vartype private_link_resources: azure.mgmt.sql.operations.PrivateLinkResourcesOperations
:ivar server_azure_ad_administrators: ServerAzureADAdministrators operations
:vartype server_azure_ad_administrators: azure.mgmt.sql.operations.ServerAzureADAdministratorsOperations
:ivar workload_groups: WorkloadGroups operations
:vartype workload_groups: azure.mgmt.sql.operations.WorkloadGroupsOperations
:ivar workload_classifiers: WorkloadClassifiers operations
:vartype workload_classifiers: azure.mgmt.sql.operations.WorkloadClassifiersOperations

:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
Expand Down Expand Up @@ -326,8 +332,6 @@ def __init__(
self._client, self.config, self._serialize, self._deserialize)
self.replication_links = ReplicationLinksOperations(
self._client, self.config, self._serialize, self._deserialize)
self.server_azure_ad_administrators = ServerAzureADAdministratorsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.server_communication_links = ServerCommunicationLinksOperations(
self._client, self.config, self._serialize, self._deserialize)
self.service_objectives = ServiceObjectivesOperations(
Expand Down Expand Up @@ -472,3 +476,9 @@ def __init__(
self._client, self.config, self._serialize, self._deserialize)
self.private_link_resources = PrivateLinkResourcesOperations(
self._client, self.config, self._serialize, self._deserialize)
self.server_azure_ad_administrators = ServerAzureADAdministratorsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.workload_groups = WorkloadGroupsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.workload_classifiers = WorkloadClassifiersOperations(
self._client, self.config, self._serialize, self._deserialize)
14 changes: 13 additions & 1 deletion sdk/sql/azure-mgmt-sql/azure/mgmt/sql/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,8 @@
from ._models_py3 import VulnerabilityAssessmentRecurringScansProperties
from ._models_py3 import VulnerabilityAssessmentScanError
from ._models_py3 import VulnerabilityAssessmentScanRecord
from ._models_py3 import WorkloadClassifier
from ._models_py3 import WorkloadGroup
except (SyntaxError, ImportError):
from ._models import AutomaticTuningOptions
from ._models import AutomaticTuningServerOptions
Expand Down Expand Up @@ -335,6 +337,8 @@
from ._models import VulnerabilityAssessmentRecurringScansProperties
from ._models import VulnerabilityAssessmentScanError
from ._models import VulnerabilityAssessmentScanRecord
from ._models import WorkloadClassifier
from ._models import WorkloadGroup
from ._paged_models import BackupShortTermRetentionPolicyPaged
from ._paged_models import DatabaseBlobAuditingPolicyPaged
from ._paged_models import DatabaseOperationPaged
Expand Down Expand Up @@ -407,6 +411,8 @@
from ._paged_models import VirtualClusterPaged
from ._paged_models import VirtualNetworkRulePaged
from ._paged_models import VulnerabilityAssessmentScanRecordPaged
from ._paged_models import WorkloadClassifierPaged
from ._paged_models import WorkloadGroupPaged
from ._sql_management_client_enums import (
CheckNameAvailabilityReason,
ServerConnectionType,
Expand Down Expand Up @@ -489,6 +495,7 @@
VulnerabilityAssessmentPolicyBaselineName,
SensitivityLabelSource,
CapabilityGroup,
ReplicaType,
)

__all__ = [
Expand Down Expand Up @@ -654,6 +661,8 @@
'VulnerabilityAssessmentRecurringScansProperties',
'VulnerabilityAssessmentScanError',
'VulnerabilityAssessmentScanRecord',
'WorkloadClassifier',
'WorkloadGroup',
'RecoverableDatabasePaged',
'RestorableDroppedDatabasePaged',
'ServerPaged',
Expand All @@ -667,7 +676,6 @@
'RecommendedElasticPoolPaged',
'RecommendedElasticPoolMetricPaged',
'ReplicationLinkPaged',
'ServerAzureADAdministratorPaged',
'ServerCommunicationLinkPaged',
'ServiceObjectivePaged',
'ElasticPoolActivityPaged',
Expand Down Expand Up @@ -726,6 +734,9 @@
'ManagedDatabasePaged',
'PrivateEndpointConnectionPaged',
'PrivateLinkResourcePaged',
'ServerAzureADAdministratorPaged',
'WorkloadGroupPaged',
'WorkloadClassifierPaged',
'CheckNameAvailabilityReason',
'ServerConnectionType',
'SecurityAlertPolicyState',
Expand Down Expand Up @@ -807,4 +818,5 @@
'VulnerabilityAssessmentPolicyBaselineName',
'SensitivityLabelSource',
'CapabilityGroup',
'ReplicaType',
]
Loading