@@ -261,9 +261,6 @@ class SqlManagementClient: # pylint: disable=client-accepts-api-version-keyword
261261 :vartype job_versions: azure.mgmt.sql.aio.operations.JobVersionsOperations
262262 :ivar capabilities: CapabilitiesOperations operations
263263 :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
267264 :ivar maintenance_window_options: MaintenanceWindowOptionsOperations operations
268265 :vartype maintenance_window_options:
269266 azure.mgmt.sql.aio.operations.MaintenanceWindowOptionsOperations
@@ -426,9 +423,6 @@ class SqlManagementClient: # pylint: disable=client-accepts-api-version-keyword
426423 :vartype outbound_firewall_rules: azure.mgmt.sql.aio.operations.OutboundFirewallRulesOperations
427424 :ivar usages: UsagesOperations operations
428425 :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
432426 :ivar long_term_retention_managed_instance_backups:
433427 LongTermRetentionManagedInstanceBackupsOperations operations
434428 :vartype long_term_retention_managed_instance_backups:
@@ -596,12 +590,18 @@ class SqlManagementClient: # pylint: disable=client-accepts-api-version-keyword
596590 DatabaseSqlVulnerabilityAssessmentsSettingsOperations operations
597591 :vartype database_sql_vulnerability_assessments_settings:
598592 azure.mgmt.sql.aio.operations.DatabaseSqlVulnerabilityAssessmentsSettingsOperations
599- :ivar servers: ServersOperations operations
600- :vartype servers: azure.mgmt.sql.aio.operations.ServersOperations
601593 :ivar failover_groups: FailoverGroupsOperations operations
602594 :vartype failover_groups: azure.mgmt.sql.aio.operations.FailoverGroupsOperations
603595 :ivar instance_pools: InstancePoolsOperations operations
604596 :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
605605 :param credential: Credential needed for the client to connect to Azure. Required.
606606 :type credential: ~azure.core.credentials_async.AsyncTokenCredential
607607 :param subscription_id: The subscription ID that identifies an Azure subscription. Required.
@@ -710,9 +710,6 @@ def __init__(
710710 )
711711 self .job_versions = JobVersionsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
712712 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- )
716713 self .maintenance_window_options = MaintenanceWindowOptionsOperations (
717714 self ._client , self ._config , self ._serialize , self ._deserialize
718715 )
@@ -867,9 +864,6 @@ def __init__(
867864 self ._client , self ._config , self ._serialize , self ._deserialize
868865 )
869866 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- )
873867 self .long_term_retention_managed_instance_backups = LongTermRetentionManagedInstanceBackupsOperations (
874868 self ._client , self ._config , self ._serialize , self ._deserialize
875869 )
@@ -1031,9 +1025,15 @@ def __init__(
10311025 self .database_sql_vulnerability_assessments_settings = DatabaseSqlVulnerabilityAssessmentsSettingsOperations (
10321026 self ._client , self ._config , self ._serialize , self ._deserialize
10331027 )
1034- self .servers = ServersOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
10351028 self .failover_groups = FailoverGroupsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
10361029 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 )
10371037
10381038 def _send_request (self , request : HttpRequest , ** kwargs : Any ) -> Awaitable [AsyncHttpResponse ]:
10391039 """Runs the network request through the client's chained policies.
0 commit comments