tencentcloud-sdk-nodejs-mps 4.1.296 → 4.1.298

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-mps",
3
- "version": "4.1.296",
3
+ "version": "4.1.298",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -4465,6 +4465,10 @@ export interface ImageTaskInput {
4465
4465
  * <p>图片理解配置</p>
4466
4466
  */
4467
4467
  UnderstandImageConfig?: UnderstandImageConfig;
4468
+ /**
4469
+ * <p>图片质量评估配置</p>
4470
+ */
4471
+ ImageQualityConfig?: ImageQualityConfig;
4468
4472
  }
4469
4473
  /**
4470
4474
  * 查询输出的HLS拉流URL信息。
@@ -7445,38 +7449,13 @@ export interface ModifyPersonSampleResponse {
7445
7449
  RequestId?: string;
7446
7450
  }
7447
7451
  /**
7448
- * 媒体质检任务结果类型
7452
+ * 图片质量评估任务。
7449
7453
  */
7450
- export interface ScheduleQualityControlTaskResult {
7454
+ export interface ImageQualityConfig {
7451
7455
  /**
7452
- * 任务状态,有 PROCESSING,SUCCESS FAIL 三种。
7453
- */
7454
- Status?: string;
7455
- /**
7456
- * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
7457
- */
7458
- ErrCodeExt?: string;
7459
- /**
7460
- * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
7461
- */
7462
- ErrCode?: number;
7463
- /**
7464
- * 错误信息。
7465
- */
7466
- Message?: string;
7467
- /**
7468
- * 媒体质检任务的输入。
7456
+ * <p>图片质量评估维度</p><p>枚举值:</p><ul><li>Brightness: 亮度评估</li><li>Contrast: 对比度评估</li><li>Sharpness: 清晰度评估</li><li>IQA: 综合质量评估</li></ul>
7469
7457
  */
7470
- Input?: AiQualityControlTaskInput;
7471
- /**
7472
- * 媒体质检任务的输出。
7473
- 注意:此字段可能返回 null,表示取不到有效值。
7474
- */
7475
- Output?: QualityControlData;
7476
- /**
7477
- * 任务执行进度。
7478
- */
7479
- Progress?: number;
7458
+ Attributes: Array<string>;
7480
7459
  }
7481
7460
  /**
7482
7461
  * ModifyStreamPackageSourceLocation请求参数结构体
@@ -9210,21 +9189,38 @@ export interface DeleteStreamPackageLinearAssemblyChannelRequest {
9210
9189
  Id: string;
9211
9190
  }
9212
9191
  /**
9213
- * 用户自定义审核任务控制参数
9192
+ * 媒体质检任务结果类型
9214
9193
  */
9215
- export interface UserDefineConfigureInfo {
9194
+ export interface ScheduleQualityControlTaskResult {
9216
9195
  /**
9217
- * 用户自定义人物审核控制参数。
9196
+ * 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。
9218
9197
  */
9219
- FaceReviewInfo?: UserDefineFaceReviewTemplateInfo;
9198
+ Status?: string;
9220
9199
  /**
9221
- * 用户自定义语音审核控制参数。
9200
+ * 错误码,空字符串表示成功,其他值表示失败,取值请参考 [媒体处理类错误码](https://cloud.tencent.com/document/product/862/50369#.E8.A7.86.E9.A2.91.E5.A4.84.E7.90.86.E7.B1.BB.E9.94.99.E8.AF.AF.E7.A0.81) 列表。
9222
9201
  */
9223
- AsrReviewInfo?: UserDefineAsrTextReviewTemplateInfo;
9202
+ ErrCodeExt?: string;
9224
9203
  /**
9225
- * 用户自定义文本审核控制参数。
9204
+ * 错误码,0 表示成功,其他值表示失败(该字段已不推荐使用,建议使用新的错误码字段 ErrCodeExt)。
9226
9205
  */
9227
- OcrReviewInfo?: UserDefineOcrTextReviewTemplateInfo;
9206
+ ErrCode?: number;
9207
+ /**
9208
+ * 错误信息。
9209
+ */
9210
+ Message?: string;
9211
+ /**
9212
+ * 媒体质检任务的输入。
9213
+ */
9214
+ Input?: AiQualityControlTaskInput;
9215
+ /**
9216
+ * 媒体质检任务的输出。
9217
+ 注意:此字段可能返回 null,表示取不到有效值。
9218
+ */
9219
+ Output?: QualityControlData;
9220
+ /**
9221
+ * 任务执行进度。
9222
+ */
9223
+ Progress?: number;
9228
9224
  }
9229
9225
  /**
9230
9226
  * 字幕位置信息
@@ -14227,7 +14223,7 @@ export interface DescribeAigcTaskStatusRequest {
14227
14223
  */
14228
14224
  export interface DescribeDesignTaskResponse {
14229
14225
  /**
14230
- * <p>错误码,成功时返回0</p>
14226
+ * <p>错误码,成功时返回0,处理中返回100</p>
14231
14227
  */
14232
14228
  ErrorCode?: number;
14233
14229
  /**
@@ -24251,6 +24247,23 @@ export interface DescribeStreamLinkFlowRequest {
24251
24247
  */
24252
24248
  FlowId: string;
24253
24249
  }
24250
+ /**
24251
+ * 用户自定义审核任务控制参数
24252
+ */
24253
+ export interface UserDefineConfigureInfo {
24254
+ /**
24255
+ * 用户自定义人物审核控制参数。
24256
+ */
24257
+ FaceReviewInfo?: UserDefineFaceReviewTemplateInfo;
24258
+ /**
24259
+ * 用户自定义语音审核控制参数。
24260
+ */
24261
+ AsrReviewInfo?: UserDefineAsrTextReviewTemplateInfo;
24262
+ /**
24263
+ * 用户自定义文本审核控制参数。
24264
+ */
24265
+ OcrReviewInfo?: UserDefineOcrTextReviewTemplateInfo;
24266
+ }
24254
24267
  /**
24255
24268
  * 媒体处理 URL 对象信息。
24256
24269
  */