alibabacloud-imm 0.1.0

A modern, easy-to-use, and reqwest-powered Rust SDK for Alibaba Cloud Intelligent Media Management (IMM)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
//! File Meta operations.

use std::future::Future;

use serde::{Deserialize, Serialize};

use crate::error::Result;
use crate::response::BodyResponseProcessor;
use crate::{Client, Ops, Request};

#[derive(Debug, Clone, Default, Serialize)]
#[serde(rename_all = "PascalCase")]
pub struct IndexFileMetaQuery {
    pub project_name: String,
    pub dataset_name: String,
    pub file: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub user_data: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub notification: Option<String>,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct IndexFileMetaResponse {
    #[serde(default)]
    pub request_id: String,
    #[serde(default)]
    pub event_id: Option<String>,
}

/// Index file metadata with data processing such as label detection, face detection, and location detection.
///
/// Official documentation: <https://www.alibabacloud.com/help/en/imm/developer-reference/api-imm-2020-09-30-indexfilemeta>
pub struct IndexFileMeta {
    pub query: IndexFileMetaQuery,
}

impl Ops for IndexFileMeta {
    const ACTION: &'static str = "IndexFileMeta";
    type Query = IndexFileMetaQuery;
    type Body = ();
    type Response = BodyResponseProcessor<IndexFileMetaResponse>;

    fn into_parts(self) -> (Self::Query, Self::Body) {
        (self.query, ())
    }
}

pub trait IndexFileMetaOps {
    /// Index file metadata with data processing such as label detection, face detection, and location detection.
    ///
    /// Official documentation: <https://www.alibabacloud.com/help/en/imm/developer-reference/api-imm-2020-09-30-indexfilemeta>
    fn index_file_meta(
        &self,
        query: IndexFileMetaQuery,
    ) -> impl Future<Output = Result<IndexFileMetaResponse>>;
}

impl IndexFileMetaOps for Client {
    async fn index_file_meta(&self, query: IndexFileMetaQuery) -> Result<IndexFileMetaResponse> {
        self.request(IndexFileMeta { query }).await
    }
}

#[derive(Debug, Clone, Default, Serialize)]
#[serde(rename_all = "PascalCase")]
pub struct GetFileMetaQuery {
    pub project_name: String,
    pub dataset_name: String,
    #[serde(rename = "URI")]
    pub uri: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub with_fields: Option<serde_json::Value>,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct GetFileMetaResponse {
    #[serde(default)]
    pub request_id: String,
    #[serde(default)]
    pub files: Vec<serde_json::Value>,
}

/// Get metadata of an indexed file in a dataset.
///
/// Official documentation: <https://www.alibabacloud.com/help/en/imm/developer-reference/api-imm-2020-09-30-getfilemeta>
pub struct GetFileMeta {
    pub query: GetFileMetaQuery,
}

impl Ops for GetFileMeta {
    const ACTION: &'static str = "GetFileMeta";
    type Query = GetFileMetaQuery;
    type Body = ();
    type Response = BodyResponseProcessor<GetFileMetaResponse>;

    fn into_parts(self) -> (Self::Query, Self::Body) {
        (self.query, ())
    }
}

pub trait GetFileMetaOps {
    /// Get metadata of an indexed file in a dataset.
    ///
    /// Official documentation: <https://www.alibabacloud.com/help/en/imm/developer-reference/api-imm-2020-09-30-getfilemeta>
    fn get_file_meta(&self, query: GetFileMetaQuery) -> impl Future<Output = Result<GetFileMetaResponse>>;
}

impl GetFileMetaOps for Client {
    async fn get_file_meta(&self, query: GetFileMetaQuery) -> Result<GetFileMetaResponse> {
        self.request(GetFileMeta { query }).await
    }
}

#[derive(Debug, Clone, Default, Serialize)]
#[serde(rename_all = "PascalCase")]
pub struct UpdateFileMetaQuery {
    pub project_name: String,
    pub dataset_name: String,
    pub file: String,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct UpdateFileMetaResponse {
    #[serde(default)]
    pub request_id: String,
}

/// Update metadata of an indexed file in a dataset.
///
/// Official documentation: <https://www.alibabacloud.com/help/en/imm/developer-reference/api-imm-2020-09-30-updatefilemeta>
pub struct UpdateFileMeta {
    pub query: UpdateFileMetaQuery,
}

impl Ops for UpdateFileMeta {
    const ACTION: &'static str = "UpdateFileMeta";
    type Query = UpdateFileMetaQuery;
    type Body = ();
    type Response = BodyResponseProcessor<UpdateFileMetaResponse>;

    fn into_parts(self) -> (Self::Query, Self::Body) {
        (self.query, ())
    }
}

pub trait UpdateFileMetaOps {
    /// Update metadata of an indexed file in a dataset.
    ///
    /// Official documentation: <https://www.alibabacloud.com/help/en/imm/developer-reference/api-imm-2020-09-30-updatefilemeta>
    fn update_file_meta(
        &self,
        query: UpdateFileMetaQuery,
    ) -> impl Future<Output = Result<UpdateFileMetaResponse>>;
}

impl UpdateFileMetaOps for Client {
    async fn update_file_meta(&self, query: UpdateFileMetaQuery) -> Result<UpdateFileMetaResponse> {
        self.request(UpdateFileMeta { query }).await
    }
}

#[derive(Debug, Clone, Default, Serialize)]
#[serde(rename_all = "PascalCase")]
pub struct DeleteFileMetaQuery {
    pub project_name: String,
    pub dataset_name: String,
    #[serde(rename = "URI")]
    pub uri: String,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct DeleteFileMetaResponse {
    #[serde(default)]
    pub request_id: String,
}

/// Delete file metadata from a dataset.
///
/// Official documentation: <https://www.alibabacloud.com/help/en/imm/developer-reference/api-imm-2020-09-30-deletefilemeta>
pub struct DeleteFileMeta {
    pub query: DeleteFileMetaQuery,
}

impl Ops for DeleteFileMeta {
    const ACTION: &'static str = "DeleteFileMeta";
    type Query = DeleteFileMetaQuery;
    type Body = ();
    type Response = BodyResponseProcessor<DeleteFileMetaResponse>;

    fn into_parts(self) -> (Self::Query, Self::Body) {
        (self.query, ())
    }
}

pub trait DeleteFileMetaOps {
    /// Delete file metadata from a dataset.
    ///
    /// Official documentation: <https://www.alibabacloud.com/help/en/imm/developer-reference/api-imm-2020-09-30-deletefilemeta>
    fn delete_file_meta(
        &self,
        query: DeleteFileMetaQuery,
    ) -> impl Future<Output = Result<DeleteFileMetaResponse>>;
}

impl DeleteFileMetaOps for Client {
    async fn delete_file_meta(&self, query: DeleteFileMetaQuery) -> Result<DeleteFileMetaResponse> {
        self.request(DeleteFileMeta { query }).await
    }
}

#[derive(Debug, Clone, Default, Serialize)]
#[serde(rename_all = "PascalCase")]
pub struct BatchIndexFileMetaQuery {
    pub project_name: String,
    pub dataset_name: String,
    pub files: serde_json::Value,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub user_data: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub notification: Option<String>,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct BatchIndexFileMetaResponse {
    #[serde(default)]
    pub request_id: String,
    #[serde(default)]
    pub event_id: Option<String>,
}

/// Index file metadata in batch with data processing such as label detection, face detection, etc.
///
/// Official documentation: <https://www.alibabacloud.com/help/en/imm/developer-reference/api-imm-2020-09-30-batchindexfilemeta>
pub struct BatchIndexFileMeta {
    pub query: BatchIndexFileMetaQuery,
}

impl Ops for BatchIndexFileMeta {
    const ACTION: &'static str = "BatchIndexFileMeta";
    type Query = BatchIndexFileMetaQuery;
    type Body = ();
    type Response = BodyResponseProcessor<BatchIndexFileMetaResponse>;

    fn into_parts(self) -> (Self::Query, Self::Body) {
        (self.query, ())
    }
}

pub trait BatchIndexFileMetaOps {
    /// Index file metadata in batch with data processing such as label detection, face detection, etc.
    ///
    /// Official documentation: <https://www.alibabacloud.com/help/en/imm/developer-reference/api-imm-2020-09-30-batchindexfilemeta>
    fn batch_index_file_meta(
        &self,
        query: BatchIndexFileMetaQuery,
    ) -> impl Future<Output = Result<BatchIndexFileMetaResponse>>;
}

impl BatchIndexFileMetaOps for Client {
    async fn batch_index_file_meta(
        &self,
        query: BatchIndexFileMetaQuery,
    ) -> Result<BatchIndexFileMetaResponse> {
        self.request(BatchIndexFileMeta { query }).await
    }
}

#[derive(Debug, Clone, Default, Serialize)]
#[serde(rename_all = "PascalCase")]
pub struct BatchGetFileMetaQuery {
    pub project_name: String,
    pub dataset_name: String,
    #[serde(rename = "URIs")]
    pub ur_is: serde_json::Value,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub with_fields: Option<serde_json::Value>,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct BatchGetFileMetaResponse {
    #[serde(default)]
    pub request_id: String,
    #[serde(default)]
    pub files: Vec<serde_json::Value>,
}

/// Get metadata of indexed files from a dataset in batch.
///
/// Official documentation: <https://www.alibabacloud.com/help/en/imm/developer-reference/api-imm-2020-09-30-batchgetfilemeta>
pub struct BatchGetFileMeta {
    pub query: BatchGetFileMetaQuery,
}

impl Ops for BatchGetFileMeta {
    const ACTION: &'static str = "BatchGetFileMeta";
    type Query = BatchGetFileMetaQuery;
    type Body = ();
    type Response = BodyResponseProcessor<BatchGetFileMetaResponse>;

    fn into_parts(self) -> (Self::Query, Self::Body) {
        (self.query, ())
    }
}

pub trait BatchGetFileMetaOps {
    /// Get metadata of indexed files from a dataset in batch.
    ///
    /// Official documentation: <https://www.alibabacloud.com/help/en/imm/developer-reference/api-imm-2020-09-30-batchgetfilemeta>
    fn batch_get_file_meta(
        &self,
        query: BatchGetFileMetaQuery,
    ) -> impl Future<Output = Result<BatchGetFileMetaResponse>>;
}

impl BatchGetFileMetaOps for Client {
    async fn batch_get_file_meta(&self, query: BatchGetFileMetaQuery) -> Result<BatchGetFileMetaResponse> {
        self.request(BatchGetFileMeta { query }).await
    }
}

#[derive(Debug, Clone, Default, Serialize)]
#[serde(rename_all = "PascalCase")]
pub struct BatchUpdateFileMetaQuery {
    pub project_name: String,
    pub dataset_name: String,
    pub files: serde_json::Value,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct BatchUpdateFileMetaResponse {
    #[serde(default)]
    pub request_id: String,
    #[serde(default)]
    pub files: Vec<serde_json::Value>,
}

/// Update metadata of indexed files in a dataset in batch.
///
/// Official documentation: <https://www.alibabacloud.com/help/en/imm/developer-reference/api-imm-2020-09-30-batchupdatefilemeta>
pub struct BatchUpdateFileMeta {
    pub query: BatchUpdateFileMetaQuery,
}

impl Ops for BatchUpdateFileMeta {
    const ACTION: &'static str = "BatchUpdateFileMeta";
    type Query = BatchUpdateFileMetaQuery;
    type Body = ();
    type Response = BodyResponseProcessor<BatchUpdateFileMetaResponse>;

    fn into_parts(self) -> (Self::Query, Self::Body) {
        (self.query, ())
    }
}

pub trait BatchUpdateFileMetaOps {
    /// Update metadata of indexed files in a dataset in batch.
    ///
    /// Official documentation: <https://www.alibabacloud.com/help/en/imm/developer-reference/api-imm-2020-09-30-batchupdatefilemeta>
    fn batch_update_file_meta(
        &self,
        query: BatchUpdateFileMetaQuery,
    ) -> impl Future<Output = Result<BatchUpdateFileMetaResponse>>;
}

impl BatchUpdateFileMetaOps for Client {
    async fn batch_update_file_meta(
        &self,
        query: BatchUpdateFileMetaQuery,
    ) -> Result<BatchUpdateFileMetaResponse> {
        self.request(BatchUpdateFileMeta { query }).await
    }
}

#[derive(Debug, Clone, Default, Serialize)]
#[serde(rename_all = "PascalCase")]
pub struct BatchDeleteFileMetaQuery {
    pub project_name: String,
    pub dataset_name: String,
    #[serde(rename = "URIs")]
    pub ur_is: serde_json::Value,
}

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct BatchDeleteFileMetaResponse {
    #[serde(default)]
    pub request_id: String,
}

/// Delete file metadata from a dataset in batch.
///
/// Official documentation: <https://www.alibabacloud.com/help/en/imm/developer-reference/api-imm-2020-09-30-batchdeletefilemeta>
pub struct BatchDeleteFileMeta {
    pub query: BatchDeleteFileMetaQuery,
}

impl Ops for BatchDeleteFileMeta {
    const ACTION: &'static str = "BatchDeleteFileMeta";
    type Query = BatchDeleteFileMetaQuery;
    type Body = ();
    type Response = BodyResponseProcessor<BatchDeleteFileMetaResponse>;

    fn into_parts(self) -> (Self::Query, Self::Body) {
        (self.query, ())
    }
}

pub trait BatchDeleteFileMetaOps {
    /// Delete file metadata from a dataset in batch.
    ///
    /// Official documentation: <https://www.alibabacloud.com/help/en/imm/developer-reference/api-imm-2020-09-30-batchdeletefilemeta>
    fn batch_delete_file_meta(
        &self,
        query: BatchDeleteFileMetaQuery,
    ) -> impl Future<Output = Result<BatchDeleteFileMetaResponse>>;
}

impl BatchDeleteFileMetaOps for Client {
    async fn batch_delete_file_meta(
        &self,
        query: BatchDeleteFileMetaQuery,
    ) -> Result<BatchDeleteFileMetaResponse> {
        self.request(BatchDeleteFileMeta { query }).await
    }
}

pub trait FileMetaOperations:
    IndexFileMetaOps
    + GetFileMetaOps
    + UpdateFileMetaOps
    + DeleteFileMetaOps
    + BatchIndexFileMetaOps
    + BatchGetFileMetaOps
    + BatchUpdateFileMetaOps
    + BatchDeleteFileMetaOps
{
}
impl<T> FileMetaOperations for T where
    T: IndexFileMetaOps
        + GetFileMetaOps
        + UpdateFileMetaOps
        + DeleteFileMetaOps
        + BatchIndexFileMetaOps
        + BatchGetFileMetaOps
        + BatchUpdateFileMetaOps
        + BatchDeleteFileMetaOps
{
}