tencentcloud-sdk-nodejs-intl-en 3.0.1191 → 3.0.1193
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.
- package/package.json +1 -1
- package/tencentcloud/ciam/index.js +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/dbbrain/index.js +1 -1
- package/tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.js +1 -1
- package/tencentcloud/intlpartnersmgt/v20220928/models.js +1 -1
- package/tencentcloud/mps/v20190612/models.js +1295 -474
- package/tencentcloud/mps/v20190612/mps_client.js +99 -52
- package/tencentcloud/organization/index.js +1 -1
- package/tencentcloud/sms/index.js +1 -1
- package/tencentcloud/tem/index.js +1 -1
- package/tencentcloud/tke/index.js +1 -1
|
@@ -932,7 +932,7 @@ Default value: 0.
|
|
|
932
932
|
this.EnhanceConfig = null;
|
|
933
933
|
|
|
934
934
|
/**
|
|
935
|
-
*
|
|
935
|
+
* Additional parameter, which is a serialized JSON string.
|
|
936
936
|
* @type {string || null}
|
|
937
937
|
*/
|
|
938
938
|
this.StdExtInfo = null;
|
|
@@ -1016,30 +1016,39 @@ class ProcessLiveStreamResponse extends AbstractModel {
|
|
|
1016
1016
|
}
|
|
1017
1017
|
|
|
1018
1018
|
/**
|
|
1019
|
-
*
|
|
1019
|
+
* Live stream media quality inspection result.
|
|
1020
1020
|
* @class
|
|
1021
1021
|
*/
|
|
1022
|
-
class
|
|
1022
|
+
class LiveStreamAiQualityControlResultInfo extends AbstractModel {
|
|
1023
1023
|
constructor(){
|
|
1024
1024
|
super();
|
|
1025
1025
|
|
|
1026
1026
|
/**
|
|
1027
|
-
*
|
|
1028
|
-
|
|
1027
|
+
* Content quality inspection result list.
|
|
1028
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1029
|
+
* @type {Array.<QualityControlResult> || null}
|
|
1029
1030
|
*/
|
|
1030
|
-
this.
|
|
1031
|
+
this.QualityControlResults = null;
|
|
1031
1032
|
|
|
1032
1033
|
/**
|
|
1033
|
-
*
|
|
1034
|
-
* @type {Array.<
|
|
1034
|
+
*
|
|
1035
|
+
* @type {Array.<DiagnoseResult> || null}
|
|
1035
1036
|
*/
|
|
1036
|
-
this.
|
|
1037
|
+
this.DiagnoseResults = null;
|
|
1037
1038
|
|
|
1038
1039
|
/**
|
|
1039
|
-
*
|
|
1040
|
-
|
|
1040
|
+
* Content quality inspection result list.
|
|
1041
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1042
|
+
* @type {Array.<QualityControlResult> || null}
|
|
1041
1043
|
*/
|
|
1042
|
-
this.
|
|
1044
|
+
this.QualityControlResultSet = null;
|
|
1045
|
+
|
|
1046
|
+
/**
|
|
1047
|
+
* Format diagnostic result list.
|
|
1048
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1049
|
+
* @type {Array.<DiagnoseResult> || null}
|
|
1050
|
+
*/
|
|
1051
|
+
this.DiagnoseResultSet = null;
|
|
1043
1052
|
|
|
1044
1053
|
}
|
|
1045
1054
|
|
|
@@ -1050,17 +1059,42 @@ class DescribeLiveRecordTemplatesResponse extends AbstractModel {
|
|
|
1050
1059
|
if (!params) {
|
|
1051
1060
|
return;
|
|
1052
1061
|
}
|
|
1053
|
-
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
1054
1062
|
|
|
1055
|
-
if (params.
|
|
1056
|
-
this.
|
|
1057
|
-
for (let z in params.
|
|
1058
|
-
let obj = new
|
|
1059
|
-
obj.deserialize(params.
|
|
1060
|
-
this.
|
|
1063
|
+
if (params.QualityControlResults) {
|
|
1064
|
+
this.QualityControlResults = new Array();
|
|
1065
|
+
for (let z in params.QualityControlResults) {
|
|
1066
|
+
let obj = new QualityControlResult();
|
|
1067
|
+
obj.deserialize(params.QualityControlResults[z]);
|
|
1068
|
+
this.QualityControlResults.push(obj);
|
|
1069
|
+
}
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
if (params.DiagnoseResults) {
|
|
1073
|
+
this.DiagnoseResults = new Array();
|
|
1074
|
+
for (let z in params.DiagnoseResults) {
|
|
1075
|
+
let obj = new DiagnoseResult();
|
|
1076
|
+
obj.deserialize(params.DiagnoseResults[z]);
|
|
1077
|
+
this.DiagnoseResults.push(obj);
|
|
1078
|
+
}
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
if (params.QualityControlResultSet) {
|
|
1082
|
+
this.QualityControlResultSet = new Array();
|
|
1083
|
+
for (let z in params.QualityControlResultSet) {
|
|
1084
|
+
let obj = new QualityControlResult();
|
|
1085
|
+
obj.deserialize(params.QualityControlResultSet[z]);
|
|
1086
|
+
this.QualityControlResultSet.push(obj);
|
|
1087
|
+
}
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
if (params.DiagnoseResultSet) {
|
|
1091
|
+
this.DiagnoseResultSet = new Array();
|
|
1092
|
+
for (let z in params.DiagnoseResultSet) {
|
|
1093
|
+
let obj = new DiagnoseResult();
|
|
1094
|
+
obj.deserialize(params.DiagnoseResultSet[z]);
|
|
1095
|
+
this.DiagnoseResultSet.push(obj);
|
|
1061
1096
|
}
|
|
1062
1097
|
}
|
|
1063
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1064
1098
|
|
|
1065
1099
|
}
|
|
1066
1100
|
}
|
|
@@ -3678,6 +3712,34 @@ class AiReviewPoliticalTaskInput extends AbstractModel {
|
|
|
3678
3712
|
}
|
|
3679
3713
|
}
|
|
3680
3714
|
|
|
3715
|
+
/**
|
|
3716
|
+
* ModifyContentReviewTemplate response structure.
|
|
3717
|
+
* @class
|
|
3718
|
+
*/
|
|
3719
|
+
class ModifyContentReviewTemplateResponse extends AbstractModel {
|
|
3720
|
+
constructor(){
|
|
3721
|
+
super();
|
|
3722
|
+
|
|
3723
|
+
/**
|
|
3724
|
+
* 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.
|
|
3725
|
+
* @type {string || null}
|
|
3726
|
+
*/
|
|
3727
|
+
this.RequestId = null;
|
|
3728
|
+
|
|
3729
|
+
}
|
|
3730
|
+
|
|
3731
|
+
/**
|
|
3732
|
+
* @private
|
|
3733
|
+
*/
|
|
3734
|
+
deserialize(params) {
|
|
3735
|
+
if (!params) {
|
|
3736
|
+
return;
|
|
3737
|
+
}
|
|
3738
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3739
|
+
|
|
3740
|
+
}
|
|
3741
|
+
}
|
|
3742
|
+
|
|
3681
3743
|
/**
|
|
3682
3744
|
* ModifySchedule request structure.
|
|
3683
3745
|
* @class
|
|
@@ -7035,161 +7097,6 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
7035
7097
|
}
|
|
7036
7098
|
}
|
|
7037
7099
|
|
|
7038
|
-
/**
|
|
7039
|
-
* A subtask of a scheme.
|
|
7040
|
-
* @class
|
|
7041
|
-
*/
|
|
7042
|
-
class ActivityPara extends AbstractModel {
|
|
7043
|
-
constructor(){
|
|
7044
|
-
super();
|
|
7045
|
-
|
|
7046
|
-
/**
|
|
7047
|
-
* A transcoding task.
|
|
7048
|
-
* @type {TranscodeTaskInput || null}
|
|
7049
|
-
*/
|
|
7050
|
-
this.TranscodeTask = null;
|
|
7051
|
-
|
|
7052
|
-
/**
|
|
7053
|
-
* An animated screenshot generation task.
|
|
7054
|
-
* @type {AnimatedGraphicTaskInput || null}
|
|
7055
|
-
*/
|
|
7056
|
-
this.AnimatedGraphicTask = null;
|
|
7057
|
-
|
|
7058
|
-
/**
|
|
7059
|
-
* A time point screencapturing task.
|
|
7060
|
-
* @type {SnapshotByTimeOffsetTaskInput || null}
|
|
7061
|
-
*/
|
|
7062
|
-
this.SnapshotByTimeOffsetTask = null;
|
|
7063
|
-
|
|
7064
|
-
/**
|
|
7065
|
-
* A sampled screencapturing task.
|
|
7066
|
-
* @type {SampleSnapshotTaskInput || null}
|
|
7067
|
-
*/
|
|
7068
|
-
this.SampleSnapshotTask = null;
|
|
7069
|
-
|
|
7070
|
-
/**
|
|
7071
|
-
* An image sprite generation task.
|
|
7072
|
-
* @type {ImageSpriteTaskInput || null}
|
|
7073
|
-
*/
|
|
7074
|
-
this.ImageSpriteTask = null;
|
|
7075
|
-
|
|
7076
|
-
/**
|
|
7077
|
-
* An adaptive bitrate streaming task.
|
|
7078
|
-
* @type {AdaptiveDynamicStreamingTaskInput || null}
|
|
7079
|
-
*/
|
|
7080
|
-
this.AdaptiveDynamicStreamingTask = null;
|
|
7081
|
-
|
|
7082
|
-
/**
|
|
7083
|
-
* A content moderation task.
|
|
7084
|
-
* @type {AiContentReviewTaskInput || null}
|
|
7085
|
-
*/
|
|
7086
|
-
this.AiContentReviewTask = null;
|
|
7087
|
-
|
|
7088
|
-
/**
|
|
7089
|
-
* A content analysis task.
|
|
7090
|
-
* @type {AiAnalysisTaskInput || null}
|
|
7091
|
-
*/
|
|
7092
|
-
this.AiAnalysisTask = null;
|
|
7093
|
-
|
|
7094
|
-
/**
|
|
7095
|
-
* A content recognition task.
|
|
7096
|
-
* @type {AiRecognitionTaskInput || null}
|
|
7097
|
-
*/
|
|
7098
|
-
this.AiRecognitionTask = null;
|
|
7099
|
-
|
|
7100
|
-
/**
|
|
7101
|
-
* Media quality inspection task.
|
|
7102
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7103
|
-
* @type {AiQualityControlTaskInput || null}
|
|
7104
|
-
*/
|
|
7105
|
-
this.QualityControlTask = null;
|
|
7106
|
-
|
|
7107
|
-
/**
|
|
7108
|
-
* Smart subtitle task.
|
|
7109
|
-
Note: This field may return null, indicating that no valid value can be obtained.
|
|
7110
|
-
* @type {SmartSubtitlesTaskInput || null}
|
|
7111
|
-
*/
|
|
7112
|
-
this.SmartSubtitlesTask = null;
|
|
7113
|
-
|
|
7114
|
-
}
|
|
7115
|
-
|
|
7116
|
-
/**
|
|
7117
|
-
* @private
|
|
7118
|
-
*/
|
|
7119
|
-
deserialize(params) {
|
|
7120
|
-
if (!params) {
|
|
7121
|
-
return;
|
|
7122
|
-
}
|
|
7123
|
-
|
|
7124
|
-
if (params.TranscodeTask) {
|
|
7125
|
-
let obj = new TranscodeTaskInput();
|
|
7126
|
-
obj.deserialize(params.TranscodeTask)
|
|
7127
|
-
this.TranscodeTask = obj;
|
|
7128
|
-
}
|
|
7129
|
-
|
|
7130
|
-
if (params.AnimatedGraphicTask) {
|
|
7131
|
-
let obj = new AnimatedGraphicTaskInput();
|
|
7132
|
-
obj.deserialize(params.AnimatedGraphicTask)
|
|
7133
|
-
this.AnimatedGraphicTask = obj;
|
|
7134
|
-
}
|
|
7135
|
-
|
|
7136
|
-
if (params.SnapshotByTimeOffsetTask) {
|
|
7137
|
-
let obj = new SnapshotByTimeOffsetTaskInput();
|
|
7138
|
-
obj.deserialize(params.SnapshotByTimeOffsetTask)
|
|
7139
|
-
this.SnapshotByTimeOffsetTask = obj;
|
|
7140
|
-
}
|
|
7141
|
-
|
|
7142
|
-
if (params.SampleSnapshotTask) {
|
|
7143
|
-
let obj = new SampleSnapshotTaskInput();
|
|
7144
|
-
obj.deserialize(params.SampleSnapshotTask)
|
|
7145
|
-
this.SampleSnapshotTask = obj;
|
|
7146
|
-
}
|
|
7147
|
-
|
|
7148
|
-
if (params.ImageSpriteTask) {
|
|
7149
|
-
let obj = new ImageSpriteTaskInput();
|
|
7150
|
-
obj.deserialize(params.ImageSpriteTask)
|
|
7151
|
-
this.ImageSpriteTask = obj;
|
|
7152
|
-
}
|
|
7153
|
-
|
|
7154
|
-
if (params.AdaptiveDynamicStreamingTask) {
|
|
7155
|
-
let obj = new AdaptiveDynamicStreamingTaskInput();
|
|
7156
|
-
obj.deserialize(params.AdaptiveDynamicStreamingTask)
|
|
7157
|
-
this.AdaptiveDynamicStreamingTask = obj;
|
|
7158
|
-
}
|
|
7159
|
-
|
|
7160
|
-
if (params.AiContentReviewTask) {
|
|
7161
|
-
let obj = new AiContentReviewTaskInput();
|
|
7162
|
-
obj.deserialize(params.AiContentReviewTask)
|
|
7163
|
-
this.AiContentReviewTask = obj;
|
|
7164
|
-
}
|
|
7165
|
-
|
|
7166
|
-
if (params.AiAnalysisTask) {
|
|
7167
|
-
let obj = new AiAnalysisTaskInput();
|
|
7168
|
-
obj.deserialize(params.AiAnalysisTask)
|
|
7169
|
-
this.AiAnalysisTask = obj;
|
|
7170
|
-
}
|
|
7171
|
-
|
|
7172
|
-
if (params.AiRecognitionTask) {
|
|
7173
|
-
let obj = new AiRecognitionTaskInput();
|
|
7174
|
-
obj.deserialize(params.AiRecognitionTask)
|
|
7175
|
-
this.AiRecognitionTask = obj;
|
|
7176
|
-
}
|
|
7177
|
-
|
|
7178
|
-
if (params.QualityControlTask) {
|
|
7179
|
-
let obj = new AiQualityControlTaskInput();
|
|
7180
|
-
obj.deserialize(params.QualityControlTask)
|
|
7181
|
-
this.QualityControlTask = obj;
|
|
7182
|
-
}
|
|
7183
|
-
|
|
7184
|
-
if (params.SmartSubtitlesTask) {
|
|
7185
|
-
let obj = new SmartSubtitlesTaskInput();
|
|
7186
|
-
obj.deserialize(params.SmartSubtitlesTask)
|
|
7187
|
-
this.SmartSubtitlesTask = obj;
|
|
7188
|
-
}
|
|
7189
|
-
|
|
7190
|
-
}
|
|
7191
|
-
}
|
|
7192
|
-
|
|
7193
7100
|
/**
|
|
7194
7101
|
* Text watermarking template
|
|
7195
7102
|
* @class
|
|
@@ -7423,18 +7330,18 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
7423
7330
|
}
|
|
7424
7331
|
|
|
7425
7332
|
/**
|
|
7426
|
-
*
|
|
7333
|
+
* DescribeImageTaskDetail request structure.
|
|
7427
7334
|
* @class
|
|
7428
7335
|
*/
|
|
7429
|
-
class
|
|
7336
|
+
class DescribeImageTaskDetailRequest extends AbstractModel {
|
|
7430
7337
|
constructor(){
|
|
7431
7338
|
super();
|
|
7432
7339
|
|
|
7433
7340
|
/**
|
|
7434
|
-
*
|
|
7435
|
-
* @type {
|
|
7341
|
+
* Image processing task ID.
|
|
7342
|
+
* @type {string || null}
|
|
7436
7343
|
*/
|
|
7437
|
-
this.
|
|
7344
|
+
this.TaskId = null;
|
|
7438
7345
|
|
|
7439
7346
|
}
|
|
7440
7347
|
|
|
@@ -7445,15 +7352,7 @@ class LiveStreamAiReviewResultInfo extends AbstractModel {
|
|
|
7445
7352
|
if (!params) {
|
|
7446
7353
|
return;
|
|
7447
7354
|
}
|
|
7448
|
-
|
|
7449
|
-
if (params.ResultSet) {
|
|
7450
|
-
this.ResultSet = new Array();
|
|
7451
|
-
for (let z in params.ResultSet) {
|
|
7452
|
-
let obj = new LiveStreamAiReviewResultItem();
|
|
7453
|
-
obj.deserialize(params.ResultSet[z]);
|
|
7454
|
-
this.ResultSet.push(obj);
|
|
7455
|
-
}
|
|
7456
|
-
}
|
|
7355
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
7457
7356
|
|
|
7458
7357
|
}
|
|
7459
7358
|
}
|
|
@@ -7865,6 +7764,48 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
7865
7764
|
}
|
|
7866
7765
|
}
|
|
7867
7766
|
|
|
7767
|
+
/**
|
|
7768
|
+
* Image processing result information.
|
|
7769
|
+
* @class
|
|
7770
|
+
*/
|
|
7771
|
+
class ImageProcessTaskOutput extends AbstractModel {
|
|
7772
|
+
constructor(){
|
|
7773
|
+
super();
|
|
7774
|
+
|
|
7775
|
+
/**
|
|
7776
|
+
* Path of the output file.
|
|
7777
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
7778
|
+
* @type {string || null}
|
|
7779
|
+
*/
|
|
7780
|
+
this.Path = null;
|
|
7781
|
+
|
|
7782
|
+
/**
|
|
7783
|
+
* Storage location of the output file.
|
|
7784
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
7785
|
+
* @type {TaskOutputStorage || null}
|
|
7786
|
+
*/
|
|
7787
|
+
this.OutputStorage = null;
|
|
7788
|
+
|
|
7789
|
+
}
|
|
7790
|
+
|
|
7791
|
+
/**
|
|
7792
|
+
* @private
|
|
7793
|
+
*/
|
|
7794
|
+
deserialize(params) {
|
|
7795
|
+
if (!params) {
|
|
7796
|
+
return;
|
|
7797
|
+
}
|
|
7798
|
+
this.Path = 'Path' in params ? params.Path : null;
|
|
7799
|
+
|
|
7800
|
+
if (params.OutputStorage) {
|
|
7801
|
+
let obj = new TaskOutputStorage();
|
|
7802
|
+
obj.deserialize(params.OutputStorage)
|
|
7803
|
+
this.OutputStorage = obj;
|
|
7804
|
+
}
|
|
7805
|
+
|
|
7806
|
+
}
|
|
7807
|
+
}
|
|
7808
|
+
|
|
7868
7809
|
/**
|
|
7869
7810
|
* The output video information of a video editing/compositing task.
|
|
7870
7811
|
* @class
|
|
@@ -8474,32 +8415,19 @@ class ParseNotificationRequest extends AbstractModel {
|
|
|
8474
8415
|
}
|
|
8475
8416
|
|
|
8476
8417
|
/**
|
|
8477
|
-
*
|
|
8418
|
+
* Image erasing parameter.
|
|
8478
8419
|
* @class
|
|
8479
8420
|
*/
|
|
8480
|
-
class
|
|
8421
|
+
class ImageEraseConfig extends AbstractModel {
|
|
8481
8422
|
constructor(){
|
|
8482
8423
|
super();
|
|
8483
8424
|
|
|
8484
8425
|
/**
|
|
8485
|
-
*
|
|
8486
|
-
|
|
8487
|
-
|
|
8488
|
-
this.Definition = null;
|
|
8489
|
-
|
|
8490
|
-
/**
|
|
8491
|
-
* The storage of the recording file. If this parameter is left empty, the `OutputStorage` value of the parent folder will be inherited.
|
|
8492
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
8493
|
-
* @type {TaskOutputStorage || null}
|
|
8494
|
-
*/
|
|
8495
|
-
this.OutputStorage = null;
|
|
8496
|
-
|
|
8497
|
-
/**
|
|
8498
|
-
* The output path of the recording file.
|
|
8499
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
8500
|
-
* @type {string || null}
|
|
8426
|
+
* Icon erasing configuration.
|
|
8427
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8428
|
+
* @type {ImageEraseLogoConfig || null}
|
|
8501
8429
|
*/
|
|
8502
|
-
this.
|
|
8430
|
+
this.ImageEraseLogo = null;
|
|
8503
8431
|
|
|
8504
8432
|
}
|
|
8505
8433
|
|
|
@@ -8510,14 +8438,12 @@ Note: This field may return·null, indicating that no valid values can be obtain
|
|
|
8510
8438
|
if (!params) {
|
|
8511
8439
|
return;
|
|
8512
8440
|
}
|
|
8513
|
-
this.Definition = 'Definition' in params ? params.Definition : null;
|
|
8514
8441
|
|
|
8515
|
-
if (params.
|
|
8516
|
-
let obj = new
|
|
8517
|
-
obj.deserialize(params.
|
|
8518
|
-
this.
|
|
8442
|
+
if (params.ImageEraseLogo) {
|
|
8443
|
+
let obj = new ImageEraseLogoConfig();
|
|
8444
|
+
obj.deserialize(params.ImageEraseLogo)
|
|
8445
|
+
this.ImageEraseLogo = obj;
|
|
8519
8446
|
}
|
|
8520
|
-
this.OutputObjectPath = 'OutputObjectPath' in params ? params.OutputObjectPath : null;
|
|
8521
8447
|
|
|
8522
8448
|
}
|
|
8523
8449
|
}
|
|
@@ -8954,6 +8880,34 @@ If not set, the service will automatically adopt a suitable bitrate based on the
|
|
|
8954
8880
|
}
|
|
8955
8881
|
}
|
|
8956
8882
|
|
|
8883
|
+
/**
|
|
8884
|
+
* DescribeTaskDetail request structure.
|
|
8885
|
+
* @class
|
|
8886
|
+
*/
|
|
8887
|
+
class DescribeTaskDetailRequest extends AbstractModel {
|
|
8888
|
+
constructor(){
|
|
8889
|
+
super();
|
|
8890
|
+
|
|
8891
|
+
/**
|
|
8892
|
+
* Video processing task ID.
|
|
8893
|
+
* @type {string || null}
|
|
8894
|
+
*/
|
|
8895
|
+
this.TaskId = null;
|
|
8896
|
+
|
|
8897
|
+
}
|
|
8898
|
+
|
|
8899
|
+
/**
|
|
8900
|
+
* @private
|
|
8901
|
+
*/
|
|
8902
|
+
deserialize(params) {
|
|
8903
|
+
if (!params) {
|
|
8904
|
+
return;
|
|
8905
|
+
}
|
|
8906
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
8907
|
+
|
|
8908
|
+
}
|
|
8909
|
+
}
|
|
8910
|
+
|
|
8957
8911
|
/**
|
|
8958
8912
|
* Control parameter of prohibited information detection in speech task
|
|
8959
8913
|
* @class
|
|
@@ -10125,6 +10079,41 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
10125
10079
|
}
|
|
10126
10080
|
}
|
|
10127
10081
|
|
|
10082
|
+
/**
|
|
10083
|
+
* BatchProcessMedia response structure.
|
|
10084
|
+
* @class
|
|
10085
|
+
*/
|
|
10086
|
+
class BatchProcessMediaResponse extends AbstractModel {
|
|
10087
|
+
constructor(){
|
|
10088
|
+
super();
|
|
10089
|
+
|
|
10090
|
+
/**
|
|
10091
|
+
* Task ID.
|
|
10092
|
+
* @type {string || null}
|
|
10093
|
+
*/
|
|
10094
|
+
this.TaskId = null;
|
|
10095
|
+
|
|
10096
|
+
/**
|
|
10097
|
+
* 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.
|
|
10098
|
+
* @type {string || null}
|
|
10099
|
+
*/
|
|
10100
|
+
this.RequestId = null;
|
|
10101
|
+
|
|
10102
|
+
}
|
|
10103
|
+
|
|
10104
|
+
/**
|
|
10105
|
+
* @private
|
|
10106
|
+
*/
|
|
10107
|
+
deserialize(params) {
|
|
10108
|
+
if (!params) {
|
|
10109
|
+
return;
|
|
10110
|
+
}
|
|
10111
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
10112
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
10113
|
+
|
|
10114
|
+
}
|
|
10115
|
+
}
|
|
10116
|
+
|
|
10128
10117
|
/**
|
|
10129
10118
|
* The live recording result.
|
|
10130
10119
|
* @class
|
|
@@ -10547,39 +10536,30 @@ class DeleteWordSamplesRequest extends AbstractModel {
|
|
|
10547
10536
|
}
|
|
10548
10537
|
|
|
10549
10538
|
/**
|
|
10550
|
-
*
|
|
10539
|
+
* DescribeLiveRecordTemplates response structure.
|
|
10551
10540
|
* @class
|
|
10552
10541
|
*/
|
|
10553
|
-
class
|
|
10542
|
+
class DescribeLiveRecordTemplatesResponse extends AbstractModel {
|
|
10554
10543
|
constructor(){
|
|
10555
10544
|
super();
|
|
10556
10545
|
|
|
10557
10546
|
/**
|
|
10558
|
-
*
|
|
10559
|
-
|
|
10560
|
-
* @type {Array.<QualityControlResult> || null}
|
|
10561
|
-
*/
|
|
10562
|
-
this.QualityControlResults = null;
|
|
10563
|
-
|
|
10564
|
-
/**
|
|
10565
|
-
*
|
|
10566
|
-
* @type {Array.<DiagnoseResult> || null}
|
|
10547
|
+
* Total number of records that meet filter conditions.
|
|
10548
|
+
* @type {number || null}
|
|
10567
10549
|
*/
|
|
10568
|
-
this.
|
|
10550
|
+
this.TotalCount = null;
|
|
10569
10551
|
|
|
10570
10552
|
/**
|
|
10571
|
-
*
|
|
10572
|
-
|
|
10573
|
-
* @type {Array.<QualityControlResult> || null}
|
|
10553
|
+
* Recording template details list.
|
|
10554
|
+
* @type {Array.<LiveRecordTemplate> || null}
|
|
10574
10555
|
*/
|
|
10575
|
-
this.
|
|
10556
|
+
this.LiveRecordTemplateSet = null;
|
|
10576
10557
|
|
|
10577
10558
|
/**
|
|
10578
|
-
*
|
|
10579
|
-
|
|
10580
|
-
* @type {Array.<DiagnoseResult> || null}
|
|
10559
|
+
* 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.
|
|
10560
|
+
* @type {string || null}
|
|
10581
10561
|
*/
|
|
10582
|
-
this.
|
|
10562
|
+
this.RequestId = null;
|
|
10583
10563
|
|
|
10584
10564
|
}
|
|
10585
10565
|
|
|
@@ -10590,42 +10570,17 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
10590
10570
|
if (!params) {
|
|
10591
10571
|
return;
|
|
10592
10572
|
}
|
|
10573
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
10593
10574
|
|
|
10594
|
-
if (params.
|
|
10595
|
-
this.
|
|
10596
|
-
for (let z in params.
|
|
10597
|
-
let obj = new
|
|
10598
|
-
obj.deserialize(params.
|
|
10599
|
-
this.
|
|
10600
|
-
}
|
|
10601
|
-
}
|
|
10602
|
-
|
|
10603
|
-
if (params.DiagnoseResults) {
|
|
10604
|
-
this.DiagnoseResults = new Array();
|
|
10605
|
-
for (let z in params.DiagnoseResults) {
|
|
10606
|
-
let obj = new DiagnoseResult();
|
|
10607
|
-
obj.deserialize(params.DiagnoseResults[z]);
|
|
10608
|
-
this.DiagnoseResults.push(obj);
|
|
10609
|
-
}
|
|
10610
|
-
}
|
|
10611
|
-
|
|
10612
|
-
if (params.QualityControlResultSet) {
|
|
10613
|
-
this.QualityControlResultSet = new Array();
|
|
10614
|
-
for (let z in params.QualityControlResultSet) {
|
|
10615
|
-
let obj = new QualityControlResult();
|
|
10616
|
-
obj.deserialize(params.QualityControlResultSet[z]);
|
|
10617
|
-
this.QualityControlResultSet.push(obj);
|
|
10618
|
-
}
|
|
10619
|
-
}
|
|
10620
|
-
|
|
10621
|
-
if (params.DiagnoseResultSet) {
|
|
10622
|
-
this.DiagnoseResultSet = new Array();
|
|
10623
|
-
for (let z in params.DiagnoseResultSet) {
|
|
10624
|
-
let obj = new DiagnoseResult();
|
|
10625
|
-
obj.deserialize(params.DiagnoseResultSet[z]);
|
|
10626
|
-
this.DiagnoseResultSet.push(obj);
|
|
10575
|
+
if (params.LiveRecordTemplateSet) {
|
|
10576
|
+
this.LiveRecordTemplateSet = new Array();
|
|
10577
|
+
for (let z in params.LiveRecordTemplateSet) {
|
|
10578
|
+
let obj = new LiveRecordTemplate();
|
|
10579
|
+
obj.deserialize(params.LiveRecordTemplateSet[z]);
|
|
10580
|
+
this.LiveRecordTemplateSet.push(obj);
|
|
10627
10581
|
}
|
|
10628
10582
|
}
|
|
10583
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
10629
10584
|
|
|
10630
10585
|
}
|
|
10631
10586
|
}
|
|
@@ -10708,6 +10663,20 @@ Default value: 0.
|
|
|
10708
10663
|
*/
|
|
10709
10664
|
this.TEHDConfig = null;
|
|
10710
10665
|
|
|
10666
|
+
/**
|
|
10667
|
+
* Additional parameter, which is a serialized JSON string.
|
|
10668
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
10669
|
+
* @type {string || null}
|
|
10670
|
+
*/
|
|
10671
|
+
this.StdExtInfo = null;
|
|
10672
|
+
|
|
10673
|
+
/**
|
|
10674
|
+
* Audio/Video enhancement configuration.
|
|
10675
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
10676
|
+
* @type {EnhanceConfig || null}
|
|
10677
|
+
*/
|
|
10678
|
+
this.EnhanceConfig = null;
|
|
10679
|
+
|
|
10711
10680
|
}
|
|
10712
10681
|
|
|
10713
10682
|
/**
|
|
@@ -10738,6 +10707,13 @@ Default value: 0.
|
|
|
10738
10707
|
obj.deserialize(params.TEHDConfig)
|
|
10739
10708
|
this.TEHDConfig = obj;
|
|
10740
10709
|
}
|
|
10710
|
+
this.StdExtInfo = 'StdExtInfo' in params ? params.StdExtInfo : null;
|
|
10711
|
+
|
|
10712
|
+
if (params.EnhanceConfig) {
|
|
10713
|
+
let obj = new EnhanceConfig();
|
|
10714
|
+
obj.deserialize(params.EnhanceConfig)
|
|
10715
|
+
this.EnhanceConfig = obj;
|
|
10716
|
+
}
|
|
10741
10717
|
|
|
10742
10718
|
}
|
|
10743
10719
|
}
|
|
@@ -11412,18 +11388,71 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
11412
11388
|
}
|
|
11413
11389
|
|
|
11414
11390
|
/**
|
|
11415
|
-
*
|
|
11391
|
+
* BatchProcessMedia request structure.
|
|
11416
11392
|
* @class
|
|
11417
11393
|
*/
|
|
11418
|
-
class
|
|
11394
|
+
class BatchProcessMediaRequest extends AbstractModel {
|
|
11419
11395
|
constructor(){
|
|
11420
11396
|
super();
|
|
11421
11397
|
|
|
11422
11398
|
/**
|
|
11423
|
-
*
|
|
11399
|
+
* Path of the input file.
|
|
11400
|
+
* @type {Array.<MediaInputInfo> || null}
|
|
11401
|
+
*/
|
|
11402
|
+
this.InputInfo = null;
|
|
11403
|
+
|
|
11404
|
+
/**
|
|
11405
|
+
* Storage bucket for the output file. If it is left blank, the storage location in InputInfo will be inherited.
|
|
11406
|
+
Note: When InputInfo.Type is URL, this parameter is required.
|
|
11407
|
+
* @type {TaskOutputStorage || null}
|
|
11408
|
+
*/
|
|
11409
|
+
this.OutputStorage = null;
|
|
11410
|
+
|
|
11411
|
+
/**
|
|
11412
|
+
* Storage directory for the output file. It should start and end with a slash (/), such as `/movie/201907/`.
|
|
11413
|
+
If left blank, it indicates that the directory is the same as the one where the file is located in InputInfo.
|
|
11424
11414
|
* @type {string || null}
|
|
11425
11415
|
*/
|
|
11426
|
-
this.
|
|
11416
|
+
this.OutputDir = null;
|
|
11417
|
+
|
|
11418
|
+
/**
|
|
11419
|
+
* Smart subtitle.
|
|
11420
|
+
* @type {SmartSubtitlesTaskInput || null}
|
|
11421
|
+
*/
|
|
11422
|
+
this.SmartSubtitlesTask = null;
|
|
11423
|
+
|
|
11424
|
+
/**
|
|
11425
|
+
* Event notification information of the task. If left blank, it indicates that no event notification will be obtained.
|
|
11426
|
+
* @type {TaskNotifyConfig || null}
|
|
11427
|
+
*/
|
|
11428
|
+
this.TaskNotifyConfig = null;
|
|
11429
|
+
|
|
11430
|
+
/**
|
|
11431
|
+
* Priority of the task flow. The higher the value, the higher the priority. The value range is from -10 to 10. If left blank, the default value is 0.
|
|
11432
|
+
* @type {number || null}
|
|
11433
|
+
*/
|
|
11434
|
+
this.TasksPriority = null;
|
|
11435
|
+
|
|
11436
|
+
/**
|
|
11437
|
+
* Source context, which is used to pass through the user request information. The callback for task flow status changes will return the value of this field. The maximum length is 1,000 characters.
|
|
11438
|
+
* @type {string || null}
|
|
11439
|
+
*/
|
|
11440
|
+
this.SessionContext = null;
|
|
11441
|
+
|
|
11442
|
+
/**
|
|
11443
|
+
* Resource ID. Ensure the corresponding resource is in the enabled state. The default value is an account's primary resource ID.
|
|
11444
|
+
* @type {string || null}
|
|
11445
|
+
*/
|
|
11446
|
+
this.ResourceId = null;
|
|
11447
|
+
|
|
11448
|
+
/**
|
|
11449
|
+
* Whether to skip metadata acquisition. Valid values:
|
|
11450
|
+
0: do not skip.
|
|
11451
|
+
1: skip.
|
|
11452
|
+
Default value: 0
|
|
11453
|
+
* @type {number || null}
|
|
11454
|
+
*/
|
|
11455
|
+
this.SkipMateData = null;
|
|
11427
11456
|
|
|
11428
11457
|
}
|
|
11429
11458
|
|
|
@@ -11434,7 +11463,38 @@ class ModifyContentReviewTemplateResponse extends AbstractModel {
|
|
|
11434
11463
|
if (!params) {
|
|
11435
11464
|
return;
|
|
11436
11465
|
}
|
|
11437
|
-
|
|
11466
|
+
|
|
11467
|
+
if (params.InputInfo) {
|
|
11468
|
+
this.InputInfo = new Array();
|
|
11469
|
+
for (let z in params.InputInfo) {
|
|
11470
|
+
let obj = new MediaInputInfo();
|
|
11471
|
+
obj.deserialize(params.InputInfo[z]);
|
|
11472
|
+
this.InputInfo.push(obj);
|
|
11473
|
+
}
|
|
11474
|
+
}
|
|
11475
|
+
|
|
11476
|
+
if (params.OutputStorage) {
|
|
11477
|
+
let obj = new TaskOutputStorage();
|
|
11478
|
+
obj.deserialize(params.OutputStorage)
|
|
11479
|
+
this.OutputStorage = obj;
|
|
11480
|
+
}
|
|
11481
|
+
this.OutputDir = 'OutputDir' in params ? params.OutputDir : null;
|
|
11482
|
+
|
|
11483
|
+
if (params.SmartSubtitlesTask) {
|
|
11484
|
+
let obj = new SmartSubtitlesTaskInput();
|
|
11485
|
+
obj.deserialize(params.SmartSubtitlesTask)
|
|
11486
|
+
this.SmartSubtitlesTask = obj;
|
|
11487
|
+
}
|
|
11488
|
+
|
|
11489
|
+
if (params.TaskNotifyConfig) {
|
|
11490
|
+
let obj = new TaskNotifyConfig();
|
|
11491
|
+
obj.deserialize(params.TaskNotifyConfig)
|
|
11492
|
+
this.TaskNotifyConfig = obj;
|
|
11493
|
+
}
|
|
11494
|
+
this.TasksPriority = 'TasksPriority' in params ? params.TasksPriority : null;
|
|
11495
|
+
this.SessionContext = 'SessionContext' in params ? params.SessionContext : null;
|
|
11496
|
+
this.ResourceId = 'ResourceId' in params ? params.ResourceId : null;
|
|
11497
|
+
this.SkipMateData = 'SkipMateData' in params ? params.SkipMateData : null;
|
|
11438
11498
|
|
|
11439
11499
|
}
|
|
11440
11500
|
}
|
|
@@ -12489,6 +12549,81 @@ class AiAnalysisTaskDelLogoInput extends AbstractModel {
|
|
|
12489
12549
|
}
|
|
12490
12550
|
}
|
|
12491
12551
|
|
|
12552
|
+
/**
|
|
12553
|
+
* Output information for smart subtitle tasks.
|
|
12554
|
+
* @class
|
|
12555
|
+
*/
|
|
12556
|
+
class SmartSubtitleTaskBatchOutput extends AbstractModel {
|
|
12557
|
+
constructor(){
|
|
12558
|
+
super();
|
|
12559
|
+
|
|
12560
|
+
/**
|
|
12561
|
+
* Task progress.
|
|
12562
|
+
* @type {number || null}
|
|
12563
|
+
*/
|
|
12564
|
+
this.Progress = null;
|
|
12565
|
+
|
|
12566
|
+
/**
|
|
12567
|
+
* Task status, including PROCESSING, SUCCESS, and FAIL.
|
|
12568
|
+
* @type {string || null}
|
|
12569
|
+
*/
|
|
12570
|
+
this.Status = null;
|
|
12571
|
+
|
|
12572
|
+
/**
|
|
12573
|
+
* Error code. An empty string indicates that the task is successful, and other values indicate that the task has failed. For specific values, see [Error Codes] (https://intl.cloud.tencent.com/document/product/862/50369?from_cn_redirect=1#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81).
|
|
12574
|
+
* @type {string || null}
|
|
12575
|
+
*/
|
|
12576
|
+
this.ErrCodeExt = null;
|
|
12577
|
+
|
|
12578
|
+
/**
|
|
12579
|
+
* Error message.
|
|
12580
|
+
* @type {string || null}
|
|
12581
|
+
*/
|
|
12582
|
+
this.Message = null;
|
|
12583
|
+
|
|
12584
|
+
/**
|
|
12585
|
+
* Translation task output information.
|
|
12586
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
12587
|
+
* @type {SmartSubtitleTaskTransTextResultOutput || null}
|
|
12588
|
+
*/
|
|
12589
|
+
this.TransTextTask = null;
|
|
12590
|
+
|
|
12591
|
+
/**
|
|
12592
|
+
* Output information on the full speech recognition task.
|
|
12593
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
12594
|
+
* @type {SmartSubtitleTaskAsrFullTextResultOutput || null}
|
|
12595
|
+
*/
|
|
12596
|
+
this.AsrFullTextTask = null;
|
|
12597
|
+
|
|
12598
|
+
}
|
|
12599
|
+
|
|
12600
|
+
/**
|
|
12601
|
+
* @private
|
|
12602
|
+
*/
|
|
12603
|
+
deserialize(params) {
|
|
12604
|
+
if (!params) {
|
|
12605
|
+
return;
|
|
12606
|
+
}
|
|
12607
|
+
this.Progress = 'Progress' in params ? params.Progress : null;
|
|
12608
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
12609
|
+
this.ErrCodeExt = 'ErrCodeExt' in params ? params.ErrCodeExt : null;
|
|
12610
|
+
this.Message = 'Message' in params ? params.Message : null;
|
|
12611
|
+
|
|
12612
|
+
if (params.TransTextTask) {
|
|
12613
|
+
let obj = new SmartSubtitleTaskTransTextResultOutput();
|
|
12614
|
+
obj.deserialize(params.TransTextTask)
|
|
12615
|
+
this.TransTextTask = obj;
|
|
12616
|
+
}
|
|
12617
|
+
|
|
12618
|
+
if (params.AsrFullTextTask) {
|
|
12619
|
+
let obj = new SmartSubtitleTaskAsrFullTextResultOutput();
|
|
12620
|
+
obj.deserialize(params.AsrFullTextTask)
|
|
12621
|
+
this.AsrFullTextTask = obj;
|
|
12622
|
+
}
|
|
12623
|
+
|
|
12624
|
+
}
|
|
12625
|
+
}
|
|
12626
|
+
|
|
12492
12627
|
/**
|
|
12493
12628
|
* Result information of intelligent tagging
|
|
12494
12629
|
* @class
|
|
@@ -13586,9 +13721,10 @@ class RawSmartSubtitleParameter extends AbstractModel {
|
|
|
13586
13721
|
|
|
13587
13722
|
/**
|
|
13588
13723
|
* Smart subtitle language type.
|
|
13589
|
-
0: source
|
|
13724
|
+
0: source language
|
|
13725
|
+
1: target language
|
|
13590
13726
|
2: source language + target language
|
|
13591
|
-
The value can only be 0 when TranslateSwitch is set to OFF.The value can only be 1 or 2 when TranslateSwitch is set to ON.
|
|
13727
|
+
The value can only be 0 when TranslateSwitch is set to OFF. The value can only be 1 or 2 when TranslateSwitch is set to ON.
|
|
13592
13728
|
* @type {number || null}
|
|
13593
13729
|
*/
|
|
13594
13730
|
this.SubtitleType = null;
|
|
@@ -13606,7 +13742,7 @@ yue: Cantonese
|
|
|
13606
13742
|
vi: Vietnamese
|
|
13607
13743
|
ms: Malay
|
|
13608
13744
|
id: Indonesian
|
|
13609
|
-
|
|
13745
|
+
fil: Filipino
|
|
13610
13746
|
th: Thai
|
|
13611
13747
|
pt: Portuguese
|
|
13612
13748
|
tr: Turkish
|
|
@@ -13731,18 +13867,33 @@ class AiRecognitionTaskAsrFullTextResultInput extends AbstractModel {
|
|
|
13731
13867
|
}
|
|
13732
13868
|
|
|
13733
13869
|
/**
|
|
13734
|
-
*
|
|
13870
|
+
* Results of subtasks for a batch task.
|
|
13735
13871
|
* @class
|
|
13736
13872
|
*/
|
|
13737
|
-
class
|
|
13873
|
+
class BatchSubTaskResult extends AbstractModel {
|
|
13738
13874
|
constructor(){
|
|
13739
13875
|
super();
|
|
13740
13876
|
|
|
13741
13877
|
/**
|
|
13742
|
-
*
|
|
13743
|
-
|
|
13878
|
+
* Input information for a batch task.
|
|
13879
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
13880
|
+
* @type {Array.<MediaInputInfo> || null}
|
|
13744
13881
|
*/
|
|
13745
|
-
this.
|
|
13882
|
+
this.InputInfos = null;
|
|
13883
|
+
|
|
13884
|
+
/**
|
|
13885
|
+
* Metadata of the original video.
|
|
13886
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
13887
|
+
* @type {Array.<MediaMetaData> || null}
|
|
13888
|
+
*/
|
|
13889
|
+
this.Metadatas = null;
|
|
13890
|
+
|
|
13891
|
+
/**
|
|
13892
|
+
* Execution result of the smart subtitle task.
|
|
13893
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
13894
|
+
* @type {BatchSmartSubtitlesResult || null}
|
|
13895
|
+
*/
|
|
13896
|
+
this.SmartSubtitlesTaskResult = null;
|
|
13746
13897
|
|
|
13747
13898
|
}
|
|
13748
13899
|
|
|
@@ -13754,15 +13905,30 @@ class AiRecognitionTaskAsrWordsResultOutput extends AbstractModel {
|
|
|
13754
13905
|
return;
|
|
13755
13906
|
}
|
|
13756
13907
|
|
|
13757
|
-
if (params.
|
|
13758
|
-
this.
|
|
13759
|
-
for (let z in params.
|
|
13760
|
-
let obj = new
|
|
13761
|
-
obj.deserialize(params.
|
|
13762
|
-
this.
|
|
13908
|
+
if (params.InputInfos) {
|
|
13909
|
+
this.InputInfos = new Array();
|
|
13910
|
+
for (let z in params.InputInfos) {
|
|
13911
|
+
let obj = new MediaInputInfo();
|
|
13912
|
+
obj.deserialize(params.InputInfos[z]);
|
|
13913
|
+
this.InputInfos.push(obj);
|
|
13914
|
+
}
|
|
13915
|
+
}
|
|
13916
|
+
|
|
13917
|
+
if (params.Metadatas) {
|
|
13918
|
+
this.Metadatas = new Array();
|
|
13919
|
+
for (let z in params.Metadatas) {
|
|
13920
|
+
let obj = new MediaMetaData();
|
|
13921
|
+
obj.deserialize(params.Metadatas[z]);
|
|
13922
|
+
this.Metadatas.push(obj);
|
|
13763
13923
|
}
|
|
13764
13924
|
}
|
|
13765
13925
|
|
|
13926
|
+
if (params.SmartSubtitlesTaskResult) {
|
|
13927
|
+
let obj = new BatchSmartSubtitlesResult();
|
|
13928
|
+
obj.deserialize(params.SmartSubtitlesTaskResult)
|
|
13929
|
+
this.SmartSubtitlesTaskResult = obj;
|
|
13930
|
+
}
|
|
13931
|
+
|
|
13766
13932
|
}
|
|
13767
13933
|
}
|
|
13768
13934
|
|
|
@@ -14428,6 +14594,56 @@ class AiSamplePerson extends AbstractModel {
|
|
|
14428
14594
|
}
|
|
14429
14595
|
}
|
|
14430
14596
|
|
|
14597
|
+
/**
|
|
14598
|
+
* Smart subtitle task result.
|
|
14599
|
+
* @class
|
|
14600
|
+
*/
|
|
14601
|
+
class BatchSmartSubtitlesResult extends AbstractModel {
|
|
14602
|
+
constructor(){
|
|
14603
|
+
super();
|
|
14604
|
+
|
|
14605
|
+
/**
|
|
14606
|
+
* Input information for smart subtitle tasks.
|
|
14607
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
14608
|
+
* @type {SmartSubtitleTaskResultInput || null}
|
|
14609
|
+
*/
|
|
14610
|
+
this.Input = null;
|
|
14611
|
+
|
|
14612
|
+
/**
|
|
14613
|
+
* Output information for smart subtitle tasks.
|
|
14614
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
14615
|
+
* @type {Array.<SmartSubtitleTaskBatchOutput> || null}
|
|
14616
|
+
*/
|
|
14617
|
+
this.Outputs = null;
|
|
14618
|
+
|
|
14619
|
+
}
|
|
14620
|
+
|
|
14621
|
+
/**
|
|
14622
|
+
* @private
|
|
14623
|
+
*/
|
|
14624
|
+
deserialize(params) {
|
|
14625
|
+
if (!params) {
|
|
14626
|
+
return;
|
|
14627
|
+
}
|
|
14628
|
+
|
|
14629
|
+
if (params.Input) {
|
|
14630
|
+
let obj = new SmartSubtitleTaskResultInput();
|
|
14631
|
+
obj.deserialize(params.Input)
|
|
14632
|
+
this.Input = obj;
|
|
14633
|
+
}
|
|
14634
|
+
|
|
14635
|
+
if (params.Outputs) {
|
|
14636
|
+
this.Outputs = new Array();
|
|
14637
|
+
for (let z in params.Outputs) {
|
|
14638
|
+
let obj = new SmartSubtitleTaskBatchOutput();
|
|
14639
|
+
obj.deserialize(params.Outputs[z]);
|
|
14640
|
+
this.Outputs.push(obj);
|
|
14641
|
+
}
|
|
14642
|
+
}
|
|
14643
|
+
|
|
14644
|
+
}
|
|
14645
|
+
}
|
|
14646
|
+
|
|
14431
14647
|
/**
|
|
14432
14648
|
* The AES-128 encryption details.
|
|
14433
14649
|
* @class
|
|
@@ -15342,72 +15558,80 @@ class LiveStreamAiRecognitionResultInfo extends AbstractModel {
|
|
|
15342
15558
|
}
|
|
15343
15559
|
|
|
15344
15560
|
/**
|
|
15345
|
-
*
|
|
15561
|
+
* A subtask of a scheme.
|
|
15346
15562
|
* @class
|
|
15347
15563
|
*/
|
|
15348
|
-
class
|
|
15564
|
+
class ActivityPara extends AbstractModel {
|
|
15349
15565
|
constructor(){
|
|
15350
15566
|
super();
|
|
15351
15567
|
|
|
15352
15568
|
/**
|
|
15353
|
-
*
|
|
15354
|
-
* @type {
|
|
15569
|
+
* A transcoding task.
|
|
15570
|
+
* @type {TranscodeTaskInput || null}
|
|
15355
15571
|
*/
|
|
15356
|
-
this.
|
|
15572
|
+
this.TranscodeTask = null;
|
|
15357
15573
|
|
|
15358
15574
|
/**
|
|
15359
|
-
*
|
|
15360
|
-
* @type {
|
|
15575
|
+
* An animated screenshot generation task.
|
|
15576
|
+
* @type {AnimatedGraphicTaskInput || null}
|
|
15361
15577
|
*/
|
|
15362
|
-
this.
|
|
15578
|
+
this.AnimatedGraphicTask = null;
|
|
15363
15579
|
|
|
15364
15580
|
/**
|
|
15365
|
-
*
|
|
15366
|
-
* @type {
|
|
15581
|
+
* A time point screencapturing task.
|
|
15582
|
+
* @type {SnapshotByTimeOffsetTaskInput || null}
|
|
15367
15583
|
*/
|
|
15368
|
-
this.
|
|
15584
|
+
this.SnapshotByTimeOffsetTask = null;
|
|
15369
15585
|
|
|
15370
15586
|
/**
|
|
15371
|
-
*
|
|
15372
|
-
|
|
15373
|
-
<li>review</li>
|
|
15374
|
-
<li>block</li>
|
|
15375
|
-
* @type {string || null}
|
|
15587
|
+
* A sampled screencapturing task.
|
|
15588
|
+
* @type {SampleSnapshotTaskInput || null}
|
|
15376
15589
|
*/
|
|
15377
|
-
this.
|
|
15590
|
+
this.SampleSnapshotTask = null;
|
|
15378
15591
|
|
|
15379
15592
|
/**
|
|
15380
|
-
*
|
|
15381
|
-
|
|
15382
|
-
<li>violation_photo (banned icons)</li>
|
|
15383
|
-
* @type {string || null}
|
|
15593
|
+
* An image sprite generation task.
|
|
15594
|
+
* @type {ImageSpriteTaskInput || null}
|
|
15384
15595
|
*/
|
|
15385
|
-
this.
|
|
15596
|
+
this.ImageSpriteTask = null;
|
|
15386
15597
|
|
|
15387
15598
|
/**
|
|
15388
|
-
*
|
|
15389
|
-
* @type {
|
|
15599
|
+
* An adaptive bitrate streaming task.
|
|
15600
|
+
* @type {AdaptiveDynamicStreamingTaskInput || null}
|
|
15390
15601
|
*/
|
|
15391
|
-
this.
|
|
15602
|
+
this.AdaptiveDynamicStreamingTask = null;
|
|
15392
15603
|
|
|
15393
15604
|
/**
|
|
15394
|
-
*
|
|
15395
|
-
* @type {
|
|
15605
|
+
* A content moderation task.
|
|
15606
|
+
* @type {AiContentReviewTaskInput || null}
|
|
15396
15607
|
*/
|
|
15397
|
-
this.
|
|
15608
|
+
this.AiContentReviewTask = null;
|
|
15398
15609
|
|
|
15399
15610
|
/**
|
|
15400
|
-
*
|
|
15401
|
-
|
|
15402
|
-
* @type {string || null}
|
|
15611
|
+
* A content analysis task.
|
|
15612
|
+
* @type {AiAnalysisTaskInput || null}
|
|
15403
15613
|
*/
|
|
15404
|
-
this.
|
|
15614
|
+
this.AiAnalysisTask = null;
|
|
15405
15615
|
|
|
15406
15616
|
/**
|
|
15407
|
-
*
|
|
15408
|
-
* @type {
|
|
15617
|
+
* A content recognition task.
|
|
15618
|
+
* @type {AiRecognitionTaskInput || null}
|
|
15409
15619
|
*/
|
|
15410
|
-
this.
|
|
15620
|
+
this.AiRecognitionTask = null;
|
|
15621
|
+
|
|
15622
|
+
/**
|
|
15623
|
+
* Media quality inspection task.
|
|
15624
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
15625
|
+
* @type {AiQualityControlTaskInput || null}
|
|
15626
|
+
*/
|
|
15627
|
+
this.QualityControlTask = null;
|
|
15628
|
+
|
|
15629
|
+
/**
|
|
15630
|
+
* Smart subtitle task.
|
|
15631
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
15632
|
+
* @type {SmartSubtitlesTaskInput || null}
|
|
15633
|
+
*/
|
|
15634
|
+
this.SmartSubtitlesTask = null;
|
|
15411
15635
|
|
|
15412
15636
|
}
|
|
15413
15637
|
|
|
@@ -15418,15 +15642,72 @@ and will be deleted after `PicUrlExpireTime`).
|
|
|
15418
15642
|
if (!params) {
|
|
15419
15643
|
return;
|
|
15420
15644
|
}
|
|
15421
|
-
|
|
15422
|
-
|
|
15423
|
-
|
|
15424
|
-
|
|
15425
|
-
|
|
15426
|
-
|
|
15427
|
-
|
|
15428
|
-
|
|
15429
|
-
|
|
15645
|
+
|
|
15646
|
+
if (params.TranscodeTask) {
|
|
15647
|
+
let obj = new TranscodeTaskInput();
|
|
15648
|
+
obj.deserialize(params.TranscodeTask)
|
|
15649
|
+
this.TranscodeTask = obj;
|
|
15650
|
+
}
|
|
15651
|
+
|
|
15652
|
+
if (params.AnimatedGraphicTask) {
|
|
15653
|
+
let obj = new AnimatedGraphicTaskInput();
|
|
15654
|
+
obj.deserialize(params.AnimatedGraphicTask)
|
|
15655
|
+
this.AnimatedGraphicTask = obj;
|
|
15656
|
+
}
|
|
15657
|
+
|
|
15658
|
+
if (params.SnapshotByTimeOffsetTask) {
|
|
15659
|
+
let obj = new SnapshotByTimeOffsetTaskInput();
|
|
15660
|
+
obj.deserialize(params.SnapshotByTimeOffsetTask)
|
|
15661
|
+
this.SnapshotByTimeOffsetTask = obj;
|
|
15662
|
+
}
|
|
15663
|
+
|
|
15664
|
+
if (params.SampleSnapshotTask) {
|
|
15665
|
+
let obj = new SampleSnapshotTaskInput();
|
|
15666
|
+
obj.deserialize(params.SampleSnapshotTask)
|
|
15667
|
+
this.SampleSnapshotTask = obj;
|
|
15668
|
+
}
|
|
15669
|
+
|
|
15670
|
+
if (params.ImageSpriteTask) {
|
|
15671
|
+
let obj = new ImageSpriteTaskInput();
|
|
15672
|
+
obj.deserialize(params.ImageSpriteTask)
|
|
15673
|
+
this.ImageSpriteTask = obj;
|
|
15674
|
+
}
|
|
15675
|
+
|
|
15676
|
+
if (params.AdaptiveDynamicStreamingTask) {
|
|
15677
|
+
let obj = new AdaptiveDynamicStreamingTaskInput();
|
|
15678
|
+
obj.deserialize(params.AdaptiveDynamicStreamingTask)
|
|
15679
|
+
this.AdaptiveDynamicStreamingTask = obj;
|
|
15680
|
+
}
|
|
15681
|
+
|
|
15682
|
+
if (params.AiContentReviewTask) {
|
|
15683
|
+
let obj = new AiContentReviewTaskInput();
|
|
15684
|
+
obj.deserialize(params.AiContentReviewTask)
|
|
15685
|
+
this.AiContentReviewTask = obj;
|
|
15686
|
+
}
|
|
15687
|
+
|
|
15688
|
+
if (params.AiAnalysisTask) {
|
|
15689
|
+
let obj = new AiAnalysisTaskInput();
|
|
15690
|
+
obj.deserialize(params.AiAnalysisTask)
|
|
15691
|
+
this.AiAnalysisTask = obj;
|
|
15692
|
+
}
|
|
15693
|
+
|
|
15694
|
+
if (params.AiRecognitionTask) {
|
|
15695
|
+
let obj = new AiRecognitionTaskInput();
|
|
15696
|
+
obj.deserialize(params.AiRecognitionTask)
|
|
15697
|
+
this.AiRecognitionTask = obj;
|
|
15698
|
+
}
|
|
15699
|
+
|
|
15700
|
+
if (params.QualityControlTask) {
|
|
15701
|
+
let obj = new AiQualityControlTaskInput();
|
|
15702
|
+
obj.deserialize(params.QualityControlTask)
|
|
15703
|
+
this.QualityControlTask = obj;
|
|
15704
|
+
}
|
|
15705
|
+
|
|
15706
|
+
if (params.SmartSubtitlesTask) {
|
|
15707
|
+
let obj = new SmartSubtitlesTaskInput();
|
|
15708
|
+
obj.deserialize(params.SmartSubtitlesTask)
|
|
15709
|
+
this.SmartSubtitlesTask = obj;
|
|
15710
|
+
}
|
|
15430
15711
|
|
|
15431
15712
|
}
|
|
15432
15713
|
}
|
|
@@ -16330,19 +16611,32 @@ Default value: 10%.
|
|
|
16330
16611
|
}
|
|
16331
16612
|
|
|
16332
16613
|
/**
|
|
16333
|
-
*
|
|
16614
|
+
* The input parameters of a live recording task.
|
|
16334
16615
|
* @class
|
|
16335
16616
|
*/
|
|
16336
|
-
class
|
|
16617
|
+
class LiveRecordTaskInput extends AbstractModel {
|
|
16337
16618
|
constructor(){
|
|
16338
16619
|
super();
|
|
16339
16620
|
|
|
16340
16621
|
/**
|
|
16341
|
-
*
|
|
16342
|
-
|
|
16343
|
-
* @type {ImageEraseLogoConfig || null}
|
|
16622
|
+
* The live recording template ID.
|
|
16623
|
+
* @type {number || null}
|
|
16344
16624
|
*/
|
|
16345
|
-
this.
|
|
16625
|
+
this.Definition = null;
|
|
16626
|
+
|
|
16627
|
+
/**
|
|
16628
|
+
* The storage of the recording file. If this parameter is left empty, the `OutputStorage` value of the parent folder will be inherited.
|
|
16629
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
16630
|
+
* @type {TaskOutputStorage || null}
|
|
16631
|
+
*/
|
|
16632
|
+
this.OutputStorage = null;
|
|
16633
|
+
|
|
16634
|
+
/**
|
|
16635
|
+
* The output path of the recording file.
|
|
16636
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
16637
|
+
* @type {string || null}
|
|
16638
|
+
*/
|
|
16639
|
+
this.OutputObjectPath = null;
|
|
16346
16640
|
|
|
16347
16641
|
}
|
|
16348
16642
|
|
|
@@ -16353,12 +16647,14 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
16353
16647
|
if (!params) {
|
|
16354
16648
|
return;
|
|
16355
16649
|
}
|
|
16650
|
+
this.Definition = 'Definition' in params ? params.Definition : null;
|
|
16356
16651
|
|
|
16357
|
-
if (params.
|
|
16358
|
-
let obj = new
|
|
16359
|
-
obj.deserialize(params.
|
|
16360
|
-
this.
|
|
16652
|
+
if (params.OutputStorage) {
|
|
16653
|
+
let obj = new TaskOutputStorage();
|
|
16654
|
+
obj.deserialize(params.OutputStorage)
|
|
16655
|
+
this.OutputStorage = obj;
|
|
16361
16656
|
}
|
|
16657
|
+
this.OutputObjectPath = 'OutputObjectPath' in params ? params.OutputObjectPath : null;
|
|
16362
16658
|
|
|
16363
16659
|
}
|
|
16364
16660
|
}
|
|
@@ -16573,6 +16869,96 @@ Note: This field may return·null, indicating that no valid values can be obtain
|
|
|
16573
16869
|
}
|
|
16574
16870
|
}
|
|
16575
16871
|
|
|
16872
|
+
/**
|
|
16873
|
+
* The result of detecting sensitive information in live streaming videos.
|
|
16874
|
+
* @class
|
|
16875
|
+
*/
|
|
16876
|
+
class LiveStreamAiReviewImagePoliticalResult extends AbstractModel {
|
|
16877
|
+
constructor(){
|
|
16878
|
+
super();
|
|
16879
|
+
|
|
16880
|
+
/**
|
|
16881
|
+
* Start PTS time of a suspected segment in seconds.
|
|
16882
|
+
* @type {number || null}
|
|
16883
|
+
*/
|
|
16884
|
+
this.StartPtsTime = null;
|
|
16885
|
+
|
|
16886
|
+
/**
|
|
16887
|
+
* End PTS time of a suspected segment in seconds.
|
|
16888
|
+
* @type {number || null}
|
|
16889
|
+
*/
|
|
16890
|
+
this.EndPtsTime = null;
|
|
16891
|
+
|
|
16892
|
+
/**
|
|
16893
|
+
* The confidence score for the detected sensitive segments.
|
|
16894
|
+
* @type {number || null}
|
|
16895
|
+
*/
|
|
16896
|
+
this.Confidence = null;
|
|
16897
|
+
|
|
16898
|
+
/**
|
|
16899
|
+
* Suggestion for porn information detection of a suspected segment. Valid values:
|
|
16900
|
+
<li>pass</li>
|
|
16901
|
+
<li>review</li>
|
|
16902
|
+
<li>block</li>
|
|
16903
|
+
* @type {string || null}
|
|
16904
|
+
*/
|
|
16905
|
+
this.Suggestion = null;
|
|
16906
|
+
|
|
16907
|
+
/**
|
|
16908
|
+
* The labels for the detected sensitive information. Valid values:
|
|
16909
|
+
<li>politician</li>
|
|
16910
|
+
<li>violation_photo (banned icons)</li>
|
|
16911
|
+
* @type {string || null}
|
|
16912
|
+
*/
|
|
16913
|
+
this.Label = null;
|
|
16914
|
+
|
|
16915
|
+
/**
|
|
16916
|
+
* The name of a sensitive person or banned icon.
|
|
16917
|
+
* @type {string || null}
|
|
16918
|
+
*/
|
|
16919
|
+
this.Name = null;
|
|
16920
|
+
|
|
16921
|
+
/**
|
|
16922
|
+
* The pixel coordinates of the detected sensitive people or banned icons. The format is [x1, y1, x2, y2], which indicates the coordinates of the top-left and bottom-right corners.
|
|
16923
|
+
* @type {Array.<number> || null}
|
|
16924
|
+
*/
|
|
16925
|
+
this.AreaCoordSet = null;
|
|
16926
|
+
|
|
16927
|
+
/**
|
|
16928
|
+
* URL of a suspected image (which will not be permanently stored
|
|
16929
|
+
and will be deleted after `PicUrlExpireTime`).
|
|
16930
|
+
* @type {string || null}
|
|
16931
|
+
*/
|
|
16932
|
+
this.Url = null;
|
|
16933
|
+
|
|
16934
|
+
/**
|
|
16935
|
+
* Expiration time of a suspected image URL in [ISO date format](https://intl.cloud.tencent.com/document/product/266/11732?from_cn_redirect=1#iso-.E6.97.A5.E6.9C.9F.E6.A0.BC.E5.BC.8F).
|
|
16936
|
+
* @type {string || null}
|
|
16937
|
+
*/
|
|
16938
|
+
this.PicUrlExpireTime = null;
|
|
16939
|
+
|
|
16940
|
+
}
|
|
16941
|
+
|
|
16942
|
+
/**
|
|
16943
|
+
* @private
|
|
16944
|
+
*/
|
|
16945
|
+
deserialize(params) {
|
|
16946
|
+
if (!params) {
|
|
16947
|
+
return;
|
|
16948
|
+
}
|
|
16949
|
+
this.StartPtsTime = 'StartPtsTime' in params ? params.StartPtsTime : null;
|
|
16950
|
+
this.EndPtsTime = 'EndPtsTime' in params ? params.EndPtsTime : null;
|
|
16951
|
+
this.Confidence = 'Confidence' in params ? params.Confidence : null;
|
|
16952
|
+
this.Suggestion = 'Suggestion' in params ? params.Suggestion : null;
|
|
16953
|
+
this.Label = 'Label' in params ? params.Label : null;
|
|
16954
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
16955
|
+
this.AreaCoordSet = 'AreaCoordSet' in params ? params.AreaCoordSet : null;
|
|
16956
|
+
this.Url = 'Url' in params ? params.Url : null;
|
|
16957
|
+
this.PicUrlExpireTime = 'PicUrlExpireTime' in params ? params.PicUrlExpireTime : null;
|
|
16958
|
+
|
|
16959
|
+
}
|
|
16960
|
+
}
|
|
16961
|
+
|
|
16576
16962
|
/**
|
|
16577
16963
|
* Input parameter of image watermark template
|
|
16578
16964
|
* @class
|
|
@@ -16971,8 +17357,8 @@ class ModifyAsrHotwordsRequest extends AbstractModel {
|
|
|
16971
17357
|
/**
|
|
16972
17358
|
* Hotword lexicon ID.
|
|
16973
17359
|
|
|
16974
|
-
Either Name or Content should be specified if the hotword lexicon is a
|
|
16975
|
-
|
|
17360
|
+
Either Name or Content should be specified if the hotword lexicon is a temporary hotword lexicon.
|
|
17361
|
+
Either Name, FileContent, or FileName should be specified if the hotword lexicon is a file-based hotword lexicon.
|
|
16976
17362
|
|
|
16977
17363
|
* @type {string || null}
|
|
16978
17364
|
*/
|
|
@@ -20327,6 +20713,34 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
20327
20713
|
}
|
|
20328
20714
|
}
|
|
20329
20715
|
|
|
20716
|
+
/**
|
|
20717
|
+
* DescribeBatchTaskDetail request structure.
|
|
20718
|
+
* @class
|
|
20719
|
+
*/
|
|
20720
|
+
class DescribeBatchTaskDetailRequest extends AbstractModel {
|
|
20721
|
+
constructor(){
|
|
20722
|
+
super();
|
|
20723
|
+
|
|
20724
|
+
/**
|
|
20725
|
+
* Video processing task ID.
|
|
20726
|
+
* @type {string || null}
|
|
20727
|
+
*/
|
|
20728
|
+
this.TaskId = null;
|
|
20729
|
+
|
|
20730
|
+
}
|
|
20731
|
+
|
|
20732
|
+
/**
|
|
20733
|
+
* @private
|
|
20734
|
+
*/
|
|
20735
|
+
deserialize(params) {
|
|
20736
|
+
if (!params) {
|
|
20737
|
+
return;
|
|
20738
|
+
}
|
|
20739
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
20740
|
+
|
|
20741
|
+
}
|
|
20742
|
+
}
|
|
20743
|
+
|
|
20330
20744
|
/**
|
|
20331
20745
|
* ASR-detected prohibited information in speech
|
|
20332
20746
|
* @class
|
|
@@ -20451,6 +20865,42 @@ class LiveStreamFaceRecognitionResult extends AbstractModel {
|
|
|
20451
20865
|
}
|
|
20452
20866
|
}
|
|
20453
20867
|
|
|
20868
|
+
/**
|
|
20869
|
+
* Result of AI-based live stream audit
|
|
20870
|
+
* @class
|
|
20871
|
+
*/
|
|
20872
|
+
class LiveStreamAiReviewResultInfo extends AbstractModel {
|
|
20873
|
+
constructor(){
|
|
20874
|
+
super();
|
|
20875
|
+
|
|
20876
|
+
/**
|
|
20877
|
+
* List of content audit results.
|
|
20878
|
+
* @type {Array.<LiveStreamAiReviewResultItem> || null}
|
|
20879
|
+
*/
|
|
20880
|
+
this.ResultSet = null;
|
|
20881
|
+
|
|
20882
|
+
}
|
|
20883
|
+
|
|
20884
|
+
/**
|
|
20885
|
+
* @private
|
|
20886
|
+
*/
|
|
20887
|
+
deserialize(params) {
|
|
20888
|
+
if (!params) {
|
|
20889
|
+
return;
|
|
20890
|
+
}
|
|
20891
|
+
|
|
20892
|
+
if (params.ResultSet) {
|
|
20893
|
+
this.ResultSet = new Array();
|
|
20894
|
+
for (let z in params.ResultSet) {
|
|
20895
|
+
let obj = new LiveStreamAiReviewResultItem();
|
|
20896
|
+
obj.deserialize(params.ResultSet[z]);
|
|
20897
|
+
this.ResultSet.push(obj);
|
|
20898
|
+
}
|
|
20899
|
+
}
|
|
20900
|
+
|
|
20901
|
+
}
|
|
20902
|
+
}
|
|
20903
|
+
|
|
20454
20904
|
/**
|
|
20455
20905
|
* DescribeSampleSnapshotTemplates request structure.
|
|
20456
20906
|
* @class
|
|
@@ -20567,6 +21017,64 @@ class DisableWorkflowResponse extends AbstractModel {
|
|
|
20567
21017
|
}
|
|
20568
21018
|
}
|
|
20569
21019
|
|
|
21020
|
+
/**
|
|
21021
|
+
* Result type of the image processing task.
|
|
21022
|
+
* @class
|
|
21023
|
+
*/
|
|
21024
|
+
class ImageProcessTaskResult extends AbstractModel {
|
|
21025
|
+
constructor(){
|
|
21026
|
+
super();
|
|
21027
|
+
|
|
21028
|
+
/**
|
|
21029
|
+
* Task status, including PROCESSING, SUCCESS, and FAIL.
|
|
21030
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
21031
|
+
* @type {string || null}
|
|
21032
|
+
*/
|
|
21033
|
+
this.Status = null;
|
|
21034
|
+
|
|
21035
|
+
/**
|
|
21036
|
+
* Error message.
|
|
21037
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
21038
|
+
* @type {string || null}
|
|
21039
|
+
*/
|
|
21040
|
+
this.Message = null;
|
|
21041
|
+
|
|
21042
|
+
/**
|
|
21043
|
+
* Transcoding task output.
|
|
21044
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
21045
|
+
* @type {ImageProcessTaskOutput || null}
|
|
21046
|
+
*/
|
|
21047
|
+
this.Output = null;
|
|
21048
|
+
|
|
21049
|
+
/**
|
|
21050
|
+
* Transcoding progress, with a value range of [0-100].
|
|
21051
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
21052
|
+
* @type {number || null}
|
|
21053
|
+
*/
|
|
21054
|
+
this.Progress = null;
|
|
21055
|
+
|
|
21056
|
+
}
|
|
21057
|
+
|
|
21058
|
+
/**
|
|
21059
|
+
* @private
|
|
21060
|
+
*/
|
|
21061
|
+
deserialize(params) {
|
|
21062
|
+
if (!params) {
|
|
21063
|
+
return;
|
|
21064
|
+
}
|
|
21065
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
21066
|
+
this.Message = 'Message' in params ? params.Message : null;
|
|
21067
|
+
|
|
21068
|
+
if (params.Output) {
|
|
21069
|
+
let obj = new ImageProcessTaskOutput();
|
|
21070
|
+
obj.deserialize(params.Output)
|
|
21071
|
+
this.Output = obj;
|
|
21072
|
+
}
|
|
21073
|
+
this.Progress = 'Progress' in params ? params.Progress : null;
|
|
21074
|
+
|
|
21075
|
+
}
|
|
21076
|
+
}
|
|
21077
|
+
|
|
20570
21078
|
/**
|
|
20571
21079
|
* Result type of intelligent categorization task
|
|
20572
21080
|
* @class
|
|
@@ -22556,19 +23064,97 @@ class CreateAIRecognitionTemplateRequest extends AbstractModel {
|
|
|
22556
23064
|
}
|
|
22557
23065
|
|
|
22558
23066
|
/**
|
|
22559
|
-
*
|
|
23067
|
+
* DescribeBatchTaskDetail response structure.
|
|
22560
23068
|
* @class
|
|
22561
23069
|
*/
|
|
22562
|
-
class
|
|
23070
|
+
class DescribeBatchTaskDetailResponse extends AbstractModel {
|
|
22563
23071
|
constructor(){
|
|
22564
23072
|
super();
|
|
22565
23073
|
|
|
22566
23074
|
/**
|
|
22567
|
-
*
|
|
23075
|
+
* Task type. Currently, the valid values include:
|
|
23076
|
+
<Li>BatchTask: batch processing task for video workflows.</li>.
|
|
23077
|
+
* @type {string || null}
|
|
23078
|
+
*/
|
|
23079
|
+
this.TaskType = null;
|
|
23080
|
+
|
|
23081
|
+
/**
|
|
23082
|
+
* Task status. Valid values:
|
|
23083
|
+
<Li>WAITING: waiting.</li>
|
|
23084
|
+
<Li>PROCESSING: processing.</li>
|
|
23085
|
+
<li>FINISH: completed.</li>
|
|
23086
|
+
* @type {string || null}
|
|
23087
|
+
*/
|
|
23088
|
+
this.Status = null;
|
|
23089
|
+
|
|
23090
|
+
/**
|
|
23091
|
+
* Task creation time in [ISO datetime format](https://intl.cloud.tencent.com/document/product/862/37710?from_cn_redirect=1#52).
|
|
23092
|
+
* @type {string || null}
|
|
23093
|
+
*/
|
|
23094
|
+
this.CreateTime = null;
|
|
23095
|
+
|
|
23096
|
+
/**
|
|
23097
|
+
* Task execution start time in [ISO datetime format](https://intl.cloud.tencent.com/document/product/862/37710?from_cn_redirect=1#52).
|
|
23098
|
+
* @type {string || null}
|
|
23099
|
+
*/
|
|
23100
|
+
this.BeginProcessTime = null;
|
|
23101
|
+
|
|
23102
|
+
/**
|
|
23103
|
+
* Task execution completion time in [ISO datetime format](https://intl.cloud.tencent.com/document/product/862/37710?from_cn_redirect=1#52).
|
|
23104
|
+
* @type {string || null}
|
|
23105
|
+
*/
|
|
23106
|
+
this.FinishTime = null;
|
|
23107
|
+
|
|
23108
|
+
/**
|
|
23109
|
+
* Media processing task ID.
|
|
22568
23110
|
* @type {string || null}
|
|
22569
23111
|
*/
|
|
22570
23112
|
this.TaskId = null;
|
|
22571
23113
|
|
|
23114
|
+
/**
|
|
23115
|
+
* Video processing task information. This field has a value only when TaskType is BatchTask.
|
|
23116
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
23117
|
+
* @type {BatchSubTaskResult || null}
|
|
23118
|
+
*/
|
|
23119
|
+
this.BatchTaskResult = null;
|
|
23120
|
+
|
|
23121
|
+
/**
|
|
23122
|
+
* Event notification information of the task.
|
|
23123
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
23124
|
+
* @type {TaskNotifyConfig || null}
|
|
23125
|
+
*/
|
|
23126
|
+
this.TaskNotifyConfig = null;
|
|
23127
|
+
|
|
23128
|
+
/**
|
|
23129
|
+
* Priority of the task flow, with a value range of [-10, 10].
|
|
23130
|
+
* @type {number || null}
|
|
23131
|
+
*/
|
|
23132
|
+
this.TasksPriority = null;
|
|
23133
|
+
|
|
23134
|
+
/**
|
|
23135
|
+
* An identifier for deduplication. If there has been a request with the same identifier within the past seven days, an error will be returned for the current request. The maximum length is 50 characters. Leaving it blank or using a null string indicates no deduplication is required.
|
|
23136
|
+
* @type {string || null}
|
|
23137
|
+
*/
|
|
23138
|
+
this.SessionId = null;
|
|
23139
|
+
|
|
23140
|
+
/**
|
|
23141
|
+
* Source context, which is used to pass through user request information. The callback for task flow status changes will return the value of this field. The maximum length is 1,000 characters.
|
|
23142
|
+
* @type {string || null}
|
|
23143
|
+
*/
|
|
23144
|
+
this.SessionContext = null;
|
|
23145
|
+
|
|
23146
|
+
/**
|
|
23147
|
+
* Additional information field, only used in specific scenarios.
|
|
23148
|
+
* @type {string || null}
|
|
23149
|
+
*/
|
|
23150
|
+
this.ExtInfo = null;
|
|
23151
|
+
|
|
23152
|
+
/**
|
|
23153
|
+
* 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.
|
|
23154
|
+
* @type {string || null}
|
|
23155
|
+
*/
|
|
23156
|
+
this.RequestId = null;
|
|
23157
|
+
|
|
22572
23158
|
}
|
|
22573
23159
|
|
|
22574
23160
|
/**
|
|
@@ -22578,8 +23164,30 @@ class DescribeTaskDetailRequest extends AbstractModel {
|
|
|
22578
23164
|
if (!params) {
|
|
22579
23165
|
return;
|
|
22580
23166
|
}
|
|
23167
|
+
this.TaskType = 'TaskType' in params ? params.TaskType : null;
|
|
23168
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
23169
|
+
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
23170
|
+
this.BeginProcessTime = 'BeginProcessTime' in params ? params.BeginProcessTime : null;
|
|
23171
|
+
this.FinishTime = 'FinishTime' in params ? params.FinishTime : null;
|
|
22581
23172
|
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
22582
23173
|
|
|
23174
|
+
if (params.BatchTaskResult) {
|
|
23175
|
+
let obj = new BatchSubTaskResult();
|
|
23176
|
+
obj.deserialize(params.BatchTaskResult)
|
|
23177
|
+
this.BatchTaskResult = obj;
|
|
23178
|
+
}
|
|
23179
|
+
|
|
23180
|
+
if (params.TaskNotifyConfig) {
|
|
23181
|
+
let obj = new TaskNotifyConfig();
|
|
23182
|
+
obj.deserialize(params.TaskNotifyConfig)
|
|
23183
|
+
this.TaskNotifyConfig = obj;
|
|
23184
|
+
}
|
|
23185
|
+
this.TasksPriority = 'TasksPriority' in params ? params.TasksPriority : null;
|
|
23186
|
+
this.SessionId = 'SessionId' in params ? params.SessionId : null;
|
|
23187
|
+
this.SessionContext = 'SessionContext' in params ? params.SessionContext : null;
|
|
23188
|
+
this.ExtInfo = 'ExtInfo' in params ? params.ExtInfo : null;
|
|
23189
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
23190
|
+
|
|
22583
23191
|
}
|
|
22584
23192
|
}
|
|
22585
23193
|
|
|
@@ -23050,6 +23658,78 @@ Default value: open.
|
|
|
23050
23658
|
}
|
|
23051
23659
|
}
|
|
23052
23660
|
|
|
23661
|
+
/**
|
|
23662
|
+
* Information of a sampled screenshot
|
|
23663
|
+
* @class
|
|
23664
|
+
*/
|
|
23665
|
+
class MediaSampleSnapshotItem extends AbstractModel {
|
|
23666
|
+
constructor(){
|
|
23667
|
+
super();
|
|
23668
|
+
|
|
23669
|
+
/**
|
|
23670
|
+
* Sampled screenshot specification ID. For more information, please see [Sampled Screencapturing Parameter Template](https://intl.cloud.tencent.com/document/product/266/33480?from_cn_redirect=1#.E9.87.87.E6.A0.B7.E6.88.AA.E5.9B.BE.E6.A8.A1.E6.9D.BF).
|
|
23671
|
+
* @type {number || null}
|
|
23672
|
+
*/
|
|
23673
|
+
this.Definition = null;
|
|
23674
|
+
|
|
23675
|
+
/**
|
|
23676
|
+
* Sample type. Valid values:
|
|
23677
|
+
<li>Percent: Samples at the specified percentage interval.</li>
|
|
23678
|
+
<li>Time: Samples at the specified time interval.</li>
|
|
23679
|
+
* @type {string || null}
|
|
23680
|
+
*/
|
|
23681
|
+
this.SampleType = null;
|
|
23682
|
+
|
|
23683
|
+
/**
|
|
23684
|
+
* Sampling interval
|
|
23685
|
+
<li>If `SampleType` is `Percent`, this value means taking a screenshot at an interval of the specified percentage.</li>
|
|
23686
|
+
<li>If `SampleType` is `Time`, this value means taking a screenshot at an interval of the specified time (in seconds). The first screenshot is always the first video frame.</li>
|
|
23687
|
+
* @type {number || null}
|
|
23688
|
+
*/
|
|
23689
|
+
this.Interval = null;
|
|
23690
|
+
|
|
23691
|
+
/**
|
|
23692
|
+
* Storage location of a generated screenshot file.
|
|
23693
|
+
* @type {TaskOutputStorage || null}
|
|
23694
|
+
*/
|
|
23695
|
+
this.Storage = null;
|
|
23696
|
+
|
|
23697
|
+
/**
|
|
23698
|
+
* List of paths to generated screenshots.
|
|
23699
|
+
* @type {Array.<string> || null}
|
|
23700
|
+
*/
|
|
23701
|
+
this.ImagePathSet = null;
|
|
23702
|
+
|
|
23703
|
+
/**
|
|
23704
|
+
* List of watermarking template IDs if the screenshots are watermarked.
|
|
23705
|
+
* @type {Array.<number> || null}
|
|
23706
|
+
*/
|
|
23707
|
+
this.WaterMarkDefinition = null;
|
|
23708
|
+
|
|
23709
|
+
}
|
|
23710
|
+
|
|
23711
|
+
/**
|
|
23712
|
+
* @private
|
|
23713
|
+
*/
|
|
23714
|
+
deserialize(params) {
|
|
23715
|
+
if (!params) {
|
|
23716
|
+
return;
|
|
23717
|
+
}
|
|
23718
|
+
this.Definition = 'Definition' in params ? params.Definition : null;
|
|
23719
|
+
this.SampleType = 'SampleType' in params ? params.SampleType : null;
|
|
23720
|
+
this.Interval = 'Interval' in params ? params.Interval : null;
|
|
23721
|
+
|
|
23722
|
+
if (params.Storage) {
|
|
23723
|
+
let obj = new TaskOutputStorage();
|
|
23724
|
+
obj.deserialize(params.Storage)
|
|
23725
|
+
this.Storage = obj;
|
|
23726
|
+
}
|
|
23727
|
+
this.ImagePathSet = 'ImagePathSet' in params ? params.ImagePathSet : null;
|
|
23728
|
+
this.WaterMarkDefinition = 'WaterMarkDefinition' in params ? params.WaterMarkDefinition : null;
|
|
23729
|
+
|
|
23730
|
+
}
|
|
23731
|
+
}
|
|
23732
|
+
|
|
23053
23733
|
/**
|
|
23054
23734
|
* Text recognition segment.
|
|
23055
23735
|
* @class
|
|
@@ -23369,6 +24049,20 @@ class ImageEnhanceConfig extends AbstractModel {
|
|
|
23369
24049
|
*/
|
|
23370
24050
|
this.SuperResolution = null;
|
|
23371
24051
|
|
|
24052
|
+
/**
|
|
24053
|
+
* Denoising configuration.
|
|
24054
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
24055
|
+
* @type {ImageDenoiseConfig || null}
|
|
24056
|
+
*/
|
|
24057
|
+
this.Denoise = null;
|
|
24058
|
+
|
|
24059
|
+
/**
|
|
24060
|
+
* Comprehensive enhancement configuration.
|
|
24061
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
24062
|
+
* @type {ImageQualityEnhanceConfig || null}
|
|
24063
|
+
*/
|
|
24064
|
+
this.ImageQualityEnhance = null;
|
|
24065
|
+
|
|
23372
24066
|
/**
|
|
23373
24067
|
* Color enhancement configuration.
|
|
23374
24068
|
|
|
@@ -23390,6 +24084,13 @@ class ImageEnhanceConfig extends AbstractModel {
|
|
|
23390
24084
|
*/
|
|
23391
24085
|
this.FaceEnhance = null;
|
|
23392
24086
|
|
|
24087
|
+
/**
|
|
24088
|
+
* Low-light enhancement configuration.
|
|
24089
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
24090
|
+
* @type {LowLightEnhanceConfig || null}
|
|
24091
|
+
*/
|
|
24092
|
+
this.LowLightEnhance = null;
|
|
24093
|
+
|
|
23393
24094
|
}
|
|
23394
24095
|
|
|
23395
24096
|
/**
|
|
@@ -23406,6 +24107,18 @@ class ImageEnhanceConfig extends AbstractModel {
|
|
|
23406
24107
|
this.SuperResolution = obj;
|
|
23407
24108
|
}
|
|
23408
24109
|
|
|
24110
|
+
if (params.Denoise) {
|
|
24111
|
+
let obj = new ImageDenoiseConfig();
|
|
24112
|
+
obj.deserialize(params.Denoise)
|
|
24113
|
+
this.Denoise = obj;
|
|
24114
|
+
}
|
|
24115
|
+
|
|
24116
|
+
if (params.ImageQualityEnhance) {
|
|
24117
|
+
let obj = new ImageQualityEnhanceConfig();
|
|
24118
|
+
obj.deserialize(params.ImageQualityEnhance)
|
|
24119
|
+
this.ImageQualityEnhance = obj;
|
|
24120
|
+
}
|
|
24121
|
+
|
|
23409
24122
|
if (params.ColorEnhance) {
|
|
23410
24123
|
let obj = new ColorEnhanceConfig();
|
|
23411
24124
|
obj.deserialize(params.ColorEnhance)
|
|
@@ -23424,6 +24137,12 @@ class ImageEnhanceConfig extends AbstractModel {
|
|
|
23424
24137
|
this.FaceEnhance = obj;
|
|
23425
24138
|
}
|
|
23426
24139
|
|
|
24140
|
+
if (params.LowLightEnhance) {
|
|
24141
|
+
let obj = new LowLightEnhanceConfig();
|
|
24142
|
+
obj.deserialize(params.LowLightEnhance)
|
|
24143
|
+
this.LowLightEnhance = obj;
|
|
24144
|
+
}
|
|
24145
|
+
|
|
23427
24146
|
}
|
|
23428
24147
|
}
|
|
23429
24148
|
|
|
@@ -23800,7 +24519,7 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
23800
24519
|
this.Switch = null;
|
|
23801
24520
|
|
|
23802
24521
|
/**
|
|
23803
|
-
* Multiple box selection areas to be erased
|
|
24522
|
+
* Multiple box selection areas that need to be erased, with a maximum of 16 areas available.
|
|
23804
24523
|
Note: This field may return null, indicating that no valid value can be obtained.
|
|
23805
24524
|
|
|
23806
24525
|
Note: This field may return null, indicating that no valid value can be obtained.
|
|
@@ -25177,18 +25896,67 @@ class DeleteImageSpriteTemplateRequest extends AbstractModel {
|
|
|
25177
25896
|
}
|
|
25178
25897
|
|
|
25179
25898
|
/**
|
|
25180
|
-
*
|
|
25899
|
+
* The result of a live scheme's live recording task.
|
|
25181
25900
|
* @class
|
|
25182
25901
|
*/
|
|
25183
|
-
class
|
|
25902
|
+
class LiveScheduleLiveRecordTaskResult extends AbstractModel {
|
|
25184
25903
|
constructor(){
|
|
25185
25904
|
super();
|
|
25186
25905
|
|
|
25187
25906
|
/**
|
|
25188
|
-
*
|
|
25907
|
+
* The task status. Valid values: `PROCESSING`, `SUCCESS`, `FAIL`.
|
|
25908
|
+
* @type {string || null}
|
|
25909
|
+
*/
|
|
25910
|
+
this.Status = null;
|
|
25911
|
+
|
|
25912
|
+
/**
|
|
25913
|
+
* The error code. An empty string indicates the task is successful; any other value indicates the task has failed. For details, see [Error Codes](https://www.tencentcloud.com/document/product/1041/40249).
|
|
25914
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
25915
|
+
* @type {string || null}
|
|
25916
|
+
*/
|
|
25917
|
+
this.ErrCodeExt = null;
|
|
25918
|
+
|
|
25919
|
+
/**
|
|
25920
|
+
* The error code. `0` indicates the task is successful; other values indicate the task has failed. This parameter is not recommended. Please use `ErrCodeExt` instead.
|
|
25921
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
25189
25922
|
* @type {number || null}
|
|
25190
25923
|
*/
|
|
25191
|
-
this.
|
|
25924
|
+
this.ErrCode = null;
|
|
25925
|
+
|
|
25926
|
+
/**
|
|
25927
|
+
* The error message.
|
|
25928
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
25929
|
+
* @type {string || null}
|
|
25930
|
+
*/
|
|
25931
|
+
this.Message = null;
|
|
25932
|
+
|
|
25933
|
+
/**
|
|
25934
|
+
* The input of a live recording task.
|
|
25935
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
25936
|
+
* @type {LiveRecordTaskInput || null}
|
|
25937
|
+
*/
|
|
25938
|
+
this.Input = null;
|
|
25939
|
+
|
|
25940
|
+
/**
|
|
25941
|
+
* The output of a live recording task.
|
|
25942
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
25943
|
+
* @type {LiveRecordResult || null}
|
|
25944
|
+
*/
|
|
25945
|
+
this.Output = null;
|
|
25946
|
+
|
|
25947
|
+
/**
|
|
25948
|
+
* The time when the task was started, in [ISO date format](https://intl.cloud.tencent.com/document/product/862/37710?from_cn_redirect=1#52).
|
|
25949
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
25950
|
+
* @type {string || null}
|
|
25951
|
+
*/
|
|
25952
|
+
this.BeginProcessTime = null;
|
|
25953
|
+
|
|
25954
|
+
/**
|
|
25955
|
+
* The time when the task was completed, in [ISO date format](https://intl.cloud.tencent.com/document/product/862/37710?from_cn_redirect=1#52).
|
|
25956
|
+
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
25957
|
+
* @type {string || null}
|
|
25958
|
+
*/
|
|
25959
|
+
this.FinishTime = null;
|
|
25192
25960
|
|
|
25193
25961
|
}
|
|
25194
25962
|
|
|
@@ -25199,7 +25967,24 @@ class AiAnalysisTaskCoverInput extends AbstractModel {
|
|
|
25199
25967
|
if (!params) {
|
|
25200
25968
|
return;
|
|
25201
25969
|
}
|
|
25202
|
-
this.
|
|
25970
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
25971
|
+
this.ErrCodeExt = 'ErrCodeExt' in params ? params.ErrCodeExt : null;
|
|
25972
|
+
this.ErrCode = 'ErrCode' in params ? params.ErrCode : null;
|
|
25973
|
+
this.Message = 'Message' in params ? params.Message : null;
|
|
25974
|
+
|
|
25975
|
+
if (params.Input) {
|
|
25976
|
+
let obj = new LiveRecordTaskInput();
|
|
25977
|
+
obj.deserialize(params.Input)
|
|
25978
|
+
this.Input = obj;
|
|
25979
|
+
}
|
|
25980
|
+
|
|
25981
|
+
if (params.Output) {
|
|
25982
|
+
let obj = new LiveRecordResult();
|
|
25983
|
+
obj.deserialize(params.Output)
|
|
25984
|
+
this.Output = obj;
|
|
25985
|
+
}
|
|
25986
|
+
this.BeginProcessTime = 'BeginProcessTime' in params ? params.BeginProcessTime : null;
|
|
25987
|
+
this.FinishTime = 'FinishTime' in params ? params.FinishTime : null;
|
|
25203
25988
|
|
|
25204
25989
|
}
|
|
25205
25990
|
}
|
|
@@ -25897,8 +26682,8 @@ class ImageAreaBoxInfo extends AbstractModel {
|
|
|
25897
26682
|
|
|
25898
26683
|
/**
|
|
25899
26684
|
* Type of the box selection area in the image. Valid values:
|
|
25900
|
-
<li>logo: icon
|
|
25901
|
-
<li>
|
|
26685
|
+
<li>logo: icon.</li>
|
|
26686
|
+
<li>Text: text.</li>
|
|
25902
26687
|
Default value: logo.
|
|
25903
26688
|
Note: This field may return null, indicating that no valid value can be obtained.
|
|
25904
26689
|
* @type {string || null}
|
|
@@ -25914,7 +26699,10 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
25914
26699
|
this.AreaCoordSet = null;
|
|
25915
26700
|
|
|
25916
26701
|
/**
|
|
25917
|
-
*
|
|
26702
|
+
* Coordinates of the box selection area in the image. Format: [x1, y1, x2, y2], which indicates the coordinates of the top left corner and the bottom right corner. This parameter takes effect when AreaCoordSet is not specified.
|
|
26703
|
+
- [0.1, 0.1, 0.3, 0.3]: Indicates the ratio (values are less than 1).
|
|
26704
|
+
-[50, 50, 350, 280]: Indicates the pixel (values are greater than or equal to 1).
|
|
26705
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
25918
26706
|
* @type {Array.<number> || null}
|
|
25919
26707
|
*/
|
|
25920
26708
|
this.BoundingBox = null;
|
|
@@ -27590,7 +28378,7 @@ yue: Cantonese
|
|
|
27590
28378
|
vi: Vietnamese
|
|
27591
28379
|
ms: Malay
|
|
27592
28380
|
id: Indonesian
|
|
27593
|
-
|
|
28381
|
+
fil: Filipino
|
|
27594
28382
|
th: Thai
|
|
27595
28383
|
pt: Portuguese
|
|
27596
28384
|
tr: Turkish
|
|
@@ -28488,8 +29276,8 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
28488
29276
|
|
|
28489
29277
|
/**
|
|
28490
29278
|
* Current hotword lexicon status. The value indicates the number of smart subtitle templates bound to this hotword lexicon.
|
|
28491
|
-
If the Status
|
|
28492
|
-
If the Status
|
|
29279
|
+
If the value of Status is 0, it indicates that the hotword lexicon is not referenced by any smart subtitle template and that it can be deleted.
|
|
29280
|
+
If the value of Status is not 0, it indicates that the hotword lexicon cannot be deleted.
|
|
28493
29281
|
Note: This field may return null, indicating that no valid value can be obtained.
|
|
28494
29282
|
* @type {number || null}
|
|
28495
29283
|
*/
|
|
@@ -29425,52 +30213,58 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
29425
30213
|
}
|
|
29426
30214
|
|
|
29427
30215
|
/**
|
|
29428
|
-
*
|
|
30216
|
+
* DescribeImageTaskDetail response structure.
|
|
29429
30217
|
* @class
|
|
29430
30218
|
*/
|
|
29431
|
-
class
|
|
30219
|
+
class DescribeImageTaskDetailResponse extends AbstractModel {
|
|
29432
30220
|
constructor(){
|
|
29433
30221
|
super();
|
|
29434
30222
|
|
|
29435
30223
|
/**
|
|
29436
|
-
*
|
|
29437
|
-
|
|
30224
|
+
* Task type. Currently, the valid values include:
|
|
30225
|
+
<Li>WorkflowTask: workflow processing task.</li>
|
|
30226
|
+
|
|
30227
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
30228
|
+
* @type {string || null}
|
|
29438
30229
|
*/
|
|
29439
|
-
this.
|
|
30230
|
+
this.TaskType = null;
|
|
29440
30231
|
|
|
29441
30232
|
/**
|
|
29442
|
-
*
|
|
29443
|
-
<
|
|
29444
|
-
<
|
|
30233
|
+
* Task status. Valid values:
|
|
30234
|
+
<Li>WAITING: waiting.</li>
|
|
30235
|
+
<Li>PROCESSING: processing.</li>
|
|
30236
|
+
<li>FINISH: completed.</li>
|
|
30237
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
29445
30238
|
* @type {string || null}
|
|
29446
30239
|
*/
|
|
29447
|
-
this.
|
|
30240
|
+
this.Status = null;
|
|
29448
30241
|
|
|
29449
30242
|
/**
|
|
29450
|
-
*
|
|
29451
|
-
|
|
29452
|
-
|
|
29453
|
-
* @type {number || null}
|
|
30243
|
+
* Execution status and results of the image processing task.
|
|
30244
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
30245
|
+
* @type {Array.<ImageProcessTaskResult> || null}
|
|
29454
30246
|
*/
|
|
29455
|
-
this.
|
|
30247
|
+
this.ImageProcessTaskResultSet = null;
|
|
29456
30248
|
|
|
29457
30249
|
/**
|
|
29458
|
-
*
|
|
29459
|
-
|
|
30250
|
+
* Task creation time in [ISO datetime format](https://intl.cloud.tencent.com/document/product/862/37710?from_cn_redirect=1#52).
|
|
30251
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
30252
|
+
* @type {string || null}
|
|
29460
30253
|
*/
|
|
29461
|
-
this.
|
|
30254
|
+
this.CreateTime = null;
|
|
29462
30255
|
|
|
29463
30256
|
/**
|
|
29464
|
-
*
|
|
29465
|
-
|
|
30257
|
+
* Task execution completion time in [ISO datetime format](https://intl.cloud.tencent.com/document/product/862/37710?from_cn_redirect=1#52).
|
|
30258
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
30259
|
+
* @type {string || null}
|
|
29466
30260
|
*/
|
|
29467
|
-
this.
|
|
30261
|
+
this.FinishTime = null;
|
|
29468
30262
|
|
|
29469
30263
|
/**
|
|
29470
|
-
*
|
|
29471
|
-
* @type {
|
|
30264
|
+
* 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.
|
|
30265
|
+
* @type {string || null}
|
|
29472
30266
|
*/
|
|
29473
|
-
this.
|
|
30267
|
+
this.RequestId = null;
|
|
29474
30268
|
|
|
29475
30269
|
}
|
|
29476
30270
|
|
|
@@ -29481,17 +30275,20 @@ class MediaSampleSnapshotItem extends AbstractModel {
|
|
|
29481
30275
|
if (!params) {
|
|
29482
30276
|
return;
|
|
29483
30277
|
}
|
|
29484
|
-
this.
|
|
29485
|
-
this.
|
|
29486
|
-
this.Interval = 'Interval' in params ? params.Interval : null;
|
|
30278
|
+
this.TaskType = 'TaskType' in params ? params.TaskType : null;
|
|
30279
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
29487
30280
|
|
|
29488
|
-
if (params.
|
|
29489
|
-
|
|
29490
|
-
|
|
29491
|
-
|
|
30281
|
+
if (params.ImageProcessTaskResultSet) {
|
|
30282
|
+
this.ImageProcessTaskResultSet = new Array();
|
|
30283
|
+
for (let z in params.ImageProcessTaskResultSet) {
|
|
30284
|
+
let obj = new ImageProcessTaskResult();
|
|
30285
|
+
obj.deserialize(params.ImageProcessTaskResultSet[z]);
|
|
30286
|
+
this.ImageProcessTaskResultSet.push(obj);
|
|
30287
|
+
}
|
|
29492
30288
|
}
|
|
29493
|
-
this.
|
|
29494
|
-
this.
|
|
30289
|
+
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
30290
|
+
this.FinishTime = 'FinishTime' in params ? params.FinishTime : null;
|
|
30291
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
29495
30292
|
|
|
29496
30293
|
}
|
|
29497
30294
|
}
|
|
@@ -29683,6 +30480,48 @@ class AiRecognitionTaskObjectSeqmentItem extends AbstractModel {
|
|
|
29683
30480
|
}
|
|
29684
30481
|
}
|
|
29685
30482
|
|
|
30483
|
+
/**
|
|
30484
|
+
* Image denoising configuration.
|
|
30485
|
+
* @class
|
|
30486
|
+
*/
|
|
30487
|
+
class ImageDenoiseConfig extends AbstractModel {
|
|
30488
|
+
constructor(){
|
|
30489
|
+
super();
|
|
30490
|
+
|
|
30491
|
+
/**
|
|
30492
|
+
* Capability configuration enabling status. Valid values:
|
|
30493
|
+
<li>ON: enabled.</li>
|
|
30494
|
+
<li>OFF: disabled.</li>
|
|
30495
|
+
Default value: ON.
|
|
30496
|
+
* @type {string || null}
|
|
30497
|
+
*/
|
|
30498
|
+
this.Switch = null;
|
|
30499
|
+
|
|
30500
|
+
/**
|
|
30501
|
+
* Type, with valid values including:
|
|
30502
|
+
<li>weak</li>
|
|
30503
|
+
<li>strong</li>
|
|
30504
|
+
Default value: weak.
|
|
30505
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
30506
|
+
* @type {string || null}
|
|
30507
|
+
*/
|
|
30508
|
+
this.Type = null;
|
|
30509
|
+
|
|
30510
|
+
}
|
|
30511
|
+
|
|
30512
|
+
/**
|
|
30513
|
+
* @private
|
|
30514
|
+
*/
|
|
30515
|
+
deserialize(params) {
|
|
30516
|
+
if (!params) {
|
|
30517
|
+
return;
|
|
30518
|
+
}
|
|
30519
|
+
this.Switch = 'Switch' in params ? params.Switch : null;
|
|
30520
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
30521
|
+
|
|
30522
|
+
}
|
|
30523
|
+
}
|
|
30524
|
+
|
|
29686
30525
|
/**
|
|
29687
30526
|
* Image noise removal configuration.
|
|
29688
30527
|
* @class
|
|
@@ -31120,7 +31959,7 @@ yue: Cantonese
|
|
|
31120
31959
|
vi: Vietnamese
|
|
31121
31960
|
ms: Malay
|
|
31122
31961
|
id: Indonesian
|
|
31123
|
-
|
|
31962
|
+
fil: Filipino
|
|
31124
31963
|
th: Thai
|
|
31125
31964
|
pt: Portuguese
|
|
31126
31965
|
tr: Turkish
|
|
@@ -31785,6 +32624,42 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
31785
32624
|
}
|
|
31786
32625
|
}
|
|
31787
32626
|
|
|
32627
|
+
/**
|
|
32628
|
+
* Output of speech keyword recognition.
|
|
32629
|
+
* @class
|
|
32630
|
+
*/
|
|
32631
|
+
class AiRecognitionTaskAsrWordsResultOutput extends AbstractModel {
|
|
32632
|
+
constructor(){
|
|
32633
|
+
super();
|
|
32634
|
+
|
|
32635
|
+
/**
|
|
32636
|
+
* Speech keyword recognition result set.
|
|
32637
|
+
* @type {Array.<AiRecognitionTaskAsrWordsResultItem> || null}
|
|
32638
|
+
*/
|
|
32639
|
+
this.ResultSet = null;
|
|
32640
|
+
|
|
32641
|
+
}
|
|
32642
|
+
|
|
32643
|
+
/**
|
|
32644
|
+
* @private
|
|
32645
|
+
*/
|
|
32646
|
+
deserialize(params) {
|
|
32647
|
+
if (!params) {
|
|
32648
|
+
return;
|
|
32649
|
+
}
|
|
32650
|
+
|
|
32651
|
+
if (params.ResultSet) {
|
|
32652
|
+
this.ResultSet = new Array();
|
|
32653
|
+
for (let z in params.ResultSet) {
|
|
32654
|
+
let obj = new AiRecognitionTaskAsrWordsResultItem();
|
|
32655
|
+
obj.deserialize(params.ResultSet[z]);
|
|
32656
|
+
this.ResultSet.push(obj);
|
|
32657
|
+
}
|
|
32658
|
+
}
|
|
32659
|
+
|
|
32660
|
+
}
|
|
32661
|
+
}
|
|
32662
|
+
|
|
31788
32663
|
/**
|
|
31789
32664
|
* Media quality inspection template details.
|
|
31790
32665
|
* @class
|
|
@@ -32494,67 +33369,18 @@ class AiAnalysisTaskDescriptionInput extends AbstractModel {
|
|
|
32494
33369
|
}
|
|
32495
33370
|
|
|
32496
33371
|
/**
|
|
32497
|
-
*
|
|
33372
|
+
* Input type of intelligent categorization task
|
|
32498
33373
|
* @class
|
|
32499
33374
|
*/
|
|
32500
|
-
class
|
|
33375
|
+
class AiAnalysisTaskCoverInput extends AbstractModel {
|
|
32501
33376
|
constructor(){
|
|
32502
33377
|
super();
|
|
32503
33378
|
|
|
32504
33379
|
/**
|
|
32505
|
-
*
|
|
32506
|
-
* @type {string || null}
|
|
32507
|
-
*/
|
|
32508
|
-
this.Status = null;
|
|
32509
|
-
|
|
32510
|
-
/**
|
|
32511
|
-
* The error code. An empty string indicates the task is successful; any other value indicates the task has failed. For details, see [Error Codes](https://www.tencentcloud.com/document/product/1041/40249).
|
|
32512
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
32513
|
-
* @type {string || null}
|
|
32514
|
-
*/
|
|
32515
|
-
this.ErrCodeExt = null;
|
|
32516
|
-
|
|
32517
|
-
/**
|
|
32518
|
-
* The error code. `0` indicates the task is successful; other values indicate the task has failed. This parameter is not recommended. Please use `ErrCodeExt` instead.
|
|
32519
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
33380
|
+
* Intelligent video cover generating template ID.
|
|
32520
33381
|
* @type {number || null}
|
|
32521
33382
|
*/
|
|
32522
|
-
this.
|
|
32523
|
-
|
|
32524
|
-
/**
|
|
32525
|
-
* The error message.
|
|
32526
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
32527
|
-
* @type {string || null}
|
|
32528
|
-
*/
|
|
32529
|
-
this.Message = null;
|
|
32530
|
-
|
|
32531
|
-
/**
|
|
32532
|
-
* The input of a live recording task.
|
|
32533
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
32534
|
-
* @type {LiveRecordTaskInput || null}
|
|
32535
|
-
*/
|
|
32536
|
-
this.Input = null;
|
|
32537
|
-
|
|
32538
|
-
/**
|
|
32539
|
-
* The output of a live recording task.
|
|
32540
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
32541
|
-
* @type {LiveRecordResult || null}
|
|
32542
|
-
*/
|
|
32543
|
-
this.Output = null;
|
|
32544
|
-
|
|
32545
|
-
/**
|
|
32546
|
-
* The time when the task was started, in [ISO date format](https://intl.cloud.tencent.com/document/product/862/37710?from_cn_redirect=1#52).
|
|
32547
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
32548
|
-
* @type {string || null}
|
|
32549
|
-
*/
|
|
32550
|
-
this.BeginProcessTime = null;
|
|
32551
|
-
|
|
32552
|
-
/**
|
|
32553
|
-
* The time when the task was completed, in [ISO date format](https://intl.cloud.tencent.com/document/product/862/37710?from_cn_redirect=1#52).
|
|
32554
|
-
Note: This field may return·null, indicating that no valid values can be obtained.
|
|
32555
|
-
* @type {string || null}
|
|
32556
|
-
*/
|
|
32557
|
-
this.FinishTime = null;
|
|
33383
|
+
this.Definition = null;
|
|
32558
33384
|
|
|
32559
33385
|
}
|
|
32560
33386
|
|
|
@@ -32565,24 +33391,7 @@ Note: This field may return·null, indicating that no valid values can be obtain
|
|
|
32565
33391
|
if (!params) {
|
|
32566
33392
|
return;
|
|
32567
33393
|
}
|
|
32568
|
-
this.
|
|
32569
|
-
this.ErrCodeExt = 'ErrCodeExt' in params ? params.ErrCodeExt : null;
|
|
32570
|
-
this.ErrCode = 'ErrCode' in params ? params.ErrCode : null;
|
|
32571
|
-
this.Message = 'Message' in params ? params.Message : null;
|
|
32572
|
-
|
|
32573
|
-
if (params.Input) {
|
|
32574
|
-
let obj = new LiveRecordTaskInput();
|
|
32575
|
-
obj.deserialize(params.Input)
|
|
32576
|
-
this.Input = obj;
|
|
32577
|
-
}
|
|
32578
|
-
|
|
32579
|
-
if (params.Output) {
|
|
32580
|
-
let obj = new LiveRecordResult();
|
|
32581
|
-
obj.deserialize(params.Output)
|
|
32582
|
-
this.Output = obj;
|
|
32583
|
-
}
|
|
32584
|
-
this.BeginProcessTime = 'BeginProcessTime' in params ? params.BeginProcessTime : null;
|
|
32585
|
-
this.FinishTime = 'FinishTime' in params ? params.FinishTime : null;
|
|
33394
|
+
this.Definition = 'Definition' in params ? params.Definition : null;
|
|
32586
33395
|
|
|
32587
33396
|
}
|
|
32588
33397
|
}
|
|
@@ -33372,7 +34181,7 @@ module.exports = {
|
|
|
33372
34181
|
WorkflowInfo: WorkflowInfo,
|
|
33373
34182
|
CreateTranscodeTemplateRequest: CreateTranscodeTemplateRequest,
|
|
33374
34183
|
ProcessLiveStreamResponse: ProcessLiveStreamResponse,
|
|
33375
|
-
|
|
34184
|
+
LiveStreamAiQualityControlResultInfo: LiveStreamAiQualityControlResultInfo,
|
|
33376
34185
|
MediaAiAnalysisHighlightItem: MediaAiAnalysisHighlightItem,
|
|
33377
34186
|
DeleteLiveRecordTemplateRequest: DeleteLiveRecordTemplateRequest,
|
|
33378
34187
|
DescribeAnimatedGraphicsTemplatesRequest: DescribeAnimatedGraphicsTemplatesRequest,
|
|
@@ -33414,6 +34223,7 @@ module.exports = {
|
|
|
33414
34223
|
VideoEnhanceConfig: VideoEnhanceConfig,
|
|
33415
34224
|
DeleteContentReviewTemplateRequest: DeleteContentReviewTemplateRequest,
|
|
33416
34225
|
AiReviewPoliticalTaskInput: AiReviewPoliticalTaskInput,
|
|
34226
|
+
ModifyContentReviewTemplateResponse: ModifyContentReviewTemplateResponse,
|
|
33417
34227
|
ModifyScheduleRequest: ModifyScheduleRequest,
|
|
33418
34228
|
MediaMetaData: MediaMetaData,
|
|
33419
34229
|
DescribePersonSamplesRequest: DescribePersonSamplesRequest,
|
|
@@ -33472,13 +34282,12 @@ module.exports = {
|
|
|
33472
34282
|
MediaProcessTaskAdaptiveDynamicStreamingResult: MediaProcessTaskAdaptiveDynamicStreamingResult,
|
|
33473
34283
|
OcrWordsConfigureInfoForUpdate: OcrWordsConfigureInfoForUpdate,
|
|
33474
34284
|
WatermarkTemplate: WatermarkTemplate,
|
|
33475
|
-
ActivityPara: ActivityPara,
|
|
33476
34285
|
TextWatermarkTemplateInput: TextWatermarkTemplateInput,
|
|
33477
34286
|
ModifyAIAnalysisTemplateResponse: ModifyAIAnalysisTemplateResponse,
|
|
33478
34287
|
DescribeWordSamplesResponse: DescribeWordSamplesResponse,
|
|
33479
34288
|
DescribeAIRecognitionTemplatesResponse: DescribeAIRecognitionTemplatesResponse,
|
|
33480
34289
|
ScratchRepairConfig: ScratchRepairConfig,
|
|
33481
|
-
|
|
34290
|
+
DescribeImageTaskDetailRequest: DescribeImageTaskDetailRequest,
|
|
33482
34291
|
EditMediaResponse: EditMediaResponse,
|
|
33483
34292
|
PoliticalOcrReviewTemplateInfoForUpdate: PoliticalOcrReviewTemplateInfoForUpdate,
|
|
33484
34293
|
AudioDenoiseConfig: AudioDenoiseConfig,
|
|
@@ -33487,6 +34296,7 @@ module.exports = {
|
|
|
33487
34296
|
LiveRecordTemplate: LiveRecordTemplate,
|
|
33488
34297
|
DescribeSnapshotByTimeOffsetTemplatesRequest: DescribeSnapshotByTimeOffsetTemplatesRequest,
|
|
33489
34298
|
ScheduleRecognitionTaskResult: ScheduleRecognitionTaskResult,
|
|
34299
|
+
ImageProcessTaskOutput: ImageProcessTaskOutput,
|
|
33490
34300
|
ComposeTargetInfo: ComposeTargetInfo,
|
|
33491
34301
|
MediaProcessTaskInput: MediaProcessTaskInput,
|
|
33492
34302
|
DisableScheduleRequest: DisableScheduleRequest,
|
|
@@ -33498,7 +34308,7 @@ module.exports = {
|
|
|
33498
34308
|
ClassificationConfigureInfoForUpdate: ClassificationConfigureInfoForUpdate,
|
|
33499
34309
|
CreateScheduleRequest: CreateScheduleRequest,
|
|
33500
34310
|
ParseNotificationRequest: ParseNotificationRequest,
|
|
33501
|
-
|
|
34311
|
+
ImageEraseConfig: ImageEraseConfig,
|
|
33502
34312
|
CreateWordSamplesRequest: CreateWordSamplesRequest,
|
|
33503
34313
|
PoliticalAsrReviewTemplateInfoForUpdate: PoliticalAsrReviewTemplateInfoForUpdate,
|
|
33504
34314
|
AiSampleFaceOperation: AiSampleFaceOperation,
|
|
@@ -33507,6 +34317,7 @@ module.exports = {
|
|
|
33507
34317
|
AiRecognitionTaskOcrWordsResult: AiRecognitionTaskOcrWordsResult,
|
|
33508
34318
|
PornAsrReviewTemplateInfo: PornAsrReviewTemplateInfo,
|
|
33509
34319
|
ComposeVideoStream: ComposeVideoStream,
|
|
34320
|
+
DescribeTaskDetailRequest: DescribeTaskDetailRequest,
|
|
33510
34321
|
ProhibitedAsrReviewTemplateInfoForUpdate: ProhibitedAsrReviewTemplateInfoForUpdate,
|
|
33511
34322
|
DisableScheduleResponse: DisableScheduleResponse,
|
|
33512
34323
|
ModifyAnimatedGraphicsTemplateResponse: ModifyAnimatedGraphicsTemplateResponse,
|
|
@@ -33531,6 +34342,7 @@ module.exports = {
|
|
|
33531
34342
|
DescribeAdaptiveDynamicStreamingTemplatesRequest: DescribeAdaptiveDynamicStreamingTemplatesRequest,
|
|
33532
34343
|
ImageWatermarkInput: ImageWatermarkInput,
|
|
33533
34344
|
TrackInfo: TrackInfo,
|
|
34345
|
+
BatchProcessMediaResponse: BatchProcessMediaResponse,
|
|
33534
34346
|
LiveRecordResult: LiveRecordResult,
|
|
33535
34347
|
AsrFullTextConfigureInfoForUpdate: AsrFullTextConfigureInfoForUpdate,
|
|
33536
34348
|
LiveRecordFile: LiveRecordFile,
|
|
@@ -33541,7 +34353,7 @@ module.exports = {
|
|
|
33541
34353
|
ComposeEmptyItem: ComposeEmptyItem,
|
|
33542
34354
|
TagConfigureInfoForUpdate: TagConfigureInfoForUpdate,
|
|
33543
34355
|
DeleteWordSamplesRequest: DeleteWordSamplesRequest,
|
|
33544
|
-
|
|
34356
|
+
DescribeLiveRecordTemplatesResponse: DescribeLiveRecordTemplatesResponse,
|
|
33545
34357
|
EnableScheduleRequest: EnableScheduleRequest,
|
|
33546
34358
|
RawTranscodeParameter: RawTranscodeParameter,
|
|
33547
34359
|
LiveStreamTaskNotifyConfig: LiveStreamTaskNotifyConfig,
|
|
@@ -33549,7 +34361,7 @@ module.exports = {
|
|
|
33549
34361
|
ComposeSubtitleStyle: ComposeSubtitleStyle,
|
|
33550
34362
|
PornOcrReviewTemplateInfoForUpdate: PornOcrReviewTemplateInfoForUpdate,
|
|
33551
34363
|
AiReviewTaskPornOcrResult: AiReviewTaskPornOcrResult,
|
|
33552
|
-
|
|
34364
|
+
BatchProcessMediaRequest: BatchProcessMediaRequest,
|
|
33553
34365
|
DescribeWatermarkTemplatesRequest: DescribeWatermarkTemplatesRequest,
|
|
33554
34366
|
TaskOutputStorage: TaskOutputStorage,
|
|
33555
34367
|
ModifyAIAnalysisTemplateRequest: ModifyAIAnalysisTemplateRequest,
|
|
@@ -33568,6 +34380,7 @@ module.exports = {
|
|
|
33568
34380
|
AiRecognitionTaskFaceSegmentItem: AiRecognitionTaskFaceSegmentItem,
|
|
33569
34381
|
AiAnalysisTaskTagResult: AiAnalysisTaskTagResult,
|
|
33570
34382
|
AiAnalysisTaskDelLogoInput: AiAnalysisTaskDelLogoInput,
|
|
34383
|
+
SmartSubtitleTaskBatchOutput: SmartSubtitleTaskBatchOutput,
|
|
33571
34384
|
AiAnalysisTaskTagOutput: AiAnalysisTaskTagOutput,
|
|
33572
34385
|
CreateAsrHotwordsResponse: CreateAsrHotwordsResponse,
|
|
33573
34386
|
AiAnalysisTaskHighlightOutput: AiAnalysisTaskHighlightOutput,
|
|
@@ -33586,7 +34399,7 @@ module.exports = {
|
|
|
33586
34399
|
AiAnalysisTaskSegmentResult: AiAnalysisTaskSegmentResult,
|
|
33587
34400
|
RawSmartSubtitleParameter: RawSmartSubtitleParameter,
|
|
33588
34401
|
AiRecognitionTaskAsrFullTextResultInput: AiRecognitionTaskAsrFullTextResultInput,
|
|
33589
|
-
|
|
34402
|
+
BatchSubTaskResult: BatchSubTaskResult,
|
|
33590
34403
|
LiveStreamOcrWordsRecognitionResult: LiveStreamOcrWordsRecognitionResult,
|
|
33591
34404
|
LiveStreamProcessErrorInfo: LiveStreamProcessErrorInfo,
|
|
33592
34405
|
ModifyAdaptiveDynamicStreamingTemplateResponse: ModifyAdaptiveDynamicStreamingTemplateResponse,
|
|
@@ -33599,6 +34412,7 @@ module.exports = {
|
|
|
33599
34412
|
AsrWordsConfigureInfo: AsrWordsConfigureInfo,
|
|
33600
34413
|
LiveStreamAsrWordsRecognitionResult: LiveStreamAsrWordsRecognitionResult,
|
|
33601
34414
|
AiSamplePerson: AiSamplePerson,
|
|
34415
|
+
BatchSmartSubtitlesResult: BatchSmartSubtitlesResult,
|
|
33602
34416
|
SimpleAesDrm: SimpleAesDrm,
|
|
33603
34417
|
DescribeWorkflowsResponse: DescribeWorkflowsResponse,
|
|
33604
34418
|
AsrWordsConfigureInfoForUpdate: AsrWordsConfigureInfoForUpdate,
|
|
@@ -33610,7 +34424,7 @@ module.exports = {
|
|
|
33610
34424
|
AnimatedGraphicsTemplate: AnimatedGraphicsTemplate,
|
|
33611
34425
|
WorkflowTrigger: WorkflowTrigger,
|
|
33612
34426
|
LiveStreamAiRecognitionResultInfo: LiveStreamAiRecognitionResultInfo,
|
|
33613
|
-
|
|
34427
|
+
ActivityPara: ActivityPara,
|
|
33614
34428
|
ModifyAsrHotwordsResponse: ModifyAsrHotwordsResponse,
|
|
33615
34429
|
UserDefineAsrTextReviewTemplateInfoForUpdate: UserDefineAsrTextReviewTemplateInfoForUpdate,
|
|
33616
34430
|
ModifyImageSpriteTemplateResponse: ModifyImageSpriteTemplateResponse,
|
|
@@ -33626,10 +34440,11 @@ module.exports = {
|
|
|
33626
34440
|
LiveStreamTagRecognitionResult: LiveStreamTagRecognitionResult,
|
|
33627
34441
|
AnimatedGraphicTaskInput: AnimatedGraphicTaskInput,
|
|
33628
34442
|
MosaicInput: MosaicInput,
|
|
33629
|
-
|
|
34443
|
+
LiveRecordTaskInput: LiveRecordTaskInput,
|
|
33630
34444
|
AIAnalysisTemplateItem: AIAnalysisTemplateItem,
|
|
33631
34445
|
AiRecognitionTaskObjectResultItem: AiRecognitionTaskObjectResultItem,
|
|
33632
34446
|
HeadTailParameter: HeadTailParameter,
|
|
34447
|
+
LiveStreamAiReviewImagePoliticalResult: LiveStreamAiReviewImagePoliticalResult,
|
|
33633
34448
|
RawImageWatermarkInput: RawImageWatermarkInput,
|
|
33634
34449
|
DescribeImageSpriteTemplatesRequest: DescribeImageSpriteTemplatesRequest,
|
|
33635
34450
|
CreateQualityControlTemplateRequest: CreateQualityControlTemplateRequest,
|
|
@@ -33697,11 +34512,14 @@ module.exports = {
|
|
|
33697
34512
|
AiReviewTaskPornResult: AiReviewTaskPornResult,
|
|
33698
34513
|
AiRecognitionTaskObjectResultOutput: AiRecognitionTaskObjectResultOutput,
|
|
33699
34514
|
AiAnalysisTaskDelLogoOutput: AiAnalysisTaskDelLogoOutput,
|
|
34515
|
+
DescribeBatchTaskDetailRequest: DescribeBatchTaskDetailRequest,
|
|
33700
34516
|
AiReviewProhibitedAsrTaskOutput: AiReviewProhibitedAsrTaskOutput,
|
|
33701
34517
|
LiveStreamFaceRecognitionResult: LiveStreamFaceRecognitionResult,
|
|
34518
|
+
LiveStreamAiReviewResultInfo: LiveStreamAiReviewResultInfo,
|
|
33702
34519
|
DescribeSampleSnapshotTemplatesRequest: DescribeSampleSnapshotTemplatesRequest,
|
|
33703
34520
|
CoverConfigureInfoForUpdate: CoverConfigureInfoForUpdate,
|
|
33704
34521
|
DisableWorkflowResponse: DisableWorkflowResponse,
|
|
34522
|
+
ImageProcessTaskResult: ImageProcessTaskResult,
|
|
33705
34523
|
AiAnalysisTaskClassificationResult: AiAnalysisTaskClassificationResult,
|
|
33706
34524
|
DescribeQualityControlTemplatesResponse: DescribeQualityControlTemplatesResponse,
|
|
33707
34525
|
PoliticalImgReviewTemplateInfoForUpdate: PoliticalImgReviewTemplateInfoForUpdate,
|
|
@@ -33731,7 +34549,7 @@ module.exports = {
|
|
|
33731
34549
|
AsrFullTextConfigureInfo: AsrFullTextConfigureInfo,
|
|
33732
34550
|
ArtifactRepairConfig: ArtifactRepairConfig,
|
|
33733
34551
|
CreateAIRecognitionTemplateRequest: CreateAIRecognitionTemplateRequest,
|
|
33734
|
-
|
|
34552
|
+
DescribeBatchTaskDetailResponse: DescribeBatchTaskDetailResponse,
|
|
33735
34553
|
ComposeCanvas: ComposeCanvas,
|
|
33736
34554
|
AiReviewPornTaskOutput: AiReviewPornTaskOutput,
|
|
33737
34555
|
CreateWorkflowResponse: CreateWorkflowResponse,
|
|
@@ -33740,6 +34558,7 @@ module.exports = {
|
|
|
33740
34558
|
PoliticalImgReviewTemplateInfo: PoliticalImgReviewTemplateInfo,
|
|
33741
34559
|
PoliticalConfigureInfo: PoliticalConfigureInfo,
|
|
33742
34560
|
ModifyAnimatedGraphicsTemplateRequest: ModifyAnimatedGraphicsTemplateRequest,
|
|
34561
|
+
MediaSampleSnapshotItem: MediaSampleSnapshotItem,
|
|
33743
34562
|
AiRecognitionTaskOcrWordsSegmentItem: AiRecognitionTaskOcrWordsSegmentItem,
|
|
33744
34563
|
DescribeLiveRecordTemplatesRequest: DescribeLiveRecordTemplatesRequest,
|
|
33745
34564
|
MediaProcessTaskResult: MediaProcessTaskResult,
|
|
@@ -33773,7 +34592,7 @@ module.exports = {
|
|
|
33773
34592
|
DescribeTaskDetailResponse: DescribeTaskDetailResponse,
|
|
33774
34593
|
LiveStreamAiRecognitionResultItem: LiveStreamAiRecognitionResultItem,
|
|
33775
34594
|
DeleteImageSpriteTemplateRequest: DeleteImageSpriteTemplateRequest,
|
|
33776
|
-
|
|
34595
|
+
LiveScheduleLiveRecordTaskResult: LiveScheduleLiveRecordTaskResult,
|
|
33777
34596
|
AiSampleFailFaceInfo: AiSampleFailFaceInfo,
|
|
33778
34597
|
UserDefineFaceReviewTemplateInfoForUpdate: UserDefineFaceReviewTemplateInfoForUpdate,
|
|
33779
34598
|
SharpEnhanceConfig: SharpEnhanceConfig,
|
|
@@ -33844,11 +34663,12 @@ module.exports = {
|
|
|
33844
34663
|
ModifyPersonSampleResponse: ModifyPersonSampleResponse,
|
|
33845
34664
|
DeleteTranscodeTemplateResponse: DeleteTranscodeTemplateResponse,
|
|
33846
34665
|
LiveStreamObjectRecognitionResult: LiveStreamObjectRecognitionResult,
|
|
33847
|
-
|
|
34666
|
+
DescribeImageTaskDetailResponse: DescribeImageTaskDetailResponse,
|
|
33848
34667
|
DescribePersonSamplesResponse: DescribePersonSamplesResponse,
|
|
33849
34668
|
ModifyScheduleResponse: ModifyScheduleResponse,
|
|
33850
34669
|
PornConfigureInfo: PornConfigureInfo,
|
|
33851
34670
|
AiRecognitionTaskObjectSeqmentItem: AiRecognitionTaskObjectSeqmentItem,
|
|
34671
|
+
ImageDenoiseConfig: ImageDenoiseConfig,
|
|
33852
34672
|
VideoDenoiseConfig: VideoDenoiseConfig,
|
|
33853
34673
|
AiRecognitionTaskObjectResult: AiRecognitionTaskObjectResult,
|
|
33854
34674
|
DescribeAIAnalysisTemplatesResponse: DescribeAIAnalysisTemplatesResponse,
|
|
@@ -33881,6 +34701,7 @@ module.exports = {
|
|
|
33881
34701
|
SpekeDrm: SpekeDrm,
|
|
33882
34702
|
AiAnalysisTaskDelLogoResult: AiAnalysisTaskDelLogoResult,
|
|
33883
34703
|
SampleSnapshotTaskInput: SampleSnapshotTaskInput,
|
|
34704
|
+
AiRecognitionTaskAsrWordsResultOutput: AiRecognitionTaskAsrWordsResultOutput,
|
|
33884
34705
|
QualityControlTemplate: QualityControlTemplate,
|
|
33885
34706
|
TerrorismConfigureInfo: TerrorismConfigureInfo,
|
|
33886
34707
|
PoliticalAsrReviewTemplateInfo: PoliticalAsrReviewTemplateInfo,
|
|
@@ -33891,7 +34712,7 @@ module.exports = {
|
|
|
33891
34712
|
AudioEnhanceConfig: AudioEnhanceConfig,
|
|
33892
34713
|
AiRecognitionTaskFaceResultItem: AiRecognitionTaskFaceResultItem,
|
|
33893
34714
|
AiAnalysisTaskDescriptionInput: AiAnalysisTaskDescriptionInput,
|
|
33894
|
-
|
|
34715
|
+
AiAnalysisTaskCoverInput: AiAnalysisTaskCoverInput,
|
|
33895
34716
|
ComposeAudioOperation: ComposeAudioOperation,
|
|
33896
34717
|
CreateSmartSubtitleTemplateResponse: CreateSmartSubtitleTemplateResponse,
|
|
33897
34718
|
LiveStreamAiAnalysisResultItem: LiveStreamAiAnalysisResultItem,
|