|
40 | 40 | from .operations import Operations
|
41 | 41 | from .operations import ServerKeysOperations
|
42 | 42 | from .operations import SyncAgentsOperations
|
43 |
| -from .operations import SyncGroupsOperations |
44 |
| -from .operations import SyncMembersOperations |
45 | 43 | from .operations import SubscriptionUsagesOperations
|
46 | 44 | from .operations import VirtualClustersOperations
|
47 | 45 | from .operations import VirtualNetworkRulesOperations
|
|
104 | 102 | from .operations import ManagedDatabasesOperations
|
105 | 103 | from .operations import ServerAzureADAdministratorsOperations
|
106 | 104 | from .operations import ManagedInstanceOperations
|
| 105 | +from .operations import SyncGroupsOperations |
| 106 | +from .operations import SyncMembersOperations |
107 | 107 | from . import models
|
108 | 108 |
|
109 | 109 |
|
@@ -167,10 +167,6 @@ class SqlManagementClient(SDKClient):
|
167 | 167 | :vartype server_keys: azure.mgmt.sql.operations.ServerKeysOperations
|
168 | 168 | :ivar sync_agents: SyncAgents operations
|
169 | 169 | :vartype sync_agents: azure.mgmt.sql.operations.SyncAgentsOperations
|
170 |
| - :ivar sync_groups: SyncGroups operations |
171 |
| - :vartype sync_groups: azure.mgmt.sql.operations.SyncGroupsOperations |
172 |
| - :ivar sync_members: SyncMembers operations |
173 |
| - :vartype sync_members: azure.mgmt.sql.operations.SyncMembersOperations |
174 | 170 | :ivar subscription_usages: SubscriptionUsages operations
|
175 | 171 | :vartype subscription_usages: azure.mgmt.sql.operations.SubscriptionUsagesOperations
|
176 | 172 | :ivar virtual_clusters: VirtualClusters operations
|
@@ -295,6 +291,10 @@ class SqlManagementClient(SDKClient):
|
295 | 291 | :vartype server_azure_ad_administrators: azure.mgmt.sql.operations.ServerAzureADAdministratorsOperations
|
296 | 292 | :ivar managed_instance_operations: ManagedInstanceOperations operations
|
297 | 293 | :vartype managed_instance_operations: azure.mgmt.sql.operations.ManagedInstanceOperations
|
| 294 | + :ivar sync_groups: SyncGroups operations |
| 295 | + :vartype sync_groups: azure.mgmt.sql.operations.SyncGroupsOperations |
| 296 | + :ivar sync_members: SyncMembers operations |
| 297 | + :vartype sync_members: azure.mgmt.sql.operations.SyncMembersOperations |
298 | 298 |
|
299 | 299 | :param credentials: Credentials needed for the client to connect to Azure.
|
300 | 300 | :type credentials: :mod:`A msrestazure Credentials
|
@@ -369,10 +369,6 @@ def __init__(
|
369 | 369 | self._client, self.config, self._serialize, self._deserialize)
|
370 | 370 | self.sync_agents = SyncAgentsOperations(
|
371 | 371 | self._client, self.config, self._serialize, self._deserialize)
|
372 |
| - self.sync_groups = SyncGroupsOperations( |
373 |
| - self._client, self.config, self._serialize, self._deserialize) |
374 |
| - self.sync_members = SyncMembersOperations( |
375 |
| - self._client, self.config, self._serialize, self._deserialize) |
376 | 372 | self.subscription_usages = SubscriptionUsagesOperations(
|
377 | 373 | self._client, self.config, self._serialize, self._deserialize)
|
378 | 374 | self.virtual_clusters = VirtualClustersOperations(
|
@@ -497,3 +493,7 @@ def __init__(
|
497 | 493 | self._client, self.config, self._serialize, self._deserialize)
|
498 | 494 | self.managed_instance_operations = ManagedInstanceOperations(
|
499 | 495 | self._client, self.config, self._serialize, self._deserialize)
|
| 496 | + self.sync_groups = SyncGroupsOperations( |
| 497 | + self._client, self.config, self._serialize, self._deserialize) |
| 498 | + self.sync_members = SyncMembersOperations( |
| 499 | + self._client, self.config, self._serialize, self._deserialize) |
0 commit comments