tencentcloud-sdk-nodejs-cls 4.1.102 → 4.1.104

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-cls",
3
- "version": "4.1.102",
3
+ "version": "4.1.104",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -1375,11 +1375,18 @@ export interface CloudProductLogTaskInfo {
1375
1375
  */
1376
1376
  export interface ModifyDataTransformRequest {
1377
1377
  /**
1378
- * 加工任务id
1378
+ * 数据加工任务ID
1379
+ - 通过[获取数据加工任务列表基本信息](https://cloud.tencent.com/document/product/614/72182)获取数据加工任务Id。
1379
1380
  */
1380
1381
  TaskId: string;
1381
1382
  /**
1382
1383
  * 加工任务名称
1384
+ - 通过[获取数据加工任务列表基本信息](https://cloud.tencent.com/document/product/614/72182)获取数据加工任务名称。
1385
+
1386
+ 名称限制
1387
+ - 不能为空字符串
1388
+ - 不能包含字符'|'
1389
+ - 最长 255 个字符
1383
1390
  */
1384
1391
  Name?: string;
1385
1392
  /**
@@ -2336,7 +2343,8 @@ export interface ModifyMachineGroupResponse {
2336
2343
  */
2337
2344
  export interface DataTransformResouceInfo {
2338
2345
  /**
2339
- * 目标主题id
2346
+ * 日志主题ID
2347
+ - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
2340
2348
  */
2341
2349
  TopicId: string;
2342
2350
  /**
@@ -5789,28 +5797,40 @@ export interface DescribeDataTransformInfoRequest {
5789
5797
  按照【加工任务名称】进行过滤。
5790
5798
  类型:String
5791
5799
  必选:否
5800
+ 示例:test-task
5792
5801
 
5793
5802
  - taskId
5794
5803
  按照【加工任务id】进行过滤。
5795
5804
  类型:String
5796
5805
  必选:否
5806
+ 示例:a3622556-6402-4942-b4ff-5ae32ec29810
5807
+ 数据加工任务ID- 通过[获取数据加工任务列表基本信息](https://cloud.tencent.com/document/product/614/72182)获取数据加工任务Id。
5797
5808
 
5798
5809
  - topicId
5799
5810
  按照【源topicId】进行过滤。
5800
5811
  类型:String
5801
5812
  必选:否
5813
+ 示例:756cec3e-a0a5-44c3-85a8-090870582000
5814
+ 日志主题ID
5815
+ - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
5816
+
5802
5817
  - status
5803
5818
  按照【 任务运行状态】进行过滤。 1:准备中,2:运行中,3:停止中,4:已停止
5804
5819
  类型:String
5805
5820
  必选:否
5821
+ 示例:1
5822
+
5806
5823
  - hasServiceLog
5807
5824
  按照【是否开启服务日志】进行过滤。 1:未开启,2:已开启
5808
5825
  类型:String
5809
5826
  必选:否
5827
+ 示例:1
5828
+
5810
5829
  - dstTopicType
5811
5830
  按照【目标topic类型】进行过滤。 1:固定,2:动态
5812
5831
  类型:String
5813
5832
  必选:否
5833
+ 示例:1
5814
5834
 
5815
5835
  每次请求的Filters的上限为10,Filter.Values的上限为100。
5816
5836
  */
@@ -5829,6 +5849,7 @@ export interface DescribeDataTransformInfoRequest {
5829
5849
  Type?: number;
5830
5850
  /**
5831
5851
  * Type为1, 此参数必填
5852
+ 数据加工任务ID- 通过[获取数据加工任务列表基本信息](https://cloud.tencent.com/document/product/614/72182)获取数据加工任务Id。
5832
5853
  */
5833
5854
  TaskId?: string;
5834
5855
  }
@@ -6803,7 +6824,7 @@ export interface DataTransformTaskInfo {
6803
6824
  */
6804
6825
  EnableFlag?: number;
6805
6826
  /**
6806
- * 加工任务类型,1: DSL, 2:SQL
6827
+ * 加工任务类型,1: DSL(使用自定义加工语言的加工任务), 2:SQL(使用sql的加工任务)
6807
6828
  */
6808
6829
  Type?: number;
6809
6830
  /**
@@ -6816,14 +6837,20 @@ export interface DataTransformTaskInfo {
6816
6837
  Status?: number;
6817
6838
  /**
6818
6839
  * 加工任务创建时间
6840
+ 示例值:2025-03-18 19:55:54
6841
+ 时间格式:yyyy-MM-dd HH:mm:ss
6819
6842
  */
6820
6843
  CreateTime?: string;
6821
6844
  /**
6822
6845
  * 最近修改时间
6846
+ 示例值:2025-04-18 16:55:54
6847
+ 时间格式:yyyy-MM-dd HH:mm:ss
6823
6848
  */
6824
6849
  UpdateTime?: string;
6825
6850
  /**
6826
6851
  * 最后启用时间,如果需要重建集群,修改该时间
6852
+ 示例值:2025-05-18 19:55:54
6853
+ 时间格式:yyyy-MM-dd HH:mm:ss
6827
6854
  */
6828
6855
  LastEnableTime?: string;
6829
6856
  /**
@@ -8365,11 +8392,16 @@ export interface CreateDataTransformRequest {
8365
8392
  */
8366
8393
  FuncType: number;
8367
8394
  /**
8368
- * 源日志主题
8395
+ * 日志主题ID
8396
+ - 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
8369
8397
  */
8370
8398
  SrcTopicId: string;
8371
8399
  /**
8372
8400
  * 加工任务名称
8401
+ 名称限制
8402
+ - 不能为空字符串
8403
+ - 不能包含字符'|'
8404
+ - 最长 255 个字符
8373
8405
  */
8374
8406
  Name: string;
8375
8407
  /**
@@ -8387,7 +8419,10 @@ export interface CreateDataTransformRequest {
8387
8419
  */
8388
8420
  TaskType: number;
8389
8421
  /**
8390
- * 加工任务目的topic_id以及别名,当FuncType=1时,该参数必填,当FuncType=2时,无需填写。
8422
+ * 加工任务目标topic_id以及别名,当FuncType=1时,该参数必填,当FuncType=2时,无需填写。
8423
+ 目标topic_id,通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
8424
+ 别名限制 1.不能为空字符串,2. 不能包含字符'|'。
8425
+
8391
8426
  */
8392
8427
  DstResources?: Array<DataTransformResouceInfo>;
8393
8428
  /**
@@ -8396,6 +8431,7 @@ export interface CreateDataTransformRequest {
8396
8431
  EnableFlag?: number;
8397
8432
  /**
8398
8433
  * 用于预览加工结果的测试数据
8434
+ 目标日志主题ID通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
8399
8435
  */
8400
8436
  PreviewLogStatistics?: Array<PreviewLogStatistic>;
8401
8437
  /**