22
22
CassandraClustersOperations ,
23
23
CassandraDataCentersOperations ,
24
24
CassandraResourcesOperations ,
25
- ChaosFaultOperations ,
26
25
CollectionOperations ,
27
26
CollectionPartitionOperations ,
28
27
CollectionPartitionRegionOperations ,
29
28
CollectionRegionOperations ,
30
- DataTransferJobsOperations ,
31
29
DatabaseAccountRegionOperations ,
32
30
DatabaseAccountsOperations ,
33
31
DatabaseOperations ,
34
- GraphResourcesOperations ,
35
32
GremlinResourcesOperations ,
36
33
LocationsOperations ,
37
34
MongoDBResourcesOperations ,
38
- NetworkSecurityPerimeterConfigurationsOperations ,
39
35
NotebookWorkspacesOperations ,
40
36
Operations ,
41
37
PartitionKeyRangeIdOperations ,
60
56
ServiceOperations ,
61
57
SqlResourcesOperations ,
62
58
TableResourcesOperations ,
63
- ThroughputPoolAccountOperations ,
64
- ThroughputPoolAccountsOperations ,
65
- ThroughputPoolOperations ,
66
- ThroughputPoolsOperations ,
67
59
)
68
60
69
61
if TYPE_CHECKING :
@@ -104,8 +96,6 @@ class CosmosDBManagementClient: # pylint: disable=client-accepts-api-version-ke
104
96
:ivar partition_key_range_id_region: PartitionKeyRangeIdRegionOperations operations
105
97
:vartype partition_key_range_id_region:
106
98
azure.mgmt.cosmosdb.operations.PartitionKeyRangeIdRegionOperations
107
- :ivar graph_resources: GraphResourcesOperations operations
108
- :vartype graph_resources: azure.mgmt.cosmosdb.operations.GraphResourcesOperations
109
99
:ivar sql_resources: SqlResourcesOperations operations
110
100
:vartype sql_resources: azure.mgmt.cosmosdb.operations.SqlResourcesOperations
111
101
:ivar mongo_db_resources: MongoDBResourcesOperations operations
@@ -118,16 +108,10 @@ class CosmosDBManagementClient: # pylint: disable=client-accepts-api-version-ke
118
108
:vartype gremlin_resources: azure.mgmt.cosmosdb.operations.GremlinResourcesOperations
119
109
:ivar locations: LocationsOperations operations
120
110
:vartype locations: azure.mgmt.cosmosdb.operations.LocationsOperations
121
- :ivar data_transfer_jobs: DataTransferJobsOperations operations
122
- :vartype data_transfer_jobs: azure.mgmt.cosmosdb.operations.DataTransferJobsOperations
123
111
:ivar cassandra_clusters: CassandraClustersOperations operations
124
112
:vartype cassandra_clusters: azure.mgmt.cosmosdb.operations.CassandraClustersOperations
125
113
:ivar cassandra_data_centers: CassandraDataCentersOperations operations
126
114
:vartype cassandra_data_centers: azure.mgmt.cosmosdb.operations.CassandraDataCentersOperations
127
- :ivar network_security_perimeter_configurations:
128
- NetworkSecurityPerimeterConfigurationsOperations operations
129
- :vartype network_security_perimeter_configurations:
130
- azure.mgmt.cosmosdb.operations.NetworkSecurityPerimeterConfigurationsOperations
131
115
:ivar notebook_workspaces: NotebookWorkspacesOperations operations
132
116
:vartype notebook_workspaces: azure.mgmt.cosmosdb.operations.NotebookWorkspacesOperations
133
117
:ivar private_endpoint_connections: PrivateEndpointConnectionsOperations operations
@@ -172,26 +156,14 @@ class CosmosDBManagementClient: # pylint: disable=client-accepts-api-version-ke
172
156
azure.mgmt.cosmosdb.operations.RestorableTableResourcesOperations
173
157
:ivar service: ServiceOperations operations
174
158
:vartype service: azure.mgmt.cosmosdb.operations.ServiceOperations
175
- :ivar throughput_pools: ThroughputPoolsOperations operations
176
- :vartype throughput_pools: azure.mgmt.cosmosdb.operations.ThroughputPoolsOperations
177
- :ivar throughput_pool: ThroughputPoolOperations operations
178
- :vartype throughput_pool: azure.mgmt.cosmosdb.operations.ThroughputPoolOperations
179
- :ivar throughput_pool_accounts: ThroughputPoolAccountsOperations operations
180
- :vartype throughput_pool_accounts:
181
- azure.mgmt.cosmosdb.operations.ThroughputPoolAccountsOperations
182
- :ivar throughput_pool_account: ThroughputPoolAccountOperations operations
183
- :vartype throughput_pool_account:
184
- azure.mgmt.cosmosdb.operations.ThroughputPoolAccountOperations
185
- :ivar chaos_fault: ChaosFaultOperations operations
186
- :vartype chaos_fault: azure.mgmt.cosmosdb.operations.ChaosFaultOperations
187
159
:param credential: Credential needed for the client to connect to Azure. Required.
188
160
:type credential: ~azure.core.credentials.TokenCredential
189
161
:param subscription_id: The ID of the target subscription. Required.
190
162
:type subscription_id: str
191
163
:param base_url: Service URL. Default value is "https://management.azure.com".
192
164
:type base_url: str
193
- :keyword api_version: Api Version. Default value is "2024-09-01-preview ". Note that overriding
194
- this default value may result in unsupported behavior.
165
+ :keyword api_version: Api Version. Default value is "2024-11-15 ". Note that overriding this
166
+ default value may result in unsupported behavior.
195
167
:paramtype api_version: str
196
168
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
197
169
Retry-After header is present.
@@ -262,7 +234,6 @@ def __init__(
262
234
self .partition_key_range_id_region = PartitionKeyRangeIdRegionOperations (
263
235
self ._client , self ._config , self ._serialize , self ._deserialize
264
236
)
265
- self .graph_resources = GraphResourcesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
266
237
self .sql_resources = SqlResourcesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
267
238
self .mongo_db_resources = MongoDBResourcesOperations (
268
239
self ._client , self ._config , self ._serialize , self ._deserialize
@@ -275,18 +246,12 @@ def __init__(
275
246
self ._client , self ._config , self ._serialize , self ._deserialize
276
247
)
277
248
self .locations = LocationsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
278
- self .data_transfer_jobs = DataTransferJobsOperations (
279
- self ._client , self ._config , self ._serialize , self ._deserialize
280
- )
281
249
self .cassandra_clusters = CassandraClustersOperations (
282
250
self ._client , self ._config , self ._serialize , self ._deserialize
283
251
)
284
252
self .cassandra_data_centers = CassandraDataCentersOperations (
285
253
self ._client , self ._config , self ._serialize , self ._deserialize
286
254
)
287
- self .network_security_perimeter_configurations = NetworkSecurityPerimeterConfigurationsOperations (
288
- self ._client , self ._config , self ._serialize , self ._deserialize
289
- )
290
255
self .notebook_workspaces = NotebookWorkspacesOperations (
291
256
self ._client , self ._config , self ._serialize , self ._deserialize
292
257
)
@@ -333,17 +298,6 @@ def __init__(
333
298
self ._client , self ._config , self ._serialize , self ._deserialize
334
299
)
335
300
self .service = ServiceOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
336
- self .throughput_pools = ThroughputPoolsOperations (
337
- self ._client , self ._config , self ._serialize , self ._deserialize
338
- )
339
- self .throughput_pool = ThroughputPoolOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
340
- self .throughput_pool_accounts = ThroughputPoolAccountsOperations (
341
- self ._client , self ._config , self ._serialize , self ._deserialize
342
- )
343
- self .throughput_pool_account = ThroughputPoolAccountOperations (
344
- self ._client , self ._config , self ._serialize , self ._deserialize
345
- )
346
- self .chaos_fault = ChaosFaultOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
347
301
348
302
def _send_request (self , request : HttpRequest , * , stream : bool = False , ** kwargs : Any ) -> HttpResponse :
349
303
"""Runs the network request through the client's chained policies.
0 commit comments