tccli-intl-en 3.0.1269.1__py2.py3-none-any.whl → 3.0.1271.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.
Files changed (32) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/services/__init__.py +2 -1
  3. tccli/services/ccc/ccc_client.py +65 -12
  4. tccli/services/ccc/v20200210/api.json +112 -15
  5. tccli/services/ccc/v20200210/examples.json +8 -0
  6. tccli/services/clb/v20180317/api.json +29 -14
  7. tccli/services/cynosdb/cynosdb_client.py +114 -8
  8. tccli/services/cynosdb/v20190107/api.json +718 -54
  9. tccli/services/cynosdb/v20190107/examples.json +20 -4
  10. tccli/services/dlc/dlc_client.py +175 -16
  11. tccli/services/dlc/v20210125/api.json +282 -6
  12. tccli/services/dlc/v20210125/examples.json +24 -0
  13. tccli/services/faceid/v20180301/examples.json +1 -1
  14. tccli/services/mdl/v20200326/api.json +104 -0
  15. tccli/services/monitor/monitor_client.py +273 -8
  16. tccli/services/monitor/v20180724/api.json +649 -0
  17. tccli/services/monitor/v20180724/examples.json +40 -0
  18. tccli/services/mps/v20190612/api.json +179 -30
  19. tccli/services/mps/v20190612/examples.json +8 -8
  20. tccli/services/quota/v20241204/api.json +13 -2
  21. tccli/services/quota/v20241204/examples.json +4 -3
  22. tccli/services/redis/v20180412/api.json +225 -113
  23. tccli/services/redis/v20180412/examples.json +19 -19
  24. tccli/services/wedata/v20250806/api.json +13644 -0
  25. tccli/services/wedata/v20250806/examples.json +621 -0
  26. tccli/services/wedata/wedata_client.py +4663 -789
  27. {tccli_intl_en-3.0.1269.1.dist-info → tccli_intl_en-3.0.1271.1.dist-info}/METADATA +2 -2
  28. {tccli_intl_en-3.0.1269.1.dist-info → tccli_intl_en-3.0.1271.1.dist-info}/RECORD +32 -30
  29. {tccli_intl_en-3.0.1269.1.dist-info → tccli_intl_en-3.0.1271.1.dist-info}/LICENSE +0 -0
  30. {tccli_intl_en-3.0.1269.1.dist-info → tccli_intl_en-3.0.1271.1.dist-info}/WHEEL +0 -0
  31. {tccli_intl_en-3.0.1269.1.dist-info → tccli_intl_en-3.0.1271.1.dist-info}/entry_points.txt +0 -0
  32. {tccli_intl_en-3.0.1269.1.dist-info → tccli_intl_en-3.0.1271.1.dist-info}/top_level.txt +0 -0
@@ -104,6 +104,14 @@
104
104
  "title": "Creating a Prometheus agent"
105
105
  }
106
106
  ],
107
+ "CreatePrometheusAlertGroup": [
108
+ {
109
+ "document": "This example shows you how to create an alert rule using a notification template.",
110
+ "input": "POST / HTTP/1.1\nHost: monitor.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreatePrometheusAlertGroup\n<Common request parameters>\n\n{\n \"InstanceId\": \"prom-7vp71mk0\",\n\"GroupName\": \"Alarm Grouping Test\"\n \"AMPReceivers\": [\n \"notice-xxxxxx\"\n ],\n \"Rules\": [\n {\n\"RuleName\": \"Rule-1\",\n \"Labels\": [\n {\n \"Key\": \"k1\",\n \"Value\": \"v1\"\n }\n ],\n \"Annotations\": [\n {\n \"Key\": \"summary\",\n \"Value\": \"{{$value}}\"\n },\n {\n \"Key\": \"describe\",\n\"Value\": \"Rule 1 Alarm\"\n }\n ],\n \"Expr\": \"expr1\"\n }\n ]\n}",
111
+ "output": "{\n \"Response\": {\n \"GroupId\": \"alert-2zvqof1a\",\n \"RequestId\": \"02c92b99-abc9-431b-8b08-42b9977d51cf\"\n }\n}",
112
+ "title": "Creating an Alert Rule Using a Notification Template"
113
+ }
114
+ ],
107
115
  "CreatePrometheusAlertPolicy": [
108
116
  {
109
117
  "document": "This example shows you how to create an alerting rule.",
@@ -268,6 +276,14 @@
268
276
  "title": "Deleting alarm policy group"
269
277
  }
270
278
  ],
279
+ "DeletePrometheusAlertGroups": [
280
+ {
281
+ "document": "This example shows you how to delete an Alert group",
282
+ "input": "POST / HTTP/1.1\nHost: monitor.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeletePrometheusAlertGroups\n<Common request parameters>\n\n{\n \"InstanceId\": \"prom-7vp71mk0\",\n \"GroupIds\": [\n \"alert-ol72w8vy\"\n ]\n}",
283
+ "output": "{\n \"Response\": {\n \"RequestId\": \"09cffdc9-047e-45c5-b0eb-6d7cbfee5048\"\n }\n}",
284
+ "title": "Deleting an Alert Group"
285
+ }
286
+ ],
271
287
  "DeletePrometheusAlertPolicy": [
272
288
  {
273
289
  "document": "This example shows you how to delete a Prometheus alerting rule.",
@@ -622,6 +638,14 @@
622
638
  "title": "Listing Prometheus agents"
623
639
  }
624
640
  ],
641
+ "DescribePrometheusAlertGroups": [
642
+ {
643
+ "document": "This example shows you how to list ALL alert groups under an instance, including enabled and disabled ones.",
644
+ "input": "POST / HTTP/1.1\nHost: monitor.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribePrometheusAlertGroups\n<Common request parameters>\n\n{\n \"InstanceId\": \"prom-xxxxxxxx\"\n}",
645
+ "output": "{\n \"Response\": {\n \"AlertGroupSet\": [\n {\n \"AMPReceivers\": [],\n \"CreatedAt\": \"2023-08-01T20:29:56+08:00\",\n \"CustomReceiver\": {\n \"Type\": \"\",\n \"Url\": \"\"\n },\n \"GroupId\": \"alert-xxxxxxxx\",\n\"GroupName\": \"Query Alerts Group Trial-1\"\n \"Rules\": [\n {\n \"Annotations\": [\n {\n \"Key\": \"summary\",\n \"Value\": \"{{$value}}\"\n }\n ],\n \"Duration\": \"\",\n \"Expr\": \"expr1\",\n \"Labels\": [\n {\n \"Key\": \"_interval_\",\n \"Value\": \"10m\"\n }\n ],\n\"RuleName\": \"Rule -1\",\n \"State\": 2\n }\n ],\n \"TemplateId\": \"\",\n \"UpdatedAt\": \"2023-08-01T20:29:56+08:00\"\n }\n ],\n \"RequestId\": \"bc70036f-db50-4b46-abbc-bd41eeb06f7a\",\n \"TotalCount\": 1\n }\n}",
646
+ "title": "List All Alert Groups under an Instance"
647
+ }
648
+ ],
625
649
  "DescribePrometheusAlertPolicy": [
626
650
  {
627
651
  "document": "describe prometheus instance alert policy list",
@@ -1160,6 +1184,22 @@
1160
1184
  "title": "Updating the status of a Prometheus agent"
1161
1185
  }
1162
1186
  ],
1187
+ "UpdatePrometheusAlertGroup": [
1188
+ {
1189
+ "document": "",
1190
+ "input": "POST / HTTP/1.1\nHost: monitor.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: UpdatePrometheusAlertGroup\n<Common request parameters>\n\n{\n \"GroupId\": \"alert-34xae12s\",\n \"InstanceId\": \"prom-7vp71mk0\",\n\"GroupName\": \"Update alarm group test\"\n \"AMPReceivers\": [\n \"notice-xxxxxx\"\n ],\n \"Rules\": [\n {\n\"RuleName\": \"Rule-1\",\n \"Labels\": [\n {\n \"Key\": \"k1\",\n \"Value\": \"v1\"\n }\n ],\n \"Annotations\": [\n {\n \"Key\": \"summary\",\n \"Value\": \"{{$value}}\"\n },\n {\n \"Key\": \"describe\",\n\"Value\": \"Rule 1 Alarm\"\n }\n ],\n \"Expr\": \"expr1\"\n }\n ]\n}",
1191
+ "output": "{\n \"Response\": {\n \"GroupId\": \"alert-34xae12s\",\n \"RequestId\": \"02c92b99-abc9-431b-8b08-42b9977d51cf\"\n }\n}",
1192
+ "title": "Updating Alert Group"
1193
+ }
1194
+ ],
1195
+ "UpdatePrometheusAlertGroupState": [
1196
+ {
1197
+ "document": "This example shows you how to disable alarm grouping in settings.",
1198
+ "input": "POST / HTTP/1.1\nHost: monitor.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: UpdatePrometheusAlertGroupState\n<Common request parameters>\n\n{\n \"InstanceId\": \"prom-7vp71mk0\",\n \"GroupIds\": [\n \"alert-ol72w8vy\"\n ],\n \"GroupState\": 3\n}",
1199
+ "output": "{\n \"Response\": {\n \"RequestId\": \"a4797141-a4f9-43d4-b4ca-09d72bb48f8d\"\n }\n}",
1200
+ "title": "Setting Alarm Group Disabling"
1201
+ }
1202
+ ],
1163
1203
  "UpdatePrometheusScrapeJob": [
1164
1204
  {
1165
1205
  "document": " ",
@@ -1656,6 +1656,28 @@
1656
1656
  "required": false,
1657
1657
  "type": "string",
1658
1658
  "value_allowed_null": true
1659
+ },
1660
+ {
1661
+ "disabled": false,
1662
+ "document": "Output format of the subtitle. valid values: \"WebVTT\", \"TTML\".\nDefault value: \"WebVTT\".",
1663
+ "example": "WebVTT",
1664
+ "member": "string",
1665
+ "name": "OutputFormat",
1666
+ "output_required": false,
1667
+ "required": false,
1668
+ "type": "string",
1669
+ "value_allowed_null": false
1670
+ },
1671
+ {
1672
+ "disabled": false,
1673
+ "document": "Default subtitle track. specifies the current subtitle as the default track when true. a maximum of 1 default subtitle track can be specified.\nDefault value: `false`.",
1674
+ "example": "false",
1675
+ "member": "bool",
1676
+ "name": "DefaultTrack",
1677
+ "output_required": false,
1678
+ "required": false,
1679
+ "type": "bool",
1680
+ "value_allowed_null": false
1659
1681
  }
1660
1682
  ],
1661
1683
  "usage": "both"
@@ -1665,7 +1687,7 @@
1665
1687
  "members": [
1666
1688
  {
1667
1689
  "disabled": false,
1668
- "document": "Task type. valid values:.\n<Li>Classification: intelligent classification.</li>.\n<Li>Cover: specifies the intelligent cover.</li>.\n<Li>Tag: intelligent tag.</li>.\n<Li>FrameTag: specifies intelligent frame-by-frame tagging.</li>.\n<Li>Highlight: intelligent highlights</li>.\n<Li>DeLogo: intelligent removal.</li>.\n<li>Description: large model summarization.</li>\n\n<Li>Dubbing: intelligent dubbing.</li>.",
1690
+ "document": "Task type. valid values:.\n<Li>Classification: intelligent classification.</li>.\n<Li>Cover: specifies the intelligent cover.</li>.\n<Li>Tag: intelligent tagging.</li>.\n<Li>FrameTag: intelligent frame-by-frame tagging.</li>.\n<Li>Highlight: intelligent highlights</li>.\n<Li>DeLogo: intelligent removal.</li>.\n<li>Description: large model summarization.</li>\n\n<Li>Dubbing: intelligent dubbing.</li>.\n<Li>VideoRemake: specifies video deduplication.</li>.",
1669
1691
  "example": "Classification",
1670
1692
  "member": "string",
1671
1693
  "name": "Type",
@@ -1782,6 +1804,16 @@
1782
1804
  "output_required": false,
1783
1805
  "type": "object",
1784
1806
  "value_allowed_null": true
1807
+ },
1808
+ {
1809
+ "disabled": false,
1810
+ "document": "The query result of a video content deduplication task, which is valid when the task type is VideoRemake.\nNote: This field may return null, indicating that no valid value can be obtained.",
1811
+ "example": "无",
1812
+ "member": "AiAnalysisTaskVideoRemakeResult",
1813
+ "name": "VideoRemakeTask",
1814
+ "output_required": false,
1815
+ "type": "object",
1816
+ "value_allowed_null": true
1785
1817
  }
1786
1818
  ],
1787
1819
  "usage": "out"
@@ -2962,6 +2994,104 @@
2962
2994
  ],
2963
2995
  "usage": "out"
2964
2996
  },
2997
+ "AiAnalysisTaskVideoRemakeInput": {
2998
+ "document": "Video deduplication task input type.",
2999
+ "members": [
3000
+ {
3001
+ "disabled": false,
3002
+ "document": "Intelligent deduplication template ID.",
3003
+ "example": "28",
3004
+ "member": "uint64",
3005
+ "name": "Definition",
3006
+ "output_required": false,
3007
+ "type": "int",
3008
+ "value_allowed_null": false
3009
+ }
3010
+ ],
3011
+ "usage": "out"
3012
+ },
3013
+ "AiAnalysisTaskVideoRemakeOutput": {
3014
+ "document": "Video deduplication result information.",
3015
+ "members": [
3016
+ {
3017
+ "disabled": false,
3018
+ "document": "Specifies the file path for intelligent video deduplication.",
3019
+ "example": "/output/htv-process-result.mp4",
3020
+ "member": "string",
3021
+ "name": "Path",
3022
+ "output_required": false,
3023
+ "type": "string",
3024
+ "value_allowed_null": false
3025
+ },
3026
+ {
3027
+ "disabled": false,
3028
+ "document": "Specifies the storage location for intelligent video deduplication.",
3029
+ "example": "无",
3030
+ "member": "TaskOutputStorage",
3031
+ "name": "OutputStorage",
3032
+ "output_required": false,
3033
+ "type": "object",
3034
+ "value_allowed_null": false
3035
+ }
3036
+ ],
3037
+ "usage": "out"
3038
+ },
3039
+ "AiAnalysisTaskVideoRemakeResult": {
3040
+ "document": "Video deduplication result data structure.",
3041
+ "members": [
3042
+ {
3043
+ "disabled": false,
3044
+ "document": "Specifies the task status. valid values: `PROCESSING`, `SUCCESS`, and `FAIL`.",
3045
+ "example": "SUCCESS",
3046
+ "member": "string",
3047
+ "name": "Status",
3048
+ "output_required": true,
3049
+ "type": "string",
3050
+ "value_allowed_null": false
3051
+ },
3052
+ {
3053
+ "disabled": false,
3054
+ "document": "Error code. 0: success. other values: failure.",
3055
+ "example": "0",
3056
+ "member": "int64",
3057
+ "name": "ErrCode",
3058
+ "output_required": true,
3059
+ "type": "int",
3060
+ "value_allowed_null": false
3061
+ },
3062
+ {
3063
+ "disabled": false,
3064
+ "document": "Error message.",
3065
+ "example": "SUCCESS",
3066
+ "member": "string",
3067
+ "name": "Message",
3068
+ "output_required": true,
3069
+ "type": "string",
3070
+ "value_allowed_null": false
3071
+ },
3072
+ {
3073
+ "disabled": false,
3074
+ "document": "Deduplication task input.",
3075
+ "example": "无",
3076
+ "member": "AiAnalysisTaskVideoRemakeInput",
3077
+ "name": "Input",
3078
+ "output_required": true,
3079
+ "type": "object",
3080
+ "value_allowed_null": false
3081
+ },
3082
+ {
3083
+ "disabled": false,
3084
+ "document": "Task output.\nNote: This field may return null, indicating that no valid value can be obtained.",
3085
+ "example": "无",
3086
+ "member": "AiAnalysisTaskVideoRemakeOutput",
3087
+ "name": "Output",
3088
+ "output_required": true,
3089
+ "type": "object",
3090
+ "value_allowed_null": true
3091
+ }
3092
+ ],
3093
+ "usage": "out"
3094
+ },
2965
3095
  "AiContentReviewResult": {
2966
3096
  "document": "Content audit result",
2967
3097
  "members": [
@@ -9092,7 +9222,7 @@
9092
9222
  },
9093
9223
  {
9094
9224
  "disabled": false,
9095
- "document": "Recording type. Valid values: video: audio and video recording; audio: audio recording; auto: automatic detection. If it is left blank, the default value video is used.",
9225
+ "document": "Recording type. Valid values: \n\n- video: audio and video recording; \n- audio: audio recording; \n- auto: automatic detection;\n\nIf it is left blank, \"video\" will be used as the default value.",
9096
9226
  "example": "video",
9097
9227
  "member": "string",
9098
9228
  "name": "RecordType",
@@ -9877,7 +10007,7 @@
9877
10007
  {
9878
10008
  "disabled": false,
9879
10009
  "document": "Watermarking type. Valid values:\n<li>image: Image watermark;</li>\n<li>text: Text watermark;</li>\n<li>svg: SVG watermark.</li>",
9880
- "example": "image",
10010
+ "example": "text",
9881
10011
  "member": "string",
9882
10012
  "name": "Type",
9883
10013
  "required": true,
@@ -9886,7 +10016,7 @@
9886
10016
  {
9887
10017
  "disabled": false,
9888
10018
  "document": "Watermarking template name. Length limit: 64 characters.",
9889
- "example": "模板1",
10019
+ "example": "水印模板1",
9890
10020
  "member": "string",
9891
10021
  "name": "Name",
9892
10022
  "required": false,
@@ -9895,7 +10025,7 @@
9895
10025
  {
9896
10026
  "disabled": false,
9897
10027
  "document": "Template description. Length limit: 256 characters.",
9898
- "example": "",
10028
+ "example": "文字水印",
9899
10029
  "member": "string",
9900
10030
  "name": "Comment",
9901
10031
  "required": false,
@@ -9904,7 +10034,7 @@
9904
10034
  {
9905
10035
  "disabled": false,
9906
10036
  "document": "Origin position. Valid values:\n<li>TopLeft: The origin of coordinates is in the top-left corner of the video, and the origin of the watermark is in the top-left corner of the image or text;</li>\n<li>TopRight: The origin of coordinates is in the top-right corner of the video, and the origin of the watermark is in the top-right corner of the image or text;</li>\n<li>BottomLeft: The origin of coordinates is in the bottom-left corner of the video, and the origin of the watermark is in the bottom-left corner of the image or text;</li>\n<li>BottomRight: The origin of coordinates is in the bottom-right corner of the video, and the origin of the watermark is in the bottom-right corner of the image or text.</li>\nDefault value: TopLeft.",
9907
- "example": "",
10037
+ "example": "TopLeft",
9908
10038
  "member": "string",
9909
10039
  "name": "CoordinateOrigin",
9910
10040
  "required": false,
@@ -9913,7 +10043,7 @@
9913
10043
  {
9914
10044
  "disabled": false,
9915
10045
  "document": "The horizontal position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:\n<li>If the string ends in %, the `XPos` of the watermark will be the specified percentage of the video width; for example, `10%` means that `XPos` is 10% of the video width;</li>\n<li>If the string ends in px, the `XPos` of the watermark will be the specified px; for example, `100px` means that `XPos` is 100 px.</li>\nDefault value: 0 px.",
9916
- "example": "",
10046
+ "example": "5%",
9917
10047
  "member": "string",
9918
10048
  "name": "XPos",
9919
10049
  "required": false,
@@ -9922,7 +10052,7 @@
9922
10052
  {
9923
10053
  "disabled": false,
9924
10054
  "document": "The vertical position of the origin of the watermark relative to the origin of coordinates of the video. % and px formats are supported:\n<li>If the string ends in %, the `YPos` of the watermark will be the specified percentage of the video height; for example, `10%` means that `YPos` is 10% of the video height;</li>\n<li>If the string ends in px, the `YPos` of the watermark will be the specified px; for example, `100px` means that `YPos` is 100 px.</li>\nDefault value: 0 px.",
9925
- "example": "",
10055
+ "example": "5%",
9926
10056
  "member": "string",
9927
10057
  "name": "YPos",
9928
10058
  "required": false,
@@ -9964,7 +10094,7 @@
9964
10094
  {
9965
10095
  "disabled": false,
9966
10096
  "document": "Unique ID of a watermarking template.",
9967
- "example": "1001",
10097
+ "example": "10",
9968
10098
  "member": "int64",
9969
10099
  "name": "Definition",
9970
10100
  "output_required": true,
@@ -9974,7 +10104,7 @@
9974
10104
  {
9975
10105
  "disabled": false,
9976
10106
  "document": "Watermark image address. This field is valid only when `Type` is `image`.",
9977
- "example": "http://1256768367.vts2.myqcloud.com/8b0dd2b5vtscq1256768367/4d27b39f5285890783754292994/aa.jpeg",
10107
+ "example": "http://12561267.vts2.myqcloud.com/8b0dd2b5vtscq125768367/4d27b39f5/t.jpeg",
9978
10108
  "member": "string",
9979
10109
  "name": "ImageUrl",
9980
10110
  "output_required": true,
@@ -11734,7 +11864,7 @@
11734
11864
  {
11735
11865
  "disabled": false,
11736
11866
  "document": "Indicates the template type filter condition. If left empty, all templates are returned. Valid values:\n* Preset: System preset template;\n* Custom",
11737
- "example": "\"\"",
11867
+ "example": "Preset",
11738
11868
  "member": "string",
11739
11869
  "name": "Type",
11740
11870
  "required": false,
@@ -11743,7 +11873,7 @@
11743
11873
  {
11744
11874
  "disabled": false,
11745
11875
  "document": "Specifies the recording template identifier filter condition, with a length limit of 64 characters.",
11746
- "example": "\"\"",
11876
+ "example": "直播录制通用模板",
11747
11877
  "member": "string",
11748
11878
  "name": "Name",
11749
11879
  "required": false,
@@ -11758,7 +11888,7 @@
11758
11888
  {
11759
11889
  "disabled": false,
11760
11890
  "document": "Total number of records that meet filter conditions.",
11761
- "example": "1",
11891
+ "example": "10",
11762
11892
  "member": "int64",
11763
11893
  "name": "TotalCount",
11764
11894
  "output_required": true,
@@ -12640,13 +12770,22 @@
12640
12770
  "members": [
12641
12771
  {
12642
12772
  "disabled": false,
12643
- "document": "Filter: Task status. Valid values: WAITING (waiting), PROCESSING (processing), FINISH (completed).",
12773
+ "document": "Filters task status. available values:.\n-WAITING.\n-PROCESSING (processing).\n-FINISH (completed).",
12644
12774
  "example": "FINISH",
12645
12775
  "member": "string",
12646
12776
  "name": "Status",
12647
12777
  "required": true,
12648
12778
  "type": "string"
12649
12779
  },
12780
+ {
12781
+ "disabled": false,
12782
+ "document": "Indicates whether there is a subtask failure when the task is complete.",
12783
+ "example": "false",
12784
+ "member": "bool",
12785
+ "name": "SubTaskHasFailed",
12786
+ "required": false,
12787
+ "type": "bool"
12788
+ },
12650
12789
  {
12651
12790
  "disabled": false,
12652
12791
  "document": "Number of returned entries. Default value: 10. Maximum value: 100.",
@@ -12862,7 +13001,7 @@
12862
13001
  {
12863
13002
  "disabled": false,
12864
13003
  "document": "Unique ID filter of watermarking templates. Array length limit: 100.",
12865
- "example": "[\"1001\\n\"]",
13004
+ "example": "[1001]",
12866
13005
  "member": "int64",
12867
13006
  "name": "Definitions",
12868
13007
  "required": false,
@@ -19723,7 +19862,7 @@
19723
19862
  {
19724
19863
  "disabled": false,
19725
19864
  "document": "Spot check policy for media quality inspection.",
19726
- "example": "{ \"StrategyType\": \"TimeSpotCheck\", \"TimeSpotCheck\": { \"CheckDuration\": 50, \"CheckInterval\": 10, \"SkipDuration\": 10, \"CirclesNumber\": 10 } }",
19865
+ "example": "",
19727
19866
  "member": "QualityControlStrategy",
19728
19867
  "name": "Strategy",
19729
19868
  "required": false,
@@ -20953,7 +21092,7 @@
20953
21092
  {
20954
21093
  "disabled": false,
20955
21094
  "document": "Event notification obtained from CMQ.",
20956
- "example": "\"\"",
21095
+ "example": "NotificationContent",
20957
21096
  "member": "string",
20958
21097
  "name": "Content",
20959
21098
  "required": true,
@@ -20998,7 +21137,7 @@
20998
21137
  {
20999
21138
  "disabled": false,
21000
21139
  "document": "The ID used for deduplication. If there was a request with the same ID in the last seven days, the current request will return an error. The ID can contain up to 50 characters. If this parameter is left empty or an empty string is entered, no deduplication will be performed.",
21001
- "example": "\"xxxx\"",
21140
+ "example": "85c94a33-6227-43d5-8179-69b0602f6346",
21002
21141
  "member": "string",
21003
21142
  "name": "SessionId",
21004
21143
  "output_required": true,
@@ -21008,7 +21147,7 @@
21008
21147
  {
21009
21148
  "disabled": false,
21010
21149
  "document": "The source context which is used to pass through the user request information. The task flow status change callback will return the value of this field. It can contain up to 1,000 characters.",
21011
- "example": "\"\"",
21150
+ "example": "UserDefinedInfo",
21012
21151
  "member": "string",
21013
21152
  "name": "SessionContext",
21014
21153
  "output_required": true,
@@ -21028,7 +21167,7 @@
21028
21167
  {
21029
21168
  "disabled": false,
21030
21169
  "document": "- The expiration time (Unix timestamp) of the notification's signature.\n- By default, notifications sent by MPS expire after 10 minutes. If the expiration time specified has elapsed, a notification will be considered invalid. This can prevent replay attacks.\n- The format of this parameter is a decimal Unix timestamp, i.e., the number of seconds that have elapsed since 00:00 (UTC/GMT time) on January 1, 1970.\n",
21031
- "example": "",
21170
+ "example": "1633046400",
21032
21171
  "member": "int64",
21033
21172
  "name": "Timestamp",
21034
21173
  "output_required": false,
@@ -21038,13 +21177,23 @@
21038
21177
  {
21039
21178
  "disabled": false,
21040
21179
  "document": "Event notification security signature. Sign = MD5 (Timestamp + NotifyKey). Note: Media Processing Service concatenates Timestamp and NotifyKey from TaskNotifyConfig as a string and calculates the Sign value through MD5. This value is included in the notification message. Your backend server can verify whether the Sign is correct using the same algorithm, to confirm whether the message is indeed from the Media Processing Service backend.",
21041
- "example": "",
21180
+ "example": "d6a27ccba11dade3d0f627b1dfbdaf10",
21042
21181
  "member": "string",
21043
21182
  "name": "Sign",
21044
21183
  "output_required": false,
21045
21184
  "type": "string",
21046
21185
  "value_allowed_null": false
21047
21186
  },
21187
+ {
21188
+ "disabled": false,
21189
+ "document": "Batch processing task information. this field has a value only when EventType is BatchTask.\nNote: This field may return null, indicating that no valid value can be obtained.",
21190
+ "example": "无",
21191
+ "member": "BatchSubTaskResult",
21192
+ "name": "BatchTaskEvent",
21193
+ "output_required": false,
21194
+ "type": "object",
21195
+ "value_allowed_null": true
21196
+ },
21048
21197
  {
21049
21198
  "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.",
21050
21199
  "member": "string",
@@ -22442,7 +22591,7 @@
22442
22591
  "members": [
22443
22592
  {
22444
22593
  "disabled": false,
22445
- "document": "The issue type. Valid values:\n`Jitter`\n`Blur`\n`LowLighting`\n`HighLighting` (overexposure)\n`CrashScreen` (video corruption)\n`BlackWhiteEdge`\n`SolidColorScreen` (blank screen)\n`Noise`\n`Mosaic` (pixelation)\n`QRCode`\n`AppletCode` (Weixin Mini Program code)\n`BarCode`\n`LowVoice`\n`HighVoice`\n`NoVoice`\n`LowEvaluation` (low no-reference video quality score)",
22594
+ "document": "Exception type. valid values:.\nJitter: jitter.\nBlur: specifies the blur effect.\nLowLighting: specifies low light.\nHighLighting: overexposure.\nCrashScreen: specifies screen glitch.\nBlackWhiteEdge: specifies the black and white edges.\nSolidColorScreen: specifies the solid color screen.\nNoise: specifies the noise.\nMosaic: mosaic.\nQRCode: specifies the qr code.\nAppletCode: specifies the mini program code.\nBarCode: specifies the barcode.\nLowVoice: specifies the bass.\nHighVoice: specifies high voice detection.\nNoVoice: specifies mute.\nLowEvaluation: specifies the video no-reference score (MOS) is below the threshold.\nAudioEvaluation: specifies the audio no-reference scoring (MOS) is below the threshold.\nAudioNoise: specifies the audio noise.",
22446
22595
  "example": "Jitter",
22447
22596
  "member": "string",
22448
22597
  "name": "Type",
@@ -24366,7 +24515,7 @@
24366
24515
  },
24367
24516
  {
24368
24517
  "disabled": false,
24369
- "document": "The encryption key (a 32-byte string).\nNote: This field may return null, indicating that no valid values can be obtained.",
24518
+ "document": "Encryption key (32-byte hexadecimal string).\nNote: This field may return null, indicating that no valid value can be obtained.",
24370
24519
  "example": "14367588ab31370e32ae000544bd007d",
24371
24520
  "member": "string",
24372
24521
  "name": "Key",
@@ -24377,7 +24526,7 @@
24377
24526
  },
24378
24527
  {
24379
24528
  "disabled": false,
24380
- "document": "The initialization vector for encryption (a 32-byte string).\nNote: This field may return null, indicating that no valid values can be obtained.",
24529
+ "document": "Initialization vector for encryption (32-byte hexadecimal string).\nNote: This field may return null, indicating that no valid value can be obtained.",
24381
24530
  "example": "452ac1553f19b846e2f2c4cffd8f4a9b",
24382
24531
  "member": "string",
24383
24532
  "name": "Vector",
@@ -24801,7 +24950,7 @@
24801
24950
  },
24802
24951
  {
24803
24952
  "disabled": false,
24804
- "document": "Specifies automatic removal of a custom region.\nSpecifies the use of an AI model to automatically detect and erase existing targets in the specified region.\nNote that this parameter will not take effect when the removal method is custom.",
24953
+ "document": "Automatically erase the custom region.\nAutomatically detects and erases the targeted removal in the specified region using the AI model.\nNote that this parameter will not take effect when the removal method is custom. to modify the template, input [] for the clean-up region. if not provided, the template region information remains unchanged.",
24805
24954
  "example": "无",
24806
24955
  "member": "EraseArea",
24807
24956
  "name": "AutoAreas",
@@ -24812,7 +24961,7 @@
24812
24961
  },
24813
24962
  {
24814
24963
  "disabled": false,
24815
- "document": "Specifies erasure of a custom region.\nDetects and directly performs removal within a specified time range for the selected region.",
24964
+ "document": "Specifies the removal of a custom region.\nSpecifies to directly perform removal without detection and recognition within a selected time range for the specified region.\nNote: when modifying the template, pass [] to clear the region. the template region information remains unchanged if not passed.",
24816
24965
  "example": "无",
24817
24966
  "member": "EraseTimeArea",
24818
24967
  "name": "CustomAreas",
@@ -24942,7 +25091,7 @@
24942
25091
  {
24943
25092
  "disabled": false,
24944
25093
  "document": "Confidence of a recognized segment. Value range: 0-100.",
24945
- "example": "100",
25094
+ "example": "100.0",
24946
25095
  "member": "float",
24947
25096
  "name": "Confidence",
24948
25097
  "output_required": false,
@@ -25424,7 +25573,7 @@
25424
25573
  {
25425
25574
  "disabled": false,
25426
25575
  "document": "Full speech recognition result. When Type is\n set to AsrFullTextRecognition, this parameter takes effect.\nNote: This field may return null, indicating that no valid value can be obtained.",
25427
- "example": "NULL",
25576
+ "example": "",
25428
25577
  "member": "SmartSubtitleTaskAsrFullTextResult",
25429
25578
  "name": "AsrFullTextTask",
25430
25579
  "output_required": false,
@@ -25434,7 +25583,7 @@
25434
25583
  {
25435
25584
  "disabled": false,
25436
25585
  "document": "Translation result. When Type is\n\n set to TransTextRecognition, this parameter takes effect.\nNote: This field may return null, indicating that no valid value can be obtained.",
25437
- "example": "NULL",
25586
+ "example": "",
25438
25587
  "member": "SmartSubtitleTaskTransTextResult",
25439
25588
  "name": "TransTextTask",
25440
25589
  "output_required": false,
@@ -25731,7 +25880,7 @@
25731
25880
  },
25732
25881
  {
25733
25882
  "disabled": false,
25734
- "document": "Encryption initialization vector (32-byte string). the field content is user-customized.",
25883
+ "document": "Initialization vector for encryption (32-byte hexadecimal string). the field content is user-customized.",
25735
25884
  "example": "452ac1553f19b846e2f2c4cffd8f4a9b",
25736
25885
  "member": "string",
25737
25886
  "name": "Vector",
@@ -108,10 +108,10 @@
108
108
  ],
109
109
  "CreateLiveRecordTemplate": [
110
110
  {
111
- "document": "This example shows you how to create a live streaming recording template",
112
- "input": "POST / HTTP/1.1\nHost: mps.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateLiveRecordTemplate\n<Common request parameters>\n\n{\n \"HLSConfigure\": {\n \"ItemDuration\": 10,\n \"Interval\": 3600\n },\n \"Name\": \"Template 1\",\n \"Comment\": \"test\"\n}",
111
+ "document": "This example shows you how to create a live recording template.",
112
+ "input": "POST / HTTP/1.1\nHost: mps.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateLiveRecordTemplate\n<Common request parameters>\n\n{\n \"HLSConfigure\": {\n \"ItemDuration\": 10,\n \"Interval\": 3600\n },\n \"Name\": \"Template 1\",\n \"Comment\": \"Template description\"\n}",
113
113
  "output": "{\n \"Response\": {\n \"Definition\": 20001,\n \"RequestId\": \"12ae8cxc-dce3-4151-9cyt-5594145287e1\"\n }\n}",
114
- "title": "Creating a Live Streaming Recording Template"
114
+ "title": "Creating a Live Recording Template"
115
115
  }
116
116
  ],
117
117
  "CreatePersonSample": [
@@ -193,9 +193,9 @@
193
193
  "CreateWatermarkTemplate": [
194
194
  {
195
195
  "document": " ",
196
- "input": "https://mps.tencentcloudapi.com/?Action=CreateWatermarkTemplate\n&Type=image\n&Name=Template 1\n&ImageTemplate.ImageContent=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\n&<Common request parameters>",
197
- "output": "{\n \"Response\": {\n \"Definition\": 1001,\n \"ImageUrl\": \"http://1256768367.vts2.myqcloud.com/8b0dd2b5vtscq1256768367/4d27b39f5285890783754292994/aa.jpeg\",\n \"RequestId\": \"12ae8d8e-dce3-4151-9d4b-5594145287e1\"\n }\n}",
198
- "title": "Creating a watermark template"
196
+ "input": "POST / HTTP/1.1\nHost: mps.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateWatermarkTemplate\n<Common request parameters>\n\n{\n\"Name\": \"Watermark Template 1\",\n\"Comment\": \"svg watermark\"\n \"Type\": \"svg\",\n \"CoordinateOrigin\": \"TopRight\",\n \"XPos\": \"5%\",\n \"YPos\": \"5%\",\n \"ImageTemplate\": {\n \"ImageContent\": \"\",\n \"Width\": \"10%\",\n \"Height\": \"0px\",\n \"RepeatType\": \"once\"\n },\n \"TextTemplate\": {\n \"FontType\": \"arial.ttf\",\n \"FontSize\": \"10px\",\n \"FontColor\": \"#ffffff\",\n \"FontAlpha\": 0.5\n },\n \"SvgTemplate\": {\n \"Width\": \"10%\",\n \"Height\": \"0px\"\n }\n}",
197
+ "output": "{\n \"Response\": {\n \"Definition\": 123,\n \"ImageUrl\": \"\",\n \"RequestId\": \"93dda61a-c2c5-465d-a78c-0860997fb01b\"\n }\n}",
198
+ "title": "Creating a Watermark Template"
199
199
  }
200
200
  ],
201
201
  "CreateWordSamples": [
@@ -929,8 +929,8 @@
929
929
  "ParseNotification": [
930
930
  {
931
931
  "document": "This example shows you how to parse an event notification.",
932
- "input": "POST / HTTP/1.1\nHost: mps.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ParseNotification\n<Common request parameters>\n\n\n\n{\n \"Content\": \"{\\\"EventType\\\":\\\"ProcedureStateChanged\\\",XXX\"\n}",
933
- "output": "{\n \"Response\": {\n \"EventType\": \"WorkflowTask\",\n \"WorkflowTaskEvent\": {\n \"TaskId\": \"1256768367-Procedure-475b7237438a39560b9879a4556cb177t1\",\n \"Status\": \"FINISH\",\n \"ErrCode\": 0,\n \"Message\": \"\",\n \"InputInfo\": {\n \"Type\": \"COS\",\n \"CosInputInfo\": {\n \"Bucket\": \"TopRankVideo-125xxx88\",\n \"Region\": \"ap-chongqing\",\n \"Object\": \"/movie/201907/WildAnimal.mov\"\n },\n \"UrlInputInfo\": null,\n \"S3InputInfo\": null\n },\n \"MetaData\": {\n \"AudioDuration\": 59.990001678467,\n \"AudioStreamSet\": [\n {\n \"Bitrate\": 383854,\n \"SamplingRate\": 48000,\n \"Codec\": \"aac\",\n \"Channel\": 0\n }\n ],\n \"Bitrate\": 1021028,\n \"Container\": \"mov,mp4,m4a,3gp,3g2,mj2\",\n \"Duration\": 60,\n \"Height\": 480,\n \"Rotate\": 0,\n \"Size\": 7700180,\n \"VideoDuration\": 60,\n \"VideoStreamSet\": [\n {\n \"Bitrate\": 637174,\n \"Codec\": \"h264\",\n \"Fps\": 23,\n \"Height\": 480,\n \"Width\": 640,\n \"ColorPrimaries\": \"abc\",\n \"ColorSpace\": \"abc\",\n \"ColorTransfer\": \"abc\",\n \"HdrType\": \"abc\",\n \"Codecs\": \"abc\"\n }\n ],\n \"Width\": 640\n },\n \"MediaProcessResultSet\": [\n {\n \"Type\": \"Transcode\",\n \"TranscodeTask\": {\n \"Status\": \"SUCCESS\",\n \"ErrCodeExt\": \"SUCCESS\",\n \"ErrCode\": 0,\n \"Message\": \"SUCCESS\",\n \"Progress\": 0,\n \"Input\": {\n \"Definition\": 20,\n \"WatermarkSet\": null,\n \"OutputObjectPath\": \"\",\n \"RawParameter\": null,\n \"StartTimeOffset\": 0,\n \"EndTimeOffset\": 0,\n \"OverrideParameter\": null,\n \"ObjectNumberFormat\": null,\n \"OutputStorage\": null,\n \"SegmentObjectName\": \"\",\n \"HeadTailParameter\": null,\n \"MosaicSet\": []\n },\n \"Output\": {\n \"Path\": \"/movie/201907/WildAnimal_transcode_20.mp4\",\n \"Size\": 4189073,\n \"Container\": \"mov,mp4,m4a,3gp,3g2,mj2\",\n \"Height\": 480,\n \"Width\": 640,\n \"Bitrate\": 552218,\n \"Md5\": \"eff7031ad7877865f9a3240e9ab165ad\",\n \"Duration\": 60.04700088501,\n \"VideoStreamSet\": [\n {\n \"Bitrate\": 503727,\n \"Codec\": \"h264\",\n \"Fps\": 24,\n \"Height\": 480,\n \"Width\": 640,\n \"ColorPrimaries\": \"abc\",\n \"ColorSpace\": \"abc\",\n \"ColorTransfer\": \"abc\",\n \"HdrType\": \"abc\",\n \"Codecs\": \"abc\"\n }\n ],\n \"AudioStreamSet\": [\n {\n \"Bitrate\": 48491,\n \"Codec\": \"aac\",\n \"SamplingRate\": 44100,\n \"Channel\": 0\n }\n ],\n \"Definition\": 0\n }\n },\n \"AnimatedGraphicTask\": null,\n \"SnapshotByTimeOffsetTask\": null,\n \"SampleSnapshotTask\": null,\n \"ImageSpriteTask\": null\n }\n ],\n \"AiQualityControlTaskResult\": null,\n \"AiAnalysisResultSet\": [],\n \"AiRecognitionResultSet\": [],\n \"AiContentReviewResultSet\": []\n },\n \"RequestId\": \"335bdaa3-db0e-46ce-9946-51941d9cb0f5\",\n \"ScheduleTaskEvent\": null,\n \"EditMediaTaskEvent\": null,\n \"SessionId\": \"\",\n \"SessionContext\": \"\"\n }\n}",
932
+ "input": "POST / HTTP/1.1\nHost: mps.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ParseNotification\n<Common request parameters>\n\n{\n \"Content\": \"{\\\"EventType\\\":\\\"ProcedureStateChanged\\\",XXX\"\n}",
933
+ "output": "{\n \"Response\": {\n \"EventType\": \"WorkflowTask\",\n \"WorkflowTaskEvent\": {\n \"TaskId\": \"1256768367-Procedure-475b7237438a39560b9879a4556cb177t1\",\n \"Status\": \"FINISH\",\n \"ErrCode\": 0,\n \"Message\": \"\",\n \"InputInfo\": {\n \"Type\": \"COS\",\n \"CosInputInfo\": {\n \"Bucket\": \"TopRankVideo-125xxx88\",\n \"Region\": \"ap-chongqing\",\n \"Object\": \"/movie/201907/WildAnimal.mov\"\n },\n \"UrlInputInfo\": null,\n \"S3InputInfo\": null\n },\n \"MetaData\": {\n \"AudioDuration\": 59.990001678467,\n \"AudioStreamSet\": [\n {\n \"Bitrate\": 383854,\n \"SamplingRate\": 48000,\n \"Codec\": \"aac\",\n \"Channel\": 0\n }\n ],\n \"Bitrate\": 1021028,\n \"Container\": \"mov,mp4,m4a,3gp,3g2,mj2\",\n \"Duration\": 60,\n \"Height\": 480,\n \"Rotate\": 0,\n \"Size\": 7700180,\n \"VideoDuration\": 60,\n \"VideoStreamSet\": [\n {\n \"Bitrate\": 637174,\n \"Codec\": \"h264\",\n \"Fps\": 23,\n \"Height\": 480,\n \"Width\": 640,\n \"ColorPrimaries\": \"bt470bg\",\n \"ColorSpace\": \"gbr\",\n \"ColorTransfer\": \"bt709\",\n \"HdrType\": \"sdr\",\n \"Codecs\": \"avc1.ffe100\"\n }\n ],\n \"Width\": 640\n },\n \"MediaProcessResultSet\": [\n {\n \"Type\": \"Transcode\",\n \"TranscodeTask\": {\n \"Status\": \"SUCCESS\",\n \"ErrCodeExt\": \"SUCCESS\",\n \"ErrCode\": 0,\n \"Message\": \"SUCCESS\",\n \"Progress\": 0,\n \"Input\": {\n \"Definition\": 20,\n \"WatermarkSet\": null,\n \"OutputObjectPath\": \"\",\n \"RawParameter\": null,\n \"StartTimeOffset\": 0,\n \"EndTimeOffset\": 0,\n \"OverrideParameter\": null,\n \"ObjectNumberFormat\": null,\n \"OutputStorage\": null,\n \"SegmentObjectName\": \"\",\n \"HeadTailParameter\": null,\n \"MosaicSet\": []\n },\n \"Output\": {\n \"OutputStorage\": {\n \"Type\": \"COS\",\n \"CosOutputStorage\": {\n \"Bucket\": \"test-123\",\n \"Region\": \"ap-nanjing\"\n },\n \"S3OutputStorage\": {\n \"S3Bucket\": \"test-223\",\n \"S3Region\": \"us-east-1\",\n \"S3SecretId\": \"TEST**************K5W\",\n \"S3SecretKey\": \"testab****************0SS\"\n }\n },\n \"Path\": \"/movie/201907/WildAnimal_transcode_20.mp4\",\n \"Size\": 4189073,\n \"Container\": \"mov,mp4,m4a,3gp,3g2,mj2\",\n \"Height\": 480,\n \"Width\": 640,\n \"Bitrate\": 552218,\n \"Md5\": \"eff7031ad7877865f9a3240e9ab165ad\",\n \"Duration\": 60.04700088501,\n \"VideoStreamSet\": [\n {\n \"Bitrate\": 503727,\n \"Codec\": \"h264\",\n \"Fps\": 24,\n \"Height\": 480,\n \"Width\": 640,\n \"ColorPrimaries\": \"bt470bg\",\n \"ColorSpace\": \"gbr\",\n \"ColorTransfer\": \"bt709\",\n \"HdrType\": \"sdr\",\n \"Codecs\": \"avc1.ffe100\"\n }\n ],\n \"AudioStreamSet\": [\n {\n \"Bitrate\": 48491,\n \"Codec\": \"aac\",\n \"SamplingRate\": 44100,\n \"Channel\": 0\n }\n ],\n \"Definition\": 0\n }\n },\n \"AnimatedGraphicTask\": null,\n \"SnapshotByTimeOffsetTask\": null,\n \"SampleSnapshotTask\": null,\n \"ImageSpriteTask\": null,\n \"AdaptiveDynamicStreamingTask\": null\n }\n ],\n \"AiQualityControlTaskResult\": null,\n \"AiAnalysisResultSet\": [],\n \"AiRecognitionResultSet\": [],\n \"AiContentReviewResultSet\": []\n },\n \"RequestId\": \"335bdaa3-db0e-46ce-9946-51941d9cb0f5\",\n \"ScheduleTaskEvent\": null,\n \"EditMediaTaskEvent\": null,\n \"SessionId\": \"\",\n \"SessionContext\": \"\"\n }\n}",
934
934
  "title": "Parsing an Event Notification"
935
935
  }
936
936
  ],