23
23
CollectionPartitionOperations ,
24
24
CollectionPartitionRegionOperations ,
25
25
CollectionRegionOperations ,
26
+ DataTransferJobsOperations ,
26
27
DatabaseAccountRegionOperations ,
27
28
DatabaseAccountsOperations ,
28
29
DatabaseOperations ,
30
+ GraphResourcesOperations ,
29
31
GremlinResourcesOperations ,
30
32
LocationsOperations ,
33
+ MongoClustersOperations ,
31
34
MongoDBResourcesOperations ,
32
35
NotebookWorkspacesOperations ,
33
36
Operations ,
53
56
ServiceOperations ,
54
57
SqlResourcesOperations ,
55
58
TableResourcesOperations ,
59
+ ThroughputPoolAccountOperations ,
60
+ ThroughputPoolAccountsOperations ,
61
+ ThroughputPoolOperations ,
62
+ ThroughputPoolsOperations ,
56
63
)
57
64
58
65
if TYPE_CHECKING :
@@ -93,6 +100,8 @@ class CosmosDBManagementClient: # pylint: disable=client-accepts-api-version-ke
93
100
:ivar partition_key_range_id_region: PartitionKeyRangeIdRegionOperations operations
94
101
:vartype partition_key_range_id_region:
95
102
azure.mgmt.cosmosdb.operations.PartitionKeyRangeIdRegionOperations
103
+ :ivar graph_resources: GraphResourcesOperations operations
104
+ :vartype graph_resources: azure.mgmt.cosmosdb.operations.GraphResourcesOperations
96
105
:ivar sql_resources: SqlResourcesOperations operations
97
106
:vartype sql_resources: azure.mgmt.cosmosdb.operations.SqlResourcesOperations
98
107
:ivar mongo_db_resources: MongoDBResourcesOperations operations
@@ -105,10 +114,14 @@ class CosmosDBManagementClient: # pylint: disable=client-accepts-api-version-ke
105
114
:vartype gremlin_resources: azure.mgmt.cosmosdb.operations.GremlinResourcesOperations
106
115
:ivar locations: LocationsOperations operations
107
116
:vartype locations: azure.mgmt.cosmosdb.operations.LocationsOperations
117
+ :ivar data_transfer_jobs: DataTransferJobsOperations operations
118
+ :vartype data_transfer_jobs: azure.mgmt.cosmosdb.operations.DataTransferJobsOperations
108
119
:ivar cassandra_clusters: CassandraClustersOperations operations
109
120
:vartype cassandra_clusters: azure.mgmt.cosmosdb.operations.CassandraClustersOperations
110
121
:ivar cassandra_data_centers: CassandraDataCentersOperations operations
111
122
:vartype cassandra_data_centers: azure.mgmt.cosmosdb.operations.CassandraDataCentersOperations
123
+ :ivar mongo_clusters: MongoClustersOperations operations
124
+ :vartype mongo_clusters: azure.mgmt.cosmosdb.operations.MongoClustersOperations
112
125
:ivar notebook_workspaces: NotebookWorkspacesOperations operations
113
126
:vartype notebook_workspaces: azure.mgmt.cosmosdb.operations.NotebookWorkspacesOperations
114
127
:ivar private_endpoint_connections: PrivateEndpointConnectionsOperations operations
@@ -153,14 +166,24 @@ class CosmosDBManagementClient: # pylint: disable=client-accepts-api-version-ke
153
166
azure.mgmt.cosmosdb.operations.RestorableTableResourcesOperations
154
167
:ivar service: ServiceOperations operations
155
168
:vartype service: azure.mgmt.cosmosdb.operations.ServiceOperations
169
+ :ivar throughput_pools: ThroughputPoolsOperations operations
170
+ :vartype throughput_pools: azure.mgmt.cosmosdb.operations.ThroughputPoolsOperations
171
+ :ivar throughput_pool: ThroughputPoolOperations operations
172
+ :vartype throughput_pool: azure.mgmt.cosmosdb.operations.ThroughputPoolOperations
173
+ :ivar throughput_pool_accounts: ThroughputPoolAccountsOperations operations
174
+ :vartype throughput_pool_accounts:
175
+ azure.mgmt.cosmosdb.operations.ThroughputPoolAccountsOperations
176
+ :ivar throughput_pool_account: ThroughputPoolAccountOperations operations
177
+ :vartype throughput_pool_account:
178
+ azure.mgmt.cosmosdb.operations.ThroughputPoolAccountOperations
156
179
:param credential: Credential needed for the client to connect to Azure. Required.
157
180
:type credential: ~azure.core.credentials.TokenCredential
158
181
:param subscription_id: The ID of the target subscription. Required.
159
182
:type subscription_id: str
160
183
:param base_url: Service URL. Default value is "https://management.azure.com".
161
184
:type base_url: str
162
- :keyword api_version: Api Version. Default value is "2023-11-15". Note that overriding this
163
- default value may result in unsupported behavior.
185
+ :keyword api_version: Api Version. Default value is "2023-11-15-preview ". Note that overriding
186
+ this default value may result in unsupported behavior.
164
187
:paramtype api_version: str
165
188
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
166
189
Retry-After header is present.
@@ -213,6 +236,7 @@ def __init__(
213
236
self .partition_key_range_id_region = PartitionKeyRangeIdRegionOperations (
214
237
self ._client , self ._config , self ._serialize , self ._deserialize
215
238
)
239
+ self .graph_resources = GraphResourcesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
216
240
self .sql_resources = SqlResourcesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
217
241
self .mongo_db_resources = MongoDBResourcesOperations (
218
242
self ._client , self ._config , self ._serialize , self ._deserialize
@@ -225,12 +249,16 @@ def __init__(
225
249
self ._client , self ._config , self ._serialize , self ._deserialize
226
250
)
227
251
self .locations = LocationsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
252
+ self .data_transfer_jobs = DataTransferJobsOperations (
253
+ self ._client , self ._config , self ._serialize , self ._deserialize
254
+ )
228
255
self .cassandra_clusters = CassandraClustersOperations (
229
256
self ._client , self ._config , self ._serialize , self ._deserialize
230
257
)
231
258
self .cassandra_data_centers = CassandraDataCentersOperations (
232
259
self ._client , self ._config , self ._serialize , self ._deserialize
233
260
)
261
+ self .mongo_clusters = MongoClustersOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
234
262
self .notebook_workspaces = NotebookWorkspacesOperations (
235
263
self ._client , self ._config , self ._serialize , self ._deserialize
236
264
)
@@ -277,6 +305,16 @@ def __init__(
277
305
self ._client , self ._config , self ._serialize , self ._deserialize
278
306
)
279
307
self .service = ServiceOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
308
+ self .throughput_pools = ThroughputPoolsOperations (
309
+ self ._client , self ._config , self ._serialize , self ._deserialize
310
+ )
311
+ self .throughput_pool = ThroughputPoolOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
312
+ self .throughput_pool_accounts = ThroughputPoolAccountsOperations (
313
+ self ._client , self ._config , self ._serialize , self ._deserialize
314
+ )
315
+ self .throughput_pool_account = ThroughputPoolAccountOperations (
316
+ self ._client , self ._config , self ._serialize , self ._deserialize
317
+ )
280
318
281
319
def _send_request (self , request : HttpRequest , ** kwargs : Any ) -> HttpResponse :
282
320
"""Runs the network request through the client's chained policies.
0 commit comments