@@ -431,9 +431,6 @@ class SqlManagementClient: # pylint: disable=client-accepts-api-version-keyword
431
431
:ivar server_connection_policies: ServerConnectionPoliciesOperations operations
432
432
:vartype server_connection_policies:
433
433
azure.mgmt.sql.operations.ServerConnectionPoliciesOperations
434
- :ivar distributed_availability_groups: DistributedAvailabilityGroupsOperations operations
435
- :vartype distributed_availability_groups:
436
- azure.mgmt.sql.operations.DistributedAvailabilityGroupsOperations
437
434
:ivar server_trust_certificates: ServerTrustCertificatesOperations operations
438
435
:vartype server_trust_certificates: azure.mgmt.sql.operations.ServerTrustCertificatesOperations
439
436
:ivar endpoint_certificates: EndpointCertificatesOperations operations
@@ -599,6 +596,9 @@ class SqlManagementClient: # pylint: disable=client-accepts-api-version-keyword
599
596
:vartype servers: azure.mgmt.sql.operations.ServersOperations
600
597
:ivar replication_links: ReplicationLinksOperations operations
601
598
:vartype replication_links: azure.mgmt.sql.operations.ReplicationLinksOperations
599
+ :ivar distributed_availability_groups: DistributedAvailabilityGroupsOperations operations
600
+ :vartype distributed_availability_groups:
601
+ azure.mgmt.sql.operations.DistributedAvailabilityGroupsOperations
602
602
:param credential: Credential needed for the client to connect to Azure. Required.
603
603
:type credential: ~azure.core.credentials.TokenCredential
604
604
:param subscription_id: The subscription ID that identifies an Azure subscription. Required.
@@ -885,9 +885,6 @@ def __init__(
885
885
self .server_connection_policies = ServerConnectionPoliciesOperations (
886
886
self ._client , self ._config , self ._serialize , self ._deserialize
887
887
)
888
- self .distributed_availability_groups = DistributedAvailabilityGroupsOperations (
889
- self ._client , self ._config , self ._serialize , self ._deserialize
890
- )
891
888
self .server_trust_certificates = ServerTrustCertificatesOperations (
892
889
self ._client , self ._config , self ._serialize , self ._deserialize
893
890
)
@@ -1049,6 +1046,9 @@ def __init__(
1049
1046
self .replication_links = ReplicationLinksOperations (
1050
1047
self ._client , self ._config , self ._serialize , self ._deserialize
1051
1048
)
1049
+ self .distributed_availability_groups = DistributedAvailabilityGroupsOperations (
1050
+ self ._client , self ._config , self ._serialize , self ._deserialize
1051
+ )
1052
1052
1053
1053
def _send_request (self , request : HttpRequest , * , stream : bool = False , ** kwargs : Any ) -> HttpResponse :
1054
1054
"""Runs the network request through the client's chained policies.
0 commit comments