16
16
from .._serialization import Deserializer , Serializer
17
17
from ._configuration import NetAppManagementClientConfiguration
18
18
from .operations import (
19
- AccountBackupsOperations ,
20
19
AccountsOperations ,
21
20
BackupPoliciesOperations ,
22
- BackupVaultsOperations ,
23
21
BackupsOperations ,
24
- BackupsUnderAccountOperations ,
25
- BackupsUnderBackupVaultOperations ,
26
- BackupsUnderVolumeOperations ,
27
22
NetAppResourceOperations ,
28
23
NetAppResourceQuotaLimitsOperations ,
29
- NetAppResourceRegionInfosOperations ,
30
24
Operations ,
31
25
PoolsOperations ,
32
26
SnapshotPoliciesOperations ,
@@ -52,9 +46,6 @@ class NetAppManagementClient: # pylint: disable=client-accepts-api-version-keyw
52
46
:ivar net_app_resource_quota_limits: NetAppResourceQuotaLimitsOperations operations
53
47
:vartype net_app_resource_quota_limits:
54
48
azure.mgmt.netapp.aio.operations.NetAppResourceQuotaLimitsOperations
55
- :ivar net_app_resource_region_infos: NetAppResourceRegionInfosOperations operations
56
- :vartype net_app_resource_region_infos:
57
- azure.mgmt.netapp.aio.operations.NetAppResourceRegionInfosOperations
58
49
:ivar accounts: AccountsOperations operations
59
50
:vartype accounts: azure.mgmt.netapp.aio.operations.AccountsOperations
60
51
:ivar pools: PoolsOperations operations
@@ -67,8 +58,6 @@ class NetAppManagementClient: # pylint: disable=client-accepts-api-version-keyw
67
58
:vartype snapshot_policies: azure.mgmt.netapp.aio.operations.SnapshotPoliciesOperations
68
59
:ivar backups: BackupsOperations operations
69
60
:vartype backups: azure.mgmt.netapp.aio.operations.BackupsOperations
70
- :ivar account_backups: AccountBackupsOperations operations
71
- :vartype account_backups: azure.mgmt.netapp.aio.operations.AccountBackupsOperations
72
61
:ivar backup_policies: BackupPoliciesOperations operations
73
62
:vartype backup_policies: azure.mgmt.netapp.aio.operations.BackupPoliciesOperations
74
63
:ivar volume_quota_rules: VolumeQuotaRulesOperations operations
@@ -77,23 +66,14 @@ class NetAppManagementClient: # pylint: disable=client-accepts-api-version-keyw
77
66
:vartype volume_groups: azure.mgmt.netapp.aio.operations.VolumeGroupsOperations
78
67
:ivar subvolumes: SubvolumesOperations operations
79
68
:vartype subvolumes: azure.mgmt.netapp.aio.operations.SubvolumesOperations
80
- :ivar backup_vaults: BackupVaultsOperations operations
81
- :vartype backup_vaults: azure.mgmt.netapp.aio.operations.BackupVaultsOperations
82
- :ivar backups_under_backup_vault: BackupsUnderBackupVaultOperations operations
83
- :vartype backups_under_backup_vault:
84
- azure.mgmt.netapp.aio.operations.BackupsUnderBackupVaultOperations
85
- :ivar backups_under_volume: BackupsUnderVolumeOperations operations
86
- :vartype backups_under_volume: azure.mgmt.netapp.aio.operations.BackupsUnderVolumeOperations
87
- :ivar backups_under_account: BackupsUnderAccountOperations operations
88
- :vartype backups_under_account: azure.mgmt.netapp.aio.operations.BackupsUnderAccountOperations
89
69
:param credential: Credential needed for the client to connect to Azure. Required.
90
70
:type credential: ~azure.core.credentials_async.AsyncTokenCredential
91
71
:param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
92
72
:type subscription_id: str
93
73
:param base_url: Service URL. Default value is "https://management.azure.com".
94
74
:type base_url: str
95
- :keyword api_version: Api Version. Default value is "2023-05 -01-preview ". Note that overriding
96
- this default value may result in unsupported behavior.
75
+ :keyword api_version: Api Version. Default value is "2023-07 -01". Note that overriding this
76
+ default value may result in unsupported behavior.
97
77
:paramtype api_version: str
98
78
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
99
79
Retry-After header is present.
@@ -120,9 +100,6 @@ def __init__(
120
100
self .net_app_resource_quota_limits = NetAppResourceQuotaLimitsOperations (
121
101
self ._client , self ._config , self ._serialize , self ._deserialize
122
102
)
123
- self .net_app_resource_region_infos = NetAppResourceRegionInfosOperations (
124
- self ._client , self ._config , self ._serialize , self ._deserialize
125
- )
126
103
self .accounts = AccountsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
127
104
self .pools = PoolsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
128
105
self .volumes = VolumesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
@@ -131,23 +108,12 @@ def __init__(
131
108
self ._client , self ._config , self ._serialize , self ._deserialize
132
109
)
133
110
self .backups = BackupsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
134
- self .account_backups = AccountBackupsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
135
111
self .backup_policies = BackupPoliciesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
136
112
self .volume_quota_rules = VolumeQuotaRulesOperations (
137
113
self ._client , self ._config , self ._serialize , self ._deserialize
138
114
)
139
115
self .volume_groups = VolumeGroupsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
140
116
self .subvolumes = SubvolumesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
141
- self .backup_vaults = BackupVaultsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
142
- self .backups_under_backup_vault = BackupsUnderBackupVaultOperations (
143
- self ._client , self ._config , self ._serialize , self ._deserialize
144
- )
145
- self .backups_under_volume = BackupsUnderVolumeOperations (
146
- self ._client , self ._config , self ._serialize , self ._deserialize
147
- )
148
- self .backups_under_account = BackupsUnderAccountOperations (
149
- self ._client , self ._config , self ._serialize , self ._deserialize
150
- )
151
117
152
118
def _send_request (self , request : HttpRequest , ** kwargs : Any ) -> Awaitable [AsyncHttpResponse ]:
153
119
"""Runs the network request through the client's chained policies.
0 commit comments