tencentcloud-sdk-nodejs 4.1.284 → 4.1.285
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/es/common/sdk_version.js +1 -1
- package/es/services/dlc/v20210125/dlc_client.js +71 -14
- package/es/services/kms/v20190118/kms_client.js +3 -0
- package/es/services/mqtt/v20240516/mqtt_client.js +20 -8
- package/es/services/omics/v20221128/omics_client.js +3 -0
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/ai3d/v20250513/ai3d_models.d.ts +10 -2
- package/tencentcloud/services/chc/v20230418/chc_models.d.ts +54 -17
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +99 -61
- package/tencentcloud/services/dbdc/v20201029/dbdc_models.d.ts +12 -0
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +91 -15
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +135 -21
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +1840 -493
- package/tencentcloud/services/dts/v20211206/dts_models.d.ts +17 -4
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +52 -21
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +52 -22
- package/tencentcloud/services/kms/v20190118/kms_client.d.ts +5 -1
- package/tencentcloud/services/kms/v20190118/kms_client.js +6 -0
- package/tencentcloud/services/kms/v20190118/kms_models.d.ts +26 -0
- package/tencentcloud/services/mqtt/v20240516/mqtt_client.d.ts +26 -10
- package/tencentcloud/services/mqtt/v20240516/mqtt_client.js +37 -13
- package/tencentcloud/services/mqtt/v20240516/mqtt_models.d.ts +283 -107
- package/tencentcloud/services/omics/v20221128/omics_client.d.ts +5 -1
- package/tencentcloud/services/omics/v20221128/omics_client.js +6 -0
- package/tencentcloud/services/omics/v20221128/omics_models.d.ts +30 -0
- package/tencentcloud/services/rce/v20201103/rce_models.d.ts +1 -1
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +22 -22
|
@@ -63,6 +63,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
63
63
|
async DescribeForbiddenTablePro(req, cb) {
|
|
64
64
|
return this.request("DescribeForbiddenTablePro", req, cb);
|
|
65
65
|
}
|
|
66
|
+
/**
|
|
67
|
+
* 获取指定资源分区详情
|
|
68
|
+
*/
|
|
69
|
+
async DescribePartitionDetail(req, cb) {
|
|
70
|
+
return this.request("DescribePartitionDetail", req, cb);
|
|
71
|
+
}
|
|
66
72
|
/**
|
|
67
73
|
* 获取用户详细信息
|
|
68
74
|
*/
|
|
@@ -147,6 +153,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
147
153
|
async CreateStoreLocation(req, cb) {
|
|
148
154
|
return this.request("CreateStoreLocation", req, cb);
|
|
149
155
|
}
|
|
156
|
+
/**
|
|
157
|
+
* 新增资源队列:在指定分区下创建一个新的资源队列,支持设置队列名称、描述、资源规格列表和队列类型。
|
|
158
|
+
*/
|
|
159
|
+
async CreatePartitionQueue(req, cb) {
|
|
160
|
+
return this.request("CreatePartitionQueue", req, cb);
|
|
161
|
+
}
|
|
150
162
|
/**
|
|
151
163
|
* 获取数据实验室Pod的YAML内容
|
|
152
164
|
*/
|
|
@@ -261,6 +273,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
261
273
|
async ListJobSpecs(req, cb) {
|
|
262
274
|
return this.request("ListJobSpecs", req, cb);
|
|
263
275
|
}
|
|
276
|
+
/**
|
|
277
|
+
* 获取工作组列表
|
|
278
|
+
*/
|
|
279
|
+
async DescribeWorkGroups(req, cb) {
|
|
280
|
+
return this.request("DescribeWorkGroups", req, cb);
|
|
281
|
+
}
|
|
264
282
|
/**
|
|
265
283
|
* 更新标准引擎资源组基础信息
|
|
266
284
|
*/
|
|
@@ -274,10 +292,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
274
292
|
return this.request("RenewDataEngine", req, cb);
|
|
275
293
|
}
|
|
276
294
|
/**
|
|
277
|
-
*
|
|
295
|
+
* 新增资源包
|
|
278
296
|
*/
|
|
279
|
-
async
|
|
280
|
-
return this.request("
|
|
297
|
+
async CreatePartition(req, cb) {
|
|
298
|
+
return this.request("CreatePartition", req, cb);
|
|
281
299
|
}
|
|
282
300
|
/**
|
|
283
301
|
* 查询网络配置列表
|
|
@@ -327,6 +345,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
327
345
|
async DescribeOtherCHDFSBindingList(req, cb) {
|
|
328
346
|
return this.request("DescribeOtherCHDFSBindingList", req, cb);
|
|
329
347
|
}
|
|
348
|
+
/**
|
|
349
|
+
* 修改分区描述
|
|
350
|
+
*/
|
|
351
|
+
async ModifyPartitionDescription(req, cb) {
|
|
352
|
+
return this.request("ModifyPartitionDescription", req, cb);
|
|
353
|
+
}
|
|
330
354
|
/**
|
|
331
355
|
* 更新标准引擎资源组基础信息
|
|
332
356
|
*/
|
|
@@ -405,6 +429,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
405
429
|
async CreateUser(req, cb) {
|
|
406
430
|
return this.request("CreateUser", req, cb);
|
|
407
431
|
}
|
|
432
|
+
/**
|
|
433
|
+
* 获取单个模型详情
|
|
434
|
+
*/
|
|
435
|
+
async GetInferenceModel(req, cb) {
|
|
436
|
+
return this.request("GetInferenceModel", req, cb);
|
|
437
|
+
}
|
|
408
438
|
/**
|
|
409
439
|
* 获取集群状态历史
|
|
410
440
|
*/
|
|
@@ -435,6 +465,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
435
465
|
async AssociateDatasourceHouse(req, cb) {
|
|
436
466
|
return this.request("AssociateDatasourceHouse", req, cb);
|
|
437
467
|
}
|
|
468
|
+
/**
|
|
469
|
+
* 更新标准引擎资源组基础信息
|
|
470
|
+
*/
|
|
471
|
+
async UpdateStandardEngineResourceGroupConfigInfo(req, cb) {
|
|
472
|
+
return this.request("UpdateStandardEngineResourceGroupConfigInfo", req, cb);
|
|
473
|
+
}
|
|
438
474
|
/**
|
|
439
475
|
* 获取LakeFs上task执行结果访问信息
|
|
440
476
|
*/
|
|
@@ -526,10 +562,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
526
562
|
return this.request("DescribeTablesName", req, cb);
|
|
527
563
|
}
|
|
528
564
|
/**
|
|
529
|
-
*
|
|
565
|
+
* 创建推理模型(模型上传)
|
|
530
566
|
*/
|
|
531
|
-
async
|
|
532
|
-
return this.request("
|
|
567
|
+
async CreateInferenceModel(req, cb) {
|
|
568
|
+
return this.request("CreateInferenceModel", req, cb);
|
|
533
569
|
}
|
|
534
570
|
/**
|
|
535
571
|
* 暂停标准引擎session
|
|
@@ -561,6 +597,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
561
597
|
async ListExampleCategories(req, cb) {
|
|
562
598
|
return this.request("ListExampleCategories", req, cb);
|
|
563
599
|
}
|
|
600
|
+
/**
|
|
601
|
+
* 校验资源名称合法性
|
|
602
|
+
*/
|
|
603
|
+
async CheckResourceName(req, cb) {
|
|
604
|
+
return this.request("CheckResourceName", req, cb);
|
|
605
|
+
}
|
|
564
606
|
/**
|
|
565
607
|
* 撤销DLC Catalog访问权限
|
|
566
608
|
*/
|
|
@@ -693,6 +735,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
693
735
|
async GrantDLCCatalogAccess(req, cb) {
|
|
694
736
|
return this.request("GrantDLCCatalogAccess", req, cb);
|
|
695
737
|
}
|
|
738
|
+
/**
|
|
739
|
+
* 更新推理模型(编辑标签、描述、参数量)
|
|
740
|
+
*/
|
|
741
|
+
async UpdateInferenceModel(req, cb) {
|
|
742
|
+
return this.request("UpdateInferenceModel", req, cb);
|
|
743
|
+
}
|
|
696
744
|
/**
|
|
697
745
|
* 更新集群配置:仅在 CREATED / STOPPED / FAILED 终态可用;变更落 MySQL,下次 Start 按新 spec 创建 K8s 资源
|
|
698
746
|
*/
|
|
@@ -760,10 +808,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
760
808
|
return this.request("StopLab", req, cb);
|
|
761
809
|
}
|
|
762
810
|
/**
|
|
763
|
-
*
|
|
811
|
+
* 查询当前地域可售卖的资源规格和最大配额
|
|
764
812
|
*/
|
|
765
|
-
async
|
|
766
|
-
return this.request("
|
|
813
|
+
async DescribeSaleResourceInfo(req, cb) {
|
|
814
|
+
return this.request("DescribeSaleResourceInfo", req, cb);
|
|
767
815
|
}
|
|
768
816
|
/**
|
|
769
817
|
* 创建查询结果下载任务
|
|
@@ -783,6 +831,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
783
831
|
async DescribeNotebookSessionStatementSqlResult(req, cb) {
|
|
784
832
|
return this.request("DescribeNotebookSessionStatementSqlResult", req, cb);
|
|
785
833
|
}
|
|
834
|
+
/**
|
|
835
|
+
* 查询用户vpc到引擎网络的连接
|
|
836
|
+
*/
|
|
837
|
+
async DescribeUserVpcConnection(req, cb) {
|
|
838
|
+
return this.request("DescribeUserVpcConnection", req, cb);
|
|
839
|
+
}
|
|
786
840
|
/**
|
|
787
841
|
* 获取账户子账户信息
|
|
788
842
|
*/
|
|
@@ -808,10 +862,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
808
862
|
return this.request("UnboundDatasourceHouse", req, cb);
|
|
809
863
|
}
|
|
810
864
|
/**
|
|
811
|
-
*
|
|
865
|
+
* 变配校验:判断用户的目标配置是否可以执行变配。校验逻辑:对于缩容场景(目标值 < 当前值),检查 default 队列的 min 值是否足够承受缩容差值。
|
|
812
866
|
*/
|
|
813
|
-
async
|
|
814
|
-
return this.request("
|
|
867
|
+
async CheckModifyPartition(req, cb) {
|
|
868
|
+
return this.request("CheckModifyPartition", req, cb);
|
|
815
869
|
}
|
|
816
870
|
/**
|
|
817
871
|
* 本接口(RegisterThirdPartyAccessUser)用于开通第三方平台访问
|
|
@@ -969,6 +1023,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
969
1023
|
async ListRayClusterJobs(req, cb) {
|
|
970
1024
|
return this.request("ListRayClusterJobs", req, cb);
|
|
971
1025
|
}
|
|
1026
|
+
/**
|
|
1027
|
+
* 资源队列名称合法性检测:校验队列名称是否合法,包括非空校验、格式校验(以小写字母开头,只允许小写字母、数字和连字符,长度1~11)和同分区下重名校验。
|
|
1028
|
+
*/
|
|
1029
|
+
async CheckQueueName(req, cb) {
|
|
1030
|
+
return this.request("CheckQueueName", req, cb);
|
|
1031
|
+
}
|
|
972
1032
|
/**
|
|
973
1033
|
* 本接口(DescribeTablePartitions)用于查询数据表分区信息
|
|
974
1034
|
*/
|
|
@@ -1005,6 +1065,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1005
1065
|
async CancelSparkSessionBatchSQL(req, cb) {
|
|
1006
1066
|
return this.request("CancelSparkSessionBatchSQL", req, cb);
|
|
1007
1067
|
}
|
|
1068
|
+
/**
|
|
1069
|
+
* 获取分区列表信息
|
|
1070
|
+
*/
|
|
1071
|
+
async DescribePartitions(req, cb) {
|
|
1072
|
+
return this.request("DescribePartitions", req, cb);
|
|
1073
|
+
}
|
|
1008
1074
|
/**
|
|
1009
1075
|
* 根据任务ID获取Ray任务的历史执行记录
|
|
1010
1076
|
*/
|
|
@@ -1053,12 +1119,30 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1053
1119
|
async DeleteNativeSparkSession(req, cb) {
|
|
1054
1120
|
return this.request("DeleteNativeSparkSession", req, cb);
|
|
1055
1121
|
}
|
|
1122
|
+
/**
|
|
1123
|
+
* 分页查询指定分区的流程详情列表,包含每个流程的基本信息和活动列表
|
|
1124
|
+
*/
|
|
1125
|
+
async DescribeFlowDetailList(req, cb) {
|
|
1126
|
+
return this.request("DescribeFlowDetailList", req, cb);
|
|
1127
|
+
}
|
|
1128
|
+
/**
|
|
1129
|
+
* 查询指定分区的流程列表
|
|
1130
|
+
*/
|
|
1131
|
+
async DescribeFlowList(req, cb) {
|
|
1132
|
+
return this.request("DescribeFlowList", req, cb);
|
|
1133
|
+
}
|
|
1056
1134
|
/**
|
|
1057
1135
|
* 本接口(CheckDataEngineConfigPairsValidity)用于检查引擎用户自定义参数的有效性
|
|
1058
1136
|
*/
|
|
1059
1137
|
async CheckDataEngineConfigPairsValidity(req, cb) {
|
|
1060
1138
|
return this.request("CheckDataEngineConfigPairsValidity", req, cb);
|
|
1061
1139
|
}
|
|
1140
|
+
/**
|
|
1141
|
+
* 查询指定分区的所有队列列表
|
|
1142
|
+
*/
|
|
1143
|
+
async DescribePartitionQueues(req, cb) {
|
|
1144
|
+
return this.request("DescribePartitionQueues", req, cb);
|
|
1145
|
+
}
|
|
1062
1146
|
/**
|
|
1063
1147
|
* 通过 ResourceManager 调用 CLS SearchLog API 查询作业相关日志。不返回总数,使用 Context 进行翻页,ListOver 标识是否还有更多数据。
|
|
1064
1148
|
*/
|
|
@@ -1066,10 +1150,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1066
1150
|
return this.request("GetRayJobEvent", req, cb);
|
|
1067
1151
|
}
|
|
1068
1152
|
/**
|
|
1069
|
-
*
|
|
1153
|
+
* 查询标准引擎资源组信息
|
|
1070
1154
|
*/
|
|
1071
|
-
async
|
|
1072
|
-
return this.request("
|
|
1155
|
+
async DescribeStandardEngineResourceGroupConfigInfo(req, cb) {
|
|
1156
|
+
return this.request("DescribeStandardEngineResourceGroupConfigInfo", req, cb);
|
|
1073
1157
|
}
|
|
1074
1158
|
/**
|
|
1075
1159
|
* 删除集群
|
|
@@ -1169,6 +1253,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1169
1253
|
async UpdateUDFPolicy(req, cb) {
|
|
1170
1254
|
return this.request("UpdateUDFPolicy", req, cb);
|
|
1171
1255
|
}
|
|
1256
|
+
/**
|
|
1257
|
+
* 列出推理模型(支持关键词过滤 + 分页)
|
|
1258
|
+
*/
|
|
1259
|
+
async ListInferenceModels(req, cb) {
|
|
1260
|
+
return this.request("ListInferenceModels", req, cb);
|
|
1261
|
+
}
|
|
1172
1262
|
/**
|
|
1173
1263
|
* 查询数据引擎事件
|
|
1174
1264
|
*/
|
|
@@ -1230,10 +1320,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1230
1320
|
return this.request("GetRayClusterPods", req, cb);
|
|
1231
1321
|
}
|
|
1232
1322
|
/**
|
|
1233
|
-
*
|
|
1323
|
+
* 查询可售卖的地域列表,仅返回状态为AVAILABLE的地域
|
|
1234
1324
|
*/
|
|
1235
|
-
async
|
|
1236
|
-
return this.request("
|
|
1325
|
+
async DescribeSaleRegions(req, cb) {
|
|
1326
|
+
return this.request("DescribeSaleRegions", req, cb);
|
|
1237
1327
|
}
|
|
1238
1328
|
/**
|
|
1239
1329
|
* 批量取消任务
|
|
@@ -1241,6 +1331,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1241
1331
|
async CancelTasks(req, cb) {
|
|
1242
1332
|
return this.request("CancelTasks", req, cb);
|
|
1243
1333
|
}
|
|
1334
|
+
/**
|
|
1335
|
+
* 修改数据治理事件阈值
|
|
1336
|
+
*/
|
|
1337
|
+
async ModifyGovernEventRule(req, cb) {
|
|
1338
|
+
return this.request("ModifyGovernEventRule", req, cb);
|
|
1339
|
+
}
|
|
1244
1340
|
/**
|
|
1245
1341
|
* 本接口(CreateTable)用于生成建表SQL。
|
|
1246
1342
|
*/
|
|
@@ -1362,10 +1458,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1362
1458
|
return this.request("CreateSparkSubmitTask", req, cb);
|
|
1363
1459
|
}
|
|
1364
1460
|
/**
|
|
1365
|
-
*
|
|
1461
|
+
* 删除资源队列
|
|
1366
1462
|
*/
|
|
1367
|
-
async
|
|
1368
|
-
return this.request("
|
|
1463
|
+
async DeletePartitionQueue(req, cb) {
|
|
1464
|
+
return this.request("DeletePartitionQueue", req, cb);
|
|
1369
1465
|
}
|
|
1370
1466
|
/**
|
|
1371
1467
|
* 该接口(CreateScript)用于创建sql脚本。
|
|
@@ -1385,6 +1481,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1385
1481
|
async DescribeDatabase(req, cb) {
|
|
1386
1482
|
return this.request("DescribeDatabase", req, cb);
|
|
1387
1483
|
}
|
|
1484
|
+
/**
|
|
1485
|
+
* 编辑资源队列:根据队列ID修改指定资源队列的名称、描述、资源规格列表和队列类型等信息。
|
|
1486
|
+
*/
|
|
1487
|
+
async ModifyPartitionQueue(req, cb) {
|
|
1488
|
+
return this.request("ModifyPartitionQueue", req, cb);
|
|
1489
|
+
}
|
|
1388
1490
|
/**
|
|
1389
1491
|
* 开通TCLake
|
|
1390
1492
|
*/
|
|
@@ -1451,6 +1553,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1451
1553
|
async ModifyLabPriority(req, cb) {
|
|
1452
1554
|
return this.request("ModifyLabPriority", req, cb);
|
|
1453
1555
|
}
|
|
1556
|
+
/**
|
|
1557
|
+
* 列举用户角色信息
|
|
1558
|
+
*/
|
|
1559
|
+
async DescribeUserRoles(req, cb) {
|
|
1560
|
+
return this.request("DescribeUserRoles", req, cb);
|
|
1561
|
+
}
|
|
1454
1562
|
/**
|
|
1455
1563
|
* 本接口(ModifySparkAppBatch)用于批量修改Spark作业参数配置
|
|
1456
1564
|
*/
|
|
@@ -1475,6 +1583,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
1475
1583
|
async BindWorkGroupsToUser(req, cb) {
|
|
1476
1584
|
return this.request("BindWorkGroupsToUser", req, cb);
|
|
1477
1585
|
}
|
|
1586
|
+
/**
|
|
1587
|
+
* 此接口(DeleteCHDFSBindingProduct)用于删除元数据加速桶和产品绑定关系
|
|
1588
|
+
*/
|
|
1589
|
+
async DeleteCHDFSBindingProduct(req, cb) {
|
|
1590
|
+
return this.request("DeleteCHDFSBindingProduct", req, cb);
|
|
1591
|
+
}
|
|
1478
1592
|
/**
|
|
1479
1593
|
* 查询用户自定义引擎参数
|
|
1480
1594
|
*/
|