Skip to content

Commit 528c41c

Browse files
author
SDKAuto
committed
CodeGen from PR 12888 in Azure/azure-rest-api-specs
Merge 33ec9f03c312a7159627faedb7b16da86748210e into 5bb1209
1 parent 7857577 commit 528c41c

File tree

51 files changed

+1919
-601
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1919
-601
lines changed

sdk/recoveryservices/azure-mgmt-recoveryservicesbackup/azure/mgmt/recoveryservicesbackup/_recovery_services_backup_client.py

Lines changed: 35 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@
1414

1515
from ._configuration import RecoveryServicesBackupClientConfiguration
1616
from .operations import RecoveryServicesBackupClientOperationsMixin
17+
from .operations import ProtectionIntentOperations
18+
from .operations import BackupStatusOperations
19+
from .operations import FeatureSupportOperations
20+
from .operations import BackupProtectionIntentOperations
21+
from .operations import BackupUsageSummariesOperations
22+
from .operations import Operations
1723
from .operations import BackupResourceVaultConfigsOperations
1824
from .operations import BackupResourceEncryptionConfigsOperations
1925
from .operations import PrivateEndpointConnectionOperations
@@ -49,6 +55,7 @@
4955
from .operations import BackupProtectableItemsOperations
5056
from .operations import BackupProtectionContainersOperations
5157
from .operations import SecurityPINsOperations
58+
from .operations import RecoveryPointsRecommendedForMoveOperations
5259
from .operations import AadPropertiesOperations
5360
from .operations import CrossRegionRestoreOperations
5461
from .operations import BackupCrrJobDetailsOperations
@@ -58,12 +65,6 @@
5865
from .operations import BackupResourceStorageConfigsOperations
5966
from .operations import RecoveryPointsCrrOperations
6067
from .operations import BackupProtectedItemsCrrOperations
61-
from .operations import ProtectionIntentOperations
62-
from .operations import BackupStatusOperations
63-
from .operations import FeatureSupportOperations
64-
from .operations import BackupProtectionIntentOperations
65-
from .operations import BackupUsageSummariesOperations
66-
from .operations import Operations
6768
from . import models
6869

6970

@@ -73,6 +74,18 @@ class RecoveryServicesBackupClient(RecoveryServicesBackupClientOperationsMixin,
7374
:ivar config: Configuration for client.
7475
:vartype config: RecoveryServicesBackupClientConfiguration
7576
77+
:ivar protection_intent: ProtectionIntent operations
78+
:vartype protection_intent: azure.mgmt.recoveryservicesbackup.operations.ProtectionIntentOperations
79+
:ivar backup_status: BackupStatus operations
80+
:vartype backup_status: azure.mgmt.recoveryservicesbackup.operations.BackupStatusOperations
81+
:ivar feature_support: FeatureSupport operations
82+
:vartype feature_support: azure.mgmt.recoveryservicesbackup.operations.FeatureSupportOperations
83+
:ivar backup_protection_intent: BackupProtectionIntent operations
84+
:vartype backup_protection_intent: azure.mgmt.recoveryservicesbackup.operations.BackupProtectionIntentOperations
85+
:ivar backup_usage_summaries: BackupUsageSummaries operations
86+
:vartype backup_usage_summaries: azure.mgmt.recoveryservicesbackup.operations.BackupUsageSummariesOperations
87+
:ivar operations: Operations operations
88+
:vartype operations: azure.mgmt.recoveryservicesbackup.operations.Operations
7689
:ivar backup_resource_vault_configs: BackupResourceVaultConfigs operations
7790
:vartype backup_resource_vault_configs: azure.mgmt.recoveryservicesbackup.operations.BackupResourceVaultConfigsOperations
7891
:ivar backup_resource_encryption_configs: BackupResourceEncryptionConfigs operations
@@ -143,6 +156,8 @@ class RecoveryServicesBackupClient(RecoveryServicesBackupClientOperationsMixin,
143156
:vartype backup_protection_containers: azure.mgmt.recoveryservicesbackup.operations.BackupProtectionContainersOperations
144157
:ivar security_pi_ns: SecurityPINs operations
145158
:vartype security_pi_ns: azure.mgmt.recoveryservicesbackup.operations.SecurityPINsOperations
159+
:ivar recovery_points_recommended_for_move: RecoveryPointsRecommendedForMove operations
160+
:vartype recovery_points_recommended_for_move: azure.mgmt.recoveryservicesbackup.operations.RecoveryPointsRecommendedForMoveOperations
146161
:ivar aad_properties: AadProperties operations
147162
:vartype aad_properties: azure.mgmt.recoveryservicesbackup.operations.AadPropertiesOperations
148163
:ivar cross_region_restore: CrossRegionRestore operations
@@ -161,18 +176,6 @@ class RecoveryServicesBackupClient(RecoveryServicesBackupClientOperationsMixin,
161176
:vartype recovery_points_crr: azure.mgmt.recoveryservicesbackup.operations.RecoveryPointsCrrOperations
162177
:ivar backup_protected_items_crr: BackupProtectedItemsCrr operations
163178
:vartype backup_protected_items_crr: azure.mgmt.recoveryservicesbackup.operations.BackupProtectedItemsCrrOperations
164-
:ivar protection_intent: ProtectionIntent operations
165-
:vartype protection_intent: azure.mgmt.recoveryservicesbackup.operations.ProtectionIntentOperations
166-
:ivar backup_status: BackupStatus operations
167-
:vartype backup_status: azure.mgmt.recoveryservicesbackup.operations.BackupStatusOperations
168-
:ivar feature_support: FeatureSupport operations
169-
:vartype feature_support: azure.mgmt.recoveryservicesbackup.operations.FeatureSupportOperations
170-
:ivar backup_protection_intent: BackupProtectionIntent operations
171-
:vartype backup_protection_intent: azure.mgmt.recoveryservicesbackup.operations.BackupProtectionIntentOperations
172-
:ivar backup_usage_summaries: BackupUsageSummaries operations
173-
:vartype backup_usage_summaries: azure.mgmt.recoveryservicesbackup.operations.BackupUsageSummariesOperations
174-
:ivar operations: Operations operations
175-
:vartype operations: azure.mgmt.recoveryservicesbackup.operations.Operations
176179
177180
:param credentials: Credentials needed for the client to connect to Azure.
178181
:type credentials: :mod:`A msrestazure Credentials
@@ -192,6 +195,18 @@ def __init__(
192195
self._serialize = Serializer(client_models)
193196
self._deserialize = Deserializer(client_models)
194197

198+
self.protection_intent = ProtectionIntentOperations(
199+
self._client, self.config, self._serialize, self._deserialize)
200+
self.backup_status = BackupStatusOperations(
201+
self._client, self.config, self._serialize, self._deserialize)
202+
self.feature_support = FeatureSupportOperations(
203+
self._client, self.config, self._serialize, self._deserialize)
204+
self.backup_protection_intent = BackupProtectionIntentOperations(
205+
self._client, self.config, self._serialize, self._deserialize)
206+
self.backup_usage_summaries = BackupUsageSummariesOperations(
207+
self._client, self.config, self._serialize, self._deserialize)
208+
self.operations = Operations(
209+
self._client, self.config, self._serialize, self._deserialize)
195210
self.backup_resource_vault_configs = BackupResourceVaultConfigsOperations(
196211
self._client, self.config, self._serialize, self._deserialize)
197212
self.backup_resource_encryption_configs = BackupResourceEncryptionConfigsOperations(
@@ -262,6 +277,8 @@ def __init__(
262277
self._client, self.config, self._serialize, self._deserialize)
263278
self.security_pi_ns = SecurityPINsOperations(
264279
self._client, self.config, self._serialize, self._deserialize)
280+
self.recovery_points_recommended_for_move = RecoveryPointsRecommendedForMoveOperations(
281+
self._client, self.config, self._serialize, self._deserialize)
265282
self.aad_properties = AadPropertiesOperations(
266283
self._client, self.config, self._serialize, self._deserialize)
267284
self.cross_region_restore = CrossRegionRestoreOperations(
@@ -280,15 +297,3 @@ def __init__(
280297
self._client, self.config, self._serialize, self._deserialize)
281298
self.backup_protected_items_crr = BackupProtectedItemsCrrOperations(
282299
self._client, self.config, self._serialize, self._deserialize)
283-
self.protection_intent = ProtectionIntentOperations(
284-
self._client, self.config, self._serialize, self._deserialize)
285-
self.backup_status = BackupStatusOperations(
286-
self._client, self.config, self._serialize, self._deserialize)
287-
self.feature_support = FeatureSupportOperations(
288-
self._client, self.config, self._serialize, self._deserialize)
289-
self.backup_protection_intent = BackupProtectionIntentOperations(
290-
self._client, self.config, self._serialize, self._deserialize)
291-
self.backup_usage_summaries = BackupUsageSummariesOperations(
292-
self._client, self.config, self._serialize, self._deserialize)
293-
self.operations = Operations(
294-
self._client, self.config, self._serialize, self._deserialize)

0 commit comments

Comments
 (0)