@@ -261,9 +261,6 @@ class SqlManagementClient: # pylint: disable=client-accepts-api-version-keyword
261
261
:vartype job_versions: azure.mgmt.sql.aio.operations.JobVersionsOperations
262
262
:ivar capabilities: CapabilitiesOperations operations
263
263
:vartype capabilities: azure.mgmt.sql.aio.operations.CapabilitiesOperations
264
- :ivar long_term_retention_policies: LongTermRetentionPoliciesOperations operations
265
- :vartype long_term_retention_policies:
266
- azure.mgmt.sql.aio.operations.LongTermRetentionPoliciesOperations
267
264
:ivar maintenance_window_options: MaintenanceWindowOptionsOperations operations
268
265
:vartype maintenance_window_options:
269
266
azure.mgmt.sql.aio.operations.MaintenanceWindowOptionsOperations
@@ -426,9 +423,6 @@ class SqlManagementClient: # pylint: disable=client-accepts-api-version-keyword
426
423
:vartype outbound_firewall_rules: azure.mgmt.sql.aio.operations.OutboundFirewallRulesOperations
427
424
:ivar usages: UsagesOperations operations
428
425
:vartype usages: azure.mgmt.sql.aio.operations.UsagesOperations
429
- :ivar long_term_retention_backups: LongTermRetentionBackupsOperations operations
430
- :vartype long_term_retention_backups:
431
- azure.mgmt.sql.aio.operations.LongTermRetentionBackupsOperations
432
426
:ivar long_term_retention_managed_instance_backups:
433
427
LongTermRetentionManagedInstanceBackupsOperations operations
434
428
:vartype long_term_retention_managed_instance_backups:
@@ -596,12 +590,18 @@ class SqlManagementClient: # pylint: disable=client-accepts-api-version-keyword
596
590
DatabaseSqlVulnerabilityAssessmentsSettingsOperations operations
597
591
:vartype database_sql_vulnerability_assessments_settings:
598
592
azure.mgmt.sql.aio.operations.DatabaseSqlVulnerabilityAssessmentsSettingsOperations
599
- :ivar servers: ServersOperations operations
600
- :vartype servers: azure.mgmt.sql.aio.operations.ServersOperations
601
593
:ivar failover_groups: FailoverGroupsOperations operations
602
594
:vartype failover_groups: azure.mgmt.sql.aio.operations.FailoverGroupsOperations
603
595
:ivar instance_pools: InstancePoolsOperations operations
604
596
:vartype instance_pools: azure.mgmt.sql.aio.operations.InstancePoolsOperations
597
+ :ivar long_term_retention_backups: LongTermRetentionBackupsOperations operations
598
+ :vartype long_term_retention_backups:
599
+ azure.mgmt.sql.aio.operations.LongTermRetentionBackupsOperations
600
+ :ivar long_term_retention_policies: LongTermRetentionPoliciesOperations operations
601
+ :vartype long_term_retention_policies:
602
+ azure.mgmt.sql.aio.operations.LongTermRetentionPoliciesOperations
603
+ :ivar servers: ServersOperations operations
604
+ :vartype servers: azure.mgmt.sql.aio.operations.ServersOperations
605
605
:param credential: Credential needed for the client to connect to Azure. Required.
606
606
:type credential: ~azure.core.credentials_async.AsyncTokenCredential
607
607
:param subscription_id: The subscription ID that identifies an Azure subscription. Required.
@@ -710,9 +710,6 @@ def __init__(
710
710
)
711
711
self .job_versions = JobVersionsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
712
712
self .capabilities = CapabilitiesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
713
- self .long_term_retention_policies = LongTermRetentionPoliciesOperations (
714
- self ._client , self ._config , self ._serialize , self ._deserialize
715
- )
716
713
self .maintenance_window_options = MaintenanceWindowOptionsOperations (
717
714
self ._client , self ._config , self ._serialize , self ._deserialize
718
715
)
@@ -867,9 +864,6 @@ def __init__(
867
864
self ._client , self ._config , self ._serialize , self ._deserialize
868
865
)
869
866
self .usages = UsagesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
870
- self .long_term_retention_backups = LongTermRetentionBackupsOperations (
871
- self ._client , self ._config , self ._serialize , self ._deserialize
872
- )
873
867
self .long_term_retention_managed_instance_backups = LongTermRetentionManagedInstanceBackupsOperations (
874
868
self ._client , self ._config , self ._serialize , self ._deserialize
875
869
)
@@ -1031,9 +1025,15 @@ def __init__(
1031
1025
self .database_sql_vulnerability_assessments_settings = DatabaseSqlVulnerabilityAssessmentsSettingsOperations (
1032
1026
self ._client , self ._config , self ._serialize , self ._deserialize
1033
1027
)
1034
- self .servers = ServersOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
1035
1028
self .failover_groups = FailoverGroupsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
1036
1029
self .instance_pools = InstancePoolsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
1030
+ self .long_term_retention_backups = LongTermRetentionBackupsOperations (
1031
+ self ._client , self ._config , self ._serialize , self ._deserialize
1032
+ )
1033
+ self .long_term_retention_policies = LongTermRetentionPoliciesOperations (
1034
+ self ._client , self ._config , self ._serialize , self ._deserialize
1035
+ )
1036
+ self .servers = ServersOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
1037
1037
1038
1038
def _send_request (self , request : HttpRequest , ** kwargs : Any ) -> Awaitable [AsyncHttpResponse ]:
1039
1039
"""Runs the network request through the client's chained policies.
0 commit comments