tccli-intl-en 3.1.5.1__py2.py3-none-any.whl → 3.1.7.1__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tccli/__init__.py +1 -1
- tccli/services/__init__.py +3 -0
- tccli/services/controlcenter/controlcenter_client.py +224 -0
- tccli/services/controlcenter/v20230110/api.json +528 -5
- tccli/services/controlcenter/v20230110/examples.json +32 -0
- tccli/services/faceid/v20180301/api.json +22 -3
- tccli/services/kms/v20190118/api.json +80 -3
- tccli/services/kms/v20190118/examples.json +3 -3
- tccli/services/mdl/v20200326/api.json +163 -3
- tccli/services/mongodb/mongodb_client.py +619 -115
- tccli/services/mongodb/v20190725/api.json +834 -2
- tccli/services/mongodb/v20190725/examples.json +72 -0
- tccli/services/mps/mps_client.py +713 -209
- tccli/services/mps/v20190612/api.json +1009 -67
- tccli/services/mps/v20190612/examples.json +100 -52
- tccli/services/smh/__init__.py +4 -0
- tccli/services/smh/smh_client.py +714 -0
- tccli/services/smh/v20210712/api.json +1287 -0
- tccli/services/smh/v20210712/examples.json +85 -0
- tccli/services/vpc/v20170312/api.json +19 -16
- tccli/services/vpc/v20170312/examples.json +4 -4
- {tccli_intl_en-3.1.5.1.dist-info → tccli_intl_en-3.1.7.1.dist-info}/METADATA +2 -2
- {tccli_intl_en-3.1.5.1.dist-info → tccli_intl_en-3.1.7.1.dist-info}/RECORD +27 -23
- {tccli_intl_en-3.1.5.1.dist-info → tccli_intl_en-3.1.7.1.dist-info}/LICENSE +0 -0
- {tccli_intl_en-3.1.5.1.dist-info → tccli_intl_en-3.1.7.1.dist-info}/WHEEL +0 -0
- {tccli_intl_en-3.1.5.1.dist-info → tccli_intl_en-3.1.7.1.dist-info}/entry_points.txt +0 -0
- {tccli_intl_en-3.1.5.1.dist-info → tccli_intl_en-3.1.7.1.dist-info}/top_level.txt +0 -0
|
@@ -42,6 +42,13 @@
|
|
|
42
42
|
"output": "CreateAsrHotwordsResponse",
|
|
43
43
|
"status": "online"
|
|
44
44
|
},
|
|
45
|
+
"CreateBlindWatermarkTemplate": {
|
|
46
|
+
"document": "This API is used to create a user-defined digital watermark template with an upper limit of 1000.",
|
|
47
|
+
"input": "CreateBlindWatermarkTemplateRequest",
|
|
48
|
+
"name": "Creates a digital watermark template",
|
|
49
|
+
"output": "CreateBlindWatermarkTemplateResponse",
|
|
50
|
+
"status": "online"
|
|
51
|
+
},
|
|
45
52
|
"CreateContentReviewTemplate": {
|
|
46
53
|
"document": "This API is used to create a custom content moderation template. Up to 50 templates can be created in total.",
|
|
47
54
|
"input": "CreateContentReviewTemplateRequest",
|
|
@@ -70,6 +77,13 @@
|
|
|
70
77
|
"output": "CreatePersonSampleResponse",
|
|
71
78
|
"status": "online"
|
|
72
79
|
},
|
|
80
|
+
"CreateProcessImageTemplate": {
|
|
81
|
+
"document": "This API is used to create an image processing template.",
|
|
82
|
+
"input": "CreateProcessImageTemplateRequest",
|
|
83
|
+
"name": "Creates an image processing template",
|
|
84
|
+
"output": "CreateProcessImageTemplateResponse",
|
|
85
|
+
"status": "online"
|
|
86
|
+
},
|
|
73
87
|
"CreateQualityControlTemplate": {
|
|
74
88
|
"document": "This API is used to create a media quality inspection template. Up to 50 templates can be created.",
|
|
75
89
|
"input": "CreateQualityControlTemplateRequest",
|
|
@@ -175,6 +189,13 @@
|
|
|
175
189
|
"output": "DeleteAsrHotwordsResponse",
|
|
176
190
|
"status": "online"
|
|
177
191
|
},
|
|
192
|
+
"DeleteBlindWatermarkTemplate": {
|
|
193
|
+
"document": "This API is used to delete a user-defined digital watermark template.",
|
|
194
|
+
"input": "DeleteBlindWatermarkTemplateRequest",
|
|
195
|
+
"name": "Deletes a digital watermark template",
|
|
196
|
+
"output": "DeleteBlindWatermarkTemplateResponse",
|
|
197
|
+
"status": "online"
|
|
198
|
+
},
|
|
178
199
|
"DeleteContentReviewTemplate": {
|
|
179
200
|
"document": "This API is used to delete a custom content moderation template.",
|
|
180
201
|
"input": "DeleteContentReviewTemplateRequest",
|
|
@@ -203,6 +224,13 @@
|
|
|
203
224
|
"output": "DeletePersonSampleResponse",
|
|
204
225
|
"status": "online"
|
|
205
226
|
},
|
|
227
|
+
"DeleteProcessImageTemplate": {
|
|
228
|
+
"document": "This API is used to delete an image processing template.",
|
|
229
|
+
"input": "DeleteProcessImageTemplateRequest",
|
|
230
|
+
"name": "Deletes an image processing template",
|
|
231
|
+
"output": "DeleteProcessImageTemplateResponse",
|
|
232
|
+
"status": "online"
|
|
233
|
+
},
|
|
206
234
|
"DeleteQualityControlTemplate": {
|
|
207
235
|
"document": "This API is used to delete a media quality inspection template.",
|
|
208
236
|
"input": "DeleteQualityControlTemplateRequest",
|
|
@@ -322,6 +350,13 @@
|
|
|
322
350
|
"output": "DescribeBatchTaskDetailResponse",
|
|
323
351
|
"status": "online"
|
|
324
352
|
},
|
|
353
|
+
"DescribeBlindWatermarkTemplates": {
|
|
354
|
+
"document": "This API is used to query a user-defined digital watermark template, and the pagination query is supported based on conditions.",
|
|
355
|
+
"input": "DescribeBlindWatermarkTemplatesRequest",
|
|
356
|
+
"name": "Obtains the list of digital watermark templates",
|
|
357
|
+
"output": "DescribeBlindWatermarkTemplatesResponse",
|
|
358
|
+
"status": "online"
|
|
359
|
+
},
|
|
325
360
|
"DescribeContentReviewTemplates": {
|
|
326
361
|
"document": "This API is used to query content moderation templates by template ID. Both custom and preset templates that match the template IDs passed in will be returned.",
|
|
327
362
|
"input": "DescribeContentReviewTemplatesRequest",
|
|
@@ -364,6 +399,13 @@
|
|
|
364
399
|
"output": "DescribePersonSamplesResponse",
|
|
365
400
|
"status": "online"
|
|
366
401
|
},
|
|
402
|
+
"DescribeProcessImageTemplates": {
|
|
403
|
+
"document": "This API is used to query the list of image processing templates.",
|
|
404
|
+
"input": "DescribeProcessImageTemplatesRequest",
|
|
405
|
+
"name": "Queries the list of image processing templates",
|
|
406
|
+
"output": "DescribeProcessImageTemplatesResponse",
|
|
407
|
+
"status": "online"
|
|
408
|
+
},
|
|
367
409
|
"DescribeQualityControlTemplates": {
|
|
368
410
|
"document": "This API is used to query custom media quality inspection templates, supporting paged queries by conditions.",
|
|
369
411
|
"input": "DescribeQualityControlTemplatesRequest",
|
|
@@ -497,6 +539,13 @@
|
|
|
497
539
|
"output": "ExecuteFunctionResponse",
|
|
498
540
|
"status": "online"
|
|
499
541
|
},
|
|
542
|
+
"ExtractBlindWatermark": {
|
|
543
|
+
"document": "This API is used to initiate a digital watermark extraction task for a video. The extraction result can be queried through DescribeTaskDetail.",
|
|
544
|
+
"input": "ExtractBlindWatermarkRequest",
|
|
545
|
+
"name": "Extracts the digital watermark for a video",
|
|
546
|
+
"output": "ExtractBlindWatermarkResponse",
|
|
547
|
+
"status": "online"
|
|
548
|
+
},
|
|
500
549
|
"ManageTask": {
|
|
501
550
|
"document": "This API is used to manage initiated tasks.",
|
|
502
551
|
"input": "ManageTaskRequest",
|
|
@@ -539,6 +588,13 @@
|
|
|
539
588
|
"output": "ModifyAsrHotwordsResponse",
|
|
540
589
|
"status": "online"
|
|
541
590
|
},
|
|
591
|
+
"ModifyBlindWatermarkTemplate": {
|
|
592
|
+
"document": "This API is used to modify a user-defined digital watermark template. The digital watermark type cannot be modified.",
|
|
593
|
+
"input": "ModifyBlindWatermarkTemplateRequest",
|
|
594
|
+
"name": "Modifies a digital watermark template",
|
|
595
|
+
"output": "ModifyBlindWatermarkTemplateResponse",
|
|
596
|
+
"status": "online"
|
|
597
|
+
},
|
|
542
598
|
"ModifyContentReviewTemplate": {
|
|
543
599
|
"document": "This API is used to modify a custom content moderation template.",
|
|
544
600
|
"input": "ModifyContentReviewTemplateRequest",
|
|
@@ -567,6 +623,13 @@
|
|
|
567
623
|
"output": "ModifyPersonSampleResponse",
|
|
568
624
|
"status": "online"
|
|
569
625
|
},
|
|
626
|
+
"ModifyProcessImageTemplate": {
|
|
627
|
+
"document": "This API is used to modify an image processing template.",
|
|
628
|
+
"input": "ModifyProcessImageTemplateRequest",
|
|
629
|
+
"name": "Modifies an image processing template",
|
|
630
|
+
"output": "ModifyProcessImageTemplateResponse",
|
|
631
|
+
"status": "online"
|
|
632
|
+
},
|
|
570
633
|
"ModifyQualityControlTemplate": {
|
|
571
634
|
"document": "This API is used to modify a media quality inspection template.",
|
|
572
635
|
"input": "ModifyQualityControlTemplateRequest",
|
|
@@ -1332,6 +1395,17 @@
|
|
|
1332
1395
|
"type": "list",
|
|
1333
1396
|
"value_allowed_null": false
|
|
1334
1397
|
},
|
|
1398
|
+
{
|
|
1399
|
+
"disabled": false,
|
|
1400
|
+
"document": "Digital watermark parameter.\t\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
1401
|
+
"example": "无",
|
|
1402
|
+
"member": "BlindWatermarkInput",
|
|
1403
|
+
"name": "BlindWatermark",
|
|
1404
|
+
"output_required": false,
|
|
1405
|
+
"required": false,
|
|
1406
|
+
"type": "object",
|
|
1407
|
+
"value_allowed_null": true
|
|
1408
|
+
},
|
|
1335
1409
|
{
|
|
1336
1410
|
"disabled": false,
|
|
1337
1411
|
"document": "Target storage for files after adaptive dynamic streaming. If left blank, it inherits the upper-level OutputStorage value.\nNote: This field may return null, indicating that no valid value can be obtained.",
|
|
@@ -7535,6 +7609,99 @@
|
|
|
7535
7609
|
],
|
|
7536
7610
|
"usage": "out"
|
|
7537
7611
|
},
|
|
7612
|
+
"BlindWatermarkInput": {
|
|
7613
|
+
"document": "Digital watermark parameter type in the MPS task.",
|
|
7614
|
+
"members": [
|
|
7615
|
+
{
|
|
7616
|
+
"disabled": false,
|
|
7617
|
+
"document": "Digital watermark template ID.",
|
|
7618
|
+
"example": "10",
|
|
7619
|
+
"member": "uint64",
|
|
7620
|
+
"name": "Definition",
|
|
7621
|
+
"output_required": true,
|
|
7622
|
+
"required": true,
|
|
7623
|
+
"type": "int",
|
|
7624
|
+
"value_allowed_null": false
|
|
7625
|
+
}
|
|
7626
|
+
],
|
|
7627
|
+
"usage": "both"
|
|
7628
|
+
},
|
|
7629
|
+
"BlindWatermarkTemplate": {
|
|
7630
|
+
"document": "Digital watermark template details.",
|
|
7631
|
+
"members": [
|
|
7632
|
+
{
|
|
7633
|
+
"disabled": false,
|
|
7634
|
+
"document": "Unique identifier of the digital watermark template.",
|
|
7635
|
+
"example": "10",
|
|
7636
|
+
"member": "int64",
|
|
7637
|
+
"name": "Definition",
|
|
7638
|
+
"output_required": true,
|
|
7639
|
+
"type": "int",
|
|
7640
|
+
"value_allowed_null": false
|
|
7641
|
+
},
|
|
7642
|
+
{
|
|
7643
|
+
"disabled": false,
|
|
7644
|
+
"document": "Digital watermark type. Valid values: <li>blind-basic: basic copyright digital watermark;</li> <li>blind-nagra: NAGRA forensics watermark.</li>",
|
|
7645
|
+
"example": "blind-basic",
|
|
7646
|
+
"member": "string",
|
|
7647
|
+
"name": "Type",
|
|
7648
|
+
"output_required": true,
|
|
7649
|
+
"type": "string",
|
|
7650
|
+
"value_allowed_null": false
|
|
7651
|
+
},
|
|
7652
|
+
{
|
|
7653
|
+
"disabled": false,
|
|
7654
|
+
"document": "Digital watermark template name.",
|
|
7655
|
+
"example": "数字水印模板1",
|
|
7656
|
+
"member": "string",
|
|
7657
|
+
"name": "Name",
|
|
7658
|
+
"output_required": true,
|
|
7659
|
+
"type": "string",
|
|
7660
|
+
"value_allowed_null": false
|
|
7661
|
+
},
|
|
7662
|
+
{
|
|
7663
|
+
"disabled": false,
|
|
7664
|
+
"document": "Text content of the digital watermark template. The length cannot exceed 64 characters.",
|
|
7665
|
+
"example": "水印文本内容",
|
|
7666
|
+
"member": "string",
|
|
7667
|
+
"name": "TextContent",
|
|
7668
|
+
"output_required": true,
|
|
7669
|
+
"type": "string",
|
|
7670
|
+
"value_allowed_null": false
|
|
7671
|
+
},
|
|
7672
|
+
{
|
|
7673
|
+
"disabled": false,
|
|
7674
|
+
"document": "Description information of the digital watermark template.",
|
|
7675
|
+
"example": "数字水印模板",
|
|
7676
|
+
"member": "string",
|
|
7677
|
+
"name": "Comment",
|
|
7678
|
+
"output_required": true,
|
|
7679
|
+
"type": "string",
|
|
7680
|
+
"value_allowed_null": false
|
|
7681
|
+
},
|
|
7682
|
+
{
|
|
7683
|
+
"disabled": false,
|
|
7684
|
+
"document": "Creation time of the digital watermark template in [ISO date and time format](https://www.tencentcloud.comom/document/product/862/37710?from_cn_redirect=1#52).",
|
|
7685
|
+
"example": "2025-08-01T18:00:00+08:00",
|
|
7686
|
+
"member": "string",
|
|
7687
|
+
"name": "CreateTime",
|
|
7688
|
+
"output_required": true,
|
|
7689
|
+
"type": "string",
|
|
7690
|
+
"value_allowed_null": false
|
|
7691
|
+
},
|
|
7692
|
+
{
|
|
7693
|
+
"disabled": false,
|
|
7694
|
+
"document": "Last modification time of the digital watermark template in [ISO date and time format](https://www.tencentcloud.comom/document/product/862/37710?from_cn_redirect=1#52).",
|
|
7695
|
+
"example": "2025-08-01T18:00:00+08:00",
|
|
7696
|
+
"member": "string",
|
|
7697
|
+
"name": "UpdateTime",
|
|
7698
|
+
"output_required": true,
|
|
7699
|
+
"type": "string",
|
|
7700
|
+
"value_allowed_null": false
|
|
7701
|
+
}
|
|
7702
|
+
],
|
|
7703
|
+
"usage": "out"
|
|
7704
|
+
},
|
|
7538
7705
|
"ClassificationConfigureInfo": {
|
|
7539
7706
|
"document": "Control parameter of intelligent categorization task",
|
|
7540
7707
|
"members": [
|
|
@@ -9184,6 +9351,70 @@
|
|
|
9184
9351
|
],
|
|
9185
9352
|
"type": "object"
|
|
9186
9353
|
},
|
|
9354
|
+
"CreateBlindWatermarkTemplateRequest": {
|
|
9355
|
+
"document": "CreateBlindWatermarkTemplate request structure.",
|
|
9356
|
+
"members": [
|
|
9357
|
+
{
|
|
9358
|
+
"disabled": false,
|
|
9359
|
+
"document": "Digital watermark type. Valid values: <li>blind-basic: basic copyright digital watermark;</li> <li>blind-nagra: NAGRA watermark.</li>",
|
|
9360
|
+
"example": "blind-basic",
|
|
9361
|
+
"member": "string",
|
|
9362
|
+
"name": "Type",
|
|
9363
|
+
"required": true,
|
|
9364
|
+
"type": "string"
|
|
9365
|
+
},
|
|
9366
|
+
{
|
|
9367
|
+
"disabled": false,
|
|
9368
|
+
"document": "Text content of the digital watermark. The length cannot exceed 64 characters. After NAGRA watermark templates are created, the text content cannot be modified.",
|
|
9369
|
+
"example": "数字水印文本",
|
|
9370
|
+
"member": "string",
|
|
9371
|
+
"name": "TextContent",
|
|
9372
|
+
"required": true,
|
|
9373
|
+
"type": "string"
|
|
9374
|
+
},
|
|
9375
|
+
{
|
|
9376
|
+
"disabled": false,
|
|
9377
|
+
"document": "Digital watermark template name, which supports Chinese, English, digits, underscores (_), hyphens (-), and periods (.). The length cannot exceed 64 characters.",
|
|
9378
|
+
"example": "数字水印模板1",
|
|
9379
|
+
"member": "string",
|
|
9380
|
+
"name": "Name",
|
|
9381
|
+
"required": false,
|
|
9382
|
+
"type": "string"
|
|
9383
|
+
},
|
|
9384
|
+
{
|
|
9385
|
+
"disabled": false,
|
|
9386
|
+
"document": "Description information of the digital watermark template. The length cannot exceed 256 characters.",
|
|
9387
|
+
"example": "数字水印模板",
|
|
9388
|
+
"member": "string",
|
|
9389
|
+
"name": "Comment",
|
|
9390
|
+
"required": false,
|
|
9391
|
+
"type": "string"
|
|
9392
|
+
}
|
|
9393
|
+
],
|
|
9394
|
+
"type": "object"
|
|
9395
|
+
},
|
|
9396
|
+
"CreateBlindWatermarkTemplateResponse": {
|
|
9397
|
+
"document": "CreateBlindWatermarkTemplate response structure.",
|
|
9398
|
+
"members": [
|
|
9399
|
+
{
|
|
9400
|
+
"disabled": false,
|
|
9401
|
+
"document": "Unique identifier of the digital watermark template.",
|
|
9402
|
+
"example": "20000",
|
|
9403
|
+
"member": "int64",
|
|
9404
|
+
"name": "Definition",
|
|
9405
|
+
"output_required": true,
|
|
9406
|
+
"type": "int",
|
|
9407
|
+
"value_allowed_null": false
|
|
9408
|
+
},
|
|
9409
|
+
{
|
|
9410
|
+
"document": "The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.",
|
|
9411
|
+
"member": "string",
|
|
9412
|
+
"name": "RequestId",
|
|
9413
|
+
"type": "string"
|
|
9414
|
+
}
|
|
9415
|
+
],
|
|
9416
|
+
"type": "object"
|
|
9417
|
+
},
|
|
9187
9418
|
"CreateContentReviewTemplateRequest": {
|
|
9188
9419
|
"document": "CreateContentReviewTemplate request structure.",
|
|
9189
9420
|
"members": [
|
|
@@ -9558,6 +9789,61 @@
|
|
|
9558
9789
|
],
|
|
9559
9790
|
"type": "object"
|
|
9560
9791
|
},
|
|
9792
|
+
"CreateProcessImageTemplateRequest": {
|
|
9793
|
+
"document": "CreateProcessImageTemplate request structure.",
|
|
9794
|
+
"members": [
|
|
9795
|
+
{
|
|
9796
|
+
"disabled": false,
|
|
9797
|
+
"document": "Image processing template.",
|
|
9798
|
+
"example": "无",
|
|
9799
|
+
"member": "ImageTaskInput",
|
|
9800
|
+
"name": "ProcessImageTemplate",
|
|
9801
|
+
"required": true,
|
|
9802
|
+
"type": "object"
|
|
9803
|
+
},
|
|
9804
|
+
{
|
|
9805
|
+
"disabled": false,
|
|
9806
|
+
"document": "Image processing template name. The length cannot exceed 64 characters.",
|
|
9807
|
+
"example": "图片处理模板",
|
|
9808
|
+
"member": "string",
|
|
9809
|
+
"name": "Name",
|
|
9810
|
+
"required": false,
|
|
9811
|
+
"type": "string"
|
|
9812
|
+
},
|
|
9813
|
+
{
|
|
9814
|
+
"disabled": false,
|
|
9815
|
+
"document": "Description information of the image processing template. The length cannot exceed 256 characters.",
|
|
9816
|
+
"example": "图片处理模板1",
|
|
9817
|
+
"member": "string",
|
|
9818
|
+
"name": "Comment",
|
|
9819
|
+
"required": false,
|
|
9820
|
+
"type": "string"
|
|
9821
|
+
}
|
|
9822
|
+
],
|
|
9823
|
+
"type": "object"
|
|
9824
|
+
},
|
|
9825
|
+
"CreateProcessImageTemplateResponse": {
|
|
9826
|
+
"document": "CreateProcessImageTemplate response structure.",
|
|
9827
|
+
"members": [
|
|
9828
|
+
{
|
|
9829
|
+
"disabled": false,
|
|
9830
|
+
"document": "Unique identifier of the image processing template.",
|
|
9831
|
+
"example": "200043",
|
|
9832
|
+
"member": "int64",
|
|
9833
|
+
"name": "Definition",
|
|
9834
|
+
"output_required": false,
|
|
9835
|
+
"type": "int",
|
|
9836
|
+
"value_allowed_null": false
|
|
9837
|
+
},
|
|
9838
|
+
{
|
|
9839
|
+
"document": "The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.",
|
|
9840
|
+
"member": "string",
|
|
9841
|
+
"name": "RequestId",
|
|
9842
|
+
"type": "string"
|
|
9843
|
+
}
|
|
9844
|
+
],
|
|
9845
|
+
"type": "object"
|
|
9846
|
+
},
|
|
9561
9847
|
"CreateQualityControlTemplateRequest": {
|
|
9562
9848
|
"document": "CreateQualityControlTemplate request structure.",
|
|
9563
9849
|
"members": [
|
|
@@ -10639,6 +10925,33 @@
|
|
|
10639
10925
|
],
|
|
10640
10926
|
"type": "object"
|
|
10641
10927
|
},
|
|
10928
|
+
"DeleteBlindWatermarkTemplateRequest": {
|
|
10929
|
+
"document": "DeleteBlindWatermarkTemplate request structure.",
|
|
10930
|
+
"members": [
|
|
10931
|
+
{
|
|
10932
|
+
"disabled": false,
|
|
10933
|
+
"document": "Unique identifier of the digital watermark template.",
|
|
10934
|
+
"example": "10",
|
|
10935
|
+
"member": "int64",
|
|
10936
|
+
"name": "Definition",
|
|
10937
|
+
"required": true,
|
|
10938
|
+
"type": "int"
|
|
10939
|
+
}
|
|
10940
|
+
],
|
|
10941
|
+
"type": "object"
|
|
10942
|
+
},
|
|
10943
|
+
"DeleteBlindWatermarkTemplateResponse": {
|
|
10944
|
+
"document": "DeleteBlindWatermarkTemplate response structure.",
|
|
10945
|
+
"members": [
|
|
10946
|
+
{
|
|
10947
|
+
"document": "The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.",
|
|
10948
|
+
"member": "string",
|
|
10949
|
+
"name": "RequestId",
|
|
10950
|
+
"type": "string"
|
|
10951
|
+
}
|
|
10952
|
+
],
|
|
10953
|
+
"type": "object"
|
|
10954
|
+
},
|
|
10642
10955
|
"DeleteContentReviewTemplateRequest": {
|
|
10643
10956
|
"document": "DeleteContentReviewTemplate request structure.",
|
|
10644
10957
|
"members": [
|
|
@@ -10747,6 +11060,33 @@
|
|
|
10747
11060
|
],
|
|
10748
11061
|
"type": "object"
|
|
10749
11062
|
},
|
|
11063
|
+
"DeleteProcessImageTemplateRequest": {
|
|
11064
|
+
"document": "DeleteProcessImageTemplate request structure.",
|
|
11065
|
+
"members": [
|
|
11066
|
+
{
|
|
11067
|
+
"disabled": false,
|
|
11068
|
+
"document": "Unique identifier of the image processing template.",
|
|
11069
|
+
"example": "200043",
|
|
11070
|
+
"member": "int64",
|
|
11071
|
+
"name": "Definition",
|
|
11072
|
+
"required": false,
|
|
11073
|
+
"type": "int"
|
|
11074
|
+
}
|
|
11075
|
+
],
|
|
11076
|
+
"type": "object"
|
|
11077
|
+
},
|
|
11078
|
+
"DeleteProcessImageTemplateResponse": {
|
|
11079
|
+
"document": "DeleteProcessImageTemplate response structure.",
|
|
11080
|
+
"members": [
|
|
11081
|
+
{
|
|
11082
|
+
"document": "The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.",
|
|
11083
|
+
"member": "string",
|
|
11084
|
+
"name": "RequestId",
|
|
11085
|
+
"type": "string"
|
|
11086
|
+
}
|
|
11087
|
+
],
|
|
11088
|
+
"type": "object"
|
|
11089
|
+
},
|
|
10750
11090
|
"DeleteQualityControlTemplateRequest": {
|
|
10751
11091
|
"document": "DeleteQualityControlTemplate request structure.",
|
|
10752
11092
|
"members": [
|
|
@@ -11023,7 +11363,7 @@
|
|
|
11023
11363
|
{
|
|
11024
11364
|
"disabled": false,
|
|
11025
11365
|
"document": "Unique ID filter of video content analysis templates. Array length limit: 10.",
|
|
11026
|
-
"example": "[
|
|
11366
|
+
"example": "[30]",
|
|
11027
11367
|
"member": "int64",
|
|
11028
11368
|
"name": "Definitions",
|
|
11029
11369
|
"required": false,
|
|
@@ -11050,7 +11390,7 @@
|
|
|
11050
11390
|
{
|
|
11051
11391
|
"disabled": false,
|
|
11052
11392
|
"document": "The filter for querying templates. If this parameter is left empty, both preset and custom templates are returned. Valid values:\n* Preset\n* Custom",
|
|
11053
|
-
"example": "
|
|
11393
|
+
"example": "Preset",
|
|
11054
11394
|
"member": "string",
|
|
11055
11395
|
"name": "Type",
|
|
11056
11396
|
"required": false,
|
|
@@ -11059,7 +11399,7 @@
|
|
|
11059
11399
|
{
|
|
11060
11400
|
"disabled": false,
|
|
11061
11401
|
"document": "Filter condition for video analysis template identifiers, with a length limit of 64 characters.",
|
|
11062
|
-
"example": "
|
|
11402
|
+
"example": "内容分析模板",
|
|
11063
11403
|
"member": "string",
|
|
11064
11404
|
"name": "Name",
|
|
11065
11405
|
"required": false,
|
|
@@ -11106,7 +11446,7 @@
|
|
|
11106
11446
|
{
|
|
11107
11447
|
"disabled": false,
|
|
11108
11448
|
"document": "Unique ID filter of video content recognition templates. Array length limit: 10.",
|
|
11109
|
-
"example": "[
|
|
11449
|
+
"example": "[30]",
|
|
11110
11450
|
"member": "int64",
|
|
11111
11451
|
"name": "Definitions",
|
|
11112
11452
|
"required": false,
|
|
@@ -11133,7 +11473,7 @@
|
|
|
11133
11473
|
{
|
|
11134
11474
|
"disabled": false,
|
|
11135
11475
|
"document": "The filter for querying templates. If this parameter is left empty, both preset and custom templates are returned. Valid values:\n* Preset\n* Custom",
|
|
11136
|
-
"example": "
|
|
11476
|
+
"example": "Preset",
|
|
11137
11477
|
"member": "string",
|
|
11138
11478
|
"name": "Type",
|
|
11139
11479
|
"required": false,
|
|
@@ -11142,7 +11482,7 @@
|
|
|
11142
11482
|
{
|
|
11143
11483
|
"disabled": false,
|
|
11144
11484
|
"document": "Filter condition for video recognition template identifiers, with a length limit of 64 characters.",
|
|
11145
|
-
"example": "
|
|
11485
|
+
"example": "Presetting Template",
|
|
11146
11486
|
"member": "string",
|
|
11147
11487
|
"name": "Name",
|
|
11148
11488
|
"required": false,
|
|
@@ -11818,13 +12158,13 @@
|
|
|
11818
12158
|
],
|
|
11819
12159
|
"type": "object"
|
|
11820
12160
|
},
|
|
11821
|
-
"
|
|
11822
|
-
"document": "
|
|
12161
|
+
"DescribeBlindWatermarkTemplatesRequest": {
|
|
12162
|
+
"document": "DescribeBlindWatermarkTemplates request structure.",
|
|
11823
12163
|
"members": [
|
|
11824
12164
|
{
|
|
11825
12165
|
"disabled": false,
|
|
11826
|
-
"document": "
|
|
11827
|
-
"example": "
|
|
12166
|
+
"document": "Filtering condition for the unique identifier of the digital watermark template. The array length cannot exceed 100.",
|
|
12167
|
+
"example": "[10,20,30]",
|
|
11828
12168
|
"member": "int64",
|
|
11829
12169
|
"name": "Definitions",
|
|
11830
12170
|
"required": false,
|
|
@@ -11832,8 +12172,91 @@
|
|
|
11832
12172
|
},
|
|
11833
12173
|
{
|
|
11834
12174
|
"disabled": false,
|
|
11835
|
-
"document": "
|
|
11836
|
-
"example": "
|
|
12175
|
+
"document": "Filtering condition for the unique identifier of the digital watermark template. The length cannot exceed 64 characters.",
|
|
12176
|
+
"example": "数字水印模板1",
|
|
12177
|
+
"member": "string",
|
|
12178
|
+
"name": "Name",
|
|
12179
|
+
"required": false,
|
|
12180
|
+
"type": "string"
|
|
12181
|
+
},
|
|
12182
|
+
{
|
|
12183
|
+
"disabled": false,
|
|
12184
|
+
"document": "Digital watermark type. Valid values: <li>blind-basic: basic copyright digital watermark;</li> <li>blind-nagra: NAGRA forensics watermark.</li>",
|
|
12185
|
+
"example": "blind-basic",
|
|
12186
|
+
"member": "string",
|
|
12187
|
+
"name": "Type",
|
|
12188
|
+
"required": false,
|
|
12189
|
+
"type": "string"
|
|
12190
|
+
},
|
|
12191
|
+
{
|
|
12192
|
+
"disabled": false,
|
|
12193
|
+
"document": "Pagination offset. The default value is 0.",
|
|
12194
|
+
"example": "0",
|
|
12195
|
+
"member": "uint64",
|
|
12196
|
+
"name": "Offset",
|
|
12197
|
+
"required": false,
|
|
12198
|
+
"type": "int"
|
|
12199
|
+
},
|
|
12200
|
+
{
|
|
12201
|
+
"disabled": false,
|
|
12202
|
+
"document": "Number of returned records.\n<li>Default value: 10.</li>\n<li>Maximum value: 100.</li>",
|
|
12203
|
+
"example": "10",
|
|
12204
|
+
"member": "uint64",
|
|
12205
|
+
"name": "Limit",
|
|
12206
|
+
"required": false,
|
|
12207
|
+
"type": "int"
|
|
12208
|
+
}
|
|
12209
|
+
],
|
|
12210
|
+
"type": "object"
|
|
12211
|
+
},
|
|
12212
|
+
"DescribeBlindWatermarkTemplatesResponse": {
|
|
12213
|
+
"document": "DescribeBlindWatermarkTemplates response structure.",
|
|
12214
|
+
"members": [
|
|
12215
|
+
{
|
|
12216
|
+
"disabled": false,
|
|
12217
|
+
"document": "Total number of records that meet the filtering conditions.",
|
|
12218
|
+
"example": "10",
|
|
12219
|
+
"member": "uint64",
|
|
12220
|
+
"name": "TotalCount",
|
|
12221
|
+
"output_required": true,
|
|
12222
|
+
"type": "int",
|
|
12223
|
+
"value_allowed_null": false
|
|
12224
|
+
},
|
|
12225
|
+
{
|
|
12226
|
+
"disabled": false,
|
|
12227
|
+
"document": "List of digital watermark template details.",
|
|
12228
|
+
"example": "无",
|
|
12229
|
+
"member": "BlindWatermarkTemplate",
|
|
12230
|
+
"name": "BlindWatermarkTemplateSet",
|
|
12231
|
+
"output_required": true,
|
|
12232
|
+
"type": "list",
|
|
12233
|
+
"value_allowed_null": false
|
|
12234
|
+
},
|
|
12235
|
+
{
|
|
12236
|
+
"document": "The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.",
|
|
12237
|
+
"member": "string",
|
|
12238
|
+
"name": "RequestId",
|
|
12239
|
+
"type": "string"
|
|
12240
|
+
}
|
|
12241
|
+
],
|
|
12242
|
+
"type": "object"
|
|
12243
|
+
},
|
|
12244
|
+
"DescribeContentReviewTemplatesRequest": {
|
|
12245
|
+
"document": "DescribeContentReviewTemplates request structure.",
|
|
12246
|
+
"members": [
|
|
12247
|
+
{
|
|
12248
|
+
"disabled": false,
|
|
12249
|
+
"document": "The IDs of the content moderation templates to query. Array length limit: 50.",
|
|
12250
|
+
"example": "无",
|
|
12251
|
+
"member": "int64",
|
|
12252
|
+
"name": "Definitions",
|
|
12253
|
+
"required": false,
|
|
12254
|
+
"type": "list"
|
|
12255
|
+
},
|
|
12256
|
+
{
|
|
12257
|
+
"disabled": false,
|
|
12258
|
+
"document": "Paging offset. Default value: 0.",
|
|
12259
|
+
"example": "无",
|
|
11837
12260
|
"member": "uint64",
|
|
11838
12261
|
"name": "Offset",
|
|
11839
12262
|
"required": false,
|
|
@@ -12303,6 +12726,107 @@
|
|
|
12303
12726
|
],
|
|
12304
12727
|
"type": "object"
|
|
12305
12728
|
},
|
|
12729
|
+
"DescribeProcessImageTemplatesRequest": {
|
|
12730
|
+
"document": "DescribeProcessImageTemplates request structure.",
|
|
12731
|
+
"members": [
|
|
12732
|
+
{
|
|
12733
|
+
"disabled": false,
|
|
12734
|
+
"document": "Filtering condition for the unique identifier of the image processing template. The array length cannot exceed 100.",
|
|
12735
|
+
"example": "[1001]",
|
|
12736
|
+
"member": "int64",
|
|
12737
|
+
"name": "Definitions",
|
|
12738
|
+
"required": false,
|
|
12739
|
+
"type": "list"
|
|
12740
|
+
},
|
|
12741
|
+
{
|
|
12742
|
+
"disabled": false,
|
|
12743
|
+
"document": "Pagination offset. The default value is 0.",
|
|
12744
|
+
"example": "0",
|
|
12745
|
+
"member": "uint64",
|
|
12746
|
+
"name": "Offset",
|
|
12747
|
+
"required": false,
|
|
12748
|
+
"type": "int"
|
|
12749
|
+
},
|
|
12750
|
+
{
|
|
12751
|
+
"disabled": false,
|
|
12752
|
+
"document": "Number of returned entries. The default value is 10, and the maximum value is 100.",
|
|
12753
|
+
"example": "10",
|
|
12754
|
+
"member": "uint64",
|
|
12755
|
+
"name": "Limit",
|
|
12756
|
+
"required": false,
|
|
12757
|
+
"type": "int"
|
|
12758
|
+
},
|
|
12759
|
+
{
|
|
12760
|
+
"disabled": false,
|
|
12761
|
+
"document": "Filtering condition for the identifier of the image processing template.",
|
|
12762
|
+
"example": "图片处理模板1",
|
|
12763
|
+
"member": "string",
|
|
12764
|
+
"name": "Name",
|
|
12765
|
+
"required": false,
|
|
12766
|
+
"type": "string"
|
|
12767
|
+
},
|
|
12768
|
+
{
|
|
12769
|
+
"disabled": false,
|
|
12770
|
+
"document": "Sorting method. It is valid after OrderBy is set. Valid values: 0: ascending; 1: descending. The default value is 0.",
|
|
12771
|
+
"example": "0",
|
|
12772
|
+
"member": "int64",
|
|
12773
|
+
"name": "OrderType",
|
|
12774
|
+
"required": false,
|
|
12775
|
+
"type": "int"
|
|
12776
|
+
},
|
|
12777
|
+
{
|
|
12778
|
+
"disabled": false,
|
|
12779
|
+
"document": "Sorting field. Valid values:\nDefinition: unique identifier of the template.\nDefault value: creation time.",
|
|
12780
|
+
"example": "Definition",
|
|
12781
|
+
"member": "string",
|
|
12782
|
+
"name": "OrderBy",
|
|
12783
|
+
"required": false,
|
|
12784
|
+
"type": "string"
|
|
12785
|
+
},
|
|
12786
|
+
{
|
|
12787
|
+
"disabled": false,
|
|
12788
|
+
"document": "Filtering condition for the template type. Valid values: <li>Preset: system preset template;</li> <li>Custom: user-defined template.</li>",
|
|
12789
|
+
"example": "Preset",
|
|
12790
|
+
"member": "string",
|
|
12791
|
+
"name": "Type",
|
|
12792
|
+
"required": false,
|
|
12793
|
+
"type": "string"
|
|
12794
|
+
}
|
|
12795
|
+
],
|
|
12796
|
+
"type": "object"
|
|
12797
|
+
},
|
|
12798
|
+
"DescribeProcessImageTemplatesResponse": {
|
|
12799
|
+
"document": "DescribeProcessImageTemplates response structure.",
|
|
12800
|
+
"members": [
|
|
12801
|
+
{
|
|
12802
|
+
"disabled": false,
|
|
12803
|
+
"document": "Total number of records that meet the filtering conditions.",
|
|
12804
|
+
"example": "10",
|
|
12805
|
+
"member": "uint64",
|
|
12806
|
+
"name": "TotalCount",
|
|
12807
|
+
"output_required": true,
|
|
12808
|
+
"type": "int",
|
|
12809
|
+
"value_allowed_null": false
|
|
12810
|
+
},
|
|
12811
|
+
{
|
|
12812
|
+
"disabled": false,
|
|
12813
|
+
"document": "List of image processing template details.",
|
|
12814
|
+
"example": "无",
|
|
12815
|
+
"member": "ProcessImageTemplate",
|
|
12816
|
+
"name": "ProcessImageTemplateSet",
|
|
12817
|
+
"output_required": false,
|
|
12818
|
+
"type": "list",
|
|
12819
|
+
"value_allowed_null": false
|
|
12820
|
+
},
|
|
12821
|
+
{
|
|
12822
|
+
"document": "The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.",
|
|
12823
|
+
"member": "string",
|
|
12824
|
+
"name": "RequestId",
|
|
12825
|
+
"type": "string"
|
|
12826
|
+
}
|
|
12827
|
+
],
|
|
12828
|
+
"type": "object"
|
|
12829
|
+
},
|
|
12306
12830
|
"DescribeQualityControlTemplatesRequest": {
|
|
12307
12831
|
"document": "DescribeQualityControlTemplates request structure.",
|
|
12308
12832
|
"members": [
|
|
@@ -12591,6 +13115,15 @@
|
|
|
12591
13115
|
"required": false,
|
|
12592
13116
|
"type": "string"
|
|
12593
13117
|
},
|
|
13118
|
+
{
|
|
13119
|
+
"disabled": false,
|
|
13120
|
+
"document": "Erasing type filtering conditions for the smart erasing template.\n- subtitle: subtitle removal.\n- watermark: watermark removal.\n- privacy: privacy protection.",
|
|
13121
|
+
"example": "擦除模板类型",
|
|
13122
|
+
"member": "string",
|
|
13123
|
+
"name": "EraseType",
|
|
13124
|
+
"required": false,
|
|
13125
|
+
"type": "string"
|
|
13126
|
+
},
|
|
12594
13127
|
{
|
|
12595
13128
|
"disabled": false,
|
|
12596
13129
|
"document": "Filtering condition for the smart erasing template name. Length limit: 64 characters.",
|
|
@@ -14274,6 +14807,79 @@
|
|
|
14274
14807
|
],
|
|
14275
14808
|
"type": "object"
|
|
14276
14809
|
},
|
|
14810
|
+
"ExtractBlindWatermarkRequest": {
|
|
14811
|
+
"document": "ExtractBlindWatermark request structure.",
|
|
14812
|
+
"members": [
|
|
14813
|
+
{
|
|
14814
|
+
"disabled": false,
|
|
14815
|
+
"document": "Digital watermark type. Valid values: <li>blind-basic: basic copyright digital watermark;</li> <li>blind-abseq: ab sequence copyright digital watermark.</li>",
|
|
14816
|
+
"example": "blind-basic",
|
|
14817
|
+
"member": "string",
|
|
14818
|
+
"name": "Type",
|
|
14819
|
+
"required": true,
|
|
14820
|
+
"type": "string"
|
|
14821
|
+
},
|
|
14822
|
+
{
|
|
14823
|
+
"disabled": false,
|
|
14824
|
+
"document": "File input information for the Media Processing Service (MPS) task.",
|
|
14825
|
+
"example": "无",
|
|
14826
|
+
"member": "MediaInputInfo",
|
|
14827
|
+
"name": "InputInfo",
|
|
14828
|
+
"required": true,
|
|
14829
|
+
"type": "object"
|
|
14830
|
+
},
|
|
14831
|
+
{
|
|
14832
|
+
"disabled": false,
|
|
14833
|
+
"document": "Event notification information of the task. If it is left unspecified, it indicates that no event notification is obtained.",
|
|
14834
|
+
"example": "无",
|
|
14835
|
+
"member": "TaskNotifyConfig",
|
|
14836
|
+
"name": "TaskNotifyConfig",
|
|
14837
|
+
"required": false,
|
|
14838
|
+
"type": "object"
|
|
14839
|
+
},
|
|
14840
|
+
{
|
|
14841
|
+
"disabled": false,
|
|
14842
|
+
"document": "Configuration of the digital watermark extraction task.",
|
|
14843
|
+
"example": "无",
|
|
14844
|
+
"member": "ExtractBlindWatermarkTaskConfig",
|
|
14845
|
+
"name": "ExtractBlindWatermarkConfig",
|
|
14846
|
+
"required": false,
|
|
14847
|
+
"type": "object"
|
|
14848
|
+
},
|
|
14849
|
+
{
|
|
14850
|
+
"disabled": false,
|
|
14851
|
+
"document": "Resource ID. Ensure that the corresponding resource is enabled. The default value is the primary resource ID of the account.",
|
|
14852
|
+
"example": "vts-240000xx-0",
|
|
14853
|
+
"member": "string",
|
|
14854
|
+
"name": "ResourceId",
|
|
14855
|
+
"required": false,
|
|
14856
|
+
"type": "string"
|
|
14857
|
+
}
|
|
14858
|
+
],
|
|
14859
|
+
"type": "object"
|
|
14860
|
+
},
|
|
14861
|
+
"ExtractBlindWatermarkResponse": {
|
|
14862
|
+
"document": "ExtractBlindWatermark response structure.",
|
|
14863
|
+
"members": [
|
|
14864
|
+
{
|
|
14865
|
+
"disabled": false,
|
|
14866
|
+
"document": "Task ID.",
|
|
14867
|
+
"example": "125xxx65-ExtractBlindWatermark-bffb15f07530b57bc1aabb01fac74bca",
|
|
14868
|
+
"member": "string",
|
|
14869
|
+
"name": "TaskId",
|
|
14870
|
+
"output_required": true,
|
|
14871
|
+
"type": "string",
|
|
14872
|
+
"value_allowed_null": false
|
|
14873
|
+
},
|
|
14874
|
+
{
|
|
14875
|
+
"document": "The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.",
|
|
14876
|
+
"member": "string",
|
|
14877
|
+
"name": "RequestId",
|
|
14878
|
+
"type": "string"
|
|
14879
|
+
}
|
|
14880
|
+
],
|
|
14881
|
+
"type": "object"
|
|
14882
|
+
},
|
|
14277
14883
|
"ExtractBlindWatermarkTask": {
|
|
14278
14884
|
"document": "Extract video digital watermark task information.",
|
|
14279
14885
|
"members": [
|
|
@@ -14823,7 +15429,7 @@
|
|
|
14823
15429
|
},
|
|
14824
15430
|
{
|
|
14825
15431
|
"disabled": false,
|
|
14826
|
-
"document": "Coordinates (pixel-level) of the box selection area in the image
|
|
15432
|
+
"document": "Coordinates (pixel-level) of the box selection area in the image, in the format of [x1, y1, x2, y2]. It indicates the coordinates of the top left corner and the bottom right corner. Note: The maximum value of this field is 4096.\nFor example, [101, 85, 111, 95].\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
14827
15433
|
"example": "[101, 85, 111, 95]",
|
|
14828
15434
|
"member": "int64",
|
|
14829
15435
|
"name": "AreaCoordSet",
|
|
@@ -14834,7 +15440,7 @@
|
|
|
14834
15440
|
},
|
|
14835
15441
|
{
|
|
14836
15442
|
"disabled": false,
|
|
14837
|
-
"document": "Coordinates of the box selection area in the image
|
|
15443
|
+
"document": "Coordinates of the box selection area in the image, in the format of [x1, y1, x2, y2]. It indicates the coordinates of the top left corner and the bottom right corner. This field takes effect when AreaCoordSet is not specified. When it indicates the pixel, the maximum value of this field is 4096.\n- [0.1, 0.1, 0.3, 0.3]: indicates the ratio (values are less than 1).\n- [50, 50, 350, 280]: indicates the pixel (values are greater than or equal to 1).\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
14838
15444
|
"example": "[0.1, 0.1, 0.2, 0.2]",
|
|
14839
15445
|
"member": "float",
|
|
14840
15446
|
"name": "BoundingBox",
|
|
@@ -14842,6 +15448,17 @@
|
|
|
14842
15448
|
"required": false,
|
|
14843
15449
|
"type": "list",
|
|
14844
15450
|
"value_allowed_null": true
|
|
15451
|
+
},
|
|
15452
|
+
{
|
|
15453
|
+
"disabled": false,
|
|
15454
|
+
"document": "BoundingBox field unit. When the value is set to 0, select the unit automatically according to the field rule. When it is set to 1, the unit is ratio. When it is set to 2, the unit is pixel.",
|
|
15455
|
+
"example": "0",
|
|
15456
|
+
"member": "uint64",
|
|
15457
|
+
"name": "BoundingBoxUnitType",
|
|
15458
|
+
"output_required": false,
|
|
15459
|
+
"required": false,
|
|
15460
|
+
"type": "int",
|
|
15461
|
+
"value_allowed_null": false
|
|
14845
15462
|
}
|
|
14846
15463
|
],
|
|
14847
15464
|
"usage": "both"
|
|
@@ -15526,65 +16143,157 @@
|
|
|
15526
16143
|
},
|
|
15527
16144
|
{
|
|
15528
16145
|
"disabled": false,
|
|
15529
|
-
"document": "Repeat type of an animated watermark. Valid values:\n<li>once: no longer appears after watermark playback ends.</li>\n<li>repeat_last_frame: stays on the last frame after watermark playback ends.</li>\n<li>repeat (default): repeats the playback until the video ends.</li>",
|
|
15530
|
-
"example": "repeat",
|
|
16146
|
+
"document": "Repeat type of an animated watermark. Valid values:\n<li>once: no longer appears after watermark playback ends.</li>\n<li>repeat_last_frame: stays on the last frame after watermark playback ends.</li>\n<li>repeat (default): repeats the playback until the video ends.</li>",
|
|
16147
|
+
"example": "repeat",
|
|
16148
|
+
"member": "string",
|
|
16149
|
+
"name": "RepeatType",
|
|
16150
|
+
"output_required": true,
|
|
16151
|
+
"type": "string",
|
|
16152
|
+
"value_allowed_null": false
|
|
16153
|
+
}
|
|
16154
|
+
],
|
|
16155
|
+
"usage": "out"
|
|
16156
|
+
},
|
|
16157
|
+
"LiveActivityResItem": {
|
|
16158
|
+
"document": "The output of a live scheme subtask.",
|
|
16159
|
+
"members": [
|
|
16160
|
+
{
|
|
16161
|
+
"disabled": false,
|
|
16162
|
+
"document": "The output of a live recording task.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
16163
|
+
"example": "无",
|
|
16164
|
+
"member": "LiveScheduleLiveRecordTaskResult",
|
|
16165
|
+
"name": "LiveRecordTask",
|
|
16166
|
+
"output_required": false,
|
|
16167
|
+
"type": "object",
|
|
16168
|
+
"value_allowed_null": true
|
|
16169
|
+
},
|
|
16170
|
+
{
|
|
16171
|
+
"disabled": false,
|
|
16172
|
+
"document": "Media quality inspection task output.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
16173
|
+
"example": "无",
|
|
16174
|
+
"member": "ScheduleQualityControlTaskResult",
|
|
16175
|
+
"name": "LiveQualityControlTask",
|
|
16176
|
+
"output_required": false,
|
|
16177
|
+
"type": "object",
|
|
16178
|
+
"value_allowed_null": true
|
|
16179
|
+
}
|
|
16180
|
+
],
|
|
16181
|
+
"usage": "out"
|
|
16182
|
+
},
|
|
16183
|
+
"LiveActivityResult": {
|
|
16184
|
+
"document": "The output of a live scheme subtask.",
|
|
16185
|
+
"members": [
|
|
16186
|
+
{
|
|
16187
|
+
"disabled": false,
|
|
16188
|
+
"document": "Atomic task type.\n<li>LiveRecord: live recording</li>\n<li>AiQualityControl: media quality inspection</li>",
|
|
16189
|
+
"example": "LiveRecord",
|
|
16190
|
+
"member": "string",
|
|
16191
|
+
"name": "ActivityType",
|
|
16192
|
+
"output_required": false,
|
|
16193
|
+
"type": "string",
|
|
16194
|
+
"value_allowed_null": false
|
|
16195
|
+
},
|
|
16196
|
+
{
|
|
16197
|
+
"disabled": false,
|
|
16198
|
+
"document": "The task output.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
16199
|
+
"example": "NULL",
|
|
16200
|
+
"member": "LiveActivityResItem",
|
|
16201
|
+
"name": "LiveActivityResItem",
|
|
16202
|
+
"output_required": false,
|
|
16203
|
+
"type": "object",
|
|
16204
|
+
"value_allowed_null": true
|
|
16205
|
+
}
|
|
16206
|
+
],
|
|
16207
|
+
"usage": "out"
|
|
16208
|
+
},
|
|
16209
|
+
"LiveAiAnalysisDescriptionItem": {
|
|
16210
|
+
"document": "Information about the live streaming summary result.",
|
|
16211
|
+
"members": [
|
|
16212
|
+
{
|
|
16213
|
+
"disabled": false,
|
|
16214
|
+
"document": "Segmentation result.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
16215
|
+
"example": "无",
|
|
16216
|
+
"member": "LiveAiParagraphInfo",
|
|
16217
|
+
"name": "Paragraphs",
|
|
16218
|
+
"output_required": false,
|
|
16219
|
+
"type": "list",
|
|
16220
|
+
"value_allowed_null": true
|
|
16221
|
+
}
|
|
16222
|
+
],
|
|
16223
|
+
"usage": "out"
|
|
16224
|
+
},
|
|
16225
|
+
"LiveAiParagraphInfo": {
|
|
16226
|
+
"document": "Segment information.",
|
|
16227
|
+
"members": [
|
|
16228
|
+
{
|
|
16229
|
+
"disabled": false,
|
|
16230
|
+
"document": "Segment summary.",
|
|
16231
|
+
"example": "summary",
|
|
16232
|
+
"member": "string",
|
|
16233
|
+
"name": "Summary",
|
|
16234
|
+
"output_required": false,
|
|
16235
|
+
"type": "string",
|
|
16236
|
+
"value_allowed_null": false
|
|
16237
|
+
},
|
|
16238
|
+
{
|
|
16239
|
+
"disabled": false,
|
|
16240
|
+
"document": "Segment title.",
|
|
16241
|
+
"example": "title",
|
|
16242
|
+
"member": "string",
|
|
16243
|
+
"name": "Title",
|
|
16244
|
+
"output_required": false,
|
|
16245
|
+
"type": "string",
|
|
16246
|
+
"value_allowed_null": false
|
|
16247
|
+
},
|
|
16248
|
+
{
|
|
16249
|
+
"disabled": false,
|
|
16250
|
+
"document": "Segment keyword.",
|
|
16251
|
+
"example": "[\"words1\",\"words2\"]",
|
|
15531
16252
|
"member": "string",
|
|
15532
|
-
"name": "
|
|
15533
|
-
"output_required":
|
|
15534
|
-
"type": "
|
|
16253
|
+
"name": "Keywords",
|
|
16254
|
+
"output_required": false,
|
|
16255
|
+
"type": "list",
|
|
15535
16256
|
"value_allowed_null": false
|
|
15536
|
-
}
|
|
15537
|
-
],
|
|
15538
|
-
"usage": "out"
|
|
15539
|
-
},
|
|
15540
|
-
"LiveActivityResItem": {
|
|
15541
|
-
"document": "The output of a live scheme subtask.",
|
|
15542
|
-
"members": [
|
|
16257
|
+
},
|
|
15543
16258
|
{
|
|
15544
16259
|
"disabled": false,
|
|
15545
|
-
"document": "
|
|
15546
|
-
"example": "
|
|
15547
|
-
"member": "
|
|
15548
|
-
"name": "
|
|
16260
|
+
"document": "Starting time point of the segment, in seconds.",
|
|
16261
|
+
"example": "10.05",
|
|
16262
|
+
"member": "float",
|
|
16263
|
+
"name": "StartTimeOffset",
|
|
15549
16264
|
"output_required": false,
|
|
15550
|
-
"type": "
|
|
15551
|
-
"value_allowed_null":
|
|
16265
|
+
"type": "float",
|
|
16266
|
+
"value_allowed_null": false
|
|
15552
16267
|
},
|
|
15553
16268
|
{
|
|
15554
16269
|
"disabled": false,
|
|
15555
|
-
"document": "
|
|
15556
|
-
"example": "
|
|
15557
|
-
"member": "
|
|
15558
|
-
"name": "
|
|
16270
|
+
"document": "End time point of the segment, in seconds.",
|
|
16271
|
+
"example": "20.05",
|
|
16272
|
+
"member": "float",
|
|
16273
|
+
"name": "EndTimeOffset",
|
|
15559
16274
|
"output_required": false,
|
|
15560
|
-
"type": "
|
|
15561
|
-
"value_allowed_null":
|
|
15562
|
-
}
|
|
15563
|
-
],
|
|
15564
|
-
"usage": "out"
|
|
15565
|
-
},
|
|
15566
|
-
"LiveActivityResult": {
|
|
15567
|
-
"document": "The output of a live scheme subtask.",
|
|
15568
|
-
"members": [
|
|
16275
|
+
"type": "float",
|
|
16276
|
+
"value_allowed_null": false
|
|
16277
|
+
},
|
|
15569
16278
|
{
|
|
15570
16279
|
"disabled": false,
|
|
15571
|
-
"document": "
|
|
15572
|
-
"example": "
|
|
16280
|
+
"document": "Starting time point of the live streaming segment in ISO date and time format.\t",
|
|
16281
|
+
"example": "2025-11-06T15:54:21+08:00",
|
|
15573
16282
|
"member": "string",
|
|
15574
|
-
"name": "
|
|
16283
|
+
"name": "BeginTime",
|
|
15575
16284
|
"output_required": false,
|
|
15576
16285
|
"type": "string",
|
|
15577
16286
|
"value_allowed_null": false
|
|
15578
16287
|
},
|
|
15579
16288
|
{
|
|
15580
16289
|
"disabled": false,
|
|
15581
|
-
"document": "
|
|
15582
|
-
"example": "
|
|
15583
|
-
"member": "
|
|
15584
|
-
"name": "
|
|
16290
|
+
"document": "End time point of the live streaming segment in ISO date and time format.\t",
|
|
16291
|
+
"example": "2025-11-06T16:54:21+08:00",
|
|
16292
|
+
"member": "string",
|
|
16293
|
+
"name": "EndTime",
|
|
15585
16294
|
"output_required": false,
|
|
15586
|
-
"type": "
|
|
15587
|
-
"value_allowed_null":
|
|
16295
|
+
"type": "string",
|
|
16296
|
+
"value_allowed_null": false
|
|
15588
16297
|
}
|
|
15589
16298
|
],
|
|
15590
16299
|
"usage": "out"
|
|
@@ -15963,11 +16672,11 @@
|
|
|
15963
16672
|
"members": [
|
|
15964
16673
|
{
|
|
15965
16674
|
"disabled": false,
|
|
15966
|
-
"document": "",
|
|
16675
|
+
"document": "Live streaming analysis subtask result. Valid values:\n<li>Live streaming video splitting.</li>\n<li>Live streaming highlight.</li>\n<li>Live streaming summary.</li>\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
15967
16676
|
"example": "无",
|
|
15968
16677
|
"member": "LiveStreamAiAnalysisResultItem",
|
|
15969
16678
|
"name": "ResultSet",
|
|
15970
|
-
"
|
|
16679
|
+
"output_required": true,
|
|
15971
16680
|
"type": "list",
|
|
15972
16681
|
"value_allowed_null": true
|
|
15973
16682
|
}
|
|
@@ -15979,7 +16688,7 @@
|
|
|
15979
16688
|
"members": [
|
|
15980
16689
|
{
|
|
15981
16690
|
"disabled": false,
|
|
15982
|
-
"document": "Result type. Valid values:\n<li>SegmentRecognition: video splitting.</li>\n<li>Highlight: highlight.</li>",
|
|
16691
|
+
"document": "Result type. Valid values:\n<li>SegmentRecognition: video splitting.</li>\n<li>Highlight: highlight.</li>\n<li>Description: summary.</li>",
|
|
15983
16692
|
"example": "SegmentRecognition",
|
|
15984
16693
|
"member": "string",
|
|
15985
16694
|
"name": "Type",
|
|
@@ -16006,6 +16715,16 @@
|
|
|
16006
16715
|
"output_required": true,
|
|
16007
16716
|
"type": "list",
|
|
16008
16717
|
"value_allowed_null": true
|
|
16718
|
+
},
|
|
16719
|
+
{
|
|
16720
|
+
"disabled": false,
|
|
16721
|
+
"document": "Summary result. It is valid when Type is Description.",
|
|
16722
|
+
"example": "无",
|
|
16723
|
+
"member": "LiveAiAnalysisDescriptionItem",
|
|
16724
|
+
"name": "DescriptionResult",
|
|
16725
|
+
"output_required": false,
|
|
16726
|
+
"type": "object",
|
|
16727
|
+
"value_allowed_null": false
|
|
16009
16728
|
}
|
|
16010
16729
|
],
|
|
16011
16730
|
"usage": "out"
|
|
@@ -17089,7 +17808,7 @@
|
|
|
17089
17808
|
"members": [
|
|
17090
17809
|
{
|
|
17091
17810
|
"disabled": false,
|
|
17092
|
-
"document": "Notification Type:\nTDMQ-CMQ: TDMQ for CMQ.\n\"URL\": When a URL is specified, HTTP callbacks are pushed to the address specified by NotifyUrl. The callback protocol is HTTP+JSON. The content of the packet body is the same as the output parameters of [ParseLiveStreamProcessNotification](https://www.tencentcloud.
|
|
17811
|
+
"document": "Notification Type:\nTDMQ-CMQ: TDMQ for CMQ.\n\"URL\": When a URL is specified, HTTP callbacks are pushed to the address specified by NotifyUrl. The callback protocol is HTTP+JSON. The content of the packet body is the same as the output parameters of [ParseLiveStreamProcessNotification](https://www.tencentcloud.com/document/api/1041/33680).\n\n<font color=\"red\">Note: If it is left blank, TDMQ-CMQ is used by default. To use other types, fill in the corresponding type value.</font>",
|
|
17093
17812
|
"example": "URL",
|
|
17094
17813
|
"member": "string",
|
|
17095
17814
|
"name": "NotifyType",
|
|
@@ -18522,7 +19241,7 @@
|
|
|
18522
19241
|
},
|
|
18523
19242
|
{
|
|
18524
19243
|
"disabled": false,
|
|
18525
|
-
"document": "The error code. An empty string indicates the task is successful; any other value returned indicates the task failed. For details, see [Error Codes](https://
|
|
19244
|
+
"document": "The error code. An empty string indicates the task is successful; any other value returned indicates the task failed. For details, see [Error Codes](https://www.tencentcloud.com/document/api/1041/33691).",
|
|
18526
19245
|
"example": "InvalidInput",
|
|
18527
19246
|
"member": "string",
|
|
18528
19247
|
"name": "ErrCodeExt",
|
|
@@ -18572,7 +19291,7 @@
|
|
|
18572
19291
|
},
|
|
18573
19292
|
{
|
|
18574
19293
|
"disabled": false,
|
|
18575
|
-
"document": "Task execution start time in
|
|
19294
|
+
"document": "Task execution start time in ISO date and time format.",
|
|
18576
19295
|
"example": "2019-07-16T06:21:28Z",
|
|
18577
19296
|
"member": "string",
|
|
18578
19297
|
"name": "BeginProcessTime",
|
|
@@ -18582,7 +19301,7 @@
|
|
|
18582
19301
|
},
|
|
18583
19302
|
{
|
|
18584
19303
|
"disabled": false,
|
|
18585
|
-
"document": "Task execution completion time in
|
|
19304
|
+
"document": "Task execution completion time in ISO date and time format.",
|
|
18586
19305
|
"example": "2019-07-16T06:21:46Z",
|
|
18587
19306
|
"member": "string",
|
|
18588
19307
|
"name": "FinishTime",
|
|
@@ -19815,6 +20534,60 @@
|
|
|
19815
20534
|
],
|
|
19816
20535
|
"type": "object"
|
|
19817
20536
|
},
|
|
20537
|
+
"ModifyBlindWatermarkTemplateRequest": {
|
|
20538
|
+
"document": "ModifyBlindWatermarkTemplate request structure.",
|
|
20539
|
+
"members": [
|
|
20540
|
+
{
|
|
20541
|
+
"disabled": false,
|
|
20542
|
+
"document": "Unique identifier of the digital watermark template.",
|
|
20543
|
+
"example": "10",
|
|
20544
|
+
"member": "int64",
|
|
20545
|
+
"name": "Definition",
|
|
20546
|
+
"required": true,
|
|
20547
|
+
"type": "int"
|
|
20548
|
+
},
|
|
20549
|
+
{
|
|
20550
|
+
"disabled": false,
|
|
20551
|
+
"document": "Digital watermark template name, which supports Chinese, English, digits, underscores (_), hyphens (-), and periods (.). The length cannot exceed 64 characters.",
|
|
20552
|
+
"example": "数字水印模板1",
|
|
20553
|
+
"member": "string",
|
|
20554
|
+
"name": "Name",
|
|
20555
|
+
"required": false,
|
|
20556
|
+
"type": "string"
|
|
20557
|
+
},
|
|
20558
|
+
{
|
|
20559
|
+
"disabled": false,
|
|
20560
|
+
"document": "Description information of the digital watermark template. The length cannot exceed 256 characters.",
|
|
20561
|
+
"example": "数字水印模板",
|
|
20562
|
+
"member": "string",
|
|
20563
|
+
"name": "Comment",
|
|
20564
|
+
"required": false,
|
|
20565
|
+
"type": "string"
|
|
20566
|
+
},
|
|
20567
|
+
{
|
|
20568
|
+
"disabled": false,
|
|
20569
|
+
"document": "Text content of the digital watermark. The length cannot exceed 64 characters. The text content cannot be modified for NAGRA watermark templates.",
|
|
20570
|
+
"example": "数字水印文本",
|
|
20571
|
+
"member": "string",
|
|
20572
|
+
"name": "TextContent",
|
|
20573
|
+
"required": false,
|
|
20574
|
+
"type": "string"
|
|
20575
|
+
}
|
|
20576
|
+
],
|
|
20577
|
+
"type": "object"
|
|
20578
|
+
},
|
|
20579
|
+
"ModifyBlindWatermarkTemplateResponse": {
|
|
20580
|
+
"document": "ModifyBlindWatermarkTemplate response structure.",
|
|
20581
|
+
"members": [
|
|
20582
|
+
{
|
|
20583
|
+
"document": "The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.",
|
|
20584
|
+
"member": "string",
|
|
20585
|
+
"name": "RequestId",
|
|
20586
|
+
"type": "string"
|
|
20587
|
+
}
|
|
20588
|
+
],
|
|
20589
|
+
"type": "object"
|
|
20590
|
+
},
|
|
19818
20591
|
"ModifyContentReviewTemplateRequest": {
|
|
19819
20592
|
"document": "ModifyContentReviewTemplate request structure.",
|
|
19820
20593
|
"members": [
|
|
@@ -20195,6 +20968,60 @@
|
|
|
20195
20968
|
],
|
|
20196
20969
|
"type": "object"
|
|
20197
20970
|
},
|
|
20971
|
+
"ModifyProcessImageTemplateRequest": {
|
|
20972
|
+
"document": "ModifyProcessImageTemplate request structure.",
|
|
20973
|
+
"members": [
|
|
20974
|
+
{
|
|
20975
|
+
"disabled": false,
|
|
20976
|
+
"document": "Unique identifier of the image processing template.",
|
|
20977
|
+
"example": "200043",
|
|
20978
|
+
"member": "int64",
|
|
20979
|
+
"name": "Definition",
|
|
20980
|
+
"required": true,
|
|
20981
|
+
"type": "int"
|
|
20982
|
+
},
|
|
20983
|
+
{
|
|
20984
|
+
"disabled": false,
|
|
20985
|
+
"document": "Image processing template name. The length cannot exceed 64 characters.",
|
|
20986
|
+
"example": "图片处理模板1",
|
|
20987
|
+
"member": "string",
|
|
20988
|
+
"name": "Name",
|
|
20989
|
+
"required": false,
|
|
20990
|
+
"type": "string"
|
|
20991
|
+
},
|
|
20992
|
+
{
|
|
20993
|
+
"disabled": false,
|
|
20994
|
+
"document": "Template description information. The length cannot exceed 256 characters.",
|
|
20995
|
+
"example": "图片处理模板超分",
|
|
20996
|
+
"member": "string",
|
|
20997
|
+
"name": "Comment",
|
|
20998
|
+
"required": false,
|
|
20999
|
+
"type": "string"
|
|
21000
|
+
},
|
|
21001
|
+
{
|
|
21002
|
+
"disabled": false,
|
|
21003
|
+
"document": "Image processing template parameter.",
|
|
21004
|
+
"example": "无",
|
|
21005
|
+
"member": "ImageTaskInput",
|
|
21006
|
+
"name": "ProcessImageTemplate",
|
|
21007
|
+
"required": false,
|
|
21008
|
+
"type": "object"
|
|
21009
|
+
}
|
|
21010
|
+
],
|
|
21011
|
+
"type": "object"
|
|
21012
|
+
},
|
|
21013
|
+
"ModifyProcessImageTemplateResponse": {
|
|
21014
|
+
"document": "ModifyProcessImageTemplate response structure.",
|
|
21015
|
+
"members": [
|
|
21016
|
+
{
|
|
21017
|
+
"document": "The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.",
|
|
21018
|
+
"member": "string",
|
|
21019
|
+
"name": "RequestId",
|
|
21020
|
+
"type": "string"
|
|
21021
|
+
}
|
|
21022
|
+
],
|
|
21023
|
+
"type": "object"
|
|
21024
|
+
},
|
|
20198
21025
|
"ModifyQualityControlTemplateRequest": {
|
|
20199
21026
|
"document": "ModifyQualityControlTemplate request structure.",
|
|
20200
21027
|
"members": [
|
|
@@ -21402,7 +22229,7 @@
|
|
|
21402
22229
|
"members": [
|
|
21403
22230
|
{
|
|
21404
22231
|
"disabled": false,
|
|
21405
|
-
"document": "Live stream processing result type
|
|
22232
|
+
"document": "Live stream processing result type. Valid values:\n<li>AiReviewResult: content review result.</li>\n<li>AiRecognitionResult: content recognition result.</li>\n<li>LiveRecordResult: live streaming recording result.</li>\n<li>AiQualityControlResult: media live quality control result.</li>\n<li>AiAnalysisResult: content analysis result.</li>\n<li>ProcessEof: end of live stream processing.</li>",
|
|
21406
22233
|
"example": "ProcessEof",
|
|
21407
22234
|
"member": "string",
|
|
21408
22235
|
"name": "NotificationType",
|
|
@@ -21637,6 +22464,16 @@
|
|
|
21637
22464
|
"type": "object",
|
|
21638
22465
|
"value_allowed_null": true
|
|
21639
22466
|
},
|
|
22467
|
+
{
|
|
22468
|
+
"disabled": false,
|
|
22469
|
+
"document": "Information about the digital watermark extraction task. This field has a value only when EventType is ExtractBlindWatermark.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
22470
|
+
"example": "无",
|
|
22471
|
+
"member": "ExtractBlindWatermarkTask",
|
|
22472
|
+
"name": "ExtractBlindWatermarkTask",
|
|
22473
|
+
"output_required": false,
|
|
22474
|
+
"type": "object",
|
|
22475
|
+
"value_allowed_null": true
|
|
22476
|
+
},
|
|
21640
22477
|
{
|
|
21641
22478
|
"document": "The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.",
|
|
21642
22479
|
"member": "string",
|
|
@@ -22291,13 +23128,31 @@
|
|
|
22291
23128
|
},
|
|
22292
23129
|
{
|
|
22293
23130
|
"disabled": false,
|
|
22294
|
-
"document": "Output path, which can be a relative or an absolute path.\nThe path must end with `.{format}`. For details, please refer to the [Filename Variable](https://www.tencentcloud.
|
|
23131
|
+
"document": "Output path, which can be a relative or an absolute path.\nThe path must end with `.{format}`. For details, please refer to the [Filename Variable](https://www.tencentcloud.com/document/product/1041/33495).\n**Relative path example:**\n<Li>`Filename_{Variablename}.{format}`.</li>\n<Li>`Filename.{format}`.</li>\n\n**Absolute path example:**\n<Li>`/Path/Filename_{Variablename}.{format}`.</li>\n\nIf not filled in, default relative path: `{inputName}.{format}`.",
|
|
22295
23132
|
"example": "{inputName}.{format}",
|
|
22296
23133
|
"member": "string",
|
|
22297
23134
|
"name": "OutputPath",
|
|
22298
23135
|
"required": false,
|
|
22299
23136
|
"type": "string"
|
|
22300
23137
|
},
|
|
23138
|
+
{
|
|
23139
|
+
"disabled": false,
|
|
23140
|
+
"document": "Unique identifier of the image processing template.",
|
|
23141
|
+
"example": "20001",
|
|
23142
|
+
"member": "uint64",
|
|
23143
|
+
"name": "Definition",
|
|
23144
|
+
"required": false,
|
|
23145
|
+
"type": "int"
|
|
23146
|
+
},
|
|
23147
|
+
{
|
|
23148
|
+
"disabled": false,
|
|
23149
|
+
"document": "Resource ID. Ensure that the corresponding resource is enabled. The default value is the primary resource ID of the account.",
|
|
23150
|
+
"example": "vts-24000-0",
|
|
23151
|
+
"member": "string",
|
|
23152
|
+
"name": "ResourceId",
|
|
23153
|
+
"required": false,
|
|
23154
|
+
"type": "string"
|
|
23155
|
+
},
|
|
22301
23156
|
{
|
|
22302
23157
|
"disabled": false,
|
|
22303
23158
|
"document": "Image processing parameter.",
|
|
@@ -22332,6 +23187,82 @@
|
|
|
22332
23187
|
],
|
|
22333
23188
|
"type": "object"
|
|
22334
23189
|
},
|
|
23190
|
+
"ProcessImageTemplate": {
|
|
23191
|
+
"document": "Image processing template.",
|
|
23192
|
+
"members": [
|
|
23193
|
+
{
|
|
23194
|
+
"disabled": false,
|
|
23195
|
+
"document": "Unique identifier of the image processing template.",
|
|
23196
|
+
"example": "10",
|
|
23197
|
+
"member": "int64",
|
|
23198
|
+
"name": "Definition",
|
|
23199
|
+
"output_required": true,
|
|
23200
|
+
"type": "int",
|
|
23201
|
+
"value_allowed_null": false
|
|
23202
|
+
},
|
|
23203
|
+
{
|
|
23204
|
+
"disabled": false,
|
|
23205
|
+
"document": "Image processing template name.",
|
|
23206
|
+
"example": "图片处理模板1",
|
|
23207
|
+
"member": "string",
|
|
23208
|
+
"name": "Name",
|
|
23209
|
+
"output_required": false,
|
|
23210
|
+
"type": "string",
|
|
23211
|
+
"value_allowed_null": false
|
|
23212
|
+
},
|
|
23213
|
+
{
|
|
23214
|
+
"disabled": false,
|
|
23215
|
+
"document": "Description information of the image processing template.",
|
|
23216
|
+
"example": "图片处理使用超分",
|
|
23217
|
+
"member": "string",
|
|
23218
|
+
"name": "Comment",
|
|
23219
|
+
"output_required": false,
|
|
23220
|
+
"type": "string",
|
|
23221
|
+
"value_allowed_null": false
|
|
23222
|
+
},
|
|
23223
|
+
{
|
|
23224
|
+
"disabled": false,
|
|
23225
|
+
"document": "Template type.",
|
|
23226
|
+
"example": "Custom",
|
|
23227
|
+
"member": "string",
|
|
23228
|
+
"name": "Type",
|
|
23229
|
+
"output_required": false,
|
|
23230
|
+
"type": "string",
|
|
23231
|
+
"value_allowed_null": false
|
|
23232
|
+
},
|
|
23233
|
+
{
|
|
23234
|
+
"disabled": false,
|
|
23235
|
+
"document": "Image processing template configuration parameter.",
|
|
23236
|
+
"example": "无",
|
|
23237
|
+
"member": "ImageTaskInput",
|
|
23238
|
+
"name": "ProcessImageConfig",
|
|
23239
|
+
"output_required": false,
|
|
23240
|
+
"type": "object",
|
|
23241
|
+
"value_allowed_null": false
|
|
23242
|
+
},
|
|
23243
|
+
{
|
|
23244
|
+
"disabled": false,
|
|
23245
|
+
"document": "Template creation time.",
|
|
23246
|
+
"example": "2021-02-03T04:05:06Z",
|
|
23247
|
+
"member": "string",
|
|
23248
|
+
"name": "CreateTime",
|
|
23249
|
+
"output_required": false,
|
|
23250
|
+
"type": "string",
|
|
23251
|
+
"value_allowed_null": false
|
|
23252
|
+
},
|
|
23253
|
+
{
|
|
23254
|
+
"disabled": false,
|
|
23255
|
+
"document": "Last modification time of the template.",
|
|
23256
|
+
"example": "\t2022-02-03T04:05:06Z",
|
|
23257
|
+
"member": "string",
|
|
23258
|
+
"name": "UpdateTime",
|
|
23259
|
+
"output_required": false,
|
|
23260
|
+
"type": "string",
|
|
23261
|
+
"value_allowed_null": false
|
|
23262
|
+
}
|
|
23263
|
+
],
|
|
23264
|
+
"usage": "out"
|
|
23265
|
+
},
|
|
22335
23266
|
"ProcessLiveStreamRequest": {
|
|
22336
23267
|
"document": "ProcessLiveStream request structure.",
|
|
22337
23268
|
"members": [
|
|
@@ -24195,7 +25126,7 @@
|
|
|
24195
25126
|
},
|
|
24196
25127
|
{
|
|
24197
25128
|
"disabled": false,
|
|
24198
|
-
"document": "Task execution start time in
|
|
25129
|
+
"document": "Task execution start time in ISO date and time format.",
|
|
24199
25130
|
"example": "2019-07-16T06:21:28Z",
|
|
24200
25131
|
"member": "string",
|
|
24201
25132
|
"name": "BeginProcessTime",
|
|
@@ -24205,7 +25136,7 @@
|
|
|
24205
25136
|
},
|
|
24206
25137
|
{
|
|
24207
25138
|
"disabled": false,
|
|
24208
|
-
"document": "Task execution completion time in
|
|
25139
|
+
"document": "Task execution completion time in ISO date and time format.",
|
|
24209
25140
|
"example": "2019-07-16T06:21:46Z",
|
|
24210
25141
|
"member": "string",
|
|
24211
25142
|
"name": "FinishTime",
|
|
@@ -26508,7 +27439,7 @@
|
|
|
26508
27439
|
},
|
|
26509
27440
|
{
|
|
26510
27441
|
"disabled": false,
|
|
26511
|
-
"document": "Encryption method.
|
|
27442
|
+
"document": "Encryption method. Valid values:\ncbcs: supported by PlayReady, Widevine, FairPlay, Widevine+FairPlay, Widevine+PlayReady, PlayReady+FairPlay, and Widevine+PlayReady+FairPlay.\ncenc: supported by PlayReady, Widevine, and Widevine+PlayReady.\nIf it is left unspecified:\nUse cbcs for FairPlay by default.\nUse cenc for PlayReady and Widevine by default.\nUse cbcs for Widevine+FairPlay, PlayReady+FairPlay, and Widevine+PlayReady+FairPlay by default.\nUse cenc for Widevine+PlayReady by default.",
|
|
26512
27443
|
"example": "cbcs",
|
|
26513
27444
|
"member": "string",
|
|
26514
27445
|
"name": "EncryptionMethod",
|
|
@@ -27683,6 +28614,17 @@
|
|
|
27683
28614
|
"type": "list",
|
|
27684
28615
|
"value_allowed_null": false
|
|
27685
28616
|
},
|
|
28617
|
+
{
|
|
28618
|
+
"disabled": false,
|
|
28619
|
+
"document": "Digital watermark parameter.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
28620
|
+
"example": "无",
|
|
28621
|
+
"member": "BlindWatermarkInput",
|
|
28622
|
+
"name": "BlindWatermark",
|
|
28623
|
+
"output_required": false,
|
|
28624
|
+
"required": false,
|
|
28625
|
+
"type": "object",
|
|
28626
|
+
"value_allowed_null": true
|
|
28627
|
+
},
|
|
27686
28628
|
{
|
|
27687
28629
|
"disabled": false,
|
|
27688
28630
|
"document": "List of blurs. Up to 10 ones can be supported.",
|
|
@@ -28787,7 +29729,7 @@
|
|
|
28787
29729
|
"members": [
|
|
28788
29730
|
{
|
|
28789
29731
|
"disabled": false,
|
|
28790
|
-
"document": "Encoding format
|
|
29732
|
+
"document": "Encoding format of video streams. Valid values:\n<li>h264: H.264 encoding.</li>\n<li>h265: H.265 encoding.</li>\n<li>h266: H.266 encoding.</li>\n<li>av1: AOMedia Video 1 encoding.</li>\n<li>vp8: VP8 encoding.</li>\n<li>vp9: VP9 encoding.</li>\n<li>mpeg2: MPEG2 encoding.</li>\n<li>dnxhd: DNxHD encoding.</li>\n<li>mv-hevc: MV-HEVC encoding.</li>\nNote: The av1 codec currently only supports mp4, webm, and mkv.\nNote: The H.266 codec currently only supports mp4, hls, ts, and mov.\nNote: The VP8 and VP9 codecs currently only support webm and mkv.\nNote: The MPEG2 and dnxhd codecs currently only support mxf.\nNote: The MV-HEVC codec currently only supports mp4, hls, and mov. Among them, the HLS format only supports the MP4 segmented format and requires the input source to be a panoramic video (with multiple views).",
|
|
28791
29733
|
"example": "h264",
|
|
28792
29734
|
"member": "string",
|
|
28793
29735
|
"name": "Codec",
|