1#![allow(clippy::too_many_arguments)]
4
5use std::sync::Arc;
6
7use crate::errors::Error;
8use crate::http::ClientInner;
9use crate::types_gen::*;
10
11pub struct Client {
13 pub accounts: AccountsService,
14 pub users: UsersService,
15 pub regions: RegionsService,
16 pub clusters: ClustersService,
17 pub metadata_clusters: MetadataClustersService,
18 pub storages: StoragesService,
19 pub volumes: VolumesService,
20 pub volume_fork_trees: VolumeForkTreesService,
21 pub volume_fork_entries: VolumeForkEntriesService,
22 pub volume_fork_searches: VolumeForkSearchesService,
23 pub audit_logs: AuditLogsService,
24 pub region_audit_logs: RegionAuditLogsService,
25 pub service_nodes: ServiceNodesService,
26 pub nodes: NodesService,
27 pub client_sessions: ClientSessionsService,
28 pub discover: DiscoverService,
29 pub metrics: MetricsService,
30 pub dashboard: DashboardService,
31 pub license: LicenseService,
32 pub alerts: AlertsService,
33 pub region_alerts: RegionAlertsService,
34 pub gc_worker_events: GCWorkerEventsService,
35 pub vault: VaultService,
36}
37
38impl Client {
39 pub fn new(config: Config) -> Result<Self, Error> {
41 let inner = Arc::new(ClientInner::new(config)?);
42 Ok(Self {
43 accounts: AccountsService { inner: Arc::clone(&inner) },
44 users: UsersService { inner: Arc::clone(&inner) },
45 regions: RegionsService { inner: Arc::clone(&inner) },
46 clusters: ClustersService { inner: Arc::clone(&inner) },
47 metadata_clusters: MetadataClustersService { inner: Arc::clone(&inner) },
48 storages: StoragesService { inner: Arc::clone(&inner) },
49 volumes: VolumesService { inner: Arc::clone(&inner) },
50 volume_fork_trees: VolumeForkTreesService { inner: Arc::clone(&inner) },
51 volume_fork_entries: VolumeForkEntriesService { inner: Arc::clone(&inner) },
52 volume_fork_searches: VolumeForkSearchesService { inner: Arc::clone(&inner) },
53 audit_logs: AuditLogsService { inner: Arc::clone(&inner) },
54 region_audit_logs: RegionAuditLogsService { inner: Arc::clone(&inner) },
55 service_nodes: ServiceNodesService { inner: Arc::clone(&inner) },
56 nodes: NodesService { inner: Arc::clone(&inner) },
57 client_sessions: ClientSessionsService { inner: Arc::clone(&inner) },
58 discover: DiscoverService { inner: Arc::clone(&inner) },
59 metrics: MetricsService { inner: Arc::clone(&inner) },
60 dashboard: DashboardService { inner: Arc::clone(&inner) },
61 license: LicenseService { inner: Arc::clone(&inner) },
62 alerts: AlertsService { inner: Arc::clone(&inner) },
63 region_alerts: RegionAlertsService { inner: Arc::clone(&inner) },
64 gc_worker_events: GCWorkerEventsService { inner: Arc::clone(&inner) },
65 vault: VaultService { inner: Arc::clone(&inner) },
66 })
67 }
68}
69
70pub struct AccountsService {
72 inner: Arc<ClientInner>,
73}
74
75impl AccountsService {
76 pub async fn create(&self, req: &CreateAccountRequest) -> Result<IdResponse, Error> {
77 self.inner.post("/api/v1/accounts/create", req).await
78 }
79
80 pub async fn list(&self, opts: Option<&AccountListOptions>) -> Result<PaginatedResponse<Account>, Error> {
81 let mut query: Vec<(&str, String)> = Vec::new();
82 if let Some(opts) = opts {
83 if let Some(v) = &opts.is_active {
84 query.push(("isActive", v.to_string()));
85 }
86 if let Some(v) = &opts.page {
87 query.push(("page", v.to_string()));
88 }
89 if let Some(v) = &opts.limit {
90 query.push(("limit", v.to_string()));
91 }
92 }
93 self.inner.get("/api/v1/accounts/list", &query).await
94 }
95
96 pub async fn get(&self, account_id: i64) -> Result<Account, Error> {
97 self.inner.get(&format!("/api/v1/accounts/{}", account_id), &[]).await
98 }
99
100 pub async fn edit(&self, account_id: i64, req: &EditAccountRequest) -> Result<IdResponse, Error> {
101 self.inner.put(&format!("/api/v1/accounts/{}", account_id), req).await
102 }
103
104 pub async fn lock(&self, account_id: i64) -> Result<IdResponse, Error> {
105 self.inner.post_empty(&format!("/api/v1/accounts/{}/lock", account_id)).await
106 }
107
108 pub async fn unlock(&self, account_id: i64) -> Result<IdResponse, Error> {
109 self.inner.post_empty(&format!("/api/v1/accounts/{}/unlock", account_id)).await
110 }
111
112 pub async fn deactivate(&self, account_id: i64) -> Result<IdResponse, Error> {
113 self.inner.post_empty(&format!("/api/v1/accounts/{}/deactivate", account_id)).await
114 }
115
116 pub async fn update_quota(&self, account_id: i64, req: &UpdateAccountQuotaRequest) -> Result<IdResponse, Error> {
117 self.inner.put(&format!("/api/v1/accounts/{}/quota", account_id), req).await
118 }
119}
120
121pub struct UsersService {
123 inner: Arc<ClientInner>,
124}
125
126impl UsersService {
127 pub async fn add(&self, req: &AddUserRequest) -> Result<IdResponse, Error> {
128 self.inner.post("/api/v1/users/add", req).await
129 }
130
131 pub async fn list(&self, opts: &UserListOptions) -> Result<PaginatedResponse<User>, Error> {
132 let mut query: Vec<(&str, String)> = Vec::new();
133 query.push(("accountId", opts.account_id.to_string()));
134 if let Some(v) = &opts.search {
135 query.push(("search", v.to_string()));
136 }
137 if let Some(v) = &opts.is_active {
138 query.push(("isActive", v.to_string()));
139 }
140 if let Some(v) = &opts.page {
141 query.push(("page", v.to_string()));
142 }
143 if let Some(v) = &opts.limit {
144 query.push(("limit", v.to_string()));
145 }
146 self.inner.get("/api/v1/users/list", &query).await
147 }
148
149 pub async fn get(&self, user_id: i64) -> Result<User, Error> {
150 self.inner.get(&format!("/api/v1/users/{}", user_id), &[]).await
151 }
152
153 pub async fn bulk(&self, req: &BulkUserRequest) -> Result<BulkUserResponse, Error> {
154 self.inner.query("/api/v1/users/bulk", req).await
155 }
156
157 pub async fn edit(&self, user_id: i64, req: &EditUserRequest) -> Result<IdResponse, Error> {
158 self.inner.put(&format!("/api/v1/users/{}", user_id), req).await
159 }
160
161 pub async fn deactivate(&self, user_id: i64) -> Result<IdResponse, Error> {
162 self.inner.post_empty(&format!("/api/v1/users/{}/deactivate", user_id)).await
163 }
164}
165
166pub struct RegionsService {
168 inner: Arc<ClientInner>,
169}
170
171impl RegionsService {
172 pub async fn create(&self, req: &CreateRegionRequest) -> Result<IdResponse, Error> {
173 self.inner.post("/api/v1/regions/create", req).await
174 }
175
176 pub async fn list(&self, opts: &RegionListOptions) -> Result<PaginatedResponse<Region>, Error> {
177 let mut query: Vec<(&str, String)> = Vec::new();
178 query.push(("accountId", opts.account_id.to_string()));
179 if let Some(v) = &opts.is_active {
180 query.push(("isActive", v.to_string()));
181 }
182 if let Some(v) = &opts.page {
183 query.push(("page", v.to_string()));
184 }
185 if let Some(v) = &opts.limit {
186 query.push(("limit", v.to_string()));
187 }
188 self.inner.get("/api/v1/regions/list", &query).await
189 }
190
191 pub async fn get(&self, region_id: i64) -> Result<Region, Error> {
192 self.inner.get(&format!("/api/v1/regions/{}", region_id), &[]).await
193 }
194
195 pub async fn edit(&self, region_id: i64, req: &EditRegionRequest) -> Result<IdResponse, Error> {
196 self.inner.put(&format!("/api/v1/regions/{}", region_id), req).await
197 }
198
199 pub async fn deactivate(&self, region_id: i64) -> Result<IdResponse, Error> {
200 self.inner.post_empty(&format!("/api/v1/regions/{}/deactivate", region_id)).await
201 }
202}
203
204pub struct ClustersService {
206 inner: Arc<ClientInner>,
207}
208
209impl ClustersService {
210 pub async fn list(&self, opts: &ClusterListOptions) -> Result<PaginatedResponse<MetadataCluster>, Error> {
211 let mut query: Vec<(&str, String)> = Vec::new();
212 query.push(("accountId", opts.account_id.to_string()));
213 if let Some(v) = &opts.region_id {
214 query.push(("regionId", v.to_string()));
215 }
216 if let Some(v) = &opts.is_active {
217 query.push(("isActive", v.to_string()));
218 }
219 if let Some(v) = &opts.page {
220 query.push(("page", v.to_string()));
221 }
222 if let Some(v) = &opts.limit {
223 query.push(("limit", v.to_string()));
224 }
225 self.inner.get("/api/v1/clusters/list", &query).await
226 }
227}
228
229pub struct MetadataClustersService {
231 inner: Arc<ClientInner>,
232}
233
234impl MetadataClustersService {
235 pub async fn create(&self, region_id: i64, req: &CreateMetadataClusterRequest) -> Result<IdResponse, Error> {
236 self.inner.post(&format!("/api/v1/regions/{}/clusters/create", region_id), req).await
237 }
238
239 pub async fn list(&self, region_id: i64, opts: Option<&MetadataClusterListOptions>) -> Result<PaginatedResponse<MetadataCluster>, Error> {
240 let mut query: Vec<(&str, String)> = Vec::new();
241 if let Some(opts) = opts {
242 if let Some(v) = &opts.is_active {
243 query.push(("isActive", v.to_string()));
244 }
245 if let Some(v) = &opts.page {
246 query.push(("page", v.to_string()));
247 }
248 if let Some(v) = &opts.limit {
249 query.push(("limit", v.to_string()));
250 }
251 }
252 self.inner.get(&format!("/api/v1/regions/{}/clusters/list", region_id), &query).await
253 }
254
255 pub async fn get(&self, region_id: i64, cluster_id: i64) -> Result<MetadataCluster, Error> {
256 self.inner.get(&format!("/api/v1/regions/{}/clusters/{}", region_id, cluster_id), &[]).await
257 }
258
259 pub async fn edit(&self, region_id: i64, cluster_id: i64, req: &EditMetadataClusterRequest) -> Result<IdResponse, Error> {
260 self.inner.put(&format!("/api/v1/regions/{}/clusters/{}", region_id, cluster_id), req).await
261 }
262
263 pub async fn set_default(&self, region_id: i64, cluster_id: i64) -> Result<IdResponse, Error> {
264 self.inner.post_empty(&format!("/api/v1/regions/{}/clusters/{}/set-default", region_id, cluster_id)).await
265 }
266
267 pub async fn set_ready(&self, region_id: i64, cluster_id: i64, req: &SetMetadataClusterReadyRequest) -> Result<SetReadyMetadataClusterResponse, Error> {
268 self.inner.post(&format!("/api/v1/regions/{}/clusters/{}/set-ready", region_id, cluster_id), req).await
269 }
270
271 pub async fn deactivate(&self, region_id: i64, cluster_id: i64) -> Result<IdResponse, Error> {
272 self.inner.post_empty(&format!("/api/v1/regions/{}/clusters/{}/deactivate", region_id, cluster_id)).await
273 }
274}
275
276pub struct StoragesService {
278 inner: Arc<ClientInner>,
279}
280
281impl StoragesService {
282 pub async fn create(&self, req: &CreateStorageRequest) -> Result<IdResponse, Error> {
283 self.inner.post("/api/v1/storages/create", req).await
284 }
285
286 pub async fn list(&self, opts: &StorageListOptions) -> Result<PaginatedResponse<Storage>, Error> {
287 let mut query: Vec<(&str, String)> = Vec::new();
288 query.push(("accountId", opts.account_id.to_string()));
289 if let Some(v) = &opts.search {
290 query.push(("search", v.to_string()));
291 }
292 if let Some(v) = &opts.region_id {
293 query.push(("regionId", v.to_string()));
294 }
295 if let Some(v) = &opts.storage_type {
296 query.push(("storageType", v.to_string()));
297 }
298 if let Some(v) = &opts.provider_type {
299 query.push(("providerType", v.to_string()));
300 }
301 if let Some(v) = &opts.is_active {
302 query.push(("isActive", v.to_string()));
303 }
304 if let Some(v) = &opts.direct_access {
305 query.push(("directAccess", v.to_string()));
306 }
307 if let Some(v) = &opts.page {
308 query.push(("page", v.to_string()));
309 }
310 if let Some(v) = &opts.limit {
311 query.push(("limit", v.to_string()));
312 }
313 self.inner.get("/api/v1/storages/list", &query).await
314 }
315
316 pub async fn get(&self, storage_id: i64) -> Result<Storage, Error> {
317 self.inner.get(&format!("/api/v1/storages/{}", storage_id), &[]).await
318 }
319
320 pub async fn list_block_volumes(&self, storage_id: i64) -> Result<Vec<BlockVolume>, Error> {
321 self.inner.get(&format!("/api/v1/storages/{}/block-volumes", storage_id), &[]).await
322 }
323
324 pub async fn edit(&self, storage_id: i64, req: &EditStorageRequest) -> Result<IdResponse, Error> {
325 self.inner.put(&format!("/api/v1/storages/{}", storage_id), req).await
326 }
327
328 pub async fn deactivate(&self, storage_id: i64) -> Result<IdResponse, Error> {
329 self.inner.post_empty(&format!("/api/v1/storages/{}/deactivate", storage_id)).await
330 }
331
332 pub async fn test_new_bucket(&self, req: &TestStorageNewBucketRequest) -> Result<TestNewBucketStorageResponse, Error> {
333 self.inner.post("/api/v1/storages/test-bucket", req).await
334 }
335
336 pub async fn test_storage_bucket(&self, storage_id: i64) -> Result<TestStorageBucketStorageResponse, Error> {
337 self.inner.post_empty(&format!("/api/v1/storages/{}/test-bucket", storage_id)).await
338 }
339
340 pub async fn list_compatible(&self, storage_id: i64) -> Result<ListCompatibleStorageResponse, Error> {
341 self.inner.get(&format!("/api/v1/storages/{}/compatible", storage_id), &[]).await
342 }
343
344 pub async fn move_volumes(&self, storage_id: i64, req: &MoveStorageVolumesRequest) -> Result<MoveVolumesStorageResponse, Error> {
345 self.inner.post(&format!("/api/v1/storages/{}/move-volumes", storage_id), req).await
346 }
347
348 pub async fn list_copysets(&self, storage_id: i64, state: Option<&str>, include_retired: Option<bool>) -> Result<Vec<Copyset>, Error> {
349 let mut query: Vec<(&str, String)> = Vec::new();
350 if let Some(v) = state {
351 query.push(("state", v.to_string()));
352 }
353 if let Some(v) = include_retired {
354 query.push(("includeRetired", v.to_string()));
355 }
356 self.inner.get(&format!("/api/v1/storages/{}/copysets", storage_id), &query).await
357 }
358
359 pub async fn get_copyset_status(&self, storage_id: i64, copyset_id: &str) -> Result<Copyset, Error> {
360 self.inner.get(&format!("/api/v1/storages/{}/copysets/{}", storage_id, crate::http::encode_segment(copyset_id)), &[]).await
361 }
362
363 pub async fn drain_copyset(&self, storage_id: i64, copyset_id: &str) -> Result<DrainCopysetStorageResponse, Error> {
364 self.inner.post_empty(&format!("/api/v1/storages/{}/copysets/{}/drain", storage_id, crate::http::encode_segment(copyset_id))).await
365 }
366
367 pub async fn cancel_drain(&self, storage_id: i64, copyset_id: &str) -> Result<CancelDrainStorageResponse, Error> {
368 self.inner.post_empty(&format!("/api/v1/storages/{}/copysets/{}/cancel-drain", storage_id, crate::http::encode_segment(copyset_id))).await
369 }
370
371 pub async fn update_tags(&self, storage_id: i64, copyset_id: &str, req: &UpdateStorageTagsRequest) -> Result<Copyset, Error> {
372 self.inner.put(&format!("/api/v1/storages/{}/copysets/{}/tags", storage_id, crate::http::encode_segment(copyset_id)), req).await
373 }
374
375 pub async fn register_copyset(&self, storage_id: i64, req: &RegisterStorageCopysetRequest) -> Result<Copyset, Error> {
376 self.inner.post(&format!("/api/v1/storages/{}/copysets", storage_id), req).await
377 }
378
379 pub async fn register_copysets_bulk(&self, storage_id: i64, req: &RegisterStorageCopysetsBulkRequest) -> Result<RegisterCopysetsBulkStorageResponse, Error> {
380 self.inner.post(&format!("/api/v1/storages/{}/copysets/bulk", storage_id), req).await
381 }
382
383 pub async fn add_copyset_member(&self, storage_id: i64, copyset_id: &str) -> Result<PoolMember, Error> {
384 self.inner.post_empty(&format!("/api/v1/storages/{}/copysets/{}/members", storage_id, crate::http::encode_segment(copyset_id))).await
385 }
386
387 pub async fn remove_member(&self, storage_id: i64, block_volume_id: &str) -> Result<RemoveMemberStorageResponse, Error> {
388 self.inner.delete(&format!("/api/v1/storages/{}/members/{}", storage_id, crate::http::encode_segment(block_volume_id))).await
389 }
390
391 pub async fn backfill_fingerprints(&self) -> Result<BackfillFingerprintsStorageResponse, Error> {
392 self.inner.post_empty("/api/v1/storages/backfill-fingerprints").await
393 }
394}
395
396pub struct VolumesService {
398 inner: Arc<ClientInner>,
399}
400
401impl VolumesService {
402 pub async fn create(&self, req: &CreateVolumeRequest) -> Result<CreateVolumeResponse, Error> {
403 self.inner.post("/api/v1/volumes/create", req).await
404 }
405
406 pub async fn list(&self, opts: &VolumeListOptions) -> Result<PaginatedResponse<Volume>, Error> {
407 let mut query: Vec<(&str, String)> = Vec::new();
408 query.push(("accountId", opts.account_id.to_string()));
409 if let Some(v) = &opts.region_id {
410 query.push(("regionId", v.to_string()));
411 }
412 if let Some(v) = &opts.metadata_cluster_id {
413 query.push(("metadataClusterId", v.to_string()));
414 }
415 if let Some(v) = &opts.storage_id {
416 query.push(("storageId", v.to_string()));
417 }
418 if let Some(v) = &opts.volume_type {
419 query.push(("volumeType", v.to_string()));
420 }
421 if let Some(v) = &opts.locked {
422 query.push(("locked", v.to_string()));
423 }
424 if let Some(v) = &opts.is_active {
425 query.push(("isActive", v.to_string()));
426 }
427 if let Some(v) = &opts.page {
428 query.push(("page", v.to_string()));
429 }
430 if let Some(v) = &opts.limit {
431 query.push(("limit", v.to_string()));
432 }
433 self.inner.get("/api/v1/volumes/list", &query).await
434 }
435
436 pub async fn get(&self, volume_id: i64) -> Result<Volume, Error> {
437 self.inner.get(&format!("/api/v1/volumes/{}", volume_id), &[]).await
438 }
439
440 pub async fn edit(&self, volume_id: i64, req: &EditVolumeRequest) -> Result<IdResponse, Error> {
441 self.inner.put(&format!("/api/v1/volumes/{}", volume_id), req).await
442 }
443
444 pub async fn lock(&self, volume_id: i64) -> Result<IdResponse, Error> {
445 self.inner.post_empty(&format!("/api/v1/volumes/{}/lock", volume_id)).await
446 }
447
448 pub async fn unlock(&self, volume_id: i64) -> Result<IdResponse, Error> {
449 self.inner.post_empty(&format!("/api/v1/volumes/{}/unlock", volume_id)).await
450 }
451
452 pub async fn move_cluster(&self, volume_id: i64, req: &MoveVolumeClusterRequest) -> Result<MoveClusterVolumeResponse, Error> {
453 self.inner.post(&format!("/api/v1/volumes/{}/move-cluster", volume_id), req).await
454 }
455
456 pub async fn deactivate(&self, volume_id: i64, req: &DeactivateVolumeRequest) -> Result<IdResponse, Error> {
457 self.inner.post(&format!("/api/v1/volumes/{}/deactivate", volume_id), req).await
458 }
459
460 pub async fn activate(&self, volume_id: i64) -> Result<IdResponse, Error> {
461 self.inner.post_empty(&format!("/api/v1/volumes/{}/activate", volume_id)).await
462 }
463
464 pub async fn generate_api_keys(&self, volume_id: i64, req: &GenerateVolumeAPIKeysRequest) -> Result<GenerateAPIKeysVolumeResponse, Error> {
465 self.inner.post(&format!("/api/v1/volumes/{}/api-keys/generate", volume_id), req).await
466 }
467
468 pub async fn list_api_keys(&self, volume_id: i64) -> Result<ListAPIKeysVolumeResponse, Error> {
469 self.inner.get(&format!("/api/v1/volumes/{}/api-keys", volume_id), &[]).await
470 }
471
472 pub async fn revoke_api_key(&self, volume_id: i64, req: &RevokeVolumeAPIKeyRequest) -> Result<(), Error> {
473 self.inner.post::<serde_json::Value, _>(&format!("/api/v1/volumes/{}/api-keys/revoke", volume_id), req).await.map(|_| ())
474 }
475
476 pub async fn revoke_api_keys_by_user(&self, volume_id: i64, req: &RevokeVolumeAPIKeysByUserRequest) -> Result<(), Error> {
477 self.inner.post::<serde_json::Value, _>(&format!("/api/v1/volumes/{}/api-keys/revoke-by-user", volume_id), req).await.map(|_| ())
478 }
479
480 pub async fn generate_stt_key(&self, volume_id: i64, req: &GenerateVolumeSttKeyRequest) -> Result<GenerateSttKeyVolumeResponse, Error> {
481 self.inner.post(&format!("/api/v1/volumes/{}/stt-key/generate", volume_id), req).await
482 }
483
484 pub async fn update_quota(&self, volume_id: i64, req: &UpdateVolumeQuotaRequest) -> Result<IdResponse, Error> {
485 self.inner.put(&format!("/api/v1/volumes/{}/quota", volume_id), req).await
486 }
487
488 pub async fn get_copyset_config(&self, volume_id: i64) -> Result<VolumeBlockPlacementConfig, Error> {
489 self.inner.get(&format!("/api/v1/volumes/{}/copyset-config", volume_id), &[]).await
490 }
491
492 pub async fn update_copyset_config(&self, volume_id: i64, req: &UpdateVolumeCopysetConfigRequest) -> Result<VolumeBlockPlacementResizeResult, Error> {
493 self.inner.put(&format!("/api/v1/volumes/{}/copyset-config", volume_id), req).await
494 }
495
496 pub async fn stats(&self, volume_id: i64) -> Result<StatsVolumeResponse, Error> {
497 self.inner.get(&format!("/api/v1/volumes/{}/stats", volume_id), &[]).await
498 }
499
500 pub async fn size_history(&self, volume_id: i64, from: Option<&str>, to: Option<&str>) -> Result<SizeHistoryVolumeResponse, Error> {
501 let mut query: Vec<(&str, String)> = Vec::new();
502 if let Some(v) = from {
503 query.push(("from", v.to_string()));
504 }
505 if let Some(v) = to {
506 query.push(("to", v.to_string()));
507 }
508 self.inner.get(&format!("/api/v1/volumes/{}/size-history", volume_id), &query).await
509 }
510
511 pub async fn create_fork(&self, volume_id: i64, req: &CreateVolumeForkRequest) -> Result<Fork, Error> {
512 self.inner.post(&format!("/api/v1/volumes/{}/forks/create", volume_id), req).await
513 }
514
515 pub async fn list_forks(&self, volume_id: i64, volume_type: Option<&str>, include_inactive: Option<bool>) -> Result<Vec<Fork>, Error> {
516 let mut query: Vec<(&str, String)> = Vec::new();
517 if let Some(v) = volume_type {
518 query.push(("volumeType", v.to_string()));
519 }
520 if let Some(v) = include_inactive {
521 query.push(("includeInactive", v.to_string()));
522 }
523 self.inner.get(&format!("/api/v1/volumes/{}/forks", volume_id), &query).await
524 }
525
526 pub async fn delete_fork(&self, volume_id: i64, fork_name: &str, req: &DeleteVolumeForkRequest) -> Result<DeleteForkVolumeResponse, Error> {
527 self.inner.post(&format!("/api/v1/volumes/{}/forks/{}/delete", volume_id, crate::http::encode_segment(fork_name)), req).await
528 }
529
530 pub async fn restore_fork(&self, volume_id: i64, fork_name: &str, req: &RestoreVolumeForkRequest) -> Result<Fork, Error> {
531 self.inner.post(&format!("/api/v1/volumes/{}/forks/{}/restore", volume_id, crate::http::encode_segment(fork_name)), req).await
532 }
533}
534
535pub struct VolumeForkTreesService {
537 inner: Arc<ClientInner>,
538}
539
540impl VolumeForkTreesService {
541 pub async fn list(&self, volume_id: i64, fork_name: &str, opts: Option<&VolumeForkTreeListOptions>) -> Result<CursorPaginatedResponse<ForkTreeEntry>, Error> {
542 let mut query: Vec<(&str, String)> = Vec::new();
543 if let Some(opts) = opts {
544 if let Some(v) = &opts.path {
545 query.push(("path", v.to_string()));
546 }
547 if let Some(v) = &opts.as_of {
548 query.push(("asOf", v.to_string()));
549 }
550 if let Some(v) = &opts.cursor {
551 query.push(("cursor", v.to_string()));
552 }
553 if let Some(v) = &opts.limit {
554 query.push(("limit", v.to_string()));
555 }
556 if let Some(v) = &opts.sort {
557 query.push(("sort", v.to_string()));
558 }
559 if let Some(v) = &opts.kind {
560 query.push(("kind", v.to_string()));
561 }
562 }
563 self.inner.get(&format!("/api/v1/volumes/{}/forks/{}/tree", volume_id, crate::http::encode_segment(fork_name)), &query).await
564 }
565}
566
567pub struct VolumeForkEntriesService {
569 inner: Arc<ClientInner>,
570}
571
572impl VolumeForkEntriesService {
573 pub async fn get(&self, volume_id: i64, fork_name: &str, path: Option<&str>, inode: Option<i64>, as_of: Option<i64>) -> Result<ForkEntryDetail, Error> {
574 let mut query: Vec<(&str, String)> = Vec::new();
575 if let Some(v) = path {
576 query.push(("path", v.to_string()));
577 }
578 if let Some(v) = inode {
579 query.push(("inode", v.to_string()));
580 }
581 if let Some(v) = as_of {
582 query.push(("asOf", v.to_string()));
583 }
584 self.inner.get(&format!("/api/v1/volumes/{}/forks/{}/entry", volume_id, crate::http::encode_segment(fork_name)), &query).await
585 }
586
587 pub async fn versions(&self, volume_id: i64, fork_name: &str, opts: Option<&VolumeForkEntryListOptions>) -> Result<CursorPaginatedResponse<ForkEntryVersion>, Error> {
588 let mut query: Vec<(&str, String)> = Vec::new();
589 if let Some(opts) = opts {
590 if let Some(v) = &opts.path {
591 query.push(("path", v.to_string()));
592 }
593 if let Some(v) = &opts.cursor {
594 query.push(("cursor", v.to_string()));
595 }
596 if let Some(v) = &opts.limit {
597 query.push(("limit", v.to_string()));
598 }
599 }
600 self.inner.get(&format!("/api/v1/volumes/{}/forks/{}/entry/versions", volume_id, crate::http::encode_segment(fork_name)), &query).await
601 }
602}
603
604pub struct VolumeForkSearchesService {
606 inner: Arc<ClientInner>,
607}
608
609impl VolumeForkSearchesService {
610 pub async fn find(&self, volume_id: i64, fork_name: &str, opts: Option<&VolumeForkSearchListOptions>) -> Result<CursorPaginatedResponse<ForkTreeMatch>, Error> {
611 let mut query: Vec<(&str, String)> = Vec::new();
612 if let Some(opts) = opts {
613 if let Some(v) = &opts.q {
614 query.push(("q", v.to_string()));
615 }
616 if let Some(v) = &opts.path {
617 query.push(("path", v.to_string()));
618 }
619 if let Some(v) = &opts.as_of {
620 query.push(("asOf", v.to_string()));
621 }
622 if let Some(v) = &opts.exact {
623 query.push(("exact", v.to_string()));
624 }
625 if let Some(v) = &opts.cursor {
626 query.push(("cursor", v.to_string()));
627 }
628 if let Some(v) = &opts.limit {
629 query.push(("limit", v.to_string()));
630 }
631 if let Some(v) = &opts.kind {
632 query.push(("kind", v.to_string()));
633 }
634 }
635 self.inner.get(&format!("/api/v1/volumes/{}/forks/{}/search", volume_id, crate::http::encode_segment(fork_name)), &query).await
636 }
637}
638
639pub struct AuditLogsService {
641 inner: Arc<ClientInner>,
642}
643
644impl AuditLogsService {
645 pub async fn list(&self, opts: &AuditLogListOptions) -> Result<CursorPaginatedResponse<AuditLog>, Error> {
646 let mut query: Vec<(&str, String)> = Vec::new();
647 query.push(("accountId", opts.account_id.to_string()));
648 if let Some(v) = &opts.region_id {
649 query.push(("regionId", v.to_string()));
650 }
651 if let Some(v) = &opts.metadata_cluster_id {
652 query.push(("metadataClusterId", v.to_string()));
653 }
654 if let Some(v) = &opts.cursor {
655 query.push(("cursor", v.to_string()));
656 }
657 if let Some(v) = &opts.limit {
658 query.push(("limit", v.to_string()));
659 }
660 if let Some(v) = &opts.subject {
661 query.push(("subject", v.to_string()));
662 }
663 if let Some(v) = &opts.created_by {
664 query.push(("createdBy", v.to_string()));
665 }
666 self.inner.get("/api/v1/audit-logs/list", &query).await
667 }
668}
669
670pub struct RegionAuditLogsService {
672 inner: Arc<ClientInner>,
673}
674
675impl RegionAuditLogsService {
676 pub async fn list(&self, region_id: i64, opts: Option<&RegionAuditLogListOptions>) -> Result<CursorPaginatedResponse<AuditLog>, Error> {
677 let mut query: Vec<(&str, String)> = Vec::new();
678 if let Some(opts) = opts {
679 if let Some(v) = &opts.metadata_cluster_id {
680 query.push(("metadataClusterId", v.to_string()));
681 }
682 if let Some(v) = &opts.cursor {
683 query.push(("cursor", v.to_string()));
684 }
685 if let Some(v) = &opts.limit {
686 query.push(("limit", v.to_string()));
687 }
688 if let Some(v) = &opts.subject {
689 query.push(("subject", v.to_string()));
690 }
691 if let Some(v) = &opts.node {
692 query.push(("node", v.to_string()));
693 }
694 }
695 self.inner.get(&format!("/api/v1/regions/{}/audit-logs/list", region_id), &query).await
696 }
697}
698
699pub struct ServiceNodesService {
701 inner: Arc<ClientInner>,
702}
703
704impl ServiceNodesService {
705 pub async fn list(&self, region_id: i64, service_type: Option<&str>, status: Option<&str>, inactive_hours: Option<i64>, metadata_cluster_id: Option<i64>) -> Result<Vec<ServiceNode>, Error> {
706 let mut query: Vec<(&str, String)> = Vec::new();
707 if let Some(v) = service_type {
708 query.push(("serviceType", v.to_string()));
709 }
710 if let Some(v) = status {
711 query.push(("status", v.to_string()));
712 }
713 if let Some(v) = inactive_hours {
714 query.push(("inactiveHours", v.to_string()));
715 }
716 if let Some(v) = metadata_cluster_id {
717 query.push(("metadataClusterId", v.to_string()));
718 }
719 self.inner.get(&format!("/api/v1/regions/{}/nodes", region_id), &query).await
720 }
721
722 pub async fn stats(&self, region_id: i64, node_id: &str) -> Result<String, Error> {
723 self.inner.get(&format!("/api/v1/regions/{}/nodes/{}/stats", region_id, crate::http::encode_segment(node_id)), &[]).await
724 }
725
726 pub async fn stats_history(&self, region_id: i64, node_id: &str) -> Result<StatsHistoryServiceNodeResponse, Error> {
727 self.inner.get(&format!("/api/v1/regions/{}/nodes/{}/stats/history", region_id, crate::http::encode_segment(node_id)), &[]).await
728 }
729}
730
731pub struct NodesService {
733 inner: Arc<ClientInner>,
734}
735
736impl NodesService {
737 pub async fn list(&self, account_id: i64, service_type: Option<&str>, status: Option<&str>, inactive_hours: Option<i64>) -> Result<Vec<ServiceNode>, Error> {
738 let mut query: Vec<(&str, String)> = Vec::new();
739 query.push(("accountId", account_id.to_string()));
740 if let Some(v) = service_type {
741 query.push(("serviceType", v.to_string()));
742 }
743 if let Some(v) = status {
744 query.push(("status", v.to_string()));
745 }
746 if let Some(v) = inactive_hours {
747 query.push(("inactiveHours", v.to_string()));
748 }
749 self.inner.get("/api/v1/nodes", &query).await
750 }
751}
752
753pub struct ClientSessionsService {
755 inner: Arc<ClientInner>,
756}
757
758impl ClientSessionsService {
759 pub async fn list(&self, opts: &ClientSessionListOptions) -> Result<PaginatedResponse<ClientSession>, Error> {
760 let mut query: Vec<(&str, String)> = Vec::new();
761 query.push(("accountId", opts.account_id.to_string()));
762 if let Some(v) = &opts.region_id {
763 query.push(("regionId", v.to_string()));
764 }
765 if let Some(v) = &opts.metadata_cluster_id {
766 query.push(("metadataClusterId", v.to_string()));
767 }
768 if let Some(v) = &opts.volume_id {
769 query.push(("volumeId", v.to_string()));
770 }
771 if let Some(v) = &opts.user_id {
772 query.push(("userId", v.to_string()));
773 }
774 if let Some(v) = &opts.client_type {
775 query.push(("clientType", v.to_string()));
776 }
777 if let Some(v) = &opts.status {
778 query.push(("status", v.to_string()));
779 }
780 if let Some(v) = &opts.is_active {
781 query.push(("isActive", v.to_string()));
782 }
783 if let Some(v) = &opts.os_name {
784 query.push(("osName", v.to_string()));
785 }
786 if let Some(v) = &opts.platform {
787 query.push(("platform", v.to_string()));
788 }
789 if let Some(v) = &opts.search {
790 query.push(("search", v.to_string()));
791 }
792 if let Some(v) = &opts.page {
793 query.push(("page", v.to_string()));
794 }
795 if let Some(v) = &opts.limit {
796 query.push(("limit", v.to_string()));
797 }
798 self.inner.get("/api/v1/client-sessions/list", &query).await
799 }
800
801 pub async fn get(&self, session_id: i64) -> Result<ClientSession, Error> {
802 self.inner.get(&format!("/api/v1/client-sessions/{}", session_id), &[]).await
803 }
804
805 pub async fn summary(&self, account_id: i64, region_id: Option<i64>, metadata_cluster_id: Option<i64>, volume_id: Option<i64>, user_id: Option<i64>) -> Result<SessionSummary, Error> {
806 let mut query: Vec<(&str, String)> = Vec::new();
807 query.push(("accountId", account_id.to_string()));
808 if let Some(v) = region_id {
809 query.push(("regionId", v.to_string()));
810 }
811 if let Some(v) = metadata_cluster_id {
812 query.push(("metadataClusterId", v.to_string()));
813 }
814 if let Some(v) = volume_id {
815 query.push(("volumeId", v.to_string()));
816 }
817 if let Some(v) = user_id {
818 query.push(("userId", v.to_string()));
819 }
820 self.inner.get("/api/v1/client-sessions/summary", &query).await
821 }
822}
823
824pub struct DiscoverService {
826 inner: Arc<ClientInner>,
827}
828
829impl DiscoverService {
830 pub async fn meta(&self, access_key_id: &str) -> Result<DiscoverMetaResponse, Error> {
831 let mut query: Vec<(&str, String)> = Vec::new();
832 query.push(("accessKeyId", access_key_id.to_string()));
833 self.inner.get("/api/v1/discover/meta", &query).await
834 }
835
836 pub async fn metrics_targets(&self) -> Result<Vec<MetricsTarget>, Error> {
837 self.inner.get("/api/v1/discover/metrics-targets", &[]).await
838 }
839}
840
841pub struct MetricsService {
843 inner: Arc<ClientInner>,
844}
845
846impl MetricsService {
847 pub async fn generate_token(&self, req: &GenerateMetricTokenRequest) -> Result<MetricsTokenResponse, Error> {
848 self.inner.post("/api/v1/metrics/token", req).await
849 }
850}
851
852pub struct DashboardService {
854 inner: Arc<ClientInner>,
855}
856
857impl DashboardService {
858 pub async fn stats(&self, account_id: i64) -> Result<DashboardStats, Error> {
859 let mut query: Vec<(&str, String)> = Vec::new();
860 query.push(("accountId", account_id.to_string()));
861 self.inner.get("/api/v1/dashboard/stats", &query).await
862 }
863}
864
865pub struct LicenseService {
867 inner: Arc<ClientInner>,
868}
869
870impl LicenseService {
871 pub async fn get(&self) -> Result<LicenseDetails, Error> {
872 self.inner.get("/api/v1/license", &[]).await
873 }
874
875 pub async fn terms(&self) -> Result<LicenseTerms, Error> {
876 self.inner.get("/api/v1/license/terms", &[]).await
877 }
878
879 pub async fn load(&self, req: &LoadLicenseRequest) -> Result<LicenseLoadResult, Error> {
880 self.inner.post("/api/v1/license/load", req).await
881 }
882
883 pub async fn list(&self) -> Result<LicenseList, Error> {
884 self.inner.get("/api/v1/license/list", &[]).await
885 }
886}
887
888pub struct AlertsService {
890 inner: Arc<ClientInner>,
891}
892
893impl AlertsService {
894 pub async fn list(&self, opts: Option<&AlertListOptions>) -> Result<PaginatedResponse<ServiceAlert>, Error> {
895 let mut query: Vec<(&str, String)> = Vec::new();
896 if let Some(opts) = opts {
897 if let Some(v) = &opts.active {
898 query.push(("active", v.to_string()));
899 }
900 if let Some(v) = &opts.account_id {
901 query.push(("accountId", v.to_string()));
902 }
903 if let Some(v) = &opts.region_id {
904 query.push(("regionId", v.to_string()));
905 }
906 if let Some(v) = &opts.severity {
907 query.push(("severity", v.to_string()));
908 }
909 if let Some(v) = &opts.category {
910 query.push(("category", v.to_string()));
911 }
912 if let Some(v) = &opts.since {
913 query.push(("since", v.to_string()));
914 }
915 if let Some(v) = &opts.page {
916 query.push(("page", v.to_string()));
917 }
918 if let Some(v) = &opts.limit {
919 query.push(("limit", v.to_string()));
920 }
921 }
922 self.inner.get("/api/v1/alerts/list", &query).await
923 }
924
925 pub async fn count(&self) -> Result<AlertCountResponse, Error> {
926 self.inner.get("/api/v1/alerts/count", &[]).await
927 }
928
929 pub async fn resolve(&self, alert_id: &str) -> Result<ResolveAlertResponse, Error> {
930 self.inner.post_empty(&format!("/api/v1/alerts/{}/resolve", crate::http::encode_segment(alert_id))).await
931 }
932}
933
934pub struct RegionAlertsService {
936 inner: Arc<ClientInner>,
937}
938
939impl RegionAlertsService {
940 pub async fn list(&self, region_id: i64, opts: Option<&RegionAlertListOptions>) -> Result<PaginatedResponse<RegionAlert>, Error> {
941 let mut query: Vec<(&str, String)> = Vec::new();
942 if let Some(opts) = opts {
943 if let Some(v) = &opts.active {
944 query.push(("active", v.to_string()));
945 }
946 if let Some(v) = &opts.severity {
947 query.push(("severity", v.to_string()));
948 }
949 if let Some(v) = &opts.category {
950 query.push(("category", v.to_string()));
951 }
952 if let Some(v) = &opts.node_id {
953 query.push(("nodeId", v.to_string()));
954 }
955 if let Some(v) = &opts.metadata_cluster_id {
956 query.push(("metadataClusterId", v.to_string()));
957 }
958 if let Some(v) = &opts.since {
959 query.push(("since", v.to_string()));
960 }
961 if let Some(v) = &opts.page {
962 query.push(("page", v.to_string()));
963 }
964 if let Some(v) = &opts.limit {
965 query.push(("limit", v.to_string()));
966 }
967 }
968 self.inner.get(&format!("/api/v1/regions/{}/alerts/list", region_id), &query).await
969 }
970
971 pub async fn count(&self, region_id: i64, metadata_cluster_id: Option<i64>) -> Result<AlertCountResponse, Error> {
972 let mut query: Vec<(&str, String)> = Vec::new();
973 if let Some(v) = metadata_cluster_id {
974 query.push(("metadataClusterId", v.to_string()));
975 }
976 self.inner.get(&format!("/api/v1/regions/{}/alerts/count", region_id), &query).await
977 }
978
979 pub async fn resolve(&self, region_id: i64, alert_id: &str) -> Result<ResolveRegionAlertResponse, Error> {
980 self.inner.post_empty(&format!("/api/v1/regions/{}/alerts/{}/resolve", region_id, crate::http::encode_segment(alert_id))).await
981 }
982}
983
984pub struct GCWorkerEventsService {
986 inner: Arc<ClientInner>,
987}
988
989impl GCWorkerEventsService {
990 pub async fn list(&self, region_id: i64, opts: Option<&GCWorkerEventListOptions>) -> Result<PaginatedResponse<GCWorkerEvent>, Error> {
991 let mut query: Vec<(&str, String)> = Vec::new();
992 if let Some(opts) = opts {
993 if let Some(v) = &opts.node_id {
994 query.push(("nodeId", v.to_string()));
995 }
996 if let Some(v) = &opts.goal {
997 query.push(("goal", v.to_string()));
998 }
999 if let Some(v) = &opts.sid {
1000 query.push(("sid", v.to_string()));
1001 }
1002 if let Some(v) = &opts.metadata_cluster_id {
1003 query.push(("metadataClusterId", v.to_string()));
1004 }
1005 if let Some(v) = &opts.since {
1006 query.push(("since", v.to_string()));
1007 }
1008 if let Some(v) = &opts.page {
1009 query.push(("page", v.to_string()));
1010 }
1011 if let Some(v) = &opts.limit {
1012 query.push(("limit", v.to_string()));
1013 }
1014 }
1015 self.inner.get(&format!("/api/v1/regions/{}/gc-worker-events/list", region_id), &query).await
1016 }
1017
1018 pub async fn histogram(&self, region_id: i64, node_id: Option<&str>, goal: Option<&str>, sid: Option<i64>, metadata_cluster_id: Option<i64>, since: Option<&str>, bucket_seconds: Option<i64>) -> Result<GCWorkerEventHistogramResponse, Error> {
1019 let mut query: Vec<(&str, String)> = Vec::new();
1020 if let Some(v) = node_id {
1021 query.push(("nodeId", v.to_string()));
1022 }
1023 if let Some(v) = goal {
1024 query.push(("goal", v.to_string()));
1025 }
1026 if let Some(v) = sid {
1027 query.push(("sid", v.to_string()));
1028 }
1029 if let Some(v) = metadata_cluster_id {
1030 query.push(("metadataClusterId", v.to_string()));
1031 }
1032 if let Some(v) = since {
1033 query.push(("since", v.to_string()));
1034 }
1035 if let Some(v) = bucket_seconds {
1036 query.push(("bucketSeconds", v.to_string()));
1037 }
1038 self.inner.get(&format!("/api/v1/regions/{}/gc-worker-events/histogram", region_id), &query).await
1039 }
1040
1041 pub async fn goals(&self, region_id: i64, node_id: Option<&str>) -> Result<GCWorkerEventGoalsResponse, Error> {
1042 let mut query: Vec<(&str, String)> = Vec::new();
1043 if let Some(v) = node_id {
1044 query.push(("nodeId", v.to_string()));
1045 }
1046 self.inner.get(&format!("/api/v1/regions/{}/gc-worker-events/goals", region_id), &query).await
1047 }
1048}
1049
1050pub struct VaultService {
1052 inner: Arc<ClientInner>,
1053}
1054
1055impl VaultService {
1056 pub async fn resync(&self) -> Result<(), Error> {
1057 self.inner.post_empty::<serde_json::Value>("/api/v1/vault/resync").await.map(|_| ())
1058 }
1059}