|
23 | 23 | DataProtectionOperations,
|
24 | 24 | DataProtectionOperationsOperations,
|
25 | 25 | DeletedBackupInstancesOperations,
|
| 26 | + DppResourceGuardProxyOperations, |
26 | 27 | ExportJobsOperationResultOperations,
|
27 | 28 | ExportJobsOperations,
|
28 | 29 | JobsOperations,
|
@@ -86,6 +87,9 @@ class DataProtectionMgmtClient: # pylint: disable=client-accepts-api-version-ke
|
86 | 87 | azure.mgmt.dataprotection.aio.operations.DeletedBackupInstancesOperations
|
87 | 88 | :ivar resource_guards: ResourceGuardsOperations operations
|
88 | 89 | :vartype resource_guards: azure.mgmt.dataprotection.aio.operations.ResourceGuardsOperations
|
| 90 | + :ivar dpp_resource_guard_proxy: DppResourceGuardProxyOperations operations |
| 91 | + :vartype dpp_resource_guard_proxy: |
| 92 | + azure.mgmt.dataprotection.aio.operations.DppResourceGuardProxyOperations |
89 | 93 | :param credential: Credential needed for the client to connect to Azure. Required.
|
90 | 94 | :type credential: ~azure.core.credentials_async.AsyncTokenCredential
|
91 | 95 | :param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
|
@@ -152,6 +156,9 @@ def __init__(
|
152 | 156 | self._client, self._config, self._serialize, self._deserialize
|
153 | 157 | )
|
154 | 158 | self.resource_guards = ResourceGuardsOperations(self._client, self._config, self._serialize, self._deserialize)
|
| 159 | + self.dpp_resource_guard_proxy = DppResourceGuardProxyOperations( |
| 160 | + self._client, self._config, self._serialize, self._deserialize |
| 161 | + ) |
155 | 162 |
|
156 | 163 | def _send_request(self, request: HttpRequest, **kwargs: Any) -> Awaitable[AsyncHttpResponse]:
|
157 | 164 | """Runs the network request through the client's chained policies.
|
|
0 commit comments