tencentcloud-sdk-nodejs 4.0.599 → 4.0.600

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/CHANGELOG.md +224 -0
  2. package/SERVICE_CHANGELOG.md +311 -91
  3. package/package.json +1 -1
  4. package/products.md +19 -19
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/asr/v20190614/asr_models.ts +2 -2
  7. package/src/services/batch/v20170312/batch_models.ts +3 -2
  8. package/src/services/cam/v20190116/cam_models.ts +17 -2
  9. package/src/services/ccc/v20200210/ccc_client.ts +1 -0
  10. package/src/services/ccc/v20200210/ccc_models.ts +30 -0
  11. package/src/services/cdb/v20170320/cdb_client.ts +12 -0
  12. package/src/services/cdb/v20170320/cdb_models.ts +36 -0
  13. package/src/services/cdn/v20180606/cdn_models.ts +77 -31
  14. package/src/services/cfg/v20210820/cfg_models.ts +3 -3
  15. package/src/services/cfw/v20190904/cfw_client.ts +2 -1
  16. package/src/services/cfw/v20190904/cfw_models.ts +71 -17
  17. package/src/services/cls/v20201016/cls_models.ts +7 -0
  18. package/src/services/cvm/v20170312/cvm_models.ts +3 -2
  19. package/src/services/cwp/v20180228/cwp_client.ts +40 -3
  20. package/src/services/cwp/v20180228/cwp_models.ts +324 -217
  21. package/src/services/essbasic/v20210526/essbasic_models.ts +1 -1
  22. package/src/services/gs/v20191118/gs_models.ts +1 -1
  23. package/src/services/live/v20180801/live_client.ts +1 -1
  24. package/src/services/live/v20180801/live_models.ts +91 -46
  25. package/src/services/mps/v20190612/mps_client.ts +1 -1
  26. package/src/services/mps/v20190612/mps_models.ts +140 -17
  27. package/src/services/vpc/v20170312/vpc_client.ts +30 -4
  28. package/src/services/vpc/v20170312/vpc_models.ts +123 -33
  29. package/tencentcloud/common/sdk_version.d.ts +1 -1
  30. package/tencentcloud/common/sdk_version.js +1 -1
  31. package/tencentcloud/services/asr/v20190614/asr_models.d.ts +2 -2
  32. package/tencentcloud/services/batch/v20170312/batch_models.d.ts +1 -0
  33. package/tencentcloud/services/cam/v20190116/cam_models.d.ts +14 -2
  34. package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +25 -0
  35. package/tencentcloud/services/cdb/v20170320/cdb_client.d.ts +5 -1
  36. package/tencentcloud/services/cdb/v20170320/cdb_client.js +6 -0
  37. package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +31 -0
  38. package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +72 -26
  39. package/tencentcloud/services/cfg/v20210820/cfg_models.d.ts +3 -3
  40. package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +1 -1
  41. package/tencentcloud/services/cfw/v20190904/cfw_client.js +1 -1
  42. package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +63 -17
  43. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +6 -0
  44. package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +1 -0
  45. package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +13 -1
  46. package/tencentcloud/services/cwp/v20180228/cwp_client.js +18 -0
  47. package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +273 -181
  48. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +1 -1
  49. package/tencentcloud/services/gs/v20191118/gs_models.d.ts +1 -1
  50. package/tencentcloud/services/live/v20180801/live_client.d.ts +1 -1
  51. package/tencentcloud/services/live/v20180801/live_client.js +1 -1
  52. package/tencentcloud/services/live/v20180801/live_models.d.ts +78 -33
  53. package/tencentcloud/services/mps/v20190612/mps_client.d.ts +1 -1
  54. package/tencentcloud/services/mps/v20190612/mps_client.js +1 -1
  55. package/tencentcloud/services/mps/v20190612/mps_models.d.ts +120 -17
  56. package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +9 -1
  57. package/tencentcloud/services/vpc/v20170312/vpc_client.js +12 -0
  58. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +108 -30
  59. package/test/cdb.v20170320.test.js +10 -0
  60. package/test/cwp.v20180228.test.js +30 -0
  61. package/test/vpc.v20170312.test.js +20 -0
@@ -25,7 +25,10 @@ export interface CreateLiveSnapshotRuleRequest {
25
25
  */
26
26
  export interface BillDataInfo {
27
27
  /**
28
- * 时间点,格式: yyyy-mm-dd HH:MM:SS。
28
+ * 时间点,
29
+ 使用UTC格式时间,
30
+ 例如:2019-01-08T10:00:00Z。
31
+ 注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
29
32
  */
30
33
  Time: string;
31
34
  /**
@@ -37,7 +40,11 @@ export interface BillDataInfo {
37
40
  */
38
41
  Flux: number;
39
42
  /**
40
- * 峰值时间点,格式: yyyy-mm-dd HH:MM:SS,原始数据为5分钟粒度,如果查询小时和天粒度数据,则返回对应粒度内的带宽峰值时间点。
43
+ * 峰值时间点,
44
+ 使用UTC格式时间,
45
+ 例如:2019-01-08T10:00:00Z。
46
+ 注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
47
+ 原始数据为5分钟粒度,如果查询小时和天粒度数据,则返回对应粒度内的带宽峰值时间点。
41
48
  */
42
49
  PeakTime: string;
43
50
  }
@@ -57,7 +64,7 @@ export interface DescribeUploadStreamNumsResponse {
57
64
  /**
58
65
  * 明细数据信息
59
66
  */
60
- DataInfoList: Array<ConcurrentRecordStreamNum>;
67
+ DataInfoList?: Array<ConcurrentRecordStreamNum>;
61
68
  /**
62
69
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
63
70
  */
@@ -91,8 +98,10 @@ export interface HlsSpecialParam {
91
98
  */
92
99
  export interface TranscodeTotalInfo {
93
100
  /**
94
- * 时间点,北京时间,
95
- 示例:2019-03-01 00:00:00。
101
+ * 时间点,
102
+ 使用UTC格式时间,
103
+ 例如:2019-01-08T10:00:00Z。
104
+ 注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
96
105
  */
97
106
  Time: string;
98
107
  /**
@@ -130,7 +139,7 @@ export interface DescribeDeliverBandwidthListResponse {
130
139
  /**
131
140
  * 转推计费带宽数据
132
141
  */
133
- DataInfoList: Array<BandwidthInfo>;
142
+ DataInfoList?: Array<BandwidthInfo>;
134
143
  /**
135
144
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
136
145
  */
@@ -196,29 +205,33 @@ export interface FlvSpecialParam {
196
205
  */
197
206
  export interface DescribeBillBandwidthAndFluxListResponse {
198
207
  /**
199
- * 峰值带宽所在时间点,格式为yyyy-mm-dd HH:MM:SS。
208
+ * 峰值带宽所在时间点,接口返回支持两种时间格式(与接口请求传递的时间格式一致):
209
+ 1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见IOS日期格式说明文档: https://cloud.tencent.com/document/product/266/11732#I
210
+ 2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。
200
211
  */
201
- PeakBandwidthTime: string;
212
+ PeakBandwidthTime?: string;
202
213
  /**
203
214
  * 峰值带宽,单位是Mbps。
204
215
  */
205
- PeakBandwidth: number;
216
+ PeakBandwidth?: number;
206
217
  /**
207
- * 95峰值带宽所在时间点,格式为yyyy-mm-dd HH:MM:SS。
218
+ * 95峰值带宽所在时间点,接口返回支持两种时间格式(与接口请求传递的时间格式一致):
219
+ 1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见IOS日期格式说明文档: https://cloud.tencent.com/document/product/266/11732#I
220
+ 2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。
208
221
  */
209
- P95PeakBandwidthTime: string;
222
+ P95PeakBandwidthTime?: string;
210
223
  /**
211
224
  * 95峰值带宽,单位是Mbps。
212
225
  */
213
- P95PeakBandwidth: number;
226
+ P95PeakBandwidth?: number;
214
227
  /**
215
228
  * 总流量,单位是MB。
216
229
  */
217
- SumFlux: number;
230
+ SumFlux?: number;
218
231
  /**
219
232
  * 明细数据信息。
220
233
  */
221
- DataInfoList: Array<BillDataInfo>;
234
+ DataInfoList?: Array<BillDataInfo>;
222
235
  /**
223
236
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
224
237
  */
@@ -869,7 +882,7 @@ export interface DescribeScreenShotSheetNumListResponse {
869
882
  /**
870
883
  * 数据信息列表。
871
884
  */
872
- DataInfoList: Array<TimeValue>;
885
+ DataInfoList?: Array<TimeValue>;
873
886
  /**
874
887
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
875
888
  */
@@ -1232,11 +1245,16 @@ export interface DescribePushBandwidthAndFluxListResponse {
1232
1245
  */
1233
1246
  export interface DescribeUploadStreamNumsRequest {
1234
1247
  /**
1235
- * 起始时间点,格式为yyyy-mm-dd HH:MM:SS。
1248
+ * 起始时间点,接口查询支持两种时间格式:
1249
+ 1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见IOS日期格式说明文档: https://cloud.tencent.com/document/product/266/11732#I
1250
+ 2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。
1236
1251
  */
1237
1252
  StartTime: string;
1238
1253
  /**
1239
- * 结束时间点,格式为yyyy-mm-dd HH:MM:SS,起始和结束时间跨度不支持超过31天。支持最近31天的数据查询
1254
+ * 结束时间点,接口查询支持两种时间格式:
1255
+ 1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见IOS日期格式说明文档: https://cloud.tencent.com/document/product/266/11732#I
1256
+ 2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。
1257
+ 起始和结束时间跨度不支持超过31天。支持最近31天的数据查询
1240
1258
  */
1241
1259
  EndTime: string;
1242
1260
  /**
@@ -1649,11 +1667,16 @@ export interface DescribeTimeShiftStreamListRequest {
1649
1667
  */
1650
1668
  export interface DescribeDeliverBandwidthListRequest {
1651
1669
  /**
1652
- * 起始时间,格式为%Y-%m-%d %H:%M:%S。
1670
+ * 起始时间点,接口查询支持两种时间格式:
1671
+ 1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见IOS日期格式说明文档: https://cloud.tencent.com/document/product/266/11732#I
1672
+ 2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。
1653
1673
  */
1654
1674
  StartTime: string;
1655
1675
  /**
1656
- * 结束时间,格式为%Y-%m-%d %H:%M:%S,支持最近三个月的数据查询,时间跨度最大是1个月。
1676
+ * 结束时间点,接口查询支持两种时间格式:
1677
+ 1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见IOS日期格式说明文档: https://cloud.tencent.com/document/product/266/11732#I
1678
+ 2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。
1679
+ 支持最近三个月的数据查询,时间跨度最大是1个月。
1657
1680
  */
1658
1681
  EndTime: string;
1659
1682
  }
@@ -2069,11 +2092,16 @@ export interface DeleteLiveRecordResponse {
2069
2092
  */
2070
2093
  export interface DescribeScreenShotSheetNumListRequest {
2071
2094
  /**
2072
- * utc起始时间,格式为yyyy-mm-ddTHH:MM:SSZ
2095
+ * 起始时间点,接口查询支持两种时间格式:
2096
+ 1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见IOS日期格式说明文档: https://cloud.tencent.com/document/product/266/11732#I
2097
+ 2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。
2073
2098
  */
2074
2099
  StartTime: string;
2075
2100
  /**
2076
- * utc结束时间,格式为yyyy-mm-ddTHH:MM:SSZ,支持查询最近1年数据。
2101
+ * 结束时间点,接口查询支持两种时间格式:
2102
+ 1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见IOS日期格式说明文档: https://cloud.tencent.com/document/product/266/11732#I
2103
+ 2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。
2104
+ 支持查询最近1年的数据。
2077
2105
  */
2078
2106
  EndTime: string;
2079
2107
  /**
@@ -2672,7 +2700,7 @@ export interface DescribeConcurrentRecordStreamNumResponse {
2672
2700
  /**
2673
2701
  * 统计信息列表。
2674
2702
  */
2675
- DataInfoList: Array<ConcurrentRecordStreamNum>;
2703
+ DataInfoList?: Array<ConcurrentRecordStreamNum>;
2676
2704
  /**
2677
2705
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2678
2706
  */
@@ -3939,7 +3967,10 @@ export interface ModifyLivePlayDomainResponse {
3939
3967
  */
3940
3968
  export interface CdnPlayStatData {
3941
3969
  /**
3942
- * 时间点,格式: yyyy-mm-dd HH:MM:SS。
3970
+ * 时间点,
3971
+ 使用UTC格式时间,
3972
+ 例如:2019-01-08T10:00:00Z。
3973
+ 注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
3943
3974
  */
3944
3975
  Time: string;
3945
3976
  /**
@@ -5128,7 +5159,9 @@ export interface DescribeLiveTimeShiftBillInfoListResponse {
5128
5159
  export interface BandwidthInfo {
5129
5160
  /**
5130
5161
  * 返回格式:
5131
- yyyy-mm-dd HH:MM:SS
5162
+ 使用UTC格式时间,
5163
+ 例如:2019-01-08T10:00:00Z。
5164
+ 注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
5132
5165
  根据粒度会有不同程度的缩减。
5133
5166
  */
5134
5167
  Time: string;
@@ -5390,12 +5423,16 @@ NormalLive:普通直播。
5390
5423
  */
5391
5424
  LiveType: string;
5392
5425
  /**
5393
- * 起始时间,格式:yyyy-mm-dd HH:MM:SS。
5426
+ * 起始时间点,接口查询支持两种时间格式:
5427
+ 1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见IOS日期格式说明文档: https://cloud.tencent.com/document/product/266/11732#I
5428
+ 2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。
5394
5429
  可以查询最近180天的数据。
5395
5430
  */
5396
5431
  StartTime: string;
5397
5432
  /**
5398
- * 结束时间,格式:yyyy-mm-dd HH:MM:SS。
5433
+ * 结束时间点,接口查询支持两种时间格式:
5434
+ 1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见IOS日期格式说明文档: https://cloud.tencent.com/document/product/266/11732#I
5435
+ 2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。
5399
5436
  时间跨度最大支持31天。
5400
5437
  */
5401
5438
  EndTime: string;
@@ -6335,7 +6372,7 @@ export interface DescribeLiveTranscodeTotalInfoResponse {
6335
6372
  * 统计数据列表。
6336
6373
  注意:此字段可能返回 null,表示取不到有效值。
6337
6374
  */
6338
- DataInfoList: Array<TranscodeTotalInfo>;
6375
+ DataInfoList?: Array<TranscodeTotalInfo>;
6339
6376
  /**
6340
6377
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6341
6378
  */
@@ -6533,11 +6570,16 @@ export declare type DescribeLiveTranscodeTemplatesRequest = null;
6533
6570
  */
6534
6571
  export interface DescribeBillBandwidthAndFluxListRequest {
6535
6572
  /**
6536
- * 起始时间点,格式为yyyy-mm-dd HH:MM:SS。
6573
+ * 起始时间点,接口查询支持两种时间格式:
6574
+ 1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见IOS日期格式说明文档: https://cloud.tencent.com/document/product/266/11732#I
6575
+ 2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。
6537
6576
  */
6538
6577
  StartTime: string;
6539
6578
  /**
6540
- * 结束时间点,格式为yyyy-mm-dd HH:MM:SS,起始和结束时间跨度不支持超过31天。支持最近3年的数据查询
6579
+ * 结束时间点,接口查询支持两种时间格式:
6580
+ 1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见IOS日期格式说明文档: https://cloud.tencent.com/document/product/266/11732#I
6581
+ 2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。
6582
+ 起始和结束时间跨度不支持超过31天。支持最近3年的数据查询
6541
6583
  */
6542
6584
  EndTime: string;
6543
6585
  /**
@@ -7557,13 +7599,16 @@ export interface DescribeLiveCallbackRulesResponse {
7557
7599
  */
7558
7600
  export interface DescribeLiveTranscodeTotalInfoRequest {
7559
7601
  /**
7560
- * 开始时间,北京时间。
7561
- 格式:yyyy-mm-dd HH:MM:SS。
7602
+ * 结束时间点,接口查询支持两种时间格式:
7603
+ 1)YYYY-MM-DDThh:mm:ssZ:UTC时间格式,详见IOS日期格式说明文档: https://cloud.tencent.com/document/product/266/11732#I
7604
+ 2)YYYY-MM-DD hh:mm:ss:使用此格式时,默认代表北京时间。
7562
7605
  */
7563
7606
  StartTime: string;
7564
7607
  /**
7565
- * 结束时间,北京时间。
7566
- 格式:yyyy-mm-dd HH:MM:SS。
7608
+ * 结束时间,
7609
+ 使用UTC格式时间,
7610
+ 例如:2019-01-08T10:00:00Z。
7611
+ 注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
7567
7612
  */
7568
7613
  EndTime: string;
7569
7614
  /**
@@ -40,7 +40,7 @@ export declare class Client extends AbstractClient {
40
40
  */
41
41
  DeleteTranscodeTemplate(req: DeleteTranscodeTemplateRequest, cb?: (error: string, rep: DeleteTranscodeTemplateResponse) => void): Promise<DeleteTranscodeTemplateResponse>;
42
42
  /**
43
- * 通过任务 ID 查询任务的执行状态和结果的详细信息(最多可以查询3天之内提交的任务)。
43
+ * 通过任务 ID 查询任务的执行状态和结果的详细信息(最多可以查询7天之内提交的任务)。
44
44
  */
45
45
  DescribeTaskDetail(req: DescribeTaskDetailRequest, cb?: (error: string, rep: DescribeTaskDetailResponse) => void): Promise<DescribeTaskDetailResponse>;
46
46
  /**
@@ -74,7 +74,7 @@ class Client extends abstract_client_1.AbstractClient {
74
74
  return this.request("DeleteTranscodeTemplate", req, cb);
75
75
  }
76
76
  /**
77
- * 通过任务 ID 查询任务的执行状态和结果的详细信息(最多可以查询3天之内提交的任务)。
77
+ * 通过任务 ID 查询任务的执行状态和结果的详细信息(最多可以查询7天之内提交的任务)。
78
78
  */
79
79
  async DescribeTaskDetail(req, cb) {
80
80
  return this.request("DescribeTaskDetail", req, cb);
@@ -2666,6 +2666,16 @@ export interface MediaProcessTaskAdaptiveDynamicStreamingResult {
2666
2666
  注意:此字段可能返回 null,表示取不到有效值。
2667
2667
  */
2668
2668
  Output: AdaptiveDynamicStreamingInfoItem;
2669
+ /**
2670
+ * 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
2671
+ 注意:此字段可能返回 null,表示取不到有效值。
2672
+ */
2673
+ BeginProcessTime?: string;
2674
+ /**
2675
+ * 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
2676
+ 注意:此字段可能返回 null,表示取不到有效值。
2677
+ */
2678
+ FinishTime?: string;
2669
2679
  }
2670
2680
  /**
2671
2681
  * 文本关键词识别控制参数。
@@ -2944,6 +2954,16 @@ export interface ScheduleRecognitionTaskResult {
2944
2954
  注意:此字段可能返回 null,表示取不到有效值。
2945
2955
  */
2946
2956
  Output: Array<AiRecognitionResult>;
2957
+ /**
2958
+ * 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
2959
+ 注意:此字段可能返回 null,表示取不到有效值。
2960
+ */
2961
+ BeginProcessTime?: string;
2962
+ /**
2963
+ * 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
2964
+ 注意:此字段可能返回 null,表示取不到有效值。
2965
+ */
2966
+ FinishTime?: string;
2947
2967
  }
2948
2968
  /**
2949
2969
  * WithdrawsWatermark请求参数结构体
@@ -3073,6 +3093,16 @@ export interface MediaProcessTaskAnimatedGraphicResult {
3073
3093
  注意:此字段可能返回 null,表示取不到有效值。
3074
3094
  */
3075
3095
  Output: MediaAnimatedGraphicsItem;
3096
+ /**
3097
+ * 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
3098
+ 注意:此字段可能返回 null,表示取不到有效值。
3099
+ */
3100
+ BeginProcessTime?: string;
3101
+ /**
3102
+ * 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
3103
+ 注意:此字段可能返回 null,表示取不到有效值。
3104
+ */
3105
+ FinishTime?: string;
3076
3106
  }
3077
3107
  /**
3078
3108
  * ProcessMedia返回参数结构体
@@ -3643,6 +3673,16 @@ export interface MediaProcessTaskImageSpriteResult {
3643
3673
  注意:此字段可能返回 null,表示取不到有效值。
3644
3674
  */
3645
3675
  Output: MediaImageSpriteItem;
3676
+ /**
3677
+ * 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
3678
+ 注意:此字段可能返回 null,表示取不到有效值。
3679
+ */
3680
+ BeginProcessTime?: string;
3681
+ /**
3682
+ * 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
3683
+ 注意:此字段可能返回 null,表示取不到有效值。
3684
+ */
3685
+ FinishTime?: string;
3646
3686
  }
3647
3687
  /**
3648
3688
  * 转推的RTP目标地址信息。
@@ -4727,6 +4767,16 @@ export interface MediaProcessTaskSnapshotByTimeOffsetResult {
4727
4767
  注意:此字段可能返回 null,表示取不到有效值。
4728
4768
  */
4729
4769
  Output: MediaSnapshotByTimeOffsetItem;
4770
+ /**
4771
+ * 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
4772
+ 注意:此字段可能返回 null,表示取不到有效值。
4773
+ */
4774
+ BeginProcessTime?: string;
4775
+ /**
4776
+ * 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
4777
+ 注意:此字段可能返回 null,表示取不到有效值。
4778
+ */
4779
+ FinishTime?: string;
4730
4780
  }
4731
4781
  /**
4732
4782
  * 查询输出的HLS拉流配置信息。
@@ -5631,6 +5681,16 @@ export interface ScheduleAnalysisTaskResult {
5631
5681
  注意:此字段可能返回 null,表示取不到有效值。
5632
5682
  */
5633
5683
  Output: Array<AiAnalysisResult>;
5684
+ /**
5685
+ * 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
5686
+ 注意:此字段可能返回 null,表示取不到有效值。
5687
+ */
5688
+ BeginProcessTime?: string;
5689
+ /**
5690
+ * 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
5691
+ 注意:此字段可能返回 null,表示取不到有效值。
5692
+ */
5693
+ FinishTime?: string;
5634
5694
  }
5635
5695
  /**
5636
5696
  * 质检任务结果类型
@@ -7794,6 +7854,16 @@ export interface MediaProcessTaskSampleSnapshotResult {
7794
7854
  注意:此字段可能返回 null,表示取不到有效值。
7795
7855
  */
7796
7856
  Output: MediaSampleSnapshotItem;
7857
+ /**
7858
+ * 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
7859
+ 注意:此字段可能返回 null,表示取不到有效值。
7860
+ */
7861
+ BeginProcessTime?: string;
7862
+ /**
7863
+ * 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
7864
+ 注意:此字段可能返回 null,表示取不到有效值。
7865
+ */
7866
+ FinishTime?: string;
7797
7867
  }
7798
7868
  /**
7799
7869
  * 用户自定义审核任务控制参数。
@@ -7913,7 +7983,8 @@ export interface FlowRealtimeStatusSRT {
7913
7983
  export interface TEHDConfigForUpdate {
7914
7984
  /**
7915
7985
  * 极速高清类型,可选值:
7916
- <li>TEHD-100:极速高清-100。</li>
7986
+ <li>TEHD-100:极速高清-100(视频极速高清)。</li>
7987
+ <li>TEHD-200:极速高清-200(音频极速高清)。</li>
7917
7988
  不填代表不修改。
7918
7989
  */
7919
7990
  Type?: string;
@@ -8597,6 +8668,16 @@ export interface ScheduleReviewTaskResult {
8597
8668
  注意:此字段可能返回 null,表示取不到有效值。
8598
8669
  */
8599
8670
  Output: Array<AiContentReviewResult>;
8671
+ /**
8672
+ * 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
8673
+ 注意:此字段可能返回 null,表示取不到有效值。
8674
+ */
8675
+ BeginProcessTime?: string;
8676
+ /**
8677
+ * 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
8678
+ 注意:此字段可能返回 null,表示取不到有效值。
8679
+ */
8680
+ FinishTime?: string;
8600
8681
  }
8601
8682
  /**
8602
8683
  * ModifyTranscodeTemplate返回参数结构体
@@ -9011,67 +9092,67 @@ export interface DescribeTaskDetailResponse {
9011
9092
  <li>LiveStreamProcessTask:直播流处理任务。</li>
9012
9093
  <li>ScheduleTask:编排处理任务。</li>
9013
9094
  */
9014
- TaskType: string;
9095
+ TaskType?: string;
9015
9096
  /**
9016
9097
  * 任务状态,取值:
9017
9098
  <li>WAITING:等待中;</li>
9018
9099
  <li>PROCESSING:处理中;</li>
9019
9100
  <li>FINISH:已完成。</li>
9020
9101
  */
9021
- Status: string;
9102
+ Status?: string;
9022
9103
  /**
9023
9104
  * 任务的创建时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
9024
9105
  */
9025
- CreateTime: string;
9106
+ CreateTime?: string;
9026
9107
  /**
9027
9108
  * 任务开始执行的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
9028
9109
  */
9029
- BeginProcessTime: string;
9110
+ BeginProcessTime?: string;
9030
9111
  /**
9031
9112
  * 任务执行完毕的时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
9032
9113
  */
9033
- FinishTime: string;
9114
+ FinishTime?: string;
9034
9115
  /**
9035
9116
  * 视频编辑任务信息,仅当 TaskType 为 EditMediaTask,该字段有值。
9036
9117
  注意:此字段可能返回 null,表示取不到有效值。
9037
9118
  */
9038
- EditMediaTask: EditMediaTask;
9119
+ EditMediaTask?: EditMediaTask;
9039
9120
  /**
9040
9121
  * 视频处理任务信息,仅当 TaskType 为 WorkflowTask,该字段有值。
9041
9122
  注意:此字段可能返回 null,表示取不到有效值。
9042
9123
  */
9043
- WorkflowTask: WorkflowTask;
9124
+ WorkflowTask?: WorkflowTask;
9044
9125
  /**
9045
9126
  * 直播流处理任务信息,仅当 TaskType 为 LiveStreamProcessTask,该字段有值。
9046
9127
  注意:此字段可能返回 null,表示取不到有效值。
9047
9128
  */
9048
- LiveStreamProcessTask: LiveStreamProcessTask;
9129
+ LiveStreamProcessTask?: LiveStreamProcessTask;
9049
9130
  /**
9050
9131
  * 任务的事件通知信息。
9051
9132
  注意:此字段可能返回 null,表示取不到有效值。
9052
9133
  */
9053
- TaskNotifyConfig: TaskNotifyConfig;
9134
+ TaskNotifyConfig?: TaskNotifyConfig;
9054
9135
  /**
9055
9136
  * 任务流的优先级,取值范围为 [-10, 10]。
9056
9137
  */
9057
- TasksPriority: number;
9138
+ TasksPriority?: number;
9058
9139
  /**
9059
9140
  * 用于去重的识别码,如果七天内曾有过相同的识别码的请求,则本次的请求会返回错误。最长50个字符,不带或者带空字符串表示不做去重。
9060
9141
  */
9061
- SessionId: string;
9142
+ SessionId?: string;
9062
9143
  /**
9063
9144
  * 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长1000个字符。
9064
9145
  */
9065
- SessionContext: string;
9146
+ SessionContext?: string;
9066
9147
  /**
9067
9148
  * 扩展信息字段,仅用于特定场景。
9068
9149
  */
9069
- ExtInfo: string;
9150
+ ExtInfo?: string;
9070
9151
  /**
9071
9152
  * 编排处理任务信息,仅当 TaskType 为 ScheduleTask,该字段有值。
9072
9153
  注意:此字段可能返回 null,表示取不到有效值。
9073
9154
  */
9074
- ScheduleTask: ScheduleTask;
9155
+ ScheduleTask?: ScheduleTask;
9075
9156
  /**
9076
9157
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
9077
9158
  */
@@ -9517,7 +9598,8 @@ export interface LiveStreamAiReviewResultItem {
9517
9598
  export interface TEHDConfig {
9518
9599
  /**
9519
9600
  * 极速高清类型,可选值:
9520
- <li>TEHD-100:极速高清-100。</li>
9601
+ <li>TEHD-100:极速高清-100(视频极速高清)。</li>
9602
+ <li>TEHD-200:极速高清-200(音频极速高清)。</li>
9521
9603
  不填代表不启用极速高清。
9522
9604
  */
9523
9605
  Type: string;
@@ -9633,6 +9715,11 @@ export interface MediaVideoStreamItem {
9633
9715
  注意:此字段可能返回 null,表示取不到有效值。
9634
9716
  */
9635
9717
  HdrType: string;
9718
+ /**
9719
+ * 视频Codecs。
9720
+ 注意:此字段可能返回 null,表示取不到有效值。
9721
+ */
9722
+ Codecs?: string;
9636
9723
  }
9637
9724
  /**
9638
9725
  * 时间点截图模板详情
@@ -9967,6 +10054,16 @@ export interface MediaAudioStreamItem {
9967
10054
  注意:此字段可能返回 null,表示取不到有效值。
9968
10055
  */
9969
10056
  Channel: number;
10057
+ /**
10058
+ * 音频Codecs。
10059
+ 注意:此字段可能返回 null,表示取不到有效值。
10060
+ */
10061
+ Codecs?: string;
10062
+ /**
10063
+ * 音频响度。
10064
+ 注意:此字段可能返回 null,表示取不到有效值。
10065
+ */
10066
+ Loudness?: number;
9970
10067
  }
9971
10068
  /**
9972
10069
  * 直播 AI 内容审核图片涉敏结果
@@ -11849,6 +11946,11 @@ export interface EditMediaTaskOutput {
11849
11946
  * 编辑后的视频文件路径。
11850
11947
  */
11851
11948
  Path: string;
11949
+ /**
11950
+ * 编辑后的视频文件元信息。
11951
+ 注意:此字段可能返回 null,表示取不到有效值。
11952
+ */
11953
+ MetaData?: MediaMetaData;
11852
11954
  }
11853
11955
  /**
11854
11956
  * 智能精彩集锦片段列表。
@@ -12059,7 +12161,8 @@ export interface AiRecognitionResult {
12059
12161
  OcrFullTextTask: AiRecognitionTaskOcrFullTextResult;
12060
12162
  /**
12061
12163
  * 翻译结果,当 Type 为
12062
- TransTextRecognition 时有效。
12164
+
12165
+ TransTextRecognition 时有效。
12063
12166
  注意:此字段可能返回 null,表示取不到有效值。
12064
12167
  */
12065
12168
  TransTextTask: AiRecognitionTaskTransTextResult;