tencentcloud-sdk-nodejs 4.1.276 → 4.1.277

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.
@@ -591,6 +591,12 @@ class Client extends abstract_client_1.AbstractClient {
591
591
  async DescribeNotebookSessionStatementSqlResult(req, cb) {
592
592
  return this.request("DescribeNotebookSessionStatementSqlResult", req, cb);
593
593
  }
594
+ /**
595
+ * 获取账户子账户信息
596
+ */
597
+ async DescribeMCPSubUin(req, cb) {
598
+ return this.request("DescribeMCPSubUin", req, cb);
599
+ }
594
600
  /**
595
601
  * 本接口(CreateNotebookSessionStatement)用于在session中执行代码片段
596
602
  */
@@ -923,6 +929,12 @@ class Client extends abstract_client_1.AbstractClient {
923
929
  async QueryResult(req, cb) {
924
930
  return this.request("QueryResult", req, cb);
925
931
  }
932
+ /**
933
+ * 更新tdlc spark作业
934
+ */
935
+ async ModifySparkAppForTDLC(req, cb) {
936
+ return this.request("ModifySparkAppForTDLC", req, cb);
937
+ }
926
938
  /**
927
939
  * 元数据锁检查
928
940
  */
@@ -965,6 +977,12 @@ class Client extends abstract_client_1.AbstractClient {
965
977
  async CreateExportTask(req, cb) {
966
978
  return this.request("CreateExportTask", req, cb);
967
979
  }
980
+ /**
981
+ * 创建tdlc spark作业
982
+ */
983
+ async CreateSparkAppForTDLC(req, cb) {
984
+ return this.request("CreateSparkAppForTDLC", req, cb);
985
+ }
968
986
  /**
969
987
  * 本接口(RegisterThirdPartyAccessUser)用于开通第三方平台访问
970
988
  */
@@ -258,6 +258,15 @@ export interface PythonSparkImage {
258
258
  */
259
259
  UpdateTime?: string;
260
260
  }
261
+ /**
262
+ * 数据格式其它类型。
263
+ */
264
+ export interface Other {
265
+ /**
266
+ * 枚举类型,默认值为Json,可选值为[Json, Parquet, ORC, AVRD]之一。
267
+ */
268
+ Format?: string;
269
+ }
261
270
  /**
262
271
  * DLC分区信息查询返回数据结构
263
272
  */
@@ -1035,29 +1044,13 @@ export interface BatchSqlTask {
1035
1044
  Message?: string;
1036
1045
  }
1037
1046
  /**
1038
- * 引擎资源弹性伸缩策略
1047
+ * ModifySparkAppForTDLC返回参数结构体
1039
1048
  */
1040
- export interface ScheduleElasticityConf {
1041
- /**
1042
- * 是否开启弹性伸缩:true/false
1043
- */
1044
- ScheduledElasticityEnabled?: boolean;
1045
- /**
1046
- * 调度类型:ONCE(一次性调度),DAILY(每日调度),WEEKLY(每周调度),MONTHLY(每月调度)
1047
- */
1048
- ScheduleType?: string;
1049
- /**
1050
- * 调度日期:WEEKLY传:1~7; MONTHLY传:1~31;其它类型不传
1051
- */
1052
- ScheduleDays?: Array<number | bigint>;
1053
- /**
1054
- * 调度时区
1055
- */
1056
- TimeZone?: string;
1049
+ export interface ModifySparkAppForTDLCResponse {
1057
1050
  /**
1058
- * 弹性伸缩计划
1051
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1059
1052
  */
1060
- ElasticPlans?: Array<ElasticPlan>;
1053
+ RequestId?: string;
1061
1054
  }
1062
1055
  /**
1063
1056
  * 数据脱敏用户组信息
@@ -2938,17 +2931,13 @@ export interface CreateDatabaseResponse {
2938
2931
  RequestId?: string;
2939
2932
  }
2940
2933
  /**
2941
- * DropDMSPartitions返回参数结构体
2934
+ * DeleteDataMaskStrategy请求参数结构体
2942
2935
  */
2943
- export interface DropDMSPartitionsResponse {
2944
- /**
2945
- * 状态
2946
- */
2947
- Status?: boolean;
2936
+ export interface DeleteDataMaskStrategyRequest {
2948
2937
  /**
2949
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2938
+ * 数据脱敏策略Id
2950
2939
  */
2951
- RequestId?: string;
2940
+ StrategyId?: string;
2952
2941
  }
2953
2942
  /**
2954
2943
  * CreateWorkGroup请求参数结构体
@@ -4443,13 +4432,17 @@ export interface CSV {
4443
4432
  Format?: string;
4444
4433
  }
4445
4434
  /**
4446
- * DeleteDataMaskStrategy请求参数结构体
4435
+ * DropDMSPartitions返回参数结构体
4447
4436
  */
4448
- export interface DeleteDataMaskStrategyRequest {
4437
+ export interface DropDMSPartitionsResponse {
4449
4438
  /**
4450
- * 数据脱敏策略Id
4439
+ * 状态
4451
4440
  */
4452
- StrategyId?: string;
4441
+ Status?: boolean;
4442
+ /**
4443
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4444
+ */
4445
+ RequestId?: string;
4453
4446
  }
4454
4447
  /**
4455
4448
  * CreateNotebookSessionStatement请求参数结构体
@@ -5592,13 +5585,42 @@ export interface DescribeDMSDatabaseRequest {
5592
5585
  */
5593
5586
  export type DescribeLakeFsDirSummaryRequest = null;
5594
5587
  /**
5595
- * 数据格式其它类型。
5588
+ * 引擎资源弹性伸缩策略
5596
5589
  */
5597
- export interface Other {
5590
+ export interface ScheduleElasticityConf {
5598
5591
  /**
5599
- * 枚举类型,默认值为Json,可选值为[Json, Parquet, ORC, AVRD]之一。
5592
+ * 是否开启弹性伸缩:true/false
5600
5593
  */
5601
- Format?: string;
5594
+ ScheduledElasticityEnabled?: boolean;
5595
+ /**
5596
+ * 调度类型:ONCE(一次性调度),DAILY(每日调度),WEEKLY(每周调度),MONTHLY(每月调度)
5597
+ */
5598
+ ScheduleType?: string;
5599
+ /**
5600
+ * 调度日期:WEEKLY传:1~7; MONTHLY传:1~31;其它类型不传
5601
+ */
5602
+ ScheduleDays?: Array<number | bigint>;
5603
+ /**
5604
+ * 调度时区
5605
+ */
5606
+ TimeZone?: string;
5607
+ /**
5608
+ * 弹性伸缩计划
5609
+ */
5610
+ ElasticPlans?: Array<ElasticPlan>;
5611
+ }
5612
+ /**
5613
+ * DescribeMCPSubUin返回参数结构体
5614
+ */
5615
+ export interface DescribeMCPSubUinResponse {
5616
+ /**
5617
+ * <p>子 Uin</p>
5618
+ */
5619
+ Subuin?: string;
5620
+ /**
5621
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5622
+ */
5623
+ RequestId?: string;
5602
5624
  }
5603
5625
  /**
5604
5626
  * CreateSparkApp返回参数结构体
@@ -7501,6 +7523,10 @@ export interface CreateTaskRequest {
7501
7523
  */
7502
7524
  SourceInfo?: Array<KVPair>;
7503
7525
  }
7526
+ /**
7527
+ * DescribeMCPSubUin请求参数结构体
7528
+ */
7529
+ export type DescribeMCPSubUinRequest = null;
7504
7530
  /**
7505
7531
  * DescribeClusterMonitorInfos请求参数结构体
7506
7532
  */
@@ -8424,6 +8450,135 @@ export interface SmartOptimizerIndexPolicy {
8424
8450
  */
8425
8451
  IndexEnable?: string;
8426
8452
  }
8453
+ /**
8454
+ * ModifySparkAppForTDLC请求参数结构体
8455
+ */
8456
+ export interface ModifySparkAppForTDLCRequest {
8457
+ /**
8458
+ * <p>spark作业名</p>
8459
+ */
8460
+ AppName: string;
8461
+ /**
8462
+ * <p>spark作业类型,1代表spark jar作业,2代表spark streaming作业</p>
8463
+ */
8464
+ AppType: number;
8465
+ /**
8466
+ * <p>执行spark作业的数据引擎名称</p>
8467
+ */
8468
+ DataEngine: string;
8469
+ /**
8470
+ * <p>spark作业程序包文件路径</p>
8471
+ */
8472
+ AppFile: string;
8473
+ /**
8474
+ * <p>数据访问策略,CAM Role arn</p>
8475
+ */
8476
+ RoleArn: number;
8477
+ /**
8478
+ * <p>指定的Driver规格,当前支持:small(默认,1cu)、medium(2cu)、large(4cu)、xlarge(8cu)</p>
8479
+ */
8480
+ AppDriverSize: string;
8481
+ /**
8482
+ * <p>指定的Executor规格,当前支持:small(默认,1cu)、medium(2cu)、large(4cu)、xlarge(8cu)</p>
8483
+ */
8484
+ AppExecutorSize: string;
8485
+ /**
8486
+ * <p>spark作业executor个数</p>
8487
+ */
8488
+ AppExecutorNums: number;
8489
+ /**
8490
+ * <p>spark作业Id</p>
8491
+ */
8492
+ SparkAppId: string;
8493
+ /**
8494
+ * <p>该字段已下线,请使用字段Datasource</p>
8495
+ */
8496
+ Eni?: string;
8497
+ /**
8498
+ * <p>spark作业程序包是否本地上传,cos:存放与cos,lakefs:本地上传(控制台使用,该方式不支持直接接口调用)</p>
8499
+ */
8500
+ IsLocal?: string;
8501
+ /**
8502
+ * <p>spark作业主类</p>
8503
+ */
8504
+ MainClass?: string;
8505
+ /**
8506
+ * <p>spark配置,以换行符分隔</p>
8507
+ */
8508
+ AppConf?: string;
8509
+ /**
8510
+ * <p>spark 作业依赖jar包是否本地上传,cos:存放与cos,lakefs:本地上传(控制台使用,该方式不支持直接接口调用)</p>
8511
+ */
8512
+ IsLocalJars?: string;
8513
+ /**
8514
+ * <p>spark 作业依赖jar包(--jars),以逗号分隔</p>
8515
+ */
8516
+ AppJars?: string;
8517
+ /**
8518
+ * <p>spark作业依赖文件资源是否本地上传,cos:存放与cos,lakefs:本地上传(控制台使用,该方式不支持直接接口调用)</p>
8519
+ */
8520
+ IsLocalFiles?: string;
8521
+ /**
8522
+ * <p>spark作业依赖文件资源(--files)(非jar、zip),以逗号分隔</p>
8523
+ */
8524
+ AppFiles?: string;
8525
+ /**
8526
+ * <p>pyspark:依赖上传方式,cos:存放与cos,lakefs:本地上传(控制台使用,该方式不支持直接接口调用)</p>
8527
+ */
8528
+ IsLocalPythonFiles?: string;
8529
+ /**
8530
+ * <p>pyspark作业依赖python资源(--py-files),支持py/zip/egg等归档格式,多文件以逗号分隔</p>
8531
+ */
8532
+ AppPythonFiles?: string;
8533
+ /**
8534
+ * <p>spark作业程序入参</p>
8535
+ */
8536
+ CmdArgs?: string;
8537
+ /**
8538
+ * <p>最大重试次数,只对spark流任务生效</p>
8539
+ */
8540
+ MaxRetries?: number;
8541
+ /**
8542
+ * <p>数据源名</p>
8543
+ */
8544
+ DataSource?: string;
8545
+ /**
8546
+ * <p>spark作业依赖archives资源是否本地上传,cos:存放与cos,lakefs:本地上传(控制台使用,该方式不支持直接接口调用)</p>
8547
+ */
8548
+ IsLocalArchives?: string;
8549
+ /**
8550
+ * <p>spark作业依赖archives资源(--archives),支持tar.gz/tgz/tar等归档格式,以逗号分隔</p>
8551
+ */
8552
+ AppArchives?: string;
8553
+ /**
8554
+ * <p>Spark Image 版本号</p>
8555
+ */
8556
+ SparkImage?: string;
8557
+ /**
8558
+ * <p>Spark Image 版本名称</p>
8559
+ */
8560
+ SparkImageVersion?: string;
8561
+ /**
8562
+ * <p>指定的Executor数量(最大值),默认为1,当开启动态分配有效,若未开启,则该值等于AppExecutorNums</p>
8563
+ */
8564
+ AppExecutorMaxNumbers?: number;
8565
+ /**
8566
+ * <p>关联dlc查询脚本</p>
8567
+ */
8568
+ SessionId?: string;
8569
+ /**
8570
+ * <p>任务资源配置是否继承集群配置模板:0(默认)不继承、1:继承</p>
8571
+ */
8572
+ IsInherit?: number;
8573
+ /**
8574
+ * <p>是否使用session脚本的sql运行任务:false:否,true:是</p>
8575
+ */
8576
+ IsSessionStarted?: boolean;
8577
+ /**
8578
+ * <p>标准引擎依赖包</p>
8579
+ */
8580
+ DependencyPackages?: Array<DependencyPackage>;
8581
+ }
8427
8582
  /**
8428
8583
  * RenewDataEngine请求参数结构体
8429
8584
  */
@@ -10123,6 +10278,19 @@ export interface DescribeTaskDetailResponse {
10123
10278
  */
10124
10279
  RequestId?: string;
10125
10280
  }
10281
+ /**
10282
+ * CreateSparkAppForTDLC返回参数结构体
10283
+ */
10284
+ export interface CreateSparkAppForTDLCResponse {
10285
+ /**
10286
+ * <p>App唯一标识</p>
10287
+ */
10288
+ SparkAppId?: string;
10289
+ /**
10290
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10291
+ */
10292
+ RequestId?: string;
10293
+ }
10126
10294
  /**
10127
10295
  * Doris数据源详细信息
10128
10296
  */
@@ -12663,6 +12831,10 @@ export interface DescribeWorkGroupsRequest {
12663
12831
  */
12664
12832
  Sorting?: string;
12665
12833
  }
12834
+ /**
12835
+ * CreateSparkAppForTDLC请求参数结构体
12836
+ */
12837
+ export type CreateSparkAppForTDLCRequest = null;
12666
12838
  /**
12667
12839
  * LockMetaData请求参数结构体
12668
12840
  */
@@ -13194,6 +13194,10 @@ export interface ApproverOption {
13194
13194
  * <p>签署人手机号传参模式</p><p>枚举值:</p><ul><li>REPLACE: 接受已有认证手机号并替换</li><li>GIVEN: 以客户入参输入手机号为主</li><li>VALIDATE: 若与认证手机号不一致则报错</li><li>&quot;&quot;: 不走手机号传参模式</li></ul><p>默认值:&quot;&quot;</p><p>会触发手机号传参模式的前提是:签署人是指定了具体身份信息的</p><ul><li>在指定签署人姓名,证件号的情况下会触发</li></ul>
13195
13195
  */
13196
13196
  ApproverMobileMode?: string;
13197
+ /**
13198
+ * <p>在嵌入式文件发起下,若合同是通过文件,当签署人控件指定了印章类型(或印章Id),在嵌入页面上是否能修改</p>
13199
+ */
13200
+ ForbidModifySealInfos?: boolean;
13197
13201
  }
13198
13202
  /**
13199
13203
  * DeleteIntegrationEmployees返回参数结构体
@@ -344,44 +344,33 @@ export interface CreateLegalSealQrCodeResponse {
344
344
  */
345
345
  export interface CommonApproverOption {
346
346
  /**
347
- * 是否允许修改签署人信息
347
+ * <p>是否允许修改签署人信息</p>
348
348
  */
349
349
  CanEditApprover?: boolean;
350
350
  /**
351
- * 是否可以拒签 默认false-可以拒签 true-不可以拒签
351
+ * <p>是否可以拒签 默认false-可以拒签 true-不可以拒签</p>
352
352
  */
353
353
  NoRefuse?: boolean;
354
354
  /**
355
- * 是否可以转发 默认false-可以转发 true-不可以转发
355
+ * <p>是否可以转发 默认false-可以转发 true-不可以转发</p>
356
356
  */
357
357
  NoTransfer?: boolean;
358
358
  /**
359
- * 当签署方有多个签署区时候,是否隐藏一键所有的签署区
360
-
361
- false:(默认)不隐藏
362
- true:隐藏,每个签署区要单独选择印章或者签名
359
+ * <p>当签署方有多个签署区时候,是否隐藏一键所有的签署区</p><p>false:(默认)不隐藏<br>true:隐藏,每个签署区要单独选择印章或者签名</p>
363
360
  */
364
361
  HideOneKeySign?: boolean;
365
362
  /**
366
- * 签署人阅读合同限制参数
367
- <br/>取值:
368
- <ul>
369
- <li> LimitReadTimeAndBottom,阅读合同必须限制阅读时长并且必须阅读到底</li>
370
- <li> LimitReadTime,阅读合同仅限制阅读时长</li>
371
- <li> LimitBottom,阅读合同仅限制必须阅读到底</li>
372
- <li> NoReadTimeAndBottom,阅读合同不限制阅读时长且不限制阅读到底(白名单功能,请联系客户经理开白使用)</li>
373
- </ul>
363
+ * <p>签署人阅读合同限制参数<br> <br>取值:</p><ul><li> LimitReadTimeAndBottom,阅读合同必须限制阅读时长并且必须阅读到底</li><li> LimitReadTime,阅读合同仅限制阅读时长</li><li> LimitBottom,阅读合同仅限制必须阅读到底</li><li> NoReadTimeAndBottom,阅读合同不限制阅读时长且不限制阅读到底(白名单功能,请联系客户经理开白使用)</li></ul>
374
364
  */
375
365
  FlowReadLimit?: string;
376
366
  /**
377
- * 禁止在签署过程中添加签署日期控件
378
- <br/>前置条件:文件发起合同时,指定SignBeanTag=1(可以在签署过程中添加签署控件):
379
- <ul>
380
- <li> 默认值:false,在开启:签署过程中添加签署控件时,添加签署控件会默认自带签署日期控件</li>
381
- <li> 可选值:true,在开启:签署过程中添加签署控件时,添加签署控件不会自带签署日期控件</li>
382
- </ul>
367
+ * <p>禁止在签署过程中添加签署日期控件<br> <br>前置条件:文件发起合同时,指定SignBeanTag=1(可以在签署过程中添加签署控件):</p><ul><li> 默认值:false,在开启:签署过程中添加签署控件时,添加签署控件会默认自带签署日期控件</li><li> 可选值:true,在开启:签署过程中添加签署控件时,添加签署控件不会自带签署日期控件</li></ul>
383
368
  */
384
369
  ForbidAddSignDate?: boolean;
370
+ /**
371
+ * <p>在嵌入式文件发起下,若合同是通过文件,当签署人控件指定了印章类型(或印章Id),在嵌入页面上是否能修改</p>
372
+ */
373
+ ForbidModifySealInfos?: boolean;
385
374
  }
386
375
  /**
387
376
  * DescribeCancelFlowsTask返回参数结构体
@@ -142,7 +142,7 @@ export interface DescribeForwardingPolicyResponse {
142
142
  */
143
143
  export interface CreateGlobalAcceleratorRequest {
144
144
  /**
145
- * <p>名称,最大长度不能超过60个字节。</p>
145
+ * <p>名称,最大长度不能超过128个字节,不能为空。</p><p>参数格式:满足正则 ^[a-zA-Z\u4e00-\u9fa5](首字符是英文字母或汉字),并且不满足正则 ^[\d._-]*$(整串不能只由数字/./_/-组成)。</p>
146
146
  */
147
147
  Name: string;
148
148
  /**
@@ -2183,35 +2183,35 @@ export interface DescribeApplicationExitReportListRequest {
2183
2183
  */
2184
2184
  export interface DescribeRumLogTotalV2Request {
2185
2185
  /**
2186
- * 排序方式 desc asc
2186
+ * <p>排序方式 desc asc</p>
2187
2187
  */
2188
2188
  OrderBy: string;
2189
2189
  /**
2190
- * 开始时间(必填)格式为时间戳 毫秒
2190
+ * <p>查询日志开始时间(必填)格式为时间戳 毫秒</p>
2191
2191
  */
2192
2192
  StartTime: number;
2193
2193
  /**
2194
- * 单次查询返回的原始日志条数,最大值为100(必填)
2194
+ * <p>单次查询返回的原始日志条数,最大值为100(必填)</p>
2195
2195
  */
2196
2196
  Limit: number;
2197
2197
  /**
2198
- * 查询的相关参数
2198
+ * <p>过滤条件,其中key与运算符(Operator)对应可选字段枚举值与示例查看文档:https://cloud.tencent.com/document/product/248/87223</p>
2199
2199
  */
2200
2200
  Filter: string;
2201
2201
  /**
2202
- * 结束时间(必填)格式为时间戳 毫秒
2202
+ * <p>查询日志结束时间(必填)格式为时间戳 毫秒</p>
2203
2203
  */
2204
2204
  EndTime: number;
2205
2205
  /**
2206
- * 项目ID(必填)
2206
+ * <p>项目ID(必填)</p>
2207
2207
  */
2208
2208
  ID: number;
2209
2209
  /**
2210
- * 上次查询的最后一个日志的时间戳
2210
+ * <p>上次查询的最后一个日志的时间戳</p>
2211
2211
  */
2212
2212
  LastTime?: number;
2213
2213
  /**
2214
- * 上次查询的最后一个日志的rowId
2214
+ * <p>上次查询的最后一个日志的rowId</p>
2215
2215
  */
2216
2216
  LastRowId?: number;
2217
2217
  }
@@ -2762,27 +2762,27 @@ export interface DescribeDataLogUrlStatisticsResponse {
2762
2762
  */
2763
2763
  export interface DescribeRumLogExportV2Request {
2764
2764
  /**
2765
- * Export name
2765
+ * <p>Name(string,必填):导出任务名称标识,需要在使用API创建导出任务时填写。此字段为后续能力扩展预留,不在查询结果中返回。</p>
2766
2766
  */
2767
2767
  Name: string;
2768
2768
  /**
2769
- * Start time
2769
+ * <p>查询日志开始时间(必填)</p>
2770
2770
  */
2771
2771
  StartTime: number;
2772
2772
  /**
2773
- * Query statement
2773
+ * <p>过滤条件,其中key与运算符(Operator)对应可选字段枚举值与示例查看文档:https://cloud.tencent.com/document/product/248/87223</p>
2774
2774
  */
2775
2775
  Filter: string;
2776
2776
  /**
2777
- * End time
2777
+ * <p>查询日志结束时间(必填)</p>
2778
2778
  */
2779
2779
  EndTime: number;
2780
2780
  /**
2781
- * Project ID
2781
+ * <p>项目ID</p>
2782
2782
  */
2783
2783
  ID: number;
2784
2784
  /**
2785
- * c字段
2785
+ * <p>注意:这个字段必选,不能为空!选择要导出哪些字段的参数,对应日志的列,可查看文档:https://cloud.tencent.com/document/product/248/87223</p><p>枚举值:</p><ul><li>level: 日志类型</li><li>url: URL</li><li>ip: 用户终端IP</li><li>version: 版本</li></ul>
2786
2786
  */
2787
2787
  Fields?: Array<string>;
2788
2788
  }
@@ -2955,7 +2955,7 @@ export interface DescribeDataPvUrlStatisticsRequest {
2955
2955
  */
2956
2956
  export interface DescribeRumStatsLogListV2Response {
2957
2957
  /**
2958
- * Query result in JSON string format
2958
+ * <p>日志时间分布</p>
2959
2959
  */
2960
2960
  Result?: string;
2961
2961
  /**
@@ -3701,7 +3701,7 @@ export interface DescribeDataWebVitalsPageV2Response {
3701
3701
  */
3702
3702
  export interface DescribeRumLogExportV2Response {
3703
3703
  /**
3704
- * Query result in JSON string format
3704
+ * <p>日志导出任务TaskId</p>
3705
3705
  */
3706
3706
  Result?: string;
3707
3707
  /**
@@ -4347,23 +4347,23 @@ export interface DescribeDataBridgeUrlV2Response {
4347
4347
  */
4348
4348
  export interface DescribeRumStatsLogListV2Request {
4349
4349
  /**
4350
- * 开始时间(必填)
4350
+ * <p>查询日志开始时间(必填)</p>
4351
4351
  */
4352
4352
  StartTime: number;
4353
4353
  /**
4354
- * 单次查询返回的原始日志条数,最大值为100(必填)
4354
+ * <p>单次查询返回的原始日志条数,最大值为100(必填)</p>
4355
4355
  */
4356
4356
  Limit: number;
4357
4357
  /**
4358
- * 过滤条件
4358
+ * <p>过滤条件,其中key与运算符(Operator)对应可选字段枚举值与示例查看文档:https://cloud.tencent.com/document/product/248/87223</p>
4359
4359
  */
4360
4360
  Filter: string;
4361
4361
  /**
4362
- * 结束时间(必填)
4362
+ * <p>查询日志结束时间(必填)</p>
4363
4363
  */
4364
4364
  EndTime: number;
4365
4365
  /**
4366
- * 项目ID(必填)
4366
+ * <p>项目ID(必填)</p>
4367
4367
  */
4368
4368
  ID: number;
4369
4369
  }
@@ -4439,7 +4439,7 @@ export interface DeleteStarProjectResponse {
4439
4439
  */
4440
4440
  export interface DescribeRumLogDetailsV2Response {
4441
4441
  /**
4442
- * 日志明细
4442
+ * <p>日志明细</p>
4443
4443
  */
4444
4444
  Result?: string;
4445
4445
  /**
@@ -4550,7 +4550,7 @@ export interface DescribeReleaseFileSignResponse {
4550
4550
  */
4551
4551
  export interface DescribeRumLogTotalV2Response {
4552
4552
  /**
4553
- * 日志总量
4553
+ * <p>日志总量</p>
4554
4554
  */
4555
4555
  Result?: string;
4556
4556
  /**
@@ -5689,7 +5689,7 @@ export interface DescribeRumLogListRequest {
5689
5689
  */
5690
5690
  export interface DescribeRumGroupLogV2Response {
5691
5691
  /**
5692
- * <p>Query result in JSON string format</p>
5692
+ * <p>日志聚合结果</p>
5693
5693
  */
5694
5694
  Result?: string;
5695
5695
  /**
@@ -6151,35 +6151,35 @@ export interface DescribeFOOMReportListRequest {
6151
6151
  */
6152
6152
  export interface DescribeRumLogDetailsV2Request {
6153
6153
  /**
6154
- * 排序方式 desc asc
6154
+ * <p>排序方式 desc asc</p>
6155
6155
  */
6156
6156
  OrderBy: string;
6157
6157
  /**
6158
- * 开始时间(必填)格式为时间戳 毫秒
6158
+ * <p>查询日志开始时间(必填)格式为时间戳 毫秒</p>
6159
6159
  */
6160
6160
  StartTime: number;
6161
6161
  /**
6162
- * 单次查询返回的原始日志条数,最大值为100(必填)
6162
+ * <p>单次查询返回的原始日志条数,最大值为100(必填)</p>
6163
6163
  */
6164
6164
  Limit: number;
6165
6165
  /**
6166
- * 查询的相关参数
6166
+ * <p>过滤条件,其中key与运算符(Operator)对应可选字段枚举值与示例查看文档:https://cloud.tencent.com/document/product/248/87223</p>
6167
6167
  */
6168
6168
  Filter: string;
6169
6169
  /**
6170
- * 结束时间(必填)格式为时间戳 毫秒
6170
+ * <p>查询日志结束时间(必填)格式为时间戳 毫秒</p>
6171
6171
  */
6172
6172
  EndTime: number;
6173
6173
  /**
6174
- * 项目ID(必填)
6174
+ * <p>项目ID(必填)</p>
6175
6175
  */
6176
6176
  ID: number;
6177
6177
  /**
6178
- * 上次查询的最后一个日志的时间戳
6178
+ * <p>上次查询的最后一个日志的时间戳</p>
6179
6179
  */
6180
6180
  LastTime?: number;
6181
6181
  /**
6182
- * 上次查询的最后一个日志的rowId
6182
+ * <p>上次查询的最后一个日志的rowId</p>
6183
6183
  */
6184
6184
  LastRowId?: number;
6185
6185
  }
@@ -6536,7 +6536,7 @@ export interface DescribeRumGroupLogV2Request {
6536
6536
  */
6537
6537
  OrderBy: string;
6538
6538
  /**
6539
- * <p>开始时间(必填)</p>
6539
+ * <p>查询日志开始时间(必填)</p>
6540
6540
  */
6541
6541
  StartTime: number;
6542
6542
  /**
@@ -6544,11 +6544,11 @@ export interface DescribeRumGroupLogV2Request {
6544
6544
  */
6545
6545
  Limit: number;
6546
6546
  /**
6547
- * <p>过滤条件</p>
6547
+ * <p>过滤条件,其中key与运算符(Operator)对应可选字段枚举值与示例查看文档:https://cloud.tencent.com/document/product/248/87223</p>
6548
6548
  */
6549
6549
  Filter: string;
6550
6550
  /**
6551
- * <p>结束时间(必填)</p>
6551
+ * <p>查询日志结束时间(必填)</p>
6552
6552
  */
6553
6553
  EndTime: number;
6554
6554
  /**