tencentcloud-sdk-nodejs 4.0.495 → 4.0.496

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 (67) hide show
  1. package/CHANGELOG.md +158 -0
  2. package/SERVICE_CHANGELOG.md +210 -147
  3. package/package.json +1 -1
  4. package/products.md +13 -12
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/antiddos/v20200309/antiddos_models.ts +4 -4
  7. package/src/services/apm/v20210622/apm_client.ts +1 -0
  8. package/src/services/apm/v20210622/apm_models.ts +23 -0
  9. package/src/services/cam/v20190116/cam_models.ts +3 -3
  10. package/src/services/cdwch/v20200915/cdwch_client.ts +1 -1
  11. package/src/services/cdwch/v20200915/cdwch_models.ts +18 -6
  12. package/src/services/cls/v20201016/cls_client.ts +4 -4
  13. package/src/services/cynosdb/v20190107/cynosdb_client.ts +2 -1
  14. package/src/services/cynosdb/v20190107/cynosdb_models.ts +96 -33
  15. package/src/services/dts/v20211206/dts_client.ts +1 -1
  16. package/src/services/dts/v20211206/dts_models.ts +5 -5
  17. package/src/services/es/v20180416/es_models.ts +1 -1
  18. package/src/services/ess/v20201111/ess_models.ts +26 -16
  19. package/src/services/essbasic/v20210526/essbasic_client.ts +2 -2
  20. package/src/services/essbasic/v20210526/essbasic_models.ts +7 -6
  21. package/src/services/index.ts +1 -0
  22. package/src/services/tds/v20220801/tds_client.ts +15 -3
  23. package/src/services/tds/v20220801/tds_models.ts +157 -27
  24. package/src/services/trdp/index.ts +5 -0
  25. package/src/services/trdp/v20220726/index.ts +6 -0
  26. package/src/services/trdp/v20220726/trdp_client.ts +50 -0
  27. package/src/services/trdp/v20220726/trdp_models.ts +564 -0
  28. package/src/services/trtc/v20190722/trtc_client.ts +85 -7
  29. package/src/services/trtc/v20190722/trtc_models.ts +724 -97
  30. package/tencentcloud/common/sdk_version.d.ts +1 -1
  31. package/tencentcloud/common/sdk_version.js +1 -1
  32. package/tencentcloud/services/antiddos/v20200309/antiddos_models.d.ts +4 -4
  33. package/tencentcloud/services/apm/v20210622/apm_models.d.ts +20 -0
  34. package/tencentcloud/services/cam/v20190116/cam_models.d.ts +3 -3
  35. package/tencentcloud/services/cdwch/v20200915/cdwch_client.d.ts +1 -1
  36. package/tencentcloud/services/cdwch/v20200915/cdwch_client.js +1 -1
  37. package/tencentcloud/services/cdwch/v20200915/cdwch_models.d.ts +16 -4
  38. package/tencentcloud/services/cls/v20201016/cls_client.d.ts +4 -4
  39. package/tencentcloud/services/cls/v20201016/cls_client.js +4 -4
  40. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +81 -29
  41. package/tencentcloud/services/dts/v20211206/dts_client.d.ts +1 -1
  42. package/tencentcloud/services/dts/v20211206/dts_client.js +1 -1
  43. package/tencentcloud/services/dts/v20211206/dts_models.d.ts +5 -5
  44. package/tencentcloud/services/es/v20180416/es_models.d.ts +1 -1
  45. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +22 -14
  46. package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +2 -2
  47. package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +2 -2
  48. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +7 -6
  49. package/tencentcloud/services/index.d.ts +1 -0
  50. package/tencentcloud/services/index.js +2 -0
  51. package/tencentcloud/services/tds/v20220801/tds_client.d.ts +5 -1
  52. package/tencentcloud/services/tds/v20220801/tds_client.js +6 -0
  53. package/tencentcloud/services/tds/v20220801/tds_models.d.ts +133 -27
  54. package/tencentcloud/services/trdp/index.d.ts +6 -0
  55. package/tencentcloud/services/trdp/index.js +7 -0
  56. package/tencentcloud/services/trdp/v20220726/index.d.ts +6 -0
  57. package/tencentcloud/services/trdp/v20220726/index.js +9 -0
  58. package/tencentcloud/services/trdp/v20220726/trdp_client.d.ts +14 -0
  59. package/tencentcloud/services/trdp/v20220726/trdp_client.js +37 -0
  60. package/tencentcloud/services/trdp/v20220726/trdp_models.d.ts +470 -0
  61. package/tencentcloud/services/trdp/v20220726/trdp_models.js +18 -0
  62. package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +35 -1
  63. package/tencentcloud/services/trtc/v20190722/trtc_client.js +40 -0
  64. package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +619 -88
  65. package/test/tds.v20220801.test.js +10 -0
  66. package/test/trdp.v20220726.test.js +31 -0
  67. package/test/trtc.v20190722.test.js +30 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs",
3
- "version": "4.0.495",
3
+ "version": "4.0.496",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "tencentcloud/index.js",
6
6
  "scripts": {
package/products.md CHANGED
@@ -8,12 +8,12 @@
8
8
  | afc | [定制建模](https://cloud.tencent.com/document/product/1029) | 2022-11-14 06:09:18 |
9
9
  | ame | [正版曲库直通车](https://cloud.tencent.com/document/product/1155) | 2022-04-15 06:01:25 |
10
10
  | ams | [音频内容安全](https://cloud.tencent.com/document/product/1219) | 2022-11-16 06:07:01 |
11
- | antiddos | [T-Sec-DDoS防护(Anti-DDoS)](https://cloud.tencent.com/document/product/1021) | 2022-12-02 18:38:20 |
11
+ | antiddos | [T-Sec-DDoS防护(Anti-DDoS)](https://cloud.tencent.com/document/product/1021) | 2022-12-05 10:58:07 |
12
12
  | apcas | [汽车精准获客服务](https://cloud.tencent.com/document/product/1244) | 2022-04-04 06:05:36 |
13
13
  | ape | [正版图库直通车](https://cloud.tencent.com/document/product/1181) | 2022-04-04 06:05:40 |
14
14
  | api | [云 API](https://cloud.tencent.com/document/product/1278) | 2022-06-07 06:00:45 |
15
15
  | apigateway | [API 网关](https://cloud.tencent.com/document/product/628) | 2022-11-09 06:09:16 |
16
- | apm | [应用性能观测](https://cloud.tencent.com/document/product/1463) | 2022-08-22 06:08:36 |
16
+ | apm | [应用性能观测](https://cloud.tencent.com/document/product/1463) | 2022-12-06 06:16:29 |
17
17
  | as | [弹性伸缩](https://cloud.tencent.com/document/product/377) | 2022-11-18 06:08:39 |
18
18
  | asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2022-11-29 06:12:14 |
19
19
  | asw | [应用与服务编排工作流](https://cloud.tencent.com/document/product/1272) | 2022-04-04 06:08:40 |
@@ -32,7 +32,7 @@
32
32
  | bri | [业务风险情报](https://cloud.tencent.com/document/product/1064) | 2021-01-07 08:02:40 |
33
33
  | bsca | [二进制软件成分分析](https://cloud.tencent.com/document/product/1483) | 2022-09-29 06:12:03 |
34
34
  | btoe | [区块链可信取证](https://cloud.tencent.com/document/product/1259) | 2022-04-04 06:10:17 |
35
- | cam | [访问管理](https://cloud.tencent.com/document/product/598) | 2022-11-08 06:11:07 |
35
+ | cam | [访问管理](https://cloud.tencent.com/document/product/598) | 2022-12-06 06:19:53 |
36
36
  | captcha | [验证码](https://cloud.tencent.com/document/product/1110) | 2022-11-22 06:12:35 |
37
37
  | car | [应用云渲染](https://cloud.tencent.com/document/product/1547) | 2022-11-18 06:12:01 |
38
38
  | casb | [云访问安全代理](https://cloud.tencent.com/document/product/1303) | 2022-10-31 06:12:52 |
@@ -43,7 +43,7 @@
43
43
  | cdc | [本地专用集群](https://cloud.tencent.com/document/product/1346) | 2022-07-30 15:07:54 |
44
44
  | cdn | [内容分发网络 CDN](https://cloud.tencent.com/document/product/228) | 2022-11-29 06:20:53 |
45
45
  | cds | [T-Sec-数据安全审计(DSA)](https://cloud.tencent.com/document/product/856) | 2022-10-31 06:15:53 |
46
- | cdwch | [云数据仓库 ClickHouse](https://cloud.tencent.com/document/product/1299) | 2022-11-30 06:17:14 |
46
+ | cdwch | [云数据仓库 ClickHouse](https://cloud.tencent.com/document/product/1299) | 2022-12-06 06:24:19 |
47
47
  | cfg | [混沌演练平台](https://cloud.tencent.com/document/product/1500) | 2022-09-26 06:16:02 |
48
48
  | cfs | [文件存储](https://cloud.tencent.com/document/product/582) | 2022-11-21 06:14:58 |
49
49
  | cfw | [云防火墙](https://cloud.tencent.com/document/product/1132) | 2022-11-28 06:18:58 |
@@ -57,7 +57,7 @@
57
57
  | cloudaudit | [云审计](https://cloud.tencent.com/document/product/629) | 2022-11-24 06:19:10 |
58
58
  | cloudhsm | [云加密机](https://cloud.tencent.com/document/product/639) | 2022-11-02 06:13:26 |
59
59
  | cloudstudio | [Cloud Studio(云端 IDE)](https://cloud.tencent.com/document/product/1039) | 2022-10-31 06:18:55 |
60
- | cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2022-11-30 06:20:47 |
60
+ | cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2022-12-06 06:27:51 |
61
61
  | cme | [多媒体创作引擎](https://cloud.tencent.com/document/product/1156) | 2022-12-05 06:32:09 |
62
62
  | cmq | [消息队列 CMQ](https://cloud.tencent.com/document/product/406) | 2022-11-16 06:15:44 |
63
63
  | cms | [内容安全](https://cloud.tencent.com/document/product) | 2020-10-29 08:03:08 |
@@ -66,7 +66,7 @@
66
66
  | cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2022-12-05 06:35:54 |
67
67
  | cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2022-11-17 06:19:07 |
68
68
  | cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 |
69
- | cynosdb | [TDSQL-C MySQL 版](https://cloud.tencent.com/document/product/1003) | 2022-12-05 06:38:55 |
69
+ | cynosdb | [TDSQL-C MySQL 版](https://cloud.tencent.com/document/product/1003) | 2022-12-06 06:33:40 |
70
70
  | dasb | [T-Sec-堡垒机(BH)](https://cloud.tencent.com/document/product/1025) | 2022-11-04 06:19:07 |
71
71
  | dataintegration | [数据接入平台](https://cloud.tencent.com/document/product/1591) | 2022-07-26 15:32:15 |
72
72
  | dayu | [DDoS 高防包](https://cloud.tencent.com/document/product/1021) | 2022-07-29 06:07:15 |
@@ -80,7 +80,7 @@
80
80
  | drm | [数字版权管理](https://cloud.tencent.com/document/product/1000) | 2022-04-04 06:38:48 |
81
81
  | ds | [文档服务](https://cloud.tencent.com/document/product/869) | 2022-10-31 06:27:09 |
82
82
  | dtf | [分布式事务](https://cloud.tencent.com/document/product/1224) | 2022-04-04 06:38:57 |
83
- | dts | [数据传输服务](https://cloud.tencent.com/document/product/571) | 2022-12-05 06:45:09 |
83
+ | dts | [数据传输服务](https://cloud.tencent.com/document/product/571) | 2022-12-06 06:38:01 |
84
84
  | eb | [事件总线](https://cloud.tencent.com/document/product/1359) | 2022-08-23 06:27:55 |
85
85
  | ecc | [英文作文批改](https://cloud.tencent.com/document/product/1076) | 2022-04-04 06:39:27 |
86
86
  | ecdn | [全站加速网络](https://cloud.tencent.com/document/product/570) | 2022-04-08 06:06:57 |
@@ -88,9 +88,9 @@
88
88
  | eiam | [数字身份管控平台(员工版)](https://cloud.tencent.com/document/product/1442) | 2022-05-13 06:11:29 |
89
89
  | eis | [数据连接器](https://cloud.tencent.com/document/product/1270) | 2022-11-16 06:22:42 |
90
90
  | emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2022-11-29 06:43:55 |
91
- | es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2022-11-30 06:34:30 |
92
- | ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2022-12-01 06:35:57 |
93
- | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2022-11-29 17:04:20 |
91
+ | es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2022-12-06 06:40:42 |
92
+ | ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2022-12-06 06:41:11 |
93
+ | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2022-12-06 06:41:29 |
94
94
  | facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2022-06-15 06:09:10 |
95
95
  | faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2022-11-29 06:46:33 |
96
96
  | fmu | [人脸试妆](https://cloud.tencent.com/document/product/1172) | 2022-04-04 06:43:06 |
@@ -184,7 +184,7 @@
184
184
  | tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2022-10-21 06:47:14 |
185
185
  | tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2022-11-17 06:47:13 |
186
186
  | tdmq | [消息队列 TDMQ](https://cloud.tencent.com/document/product/1179) | 2022-11-25 07:03:54 |
187
- | tds | [设备安全](https://cloud.tencent.com/document/product/1628) | 2022-10-10 06:42:56 |
187
+ | tds | [设备安全](https://cloud.tencent.com/document/product/1628) | 2022-12-06 07:10:10 |
188
188
  | tem | [弹性微服务 TEM](https://cloud.tencent.com/document/product/1371) | 2022-11-17 06:48:59 |
189
189
  | teo | [边缘安全加速平台](https://cloud.tencent.com/document/product/1552) | 2022-11-29 07:26:41 |
190
190
  | thpc | [高性能计算平台](https://cloud.tencent.com/document/product/1527) | 2022-11-16 06:42:38 |
@@ -200,8 +200,9 @@
200
200
  | tkgdq | [腾讯知识图谱数据查询](https://cloud.tencent.com/document/product) | 2020-03-10 00:51:44 |
201
201
  | tms | [文本内容安全](https://cloud.tencent.com/document/product/1124) | 2022-11-18 06:55:59 |
202
202
  | tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2022-11-02 06:48:15 |
203
+ | trdp | [流量风险决策平台](https://cloud.tencent.com/document/product/1604) | 2022-12-06 07:15:29 |
203
204
  | trp | [T-Sec-安心平台(RP)](https://cloud.tencent.com/document/product/1458) | 2022-11-22 07:04:58 |
204
- | trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2022-11-21 06:56:52 |
205
+ | trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2022-12-06 07:15:51 |
205
206
  | tse | [微服务引擎 TSE](https://cloud.tencent.com/document/product/1364) | 2022-10-31 06:58:14 |
206
207
  | tsf | [微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2022-10-31 06:58:25 |
207
208
  | tsw | [微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2022-10-31 06:59:44 |
@@ -1 +1 @@
1
- export const sdkVersion = "4.0.495"
1
+ export const sdkVersion = "4.0.496"
@@ -1230,12 +1230,12 @@ export interface DescribeOverviewAttackTrendRequest {
1230
1230
  Period: number
1231
1231
 
1232
1232
  /**
1233
- * 统计开始时间
1233
+ * 防护概览攻击趋势开始时间
1234
1234
  */
1235
1235
  StartTime: string
1236
1236
 
1237
1237
  /**
1238
- * 统计结束时间
1238
+ * 防护概览攻击趋势结束时间
1239
1239
  */
1240
1240
  EndTime: string
1241
1241
  }
@@ -2167,12 +2167,12 @@ export interface DescribeOverviewAttackTrendResponse {
2167
2167
  Type: string
2168
2168
 
2169
2169
  /**
2170
- * 统计起始时间
2170
+ * 防护概览攻击趋势起始时间
2171
2171
  */
2172
2172
  StartTime: string
2173
2173
 
2174
2174
  /**
2175
- * 统计结束时间
2175
+ * 防护概览攻击趋势结束时间
2176
2176
  */
2177
2177
  EndTime: string
2178
2178
 
@@ -34,6 +34,7 @@ import {
34
34
  DescribeMetricRecordsResponse,
35
35
  ApmTag,
36
36
  Filter,
37
+ APMKV,
37
38
  DescribeApmAgentRequest,
38
39
  DescribeMetricRecordsRequest,
39
40
  DescribeGeneralMetricDataRequest,
@@ -398,6 +398,12 @@ export interface ApmField {
398
398
  * 请求数
399
399
  */
400
400
  Key: string
401
+
402
+ /**
403
+ * 同环比上周期具体数值
404
+ 注意:此字段可能返回 null,表示取不到有效值。
405
+ */
406
+ LastPeriodValue: Array<APMKV>
401
407
  }
402
408
 
403
409
  /**
@@ -521,6 +527,23 @@ export interface Filter {
521
527
  Value: string
522
528
  }
523
529
 
530
+ /**
531
+ * APM浮点数类型键值对
532
+ */
533
+ export interface APMKV {
534
+ /**
535
+ * Key值定义
536
+ 注意:此字段可能返回 null,表示取不到有效值。
537
+ */
538
+ Key: string
539
+
540
+ /**
541
+ * Value值定义
542
+ 注意:此字段可能返回 null,表示取不到有效值。
543
+ */
544
+ Value: number
545
+ }
546
+
524
547
  /**
525
548
  * DescribeApmAgent请求参数结构体
526
549
  */
@@ -983,7 +983,7 @@ export interface ListPoliciesResponse {
983
983
  /**
984
984
  * 策略总数
985
985
  */
986
- TotalNum?: number
986
+ TotalNum: number
987
987
 
988
988
  /**
989
989
  * 策略数组,数组每个成员包括 policyId、policyName、addTime、type、description、 createMode 字段。其中:
@@ -997,13 +997,13 @@ Attachments: 关联的用户数
997
997
  ServiceType: 策略关联的产品
998
998
  IsAttached: 当需要查询标记实体是否已经关联策略时不为null。0表示未关联策略,1表示已关联策略
999
999
  */
1000
- List?: Array<StrategyInfo>
1000
+ List: Array<StrategyInfo>
1001
1001
 
1002
1002
  /**
1003
1003
  * 保留字段
1004
1004
  注意:此字段可能返回 null,表示取不到有效值。
1005
1005
  */
1006
- ServiceTypeList?: Array<string>
1006
+ ServiceTypeList: Array<string>
1007
1007
 
1008
1008
  /**
1009
1009
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -61,7 +61,7 @@ export class Client extends AbstractClient {
61
61
  }
62
62
 
63
63
  /**
64
- * 针对驱动sql命令查询ck集群接口
64
+ * 查询集群用户、集群表,数据库等相关信息
65
65
  */
66
66
  async DescribeCkSqlApis(
67
67
  req: DescribeCkSqlApisRequest,
@@ -272,17 +272,28 @@ export interface DescribeCkSqlApisRequest {
272
272
  InstanceId: string
273
273
 
274
274
  /**
275
- * api接口名称
276
- */
275
+ * api接口名称,GetClusters:获取集群cluster列表
276
+ GetSystemUsers:获取系统用户列表
277
+ CheckNodeCluster: 检查节点是否隶属一个cluster
278
+ GetClusterDatabases: 获取一个cluster下的数据库列表
279
+ GetClusterTables: 获取一个cluster下的数据库表列表
280
+ GetPrivilegeUsers: 获取授权的用户列表
281
+ GET_USER_CLUSTER_PRIVILEGES:获取用户cluster下的权限
282
+ GetUserClusterNewPrivileges:获取用户cluster下的权限 (新版)
283
+ RevokeClusterUser:解绑cluster用户
284
+ DeleteSystemUser:删除系统用户 —— 必须所有cluster先解绑
285
+ GetUserOptionMessages:获取用户配置备注信息
286
+ GET_USER_CONFIGS:获取用户配置列表 QUOTA、PROFILE、POLICY
287
+ */
277
288
  ApiType: string
278
289
 
279
290
  /**
280
- * 集群名称
291
+ * 集群名称,GET_SYSTEM_USERS,GET_PRIVILEGE_USERS,GET_CLUSTER_DATABASES,GET_CLUSTER_TABLES 必填
281
292
  */
282
293
  Cluster?: string
283
294
 
284
295
  /**
285
- * 用户名称
296
+ * 用户名称,api与user相关的必填
286
297
  */
287
298
  UserName?: string
288
299
  }
@@ -297,8 +308,9 @@ export interface ActionAlterCkUserRequest {
297
308
  UserInfo: CkUserAlterInfo
298
309
 
299
310
  /**
300
- * api接口类型
301
- */
311
+ * api接口类型,
312
+ AddSystemUser新增用户,UpdateSystemUser,修改用户
313
+ */
302
314
  ApiType: string
303
315
  }
304
316
 
@@ -306,7 +306,7 @@ export class Client extends AbstractClient {
306
306
  }
307
307
 
308
308
  /**
309
- * 本接口用于修改特殊采集配置任务
309
+ * 本接口用于修改特殊采集配置任务,特殊采集配置应用于自建K8S环境的采集Agent
310
310
  */
311
311
  async ModifyConfigExtra(
312
312
  req: ModifyConfigExtraRequest,
@@ -356,7 +356,7 @@ export class Client extends AbstractClient {
356
356
  }
357
357
 
358
358
  /**
359
- * 本接口用于获取特殊采集配置
359
+ * 本接口用于获取特殊采集配置,特殊采集配置应用于自建K8S环境的采集Agent
360
360
  */
361
361
  async DescribeConfigExtras(
362
362
  req: DescribeConfigExtrasRequest,
@@ -476,7 +476,7 @@ export class Client extends AbstractClient {
476
476
  }
477
477
 
478
478
  /**
479
- * 本接口用于删除特殊采集规则配置
479
+ * 本接口用于删除特殊采集规则配置,特殊采集配置应用于自建K8S环境的采集Agent
480
480
  */
481
481
  async DeleteConfigExtra(
482
482
  req: DeleteConfigExtraRequest,
@@ -900,7 +900,7 @@ cls.pb.cc cls.pb.h cls.proto
900
900
  }
901
901
 
902
902
  /**
903
- * 本接口用于创建特殊采集配置任务
903
+ * 本接口用于创建特殊采集配置任务,特殊采集配置应用于自建K8S环境的采集Agent
904
904
  */
905
905
  async CreateConfigExtra(
906
906
  req: CreateConfigExtraRequest,
@@ -50,7 +50,7 @@ import {
50
50
  DescribeAuditLogsResponse,
51
51
  SearchClusterTablesRequest,
52
52
  PauseServerlessRequest,
53
- ObjectTask,
53
+ ModifiableInfo,
54
54
  RevokeAccountPrivilegesResponse,
55
55
  CreateClustersResponse,
56
56
  SetRenewFlagRequest,
@@ -136,6 +136,7 @@ import {
136
136
  CynosdbCluster,
137
137
  IsolateClusterResponse,
138
138
  SearchClusterDatabasesResponse,
139
+ ObjectTask,
139
140
  OfflineClusterResponse,
140
141
  SwitchProxyVpcResponse,
141
142
  RevokeAccountPrivilegesRequest,
@@ -711,39 +711,9 @@ export interface PauseServerlessRequest {
711
711
  }
712
712
 
713
713
  /**
714
- * 任务信息
714
+ * 参数是否可修改的详细信息
715
715
  */
716
- export interface ObjectTask {
717
- /**
718
- * 任务自增ID
719
- 注意:此字段可能返回 null,表示取不到有效值。
720
- */
721
- TaskId?: number
722
-
723
- /**
724
- * 任务类型
725
- 注意:此字段可能返回 null,表示取不到有效值。
726
- */
727
- TaskType?: string
728
-
729
- /**
730
- * 任务状态
731
- 注意:此字段可能返回 null,表示取不到有效值。
732
- */
733
- TaskStatus?: string
734
-
735
- /**
736
- * 任务ID(集群ID|实例组ID|实例ID)
737
- 注意:此字段可能返回 null,表示取不到有效值。
738
- */
739
- ObjectId?: string
740
-
741
- /**
742
- * 任务类型
743
- 注意:此字段可能返回 null,表示取不到有效值。
744
- */
745
- ObjectType?: string
746
- }
716
+ export type ModifiableInfo = null
747
717
 
748
718
  /**
749
719
  * RevokeAccountPrivileges返回参数结构体
@@ -1977,6 +1947,35 @@ pause
1977
1947
  * 存储付费类型
1978
1948
  */
1979
1949
  StoragePayMode: number
1950
+
1951
+ /**
1952
+ * 物理区
1953
+ */
1954
+ PhysicalZone: string
1955
+
1956
+ /**
1957
+ * 商业类型
1958
+ 注意:此字段可能返回 null,表示取不到有效值。
1959
+ */
1960
+ BusinessType: string
1961
+
1962
+ /**
1963
+ * 任务
1964
+ 注意:此字段可能返回 null,表示取不到有效值。
1965
+ */
1966
+ Tasks: Array<ObjectTask>
1967
+
1968
+ /**
1969
+ * 是否冻结
1970
+ 注意:此字段可能返回 null,表示取不到有效值。
1971
+ */
1972
+ IsFreeze: string
1973
+
1974
+ /**
1975
+ * 资源标签
1976
+ 注意:此字段可能返回 null,表示取不到有效值。
1977
+ */
1978
+ ResourceTags: Array<Tag>
1980
1979
  }
1981
1980
 
1982
1981
  /**
@@ -2576,6 +2575,30 @@ export interface ParamInfo {
2576
2575
  * 参数描述
2577
2576
  */
2578
2577
  Description: string
2578
+
2579
+ /**
2580
+ * 是否为全局参数
2581
+ 注意:此字段可能返回 null,表示取不到有效值。
2582
+ */
2583
+ IsGlobal: number
2584
+
2585
+ /**
2586
+ * 参数是否可修改
2587
+ 注意:此字段可能返回 null,表示取不到有效值。
2588
+ */
2589
+ ModifiableInfo: ModifiableInfo
2590
+
2591
+ /**
2592
+ * 是否为函数
2593
+ 注意:此字段可能返回 null,表示取不到有效值。
2594
+ */
2595
+ IsFunc: boolean
2596
+
2597
+ /**
2598
+ * 函数
2599
+ 注意:此字段可能返回 null,表示取不到有效值。
2600
+ */
2601
+ Func: string
2579
2602
  }
2580
2603
 
2581
2604
  /**
@@ -3387,6 +3410,41 @@ export interface SearchClusterDatabasesResponse {
3387
3410
  RequestId?: string
3388
3411
  }
3389
3412
 
3413
+ /**
3414
+ * 任务信息
3415
+ */
3416
+ export interface ObjectTask {
3417
+ /**
3418
+ * 任务自增ID
3419
+ 注意:此字段可能返回 null,表示取不到有效值。
3420
+ */
3421
+ TaskId?: number
3422
+
3423
+ /**
3424
+ * 任务类型
3425
+ 注意:此字段可能返回 null,表示取不到有效值。
3426
+ */
3427
+ TaskType?: string
3428
+
3429
+ /**
3430
+ * 任务状态
3431
+ 注意:此字段可能返回 null,表示取不到有效值。
3432
+ */
3433
+ TaskStatus?: string
3434
+
3435
+ /**
3436
+ * 任务ID(集群ID|实例组ID|实例ID)
3437
+ 注意:此字段可能返回 null,表示取不到有效值。
3438
+ */
3439
+ ObjectId?: string
3440
+
3441
+ /**
3442
+ * 任务类型
3443
+ 注意:此字段可能返回 null,表示取不到有效值。
3444
+ */
3445
+ ObjectType?: string
3446
+ }
3447
+
3390
3448
  /**
3391
3449
  * OfflineCluster返回参数结构体
3392
3450
  */
@@ -3576,6 +3634,11 @@ export interface Account {
3576
3634
  * 主机
3577
3635
  */
3578
3636
  Host: string
3637
+
3638
+ /**
3639
+ * 用户最大连接数
3640
+ */
3641
+ MaxUserConnections: number
3579
3642
  }
3580
3643
 
3581
3644
  /**
@@ -3739,7 +3802,7 @@ export interface SwitchProxyVpcRequest {
3739
3802
  OldIpReserveHours: number
3740
3803
 
3741
3804
  /**
3742
- * 数据库代理组Id
3805
+ * 数据库代理组Id(该参数为必填项,可以通过DescribeProxies接口获得)
3743
3806
  */
3744
3807
  ProxyGroupId?: string
3745
3808
  }
@@ -230,7 +230,7 @@ export class Client extends AbstractClient {
230
230
  }
231
231
 
232
232
  /**
233
- * 终止同步任务
233
+ * 结束同步任务,操作后可通过查询同步任务信息接口DescribeSyncJobs,获取操作后的状态。
234
234
  */
235
235
  async StopSyncJob(
236
236
  req: StopSyncJobRequest,
@@ -532,7 +532,7 @@ export interface CreateMigrationServiceRequest {
532
532
  DstRegion: string
533
533
 
534
534
  /**
535
- * 实例规格,包括:micro、small、medium、large、xlarge、2xlarge
535
+ * 实例规格,包括:small、medium、large、xlarge、2xlarge
536
536
  */
537
537
  InstanceClass: string
538
538
 
@@ -3149,16 +3149,16 @@ export interface SyncJobInfo {
3149
3149
  StartTime: string
3150
3150
 
3151
3151
  /**
3152
- * 结束时间,格式为 yyyy-mm-dd hh:mm:ss
3152
+ * 任务状态,UnInitialized(未初始化)、Initialized(已初始化)、Checking(校验中)、CheckPass(校验通过)、CheckNotPass(校验不通过)、ReadyRunning(准备运行)、Running(运行中)、Pausing(暂停中)、Paused(已暂停)、Stopping(停止中)、Stopped(已结束)、ResumableErr(任务错误)、Resuming(恢复中)、Failed(失败)、Released(已释放)、Resetting(重置中)、Unknown(未知)
3153
3153
  注意:此字段可能返回 null,表示取不到有效值。
3154
3154
  */
3155
- EndTime: string
3155
+ Status: string
3156
3156
 
3157
3157
  /**
3158
- * 任务状态,UnInitialized(未初始化)、Initialized(已初始化)、Checking(校验中)、CheckPass(校验通过)、CheckNotPass(校验不通过)、ReadyRunning(准备运行)、Running(运行中)、Pausing(暂停中)、Paused(已暂停)、Stopping(停止中)、Stopped(已停止)、ResumableErr(任务错误)、Resuming(恢复中)、Failed(失败)、Released(已释放)、Resetting(重置中)、Unknown(未知)
3158
+ * 结束时间,格式为 yyyy-mm-dd hh:mm:ss
3159
3159
  注意:此字段可能返回 null,表示取不到有效值。
3160
3160
  */
3161
- Status: string
3161
+ EndTime: string
3162
3162
 
3163
3163
  /**
3164
3164
  * 标签相关信息
@@ -3358,7 +3358,7 @@ export interface UpdateInstanceRequest {
3358
3358
  Password?: string
3359
3359
 
3360
3360
  /**
3361
- * 访问控制列表
3361
+ * 可视化组件(Kibana、Cerebro)的公网访问策略
3362
3362
  */
3363
3363
  EsAcl?: EsAcl
3364
3364
 
@@ -2301,25 +2301,30 @@ DISTRICT - 省市区行政区划控件;
2301
2301
  如果是SignComponent控件类型,则可选的字段为
2302
2302
  SIGN_SEAL - 签署印章控件;
2303
2303
  SIGN_DATE - 签署日期控件;
2304
- DATE, 日期控件,默认是格式化为xxxx年xx月xx日
2305
2304
  SIGN_SIGNATURE - 用户签名控件;
2306
2305
  SIGN_PERSONAL_SEAL - 个人签署印章控件(使用文件发起暂不支持此类型);
2307
2306
  SIGN_PAGING_SEAL - 骑缝章;若文件发起,需要对应填充ComponentPosY、ComponentWidth、ComponentHeight
2307
+ SIGN_OPINION - 签署意见控件,用户需要根据配置的签署意见内容,完成对意见内容的确认
2308
2308
 
2309
2309
  表单域的控件不能作为印章和签名控件
2310
2310
  */
2311
2311
  ComponentType: string
2312
2312
 
2313
2313
  /**
2314
- * 参数控件宽度,单位pt
2314
+ * 控件所属文件的序号(模板中的resourceId排列序号,取值为:0-N)
2315
2315
  */
2316
- ComponentWidth: number
2316
+ FileIndex: number
2317
2317
 
2318
2318
  /**
2319
2319
  * 参数控件高度,单位pt
2320
2320
  */
2321
2321
  ComponentHeight: number
2322
2322
 
2323
+ /**
2324
+ * 参数控件宽度,单位pt
2325
+ */
2326
+ ComponentWidth: number
2327
+
2323
2328
  /**
2324
2329
  * 参数控件所在页码,取值为:1-N
2325
2330
  */
@@ -2335,11 +2340,6 @@ SIGN_PAGING_SEAL - 骑缝章;若文件发起,需要对应填充ComponentPosY
2335
2340
  */
2336
2341
  ComponentPosY: number
2337
2342
 
2338
- /**
2339
- * 控件所属文件的序号(模板中的resourceId排列序号,取值为:0-N)
2340
- */
2341
- FileIndex: number
2342
-
2343
2343
  /**
2344
2344
  * GenerateMode==KEYWORD 指定关键字
2345
2345
  */
@@ -2355,6 +2355,11 @@ SIGN_PAGING_SEAL - 骑缝章;若文件发起,需要对应填充ComponentPosY
2355
2355
  */
2356
2356
  ComponentRequired?: boolean
2357
2357
 
2358
+ /**
2359
+ * 控件关联的签署人ID
2360
+ */
2361
+ ComponentRecipientId?: string
2362
+
2358
2363
  /**
2359
2364
  * 扩展参数:
2360
2365
  为JSON格式。
@@ -2375,9 +2380,9 @@ ESIGN -- 个人印章类型
2375
2380
  ComponentExtra?: string
2376
2381
 
2377
2382
  /**
2378
- * 控件关联的签署人ID
2383
+ * 是否是表单域类型,默认不存在
2379
2384
  */
2380
- ComponentRecipientId?: string
2385
+ IsFormType?: boolean
2381
2386
 
2382
2387
  /**
2383
2388
  * 控件填充vaule,ComponentType和传入值类型对应关系:
@@ -2393,11 +2398,6 @@ SIGN_PAGING_SEAL - 可以指定印章ID,于控制台查询获取
2393
2398
  */
2394
2399
  ComponentValue?: string
2395
2400
 
2396
- /**
2397
- * 是否是表单域类型,默认不存在
2398
- */
2399
- IsFormType?: boolean
2400
-
2401
2401
  /**
2402
2402
  * NORMAL 正常模式,使用坐标制定签署控件位置
2403
2403
  FIELD 表单域,需使用ComponentName指定表单域名称
@@ -2406,10 +2406,15 @@ KEYWORD 关键字,使用ComponentId指定关键字
2406
2406
  GenerateMode?: string
2407
2407
 
2408
2408
  /**
2409
- * 日期控件类型字号
2409
+ * 日期签署控件的字号,默认为 12
2410
2410
  */
2411
2411
  ComponentDateFontSize?: number
2412
2412
 
2413
+ /**
2414
+ * 渠道版控件 id 标识
2415
+ */
2416
+ ChannelComponentId?: string
2417
+
2413
2418
  /**
2414
2419
  * 指定关键字时横坐标偏移量,单位pt
2415
2420
  */
@@ -2420,6 +2425,11 @@ KEYWORD 关键字,使用ComponentId指定关键字
2420
2425
  */
2421
2426
  OffsetY?: number
2422
2427
 
2428
+ /**
2429
+ * //渠道子客控件来源。0-渠道指定;1-用户自定义
2430
+ */
2431
+ ChannelComponentSource?: number
2432
+
2423
2433
  /**
2424
2434
  * 指定关键字排序规则,Positive-正序,Reverse-倒序。传入Positive时会根据关键字在PDF文件内的顺序进行排列。在指定KeywordIndexes时,0代表在PDF内查找内容时,查找到的第一个关键字。
2425
2435
  传入Reverse时会根据关键字在PDF文件内的反序进行排列。在指定KeywordIndexes时,0代表在PDF内查找内容时,查找到的最后一个关键字。
@@ -203,8 +203,7 @@ export class Client extends AbstractClient {
203
203
  }
204
204
 
205
205
  /**
206
- * 渠道版撤销签署流程接口
207
- 仅支持未签署完成的合同
206
+ * 渠道版撤销签署流程接口,可以撤回:未全部签署完成;不可以撤回(终态):已全部签署完成、已拒签、已过期、已撤回。
208
207
  注意:
209
208
  能撤回合同的只能是合同的发起人或者发起企业的超管、法人
210
209
 
@@ -281,6 +280,7 @@ export class Client extends AbstractClient {
281
280
  * 指定需要批量撤销的签署流程Id,获取批量撤销链接
282
281
  客户指定需要撤销的签署流程Id,最多100个,超过100不处理;
283
282
  接口调用成功返回批量撤销合同的链接,通过链接跳转到电子签小程序完成批量撤销;
283
+ 可以撤回:未全部签署完成;不可以撤回(终态):已全部签署完成、已拒签、已过期、已撤回。
284
284
  注意:
285
285
  能撤回合同的只能是合同的发起人或者发起企业的超管、法人
286
286
  */