tencentcloud-sdk-nodejs-mps 4.1.100 → 4.1.101

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.100",
3
+ "version": "4.1.101",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -4307,6 +4307,10 @@ export interface LiveRecordTemplate {
4307
4307
  * 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
4308
4308
  */
4309
4309
  UpdateTime?: string;
4310
+ /**
4311
+ * 录制类型,取值为video(音视频录制)、audio(纯音频录制)、auto(自动探测)。
4312
+ */
4313
+ RecordType?: string;
4310
4314
  }
4311
4315
  /**
4312
4316
  * DescribeSnapshotByTimeOffsetTemplates请求参数结构体
@@ -5870,7 +5874,7 @@ export interface RawTranscodeParameter {
5870
5874
  export interface LiveStreamTaskNotifyConfig {
5871
5875
  /**
5872
5876
  * 通知类型:
5873
- "CMQ":回调消息写入cmq队列;
5877
+ TDMQ-CMQ:消息队列
5874
5878
  "URL": 指定URL时HTTP回调推送到 NotifyUrl 指定的地址,回调协议http+json,包体内容同[解析直播事件通知接口](https://cloud.tencent.com/document/product/862/39229) 的输出参数
5875
5879
 
5876
5880
  <font color="red"> 注:不填或为空时默认 CMQ,如需采用其他类型需填写对应类型值。 </font>
@@ -5881,19 +5885,19 @@ export interface LiveStreamTaskNotifyConfig {
5881
5885
  */
5882
5886
  NotifyUrl?: string;
5883
5887
  /**
5884
- * CMQ 的模型,有 Queue 和 Topic 两种,目前仅支持 Queue。
5888
+ * Queue 和 Topic 两种模型。
5885
5889
  */
5886
5890
  CmqModel?: string;
5887
5891
  /**
5888
- * CMQ 的园区,如 sh,bj 等。
5892
+ * TDMQ-CMQ 的园区,如 sh,bj 等。
5889
5893
  */
5890
5894
  CmqRegion?: string;
5891
5895
  /**
5892
- * 当模型为 Queue 时有效,表示接收事件通知的 CMQ 的队列名。
5896
+ * 当模型为 Queue 时有效,表示接收事件通知的 TDMQ-CMQ 的队列名。
5893
5897
  */
5894
5898
  QueueName?: string;
5895
5899
  /**
5896
- * 当模型为 Topic 时有效,表示接收事件通知的 CMQ 的主题名。
5900
+ * 当模型为 Topic 时有效,表示接收事件通知的 TDMQ-CMQ 的主题名。
5897
5901
  */
5898
5902
  TopicName?: string;
5899
5903
  /**
@@ -13538,6 +13542,10 @@ export interface CreateLiveRecordTemplateRequest {
13538
13542
  * 模板描述信息,长度限制:256 个字符。
13539
13543
  */
13540
13544
  Comment?: string;
13545
+ /**
13546
+ * 录制类型,取值为video(音视频录制)、audio(纯音频录制)、auto(自动探测)。不填时默认值为video。
13547
+ */
13548
+ RecordType?: string;
13541
13549
  }
13542
13550
  /**
13543
13551
  * CreateContentReviewTemplate请求参数结构体
@@ -17313,6 +17321,10 @@ export interface ModifyLiveRecordTemplateRequest {
17313
17321
  * 模板描述信息,长度限制:256 个字符。
17314
17322
  */
17315
17323
  Comment?: string;
17324
+ /**
17325
+ * 录制类型,取值为video(音视频录制)、audio(纯音频录制)、auto(自动探测)。
17326
+ */
17327
+ RecordType?: string;
17316
17328
  }
17317
17329
  /**
17318
17330
  * ModifySmartSubtitleTemplate请求参数结构体