tencentcloud-sdk-nodejs-dlc 4.1.281 → 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.
|
@@ -28,12 +28,24 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
28
28
|
constructor(clientConfig) {
|
|
29
29
|
super("dlc.tencentcloudapi.com", "2021-01-25", clientConfig);
|
|
30
30
|
}
|
|
31
|
+
/**
|
|
32
|
+
* 获取Ray集群的事件流(基于 K8s Event + CLS 日志)
|
|
33
|
+
*/
|
|
34
|
+
async GetRayClusterEvent(req, cb) {
|
|
35
|
+
return this.request("GetRayClusterEvent", req, cb);
|
|
36
|
+
}
|
|
31
37
|
/**
|
|
32
38
|
* 本接口(CreateTask)用于创建并执行SQL任务。(推荐使用CreateTasks接口)
|
|
33
39
|
*/
|
|
34
40
|
async CreateTask(req, cb) {
|
|
35
41
|
return this.request("CreateTask", req, cb);
|
|
36
42
|
}
|
|
43
|
+
/**
|
|
44
|
+
* 修改用户信息
|
|
45
|
+
*/
|
|
46
|
+
async ModifyUser(req, cb) {
|
|
47
|
+
return this.request("ModifyUser", req, cb);
|
|
48
|
+
}
|
|
37
49
|
/**
|
|
38
50
|
* 添加用户到工作组
|
|
39
51
|
*/
|
|
@@ -52,6 +64,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
52
64
|
async DescribeForbiddenTablePro(req, cb) {
|
|
53
65
|
return this.request("DescribeForbiddenTablePro", req, cb);
|
|
54
66
|
}
|
|
67
|
+
/**
|
|
68
|
+
* 获取指定资源分区详情
|
|
69
|
+
*/
|
|
70
|
+
async DescribePartitionDetail(req, cb) {
|
|
71
|
+
return this.request("DescribePartitionDetail", req, cb);
|
|
72
|
+
}
|
|
55
73
|
/**
|
|
56
74
|
* 获取用户详细信息
|
|
57
75
|
*/
|
|
@@ -136,6 +154,24 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
136
154
|
async CreateStoreLocation(req, cb) {
|
|
137
155
|
return this.request("CreateStoreLocation", req, cb);
|
|
138
156
|
}
|
|
157
|
+
/**
|
|
158
|
+
* 新增资源队列:在指定分区下创建一个新的资源队列,支持设置队列名称、描述、资源规格列表和队列类型。
|
|
159
|
+
*/
|
|
160
|
+
async CreatePartitionQueue(req, cb) {
|
|
161
|
+
return this.request("CreatePartitionQueue", req, cb);
|
|
162
|
+
}
|
|
163
|
+
/**
|
|
164
|
+
* 获取数据实验室Pod的YAML内容
|
|
165
|
+
*/
|
|
166
|
+
async GetLabPodYaml(req, cb) {
|
|
167
|
+
return this.request("GetLabPodYaml", req, cb);
|
|
168
|
+
}
|
|
169
|
+
/**
|
|
170
|
+
* 根据 exampleId 获取单个案例详情
|
|
171
|
+
*/
|
|
172
|
+
async GetExampleDetail(req, cb) {
|
|
173
|
+
return this.request("GetExampleDetail", req, cb);
|
|
174
|
+
}
|
|
139
175
|
/**
|
|
140
176
|
* 本接口(CreateNotebookSessionStatementSupportBatchSQL)用于创建交互式session并执行SQL任务
|
|
141
177
|
*/
|
|
@@ -149,10 +185,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
149
185
|
return this.request("SwitchDataEngine", req, cb);
|
|
150
186
|
}
|
|
151
187
|
/**
|
|
152
|
-
*
|
|
188
|
+
* 本接口(DescribeDataEngines)用于查询DataEngines信息列表.
|
|
153
189
|
*/
|
|
154
|
-
async
|
|
155
|
-
return this.request("
|
|
190
|
+
async DescribeDataEngines(req, cb) {
|
|
191
|
+
return this.request("DescribeDataEngines", req, cb);
|
|
156
192
|
}
|
|
157
193
|
/**
|
|
158
194
|
* 创建数据源
|
|
@@ -178,6 +214,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
178
214
|
async DescribeNotebookSessions(req, cb) {
|
|
179
215
|
return this.request("DescribeNotebookSessions", req, cb);
|
|
180
216
|
}
|
|
217
|
+
/**
|
|
218
|
+
* 根据集群组 ID 获取集群组详情。支持通过 IncludeDeleted 参数控制是否返回已软删除的记录(用于悬挂 cluster 回显场景)。
|
|
219
|
+
*/
|
|
220
|
+
async DescribeClusterGroup(req, cb) {
|
|
221
|
+
return this.request("DescribeClusterGroup", req, cb);
|
|
222
|
+
}
|
|
181
223
|
/**
|
|
182
224
|
* DMS元数据获取分区
|
|
183
225
|
*/
|
|
@@ -203,10 +245,16 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
203
245
|
return this.request("DescribeDLCCatalogAccess", req, cb);
|
|
204
246
|
}
|
|
205
247
|
/**
|
|
206
|
-
*
|
|
248
|
+
* 列出所有资源配置模板
|
|
207
249
|
*/
|
|
208
|
-
async
|
|
209
|
-
return this.request("
|
|
250
|
+
async ListResourceConfigs(req, cb) {
|
|
251
|
+
return this.request("ListResourceConfigs", req, cb);
|
|
252
|
+
}
|
|
253
|
+
/**
|
|
254
|
+
* 删除数据引擎
|
|
255
|
+
*/
|
|
256
|
+
async DeleteDataEngine(req, cb) {
|
|
257
|
+
return this.request("DeleteDataEngine", req, cb);
|
|
210
258
|
}
|
|
211
259
|
/**
|
|
212
260
|
* 根据资源组获取spark session列表
|
|
@@ -220,6 +268,18 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
220
268
|
async DescribeUserType(req, cb) {
|
|
221
269
|
return this.request("DescribeUserType", req, cb);
|
|
222
270
|
}
|
|
271
|
+
/**
|
|
272
|
+
* 分页查询作业配置列表
|
|
273
|
+
*/
|
|
274
|
+
async ListJobSpecs(req, cb) {
|
|
275
|
+
return this.request("ListJobSpecs", req, cb);
|
|
276
|
+
}
|
|
277
|
+
/**
|
|
278
|
+
* 获取工作组列表
|
|
279
|
+
*/
|
|
280
|
+
async DescribeWorkGroups(req, cb) {
|
|
281
|
+
return this.request("DescribeWorkGroups", req, cb);
|
|
282
|
+
}
|
|
223
283
|
/**
|
|
224
284
|
* 更新标准引擎资源组基础信息
|
|
225
285
|
*/
|
|
@@ -233,10 +293,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
233
293
|
return this.request("RenewDataEngine", req, cb);
|
|
234
294
|
}
|
|
235
295
|
/**
|
|
236
|
-
*
|
|
296
|
+
* 新增资源包
|
|
237
297
|
*/
|
|
238
|
-
async
|
|
239
|
-
return this.request("
|
|
298
|
+
async CreatePartition(req, cb) {
|
|
299
|
+
return this.request("CreatePartition", req, cb);
|
|
240
300
|
}
|
|
241
301
|
/**
|
|
242
302
|
* 查询网络配置列表
|
|
@@ -256,6 +316,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
256
316
|
async DescribeTasks(req, cb) {
|
|
257
317
|
return this.request("DescribeTasks", req, cb);
|
|
258
318
|
}
|
|
319
|
+
/**
|
|
320
|
+
* 案例列表
|
|
321
|
+
*/
|
|
322
|
+
async ListExamples(req, cb) {
|
|
323
|
+
return this.request("ListExamples", req, cb);
|
|
324
|
+
}
|
|
259
325
|
/**
|
|
260
326
|
* 该接口(DeleteScript)用于删除sql脚本。
|
|
261
327
|
*/
|
|
@@ -263,10 +329,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
263
329
|
return this.request("DeleteScript", req, cb);
|
|
264
330
|
}
|
|
265
331
|
/**
|
|
266
|
-
*
|
|
332
|
+
* 本接口(DescribeDataEngineSessionParameters)用于获取指定小版本下的Session配置。
|
|
267
333
|
*/
|
|
268
|
-
async
|
|
269
|
-
return this.request("
|
|
334
|
+
async DescribeDataEngineSessionParameters(req, cb) {
|
|
335
|
+
return this.request("DescribeDataEngineSessionParameters", req, cb);
|
|
270
336
|
}
|
|
271
337
|
/**
|
|
272
338
|
* 启动Spark作业
|
|
@@ -280,12 +346,24 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
280
346
|
async DescribeOtherCHDFSBindingList(req, cb) {
|
|
281
347
|
return this.request("DescribeOtherCHDFSBindingList", req, cb);
|
|
282
348
|
}
|
|
349
|
+
/**
|
|
350
|
+
* 修改分区描述
|
|
351
|
+
*/
|
|
352
|
+
async ModifyPartitionDescription(req, cb) {
|
|
353
|
+
return this.request("ModifyPartitionDescription", req, cb);
|
|
354
|
+
}
|
|
283
355
|
/**
|
|
284
356
|
* 更新标准引擎资源组基础信息
|
|
285
357
|
*/
|
|
286
358
|
async UpdateStandardEngineResourceGroupBaseInfo(req, cb) {
|
|
287
359
|
return this.request("UpdateStandardEngineResourceGroupBaseInfo", req, cb);
|
|
288
360
|
}
|
|
361
|
+
/**
|
|
362
|
+
* 修改集群的调度优先级(1-9,数字越大优先级越高)
|
|
363
|
+
*/
|
|
364
|
+
async ModifyClusterPriority(req, cb) {
|
|
365
|
+
return this.request("ModifyClusterPriority", req, cb);
|
|
366
|
+
}
|
|
289
367
|
/**
|
|
290
368
|
* 查询托管存储指定目录的Summary
|
|
291
369
|
*/
|
|
@@ -298,12 +376,36 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
298
376
|
async DescribeDatabases(req, cb) {
|
|
299
377
|
return this.request("DescribeDatabases", req, cb);
|
|
300
378
|
}
|
|
379
|
+
/**
|
|
380
|
+
* 获取RayJob的YAML内容
|
|
381
|
+
*/
|
|
382
|
+
async GetRayJobYaml(req, cb) {
|
|
383
|
+
return this.request("GetRayJobYaml", req, cb);
|
|
384
|
+
}
|
|
385
|
+
/**
|
|
386
|
+
* 获取实验室详情
|
|
387
|
+
*/
|
|
388
|
+
async GetLabDetail(req, cb) {
|
|
389
|
+
return this.request("GetLabDetail", req, cb);
|
|
390
|
+
}
|
|
301
391
|
/**
|
|
302
392
|
* DMS元数据更新分区
|
|
303
393
|
*/
|
|
304
394
|
async AlterDMSPartition(req, cb) {
|
|
305
395
|
return this.request("AlterDMSPartition", req, cb);
|
|
306
396
|
}
|
|
397
|
+
/**
|
|
398
|
+
* 计算组关联 cluster 使用情况响应
|
|
399
|
+
*/
|
|
400
|
+
async DescribeClusterGroupClusters(req, cb) {
|
|
401
|
+
return this.request("DescribeClusterGroupClusters", req, cb);
|
|
402
|
+
}
|
|
403
|
+
/**
|
|
404
|
+
* 获取集群Pod的YAML内容
|
|
405
|
+
*/
|
|
406
|
+
async GetRayClusterPodYaml(req, cb) {
|
|
407
|
+
return this.request("GetRayClusterPodYaml", req, cb);
|
|
408
|
+
}
|
|
307
409
|
/**
|
|
308
410
|
* 本接口(RegisterThirdPartyAccessUser)查询开通第三方平台访问的用户信息
|
|
309
411
|
*/
|
|
@@ -311,10 +413,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
311
413
|
return this.request("DescribeThirdPartyAccessUser", req, cb);
|
|
312
414
|
}
|
|
313
415
|
/**
|
|
314
|
-
*
|
|
416
|
+
* 获取实验室的状态变更历史记录
|
|
315
417
|
*/
|
|
316
|
-
async
|
|
317
|
-
return this.request("
|
|
418
|
+
async GetLabHistory(req, cb) {
|
|
419
|
+
return this.request("GetLabHistory", req, cb);
|
|
318
420
|
}
|
|
319
421
|
/**
|
|
320
422
|
* 重启引擎
|
|
@@ -328,6 +430,18 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
328
430
|
async CreateUser(req, cb) {
|
|
329
431
|
return this.request("CreateUser", req, cb);
|
|
330
432
|
}
|
|
433
|
+
/**
|
|
434
|
+
* 获取单个模型详情
|
|
435
|
+
*/
|
|
436
|
+
async GetInferenceModel(req, cb) {
|
|
437
|
+
return this.request("GetInferenceModel", req, cb);
|
|
438
|
+
}
|
|
439
|
+
/**
|
|
440
|
+
* 获取集群状态历史
|
|
441
|
+
*/
|
|
442
|
+
async GetRayClusterHistory(req, cb) {
|
|
443
|
+
return this.request("GetRayClusterHistory", req, cb);
|
|
444
|
+
}
|
|
331
445
|
/**
|
|
332
446
|
* 本接口(DescribeTables)用于查询数据表列表。
|
|
333
447
|
*/
|
|
@@ -352,6 +466,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
352
466
|
async AssociateDatasourceHouse(req, cb) {
|
|
353
467
|
return this.request("AssociateDatasourceHouse", req, cb);
|
|
354
468
|
}
|
|
469
|
+
/**
|
|
470
|
+
* 更新标准引擎资源组基础信息
|
|
471
|
+
*/
|
|
472
|
+
async UpdateStandardEngineResourceGroupConfigInfo(req, cb) {
|
|
473
|
+
return this.request("UpdateStandardEngineResourceGroupConfigInfo", req, cb);
|
|
474
|
+
}
|
|
355
475
|
/**
|
|
356
476
|
* 获取LakeFs上task执行结果访问信息
|
|
357
477
|
*/
|
|
@@ -365,10 +485,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
365
485
|
return this.request("AddOptimizerEngines", req, cb);
|
|
366
486
|
}
|
|
367
487
|
/**
|
|
368
|
-
*
|
|
488
|
+
* 本接口(DescribeDataEngineImageVersions)用于获取独享集群大版本镜像列表。
|
|
369
489
|
*/
|
|
370
|
-
async
|
|
371
|
-
return this.request("
|
|
490
|
+
async DescribeDataEngineImageVersions(req, cb) {
|
|
491
|
+
return this.request("DescribeDataEngineImageVersions", req, cb);
|
|
372
492
|
}
|
|
373
493
|
/**
|
|
374
494
|
* 查询sql查询界面高级设置
|
|
@@ -388,6 +508,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
388
508
|
async DescribeSparkAppJobs(req, cb) {
|
|
389
509
|
return this.request("DescribeSparkAppJobs", req, cb);
|
|
390
510
|
}
|
|
511
|
+
/**
|
|
512
|
+
* 分页查询某作业配置下产生的所有作业实例
|
|
513
|
+
*/
|
|
514
|
+
async ListJobsBySpec(req, cb) {
|
|
515
|
+
return this.request("ListJobsBySpec", req, cb);
|
|
516
|
+
}
|
|
391
517
|
/**
|
|
392
518
|
* 获取用户列表信息
|
|
393
519
|
*/
|
|
@@ -413,10 +539,16 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
413
539
|
return this.request("GenerateInternalTable", req, cb);
|
|
414
540
|
}
|
|
415
541
|
/**
|
|
416
|
-
*
|
|
542
|
+
* 查询任务监控指标信息
|
|
417
543
|
*/
|
|
418
|
-
async
|
|
419
|
-
return this.request("
|
|
544
|
+
async DescribeClusterMonitorInfos(req, cb) {
|
|
545
|
+
return this.request("DescribeClusterMonitorInfos", req, cb);
|
|
546
|
+
}
|
|
547
|
+
/**
|
|
548
|
+
* 创建实验室
|
|
549
|
+
*/
|
|
550
|
+
async CreateLab(req, cb) {
|
|
551
|
+
return this.request("CreateLab", req, cb);
|
|
420
552
|
}
|
|
421
553
|
/**
|
|
422
554
|
* 修改工作组信息
|
|
@@ -431,10 +563,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
431
563
|
return this.request("DescribeTablesName", req, cb);
|
|
432
564
|
}
|
|
433
565
|
/**
|
|
434
|
-
*
|
|
566
|
+
* 创建推理模型(模型上传)
|
|
435
567
|
*/
|
|
436
|
-
async
|
|
437
|
-
return this.request("
|
|
568
|
+
async CreateInferenceModel(req, cb) {
|
|
569
|
+
return this.request("CreateInferenceModel", req, cb);
|
|
438
570
|
}
|
|
439
571
|
/**
|
|
440
572
|
* 暂停标准引擎session
|
|
@@ -460,6 +592,24 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
460
592
|
async DescribeUpdatableDataEngines(req, cb) {
|
|
461
593
|
return this.request("DescribeUpdatableDataEngines", req, cb);
|
|
462
594
|
}
|
|
595
|
+
/**
|
|
596
|
+
* 获取所有案例分类
|
|
597
|
+
*/
|
|
598
|
+
async ListExampleCategories(req, cb) {
|
|
599
|
+
return this.request("ListExampleCategories", req, cb);
|
|
600
|
+
}
|
|
601
|
+
/**
|
|
602
|
+
* 校验资源名称合法性
|
|
603
|
+
*/
|
|
604
|
+
async CheckResourceName(req, cb) {
|
|
605
|
+
return this.request("CheckResourceName", req, cb);
|
|
606
|
+
}
|
|
607
|
+
/**
|
|
608
|
+
* 撤销DLC Catalog访问权限
|
|
609
|
+
*/
|
|
610
|
+
async RevokeDLCCatalogAccess(req, cb) {
|
|
611
|
+
return this.request("RevokeDLCCatalogAccess", req, cb);
|
|
612
|
+
}
|
|
463
613
|
/**
|
|
464
614
|
* 创建托管存储内表(该接口已废弃)
|
|
465
615
|
*/
|
|
@@ -484,12 +634,36 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
484
634
|
async DescribeDataEnginesScaleDetail(req, cb) {
|
|
485
635
|
return this.request("DescribeDataEnginesScaleDetail", req, cb);
|
|
486
636
|
}
|
|
637
|
+
/**
|
|
638
|
+
* 获取所有案例分类
|
|
639
|
+
*/
|
|
640
|
+
async ListExampleDifficulties(req, cb) {
|
|
641
|
+
return this.request("ListExampleDifficulties", req, cb);
|
|
642
|
+
}
|
|
487
643
|
/**
|
|
488
644
|
* 创建spark作业
|
|
489
645
|
*/
|
|
490
646
|
async CreateSparkApp(req, cb) {
|
|
491
647
|
return this.request("CreateSparkApp", req, cb);
|
|
492
648
|
}
|
|
649
|
+
/**
|
|
650
|
+
* 创建用户vpc连接到指定引擎网络
|
|
651
|
+
*/
|
|
652
|
+
async CreateUserVpcConnection(req, cb) {
|
|
653
|
+
return this.request("CreateUserVpcConnection", req, cb);
|
|
654
|
+
}
|
|
655
|
+
/**
|
|
656
|
+
* 此接口用于更新行过滤规则。注意只能更新过滤规则,不能更新规格对象catalog,database和table。
|
|
657
|
+
*/
|
|
658
|
+
async UpdateRowFilter(req, cb) {
|
|
659
|
+
return this.request("UpdateRowFilter", req, cb);
|
|
660
|
+
}
|
|
661
|
+
/**
|
|
662
|
+
* 基于指定作业配置提交一次作业实例
|
|
663
|
+
*/
|
|
664
|
+
async RunJobSpec(req, cb) {
|
|
665
|
+
return this.request("RunJobSpec", req, cb);
|
|
666
|
+
}
|
|
493
667
|
/**
|
|
494
668
|
* 删除标准引擎资源组
|
|
495
669
|
*/
|
|
@@ -527,10 +701,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
527
701
|
return this.request("CreateSparkSessionBatchSQL", req, cb);
|
|
528
702
|
}
|
|
529
703
|
/**
|
|
530
|
-
*
|
|
704
|
+
* 创建集群组
|
|
531
705
|
*/
|
|
532
|
-
async
|
|
533
|
-
return this.request("
|
|
706
|
+
async CreateClusterGroup(req, cb) {
|
|
707
|
+
return this.request("CreateClusterGroup", req, cb);
|
|
534
708
|
}
|
|
535
709
|
/**
|
|
536
710
|
* 获取UDF权限信息
|
|
@@ -538,30 +712,90 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
538
712
|
async DescribeUDFPolicy(req, cb) {
|
|
539
713
|
return this.request("DescribeUDFPolicy", req, cb);
|
|
540
714
|
}
|
|
715
|
+
/**
|
|
716
|
+
* 更新处于 SUBMITTED/PENDING 状态的作业的优先级。仅 SUBMITTED/PENDING 状态的作业允许调整优先级。内部通过调用 Neutrino 的 UpdateJobConfig 接口更新 ENVIRONMENT 配置中的 priority 字段。
|
|
717
|
+
*/
|
|
718
|
+
async UpdateRayJobPriority(req, cb) {
|
|
719
|
+
return this.request("UpdateRayJobPriority", req, cb);
|
|
720
|
+
}
|
|
541
721
|
/**
|
|
542
722
|
* 本接口(DescribeNotebookSessionStatements)用于查询Session中执行的任务列表
|
|
543
723
|
*/
|
|
544
724
|
async DescribeNotebookSessionStatements(req, cb) {
|
|
545
725
|
return this.request("DescribeNotebookSessionStatements", req, cb);
|
|
546
726
|
}
|
|
727
|
+
/**
|
|
728
|
+
* 获取Ray集群详情请求
|
|
729
|
+
*/
|
|
730
|
+
async GetRayCluster(req, cb) {
|
|
731
|
+
return this.request("GetRayCluster", req, cb);
|
|
732
|
+
}
|
|
547
733
|
/**
|
|
548
734
|
* 授权访问DLC Catalog
|
|
549
735
|
*/
|
|
550
736
|
async GrantDLCCatalogAccess(req, cb) {
|
|
551
737
|
return this.request("GrantDLCCatalogAccess", req, cb);
|
|
552
738
|
}
|
|
739
|
+
/**
|
|
740
|
+
* 更新推理模型(编辑标签、描述、参数量)
|
|
741
|
+
*/
|
|
742
|
+
async UpdateInferenceModel(req, cb) {
|
|
743
|
+
return this.request("UpdateInferenceModel", req, cb);
|
|
744
|
+
}
|
|
745
|
+
/**
|
|
746
|
+
* 更新集群配置:仅在 CREATED / STOPPED / FAILED 终态可用;变更落 MySQL,下次 Start 按新 spec 创建 K8s 资源
|
|
747
|
+
*/
|
|
748
|
+
async UpdateRayCluster(req, cb) {
|
|
749
|
+
return this.request("UpdateRayCluster", req, cb);
|
|
750
|
+
}
|
|
751
|
+
/**
|
|
752
|
+
* 复制一份已有的作业配置
|
|
753
|
+
*/
|
|
754
|
+
async CopyJobSpec(req, cb) {
|
|
755
|
+
return this.request("CopyJobSpec", req, cb);
|
|
756
|
+
}
|
|
757
|
+
/**
|
|
758
|
+
* 更新集群组
|
|
759
|
+
*/
|
|
760
|
+
async UpdateClusterGroup(req, cb) {
|
|
761
|
+
return this.request("UpdateClusterGroup", req, cb);
|
|
762
|
+
}
|
|
763
|
+
/**
|
|
764
|
+
* 更新资源配置模板
|
|
765
|
+
*/
|
|
766
|
+
async UpdateResourceConfig(req, cb) {
|
|
767
|
+
return this.request("UpdateResourceConfig", req, cb);
|
|
768
|
+
}
|
|
769
|
+
/**
|
|
770
|
+
* 启动集群
|
|
771
|
+
*/
|
|
772
|
+
async StartRayCluster(req, cb) {
|
|
773
|
+
return this.request("StartRayCluster", req, cb);
|
|
774
|
+
}
|
|
553
775
|
/**
|
|
554
776
|
* 本接口用于控制挂起或启动数据引擎
|
|
555
777
|
*/
|
|
556
778
|
async SuspendResumeDataEngine(req, cb) {
|
|
557
779
|
return this.request("SuspendResumeDataEngine", req, cb);
|
|
558
780
|
}
|
|
781
|
+
/**
|
|
782
|
+
* 获取作业事件日志
|
|
783
|
+
*/
|
|
784
|
+
async GetRayJobEventLog(req, cb) {
|
|
785
|
+
return this.request("GetRayJobEventLog", req, cb);
|
|
786
|
+
}
|
|
559
787
|
/**
|
|
560
788
|
* DMS元数据创建库
|
|
561
789
|
*/
|
|
562
790
|
async CreateDMSDatabase(req, cb) {
|
|
563
791
|
return this.request("CreateDMSDatabase", req, cb);
|
|
564
792
|
}
|
|
793
|
+
/**
|
|
794
|
+
* 获取数据实验室的Pod列表
|
|
795
|
+
*/
|
|
796
|
+
async GetLabPods(req, cb) {
|
|
797
|
+
return this.request("GetLabPods", req, cb);
|
|
798
|
+
}
|
|
565
799
|
/**
|
|
566
800
|
* 绑定鉴权策略到用户
|
|
567
801
|
*/
|
|
@@ -569,10 +803,16 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
569
803
|
return this.request("AttachUserPolicy", req, cb);
|
|
570
804
|
}
|
|
571
805
|
/**
|
|
572
|
-
*
|
|
806
|
+
* 停止实验室
|
|
573
807
|
*/
|
|
574
|
-
async
|
|
575
|
-
return this.request("
|
|
808
|
+
async StopLab(req, cb) {
|
|
809
|
+
return this.request("StopLab", req, cb);
|
|
810
|
+
}
|
|
811
|
+
/**
|
|
812
|
+
* 查询当前地域可售卖的资源规格和最大配额
|
|
813
|
+
*/
|
|
814
|
+
async DescribeSaleResourceInfo(req, cb) {
|
|
815
|
+
return this.request("DescribeSaleResourceInfo", req, cb);
|
|
576
816
|
}
|
|
577
817
|
/**
|
|
578
818
|
* 创建查询结果下载任务
|
|
@@ -592,12 +832,24 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
592
832
|
async DescribeNotebookSessionStatementSqlResult(req, cb) {
|
|
593
833
|
return this.request("DescribeNotebookSessionStatementSqlResult", req, cb);
|
|
594
834
|
}
|
|
835
|
+
/**
|
|
836
|
+
* 查询用户vpc到引擎网络的连接
|
|
837
|
+
*/
|
|
838
|
+
async DescribeUserVpcConnection(req, cb) {
|
|
839
|
+
return this.request("DescribeUserVpcConnection", req, cb);
|
|
840
|
+
}
|
|
595
841
|
/**
|
|
596
842
|
* 获取账户子账户信息
|
|
597
843
|
*/
|
|
598
844
|
async DescribeMCPSubUin(req, cb) {
|
|
599
845
|
return this.request("DescribeMCPSubUin", req, cb);
|
|
600
846
|
}
|
|
847
|
+
/**
|
|
848
|
+
* 删除数据实验室
|
|
849
|
+
*/
|
|
850
|
+
async DeleteLab(req, cb) {
|
|
851
|
+
return this.request("DeleteLab", req, cb);
|
|
852
|
+
}
|
|
601
853
|
/**
|
|
602
854
|
* 本接口(CreateNotebookSessionStatement)用于在session中执行代码片段
|
|
603
855
|
*/
|
|
@@ -611,16 +863,28 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
611
863
|
return this.request("UnboundDatasourceHouse", req, cb);
|
|
612
864
|
}
|
|
613
865
|
/**
|
|
614
|
-
*
|
|
866
|
+
* 变配校验:判断用户的目标配置是否可以执行变配。校验逻辑:对于缩容场景(目标值 < 当前值),检查 default 队列的 min 值是否足够承受缩容差值。
|
|
615
867
|
*/
|
|
616
|
-
async
|
|
617
|
-
return this.request("
|
|
868
|
+
async CheckModifyPartition(req, cb) {
|
|
869
|
+
return this.request("CheckModifyPartition", req, cb);
|
|
618
870
|
}
|
|
619
871
|
/**
|
|
620
|
-
* 本接口(
|
|
872
|
+
* 本接口(RegisterThirdPartyAccessUser)用于开通第三方平台访问
|
|
621
873
|
*/
|
|
622
|
-
async
|
|
623
|
-
return this.request("
|
|
874
|
+
async RegisterThirdPartyAccessUser(req, cb) {
|
|
875
|
+
return this.request("RegisterThirdPartyAccessUser", req, cb);
|
|
876
|
+
}
|
|
877
|
+
/**
|
|
878
|
+
* 获取实验室ide访问地址
|
|
879
|
+
*/
|
|
880
|
+
async GetLabServiceUrls(req, cb) {
|
|
881
|
+
return this.request("GetLabServiceUrls", req, cb);
|
|
882
|
+
}
|
|
883
|
+
/**
|
|
884
|
+
* DMS元数据更新库
|
|
885
|
+
*/
|
|
886
|
+
async AlterDMSDatabase(req, cb) {
|
|
887
|
+
return this.request("AlterDMSDatabase", req, cb);
|
|
624
888
|
}
|
|
625
889
|
/**
|
|
626
890
|
* 本接口(DescribeSparkSessionBatchSQL)用于查询Spark SQL批任务运行状态
|
|
@@ -629,10 +893,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
629
893
|
return this.request("DescribeSparkSessionBatchSQL", req, cb);
|
|
630
894
|
}
|
|
631
895
|
/**
|
|
632
|
-
*
|
|
896
|
+
* 创建作业配置
|
|
633
897
|
*/
|
|
634
|
-
async
|
|
635
|
-
return this.request("
|
|
898
|
+
async CreateJobSpec(req, cb) {
|
|
899
|
+
return this.request("CreateJobSpec", req, cb);
|
|
636
900
|
}
|
|
637
901
|
/**
|
|
638
902
|
* DMS元数据新增分区
|
|
@@ -670,6 +934,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
670
934
|
async DescribeTaskResourceUsage(req, cb) {
|
|
671
935
|
return this.request("DescribeTaskResourceUsage", req, cb);
|
|
672
936
|
}
|
|
937
|
+
/**
|
|
938
|
+
* 返回标签去重列表,按出现频次从高到低排序。
|
|
939
|
+
*/
|
|
940
|
+
async ListExampleTags(req, cb) {
|
|
941
|
+
return this.request("ListExampleTags", req, cb);
|
|
942
|
+
}
|
|
673
943
|
/**
|
|
674
944
|
* 本接口(DescribeNotebookSessionLog)用于查询交互式 session日志
|
|
675
945
|
*/
|
|
@@ -688,6 +958,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
688
958
|
async DescribeResultDownload(req, cb) {
|
|
689
959
|
return this.request("DescribeResultDownload", req, cb);
|
|
690
960
|
}
|
|
961
|
+
/**
|
|
962
|
+
* 根据配置ID获取作业配置详情
|
|
963
|
+
*/
|
|
964
|
+
async GetJobSpec(req, cb) {
|
|
965
|
+
return this.request("GetJobSpec", req, cb);
|
|
966
|
+
}
|
|
691
967
|
/**
|
|
692
968
|
* DMS元数据获取表
|
|
693
969
|
*/
|
|
@@ -742,18 +1018,48 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
742
1018
|
async DescribeDatasourceConnection(req, cb) {
|
|
743
1019
|
return this.request("DescribeDatasourceConnection", req, cb);
|
|
744
1020
|
}
|
|
1021
|
+
/**
|
|
1022
|
+
* 查询指定 Ray 集群下提交的所有作业,分页返回。底层委托给 ListRayJobs,强制注入 ClusterId 作为过滤条件。
|
|
1023
|
+
*/
|
|
1024
|
+
async ListRayClusterJobs(req, cb) {
|
|
1025
|
+
return this.request("ListRayClusterJobs", req, cb);
|
|
1026
|
+
}
|
|
1027
|
+
/**
|
|
1028
|
+
* 资源队列名称合法性检测:校验队列名称是否合法,包括非空校验、格式校验(以小写字母开头,只允许小写字母、数字和连字符,长度1~11)和同分区下重名校验。
|
|
1029
|
+
*/
|
|
1030
|
+
async CheckQueueName(req, cb) {
|
|
1031
|
+
return this.request("CheckQueueName", req, cb);
|
|
1032
|
+
}
|
|
745
1033
|
/**
|
|
746
1034
|
* 本接口(DescribeTablePartitions)用于查询数据表分区信息
|
|
747
1035
|
*/
|
|
748
1036
|
async DescribeTablePartitions(req, cb) {
|
|
749
1037
|
return this.request("DescribeTablePartitions", req, cb);
|
|
750
1038
|
}
|
|
1039
|
+
/**
|
|
1040
|
+
* 修改作业配置的调度优先级(1-9,数字越大优先级越高)
|
|
1041
|
+
*/
|
|
1042
|
+
async UpdateJobSpecPriority(req, cb) {
|
|
1043
|
+
return this.request("UpdateJobSpecPriority", req, cb);
|
|
1044
|
+
}
|
|
751
1045
|
/**
|
|
752
1046
|
* 本接口(CheckDataEngineImageCanBeRollback)用于查看集群是否能回滚。
|
|
753
1047
|
*/
|
|
754
1048
|
async CheckDataEngineImageCanBeRollback(req, cb) {
|
|
755
1049
|
return this.request("CheckDataEngineImageCanBeRollback", req, cb);
|
|
756
1050
|
}
|
|
1051
|
+
/**
|
|
1052
|
+
* 根据配置ID删除作业配置
|
|
1053
|
+
*/
|
|
1054
|
+
async DeleteJobSpec(req, cb) {
|
|
1055
|
+
return this.request("DeleteJobSpec", req, cb);
|
|
1056
|
+
}
|
|
1057
|
+
/**
|
|
1058
|
+
* 获取实验室的事件流(基于 K8s Event + CLS 日志)
|
|
1059
|
+
*/
|
|
1060
|
+
async GetLabEvent(req, cb) {
|
|
1061
|
+
return this.request("GetLabEvent", req, cb);
|
|
1062
|
+
}
|
|
757
1063
|
/**
|
|
758
1064
|
* 本接口(CancelSparkSessionBatchSQL)用于取消Spark SQL批任务。
|
|
759
1065
|
*/
|
|
@@ -761,10 +1067,16 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
761
1067
|
return this.request("CancelSparkSessionBatchSQL", req, cb);
|
|
762
1068
|
}
|
|
763
1069
|
/**
|
|
764
|
-
*
|
|
1070
|
+
* 获取分区列表信息
|
|
765
1071
|
*/
|
|
766
|
-
async
|
|
767
|
-
return this.request("
|
|
1072
|
+
async DescribePartitions(req, cb) {
|
|
1073
|
+
return this.request("DescribePartitions", req, cb);
|
|
1074
|
+
}
|
|
1075
|
+
/**
|
|
1076
|
+
* 根据任务ID获取Ray任务的历史执行记录
|
|
1077
|
+
*/
|
|
1078
|
+
async GetRayJobHistory(req, cb) {
|
|
1079
|
+
return this.request("GetRayJobHistory", req, cb);
|
|
768
1080
|
}
|
|
769
1081
|
/**
|
|
770
1082
|
* 本接口(DescribeSparkSessionBatchSqlLog)用于查询Spark SQL批任务日志
|
|
@@ -796,12 +1108,30 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
796
1108
|
async DeleteUserVpcConnection(req, cb) {
|
|
797
1109
|
return this.request("DeleteUserVpcConnection", req, cb);
|
|
798
1110
|
}
|
|
1111
|
+
/**
|
|
1112
|
+
* 获取作业的Pod列表
|
|
1113
|
+
*/
|
|
1114
|
+
async GetRayJobPods(req, cb) {
|
|
1115
|
+
return this.request("GetRayJobPods", req, cb);
|
|
1116
|
+
}
|
|
799
1117
|
/**
|
|
800
1118
|
* 根据spark session名称销毁eg spark session
|
|
801
1119
|
*/
|
|
802
1120
|
async DeleteNativeSparkSession(req, cb) {
|
|
803
1121
|
return this.request("DeleteNativeSparkSession", req, cb);
|
|
804
1122
|
}
|
|
1123
|
+
/**
|
|
1124
|
+
* 分页查询指定分区的流程详情列表,包含每个流程的基本信息和活动列表
|
|
1125
|
+
*/
|
|
1126
|
+
async DescribeFlowDetailList(req, cb) {
|
|
1127
|
+
return this.request("DescribeFlowDetailList", req, cb);
|
|
1128
|
+
}
|
|
1129
|
+
/**
|
|
1130
|
+
* 查询指定分区的流程列表
|
|
1131
|
+
*/
|
|
1132
|
+
async DescribeFlowList(req, cb) {
|
|
1133
|
+
return this.request("DescribeFlowList", req, cb);
|
|
1134
|
+
}
|
|
805
1135
|
/**
|
|
806
1136
|
* 本接口(CheckDataEngineConfigPairsValidity)用于检查引擎用户自定义参数的有效性
|
|
807
1137
|
*/
|
|
@@ -809,16 +1139,28 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
809
1139
|
return this.request("CheckDataEngineConfigPairsValidity", req, cb);
|
|
810
1140
|
}
|
|
811
1141
|
/**
|
|
812
|
-
*
|
|
1142
|
+
* 查询指定分区的所有队列列表
|
|
813
1143
|
*/
|
|
814
|
-
async
|
|
815
|
-
return this.request("
|
|
1144
|
+
async DescribePartitionQueues(req, cb) {
|
|
1145
|
+
return this.request("DescribePartitionQueues", req, cb);
|
|
816
1146
|
}
|
|
817
1147
|
/**
|
|
818
|
-
*
|
|
1148
|
+
* 通过 ResourceManager 调用 CLS SearchLog API 查询作业相关日志。不返回总数,使用 Context 进行翻页,ListOver 标识是否还有更多数据。
|
|
819
1149
|
*/
|
|
820
|
-
async
|
|
821
|
-
return this.request("
|
|
1150
|
+
async GetRayJobEvent(req, cb) {
|
|
1151
|
+
return this.request("GetRayJobEvent", req, cb);
|
|
1152
|
+
}
|
|
1153
|
+
/**
|
|
1154
|
+
* 查询标准引擎资源组信息
|
|
1155
|
+
*/
|
|
1156
|
+
async DescribeStandardEngineResourceGroupConfigInfo(req, cb) {
|
|
1157
|
+
return this.request("DescribeStandardEngineResourceGroupConfigInfo", req, cb);
|
|
1158
|
+
}
|
|
1159
|
+
/**
|
|
1160
|
+
* 删除集群
|
|
1161
|
+
*/
|
|
1162
|
+
async DeleteRayCluster(req, cb) {
|
|
1163
|
+
return this.request("DeleteRayCluster", req, cb);
|
|
822
1164
|
}
|
|
823
1165
|
/**
|
|
824
1166
|
* 删除用户
|
|
@@ -827,10 +1169,16 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
827
1169
|
return this.request("DeleteUser", req, cb);
|
|
828
1170
|
}
|
|
829
1171
|
/**
|
|
830
|
-
*
|
|
1172
|
+
* DMS元数据获取表列表
|
|
831
1173
|
*/
|
|
832
|
-
async
|
|
833
|
-
return this.request("
|
|
1174
|
+
async DescribeDMSTables(req, cb) {
|
|
1175
|
+
return this.request("DescribeDMSTables", req, cb);
|
|
1176
|
+
}
|
|
1177
|
+
/**
|
|
1178
|
+
* 删除表
|
|
1179
|
+
*/
|
|
1180
|
+
async DeleteTable(req, cb) {
|
|
1181
|
+
return this.request("DeleteTable", req, cb);
|
|
834
1182
|
}
|
|
835
1183
|
/**
|
|
836
1184
|
* 本接口根据引擎ID查询数据引擎资源使用情况
|
|
@@ -865,10 +1213,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
865
1213
|
return this.request("CreateTasksInOrder", req, cb);
|
|
866
1214
|
}
|
|
867
1215
|
/**
|
|
868
|
-
*
|
|
1216
|
+
* 删除集群组
|
|
869
1217
|
*/
|
|
870
|
-
async
|
|
871
|
-
return this.request("
|
|
1218
|
+
async DeleteClusterGroup(req, cb) {
|
|
1219
|
+
return this.request("DeleteClusterGroup", req, cb);
|
|
872
1220
|
}
|
|
873
1221
|
/**
|
|
874
1222
|
* 元数据锁
|
|
@@ -906,6 +1254,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
906
1254
|
async UpdateUDFPolicy(req, cb) {
|
|
907
1255
|
return this.request("UpdateUDFPolicy", req, cb);
|
|
908
1256
|
}
|
|
1257
|
+
/**
|
|
1258
|
+
* 列出推理模型(支持关键词过滤 + 分页)
|
|
1259
|
+
*/
|
|
1260
|
+
async ListInferenceModels(req, cb) {
|
|
1261
|
+
return this.request("ListInferenceModels", req, cb);
|
|
1262
|
+
}
|
|
909
1263
|
/**
|
|
910
1264
|
* 查询数据引擎事件
|
|
911
1265
|
*/
|
|
@@ -918,6 +1272,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
918
1272
|
async DetachWorkGroupPolicy(req, cb) {
|
|
919
1273
|
return this.request("DetachWorkGroupPolicy", req, cb);
|
|
920
1274
|
}
|
|
1275
|
+
/**
|
|
1276
|
+
* 根据任务ID获取Ray任务详情
|
|
1277
|
+
*/
|
|
1278
|
+
async GetRayJob(req, cb) {
|
|
1279
|
+
return this.request("GetRayJob", req, cb);
|
|
1280
|
+
}
|
|
921
1281
|
/**
|
|
922
1282
|
* DMS元数据删除表
|
|
923
1283
|
*/
|
|
@@ -949,10 +1309,22 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
949
1309
|
return this.request("CreateImportTask", req, cb);
|
|
950
1310
|
}
|
|
951
1311
|
/**
|
|
952
|
-
*
|
|
1312
|
+
* 停止集群
|
|
953
1313
|
*/
|
|
954
|
-
async
|
|
955
|
-
return this.request("
|
|
1314
|
+
async StopRayCluster(req, cb) {
|
|
1315
|
+
return this.request("StopRayCluster", req, cb);
|
|
1316
|
+
}
|
|
1317
|
+
/**
|
|
1318
|
+
* 获取集群的Pod列表
|
|
1319
|
+
*/
|
|
1320
|
+
async GetRayClusterPods(req, cb) {
|
|
1321
|
+
return this.request("GetRayClusterPods", req, cb);
|
|
1322
|
+
}
|
|
1323
|
+
/**
|
|
1324
|
+
* 查询可售卖的地域列表,仅返回状态为AVAILABLE的地域
|
|
1325
|
+
*/
|
|
1326
|
+
async DescribeSaleRegions(req, cb) {
|
|
1327
|
+
return this.request("DescribeSaleRegions", req, cb);
|
|
956
1328
|
}
|
|
957
1329
|
/**
|
|
958
1330
|
* 批量取消任务
|
|
@@ -960,6 +1332,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
960
1332
|
async CancelTasks(req, cb) {
|
|
961
1333
|
return this.request("CancelTasks", req, cb);
|
|
962
1334
|
}
|
|
1335
|
+
/**
|
|
1336
|
+
* 修改数据治理事件阈值
|
|
1337
|
+
*/
|
|
1338
|
+
async ModifyGovernEventRule(req, cb) {
|
|
1339
|
+
return this.request("ModifyGovernEventRule", req, cb);
|
|
1340
|
+
}
|
|
963
1341
|
/**
|
|
964
1342
|
* 本接口(CreateTable)用于生成建表SQL。
|
|
965
1343
|
*/
|
|
@@ -978,6 +1356,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
978
1356
|
async CreateExportTask(req, cb) {
|
|
979
1357
|
return this.request("CreateExportTask", req, cb);
|
|
980
1358
|
}
|
|
1359
|
+
/**
|
|
1360
|
+
* 创建资源配置模板
|
|
1361
|
+
*/
|
|
1362
|
+
async CreateResourceConfig(req, cb) {
|
|
1363
|
+
return this.request("CreateResourceConfig", req, cb);
|
|
1364
|
+
}
|
|
981
1365
|
/**
|
|
982
1366
|
* 创建tdlc spark作业
|
|
983
1367
|
*/
|
|
@@ -985,10 +1369,22 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
985
1369
|
return this.request("CreateSparkAppForTDLC", req, cb);
|
|
986
1370
|
}
|
|
987
1371
|
/**
|
|
988
|
-
*
|
|
1372
|
+
* 列出所有集群组
|
|
989
1373
|
*/
|
|
990
|
-
async
|
|
991
|
-
return this.request("
|
|
1374
|
+
async ListClusterGroups(req, cb) {
|
|
1375
|
+
return this.request("ListClusterGroups", req, cb);
|
|
1376
|
+
}
|
|
1377
|
+
/**
|
|
1378
|
+
* 列出所有集群
|
|
1379
|
+
*/
|
|
1380
|
+
async ListRayClusters(req, cb) {
|
|
1381
|
+
return this.request("ListRayClusters", req, cb);
|
|
1382
|
+
}
|
|
1383
|
+
/**
|
|
1384
|
+
* 根据任务ID取消正在运行的Ray任务
|
|
1385
|
+
*/
|
|
1386
|
+
async CancelRayJob(req, cb) {
|
|
1387
|
+
return this.request("CancelRayJob", req, cb);
|
|
992
1388
|
}
|
|
993
1389
|
/**
|
|
994
1390
|
* 该接口用于洞察分析列表
|
|
@@ -996,6 +1392,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
996
1392
|
async DescribeTasksAnalysis(req, cb) {
|
|
997
1393
|
return this.request("DescribeTasksAnalysis", req, cb);
|
|
998
1394
|
}
|
|
1395
|
+
/**
|
|
1396
|
+
* 列出实验室列表
|
|
1397
|
+
*/
|
|
1398
|
+
async ListLabs(req, cb) {
|
|
1399
|
+
return this.request("ListLabs", req, cb);
|
|
1400
|
+
}
|
|
999
1401
|
/**
|
|
1000
1402
|
* 从工作组中删除用户
|
|
1001
1403
|
*/
|
|
@@ -1008,6 +1410,24 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1008
1410
|
async UpdateNetworkConnection(req, cb) {
|
|
1009
1411
|
return this.request("UpdateNetworkConnection", req, cb);
|
|
1010
1412
|
}
|
|
1413
|
+
/**
|
|
1414
|
+
* 获取Pod的YAML内容
|
|
1415
|
+
*/
|
|
1416
|
+
async GetRayJobPodYaml(req, cb) {
|
|
1417
|
+
return this.request("GetRayJobPodYaml", req, cb);
|
|
1418
|
+
}
|
|
1419
|
+
/**
|
|
1420
|
+
* 根据集群ID列出所有Ray任务
|
|
1421
|
+
*/
|
|
1422
|
+
async ListRayJobs(req, cb) {
|
|
1423
|
+
return this.request("ListRayJobs", req, cb);
|
|
1424
|
+
}
|
|
1425
|
+
/**
|
|
1426
|
+
* 更新已有作业配置的字段
|
|
1427
|
+
*/
|
|
1428
|
+
async UpdateJobSpec(req, cb) {
|
|
1429
|
+
return this.request("UpdateJobSpec", req, cb);
|
|
1430
|
+
}
|
|
1011
1431
|
/**
|
|
1012
1432
|
* 查询Spark作业的运行任务列表
|
|
1013
1433
|
*/
|
|
@@ -1026,6 +1446,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1026
1446
|
async UnbindWorkGroupsFromUser(req, cb) {
|
|
1027
1447
|
return this.request("UnbindWorkGroupsFromUser", req, cb);
|
|
1028
1448
|
}
|
|
1449
|
+
/**
|
|
1450
|
+
* 本接口(DescribeDataEnginePythonSparkImages)用于获取PYSPARK镜像列表
|
|
1451
|
+
*/
|
|
1452
|
+
async DescribeDataEnginePythonSparkImages(req, cb) {
|
|
1453
|
+
return this.request("DescribeDataEnginePythonSparkImages", req, cb);
|
|
1454
|
+
}
|
|
1029
1455
|
/**
|
|
1030
1456
|
* 本接口(CreateSparkSubmitTask)用于提交SparkSbumit批流任务。
|
|
1031
1457
|
*/
|
|
@@ -1033,10 +1459,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1033
1459
|
return this.request("CreateSparkSubmitTask", req, cb);
|
|
1034
1460
|
}
|
|
1035
1461
|
/**
|
|
1036
|
-
*
|
|
1462
|
+
* 删除资源队列
|
|
1037
1463
|
*/
|
|
1038
|
-
async
|
|
1039
|
-
return this.request("
|
|
1464
|
+
async DeletePartitionQueue(req, cb) {
|
|
1465
|
+
return this.request("DeletePartitionQueue", req, cb);
|
|
1040
1466
|
}
|
|
1041
1467
|
/**
|
|
1042
1468
|
* 该接口(CreateScript)用于创建sql脚本。
|
|
@@ -1056,6 +1482,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1056
1482
|
async DescribeDatabase(req, cb) {
|
|
1057
1483
|
return this.request("DescribeDatabase", req, cb);
|
|
1058
1484
|
}
|
|
1485
|
+
/**
|
|
1486
|
+
* 编辑资源队列:根据队列ID修改指定资源队列的名称、描述、资源规格列表和队列类型等信息。
|
|
1487
|
+
*/
|
|
1488
|
+
async ModifyPartitionQueue(req, cb) {
|
|
1489
|
+
return this.request("ModifyPartitionQueue", req, cb);
|
|
1490
|
+
}
|
|
1059
1491
|
/**
|
|
1060
1492
|
* 开通TCLake
|
|
1061
1493
|
*/
|
|
@@ -1069,10 +1501,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1069
1501
|
return this.request("DescribeNotebookSessionStatement", req, cb);
|
|
1070
1502
|
}
|
|
1071
1503
|
/**
|
|
1072
|
-
*
|
|
1504
|
+
* 绑定数据脱敏策略
|
|
1073
1505
|
*/
|
|
1074
|
-
async
|
|
1075
|
-
return this.request("
|
|
1506
|
+
async AttachDataMaskPolicy(req, cb) {
|
|
1507
|
+
return this.request("AttachDataMaskPolicy", req, cb);
|
|
1076
1508
|
}
|
|
1077
1509
|
/**
|
|
1078
1510
|
* 查询引擎可用的节点规格
|
|
@@ -1110,6 +1542,24 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1110
1542
|
async UpdateEngineResourceGroupNetworkConfigInfo(req, cb) {
|
|
1111
1543
|
return this.request("UpdateEngineResourceGroupNetworkConfigInfo", req, cb);
|
|
1112
1544
|
}
|
|
1545
|
+
/**
|
|
1546
|
+
* 启动实验室
|
|
1547
|
+
*/
|
|
1548
|
+
async StartLab(req, cb) {
|
|
1549
|
+
return this.request("StartLab", req, cb);
|
|
1550
|
+
}
|
|
1551
|
+
/**
|
|
1552
|
+
* 修改实验室的调度优先级(1-9,数字越大优先级越高)
|
|
1553
|
+
*/
|
|
1554
|
+
async ModifyLabPriority(req, cb) {
|
|
1555
|
+
return this.request("ModifyLabPriority", req, cb);
|
|
1556
|
+
}
|
|
1557
|
+
/**
|
|
1558
|
+
* 列举用户角色信息
|
|
1559
|
+
*/
|
|
1560
|
+
async DescribeUserRoles(req, cb) {
|
|
1561
|
+
return this.request("DescribeUserRoles", req, cb);
|
|
1562
|
+
}
|
|
1113
1563
|
/**
|
|
1114
1564
|
* 本接口(ModifySparkAppBatch)用于批量修改Spark作业参数配置
|
|
1115
1565
|
*/
|
|
@@ -1122,12 +1572,24 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1122
1572
|
async DescribeDMSDatabase(req, cb) {
|
|
1123
1573
|
return this.request("DescribeDMSDatabase", req, cb);
|
|
1124
1574
|
}
|
|
1575
|
+
/**
|
|
1576
|
+
* 创建集群
|
|
1577
|
+
*/
|
|
1578
|
+
async CreateRayCluster(req, cb) {
|
|
1579
|
+
return this.request("CreateRayCluster", req, cb);
|
|
1580
|
+
}
|
|
1125
1581
|
/**
|
|
1126
1582
|
* 绑定工作组到用户
|
|
1127
1583
|
*/
|
|
1128
1584
|
async BindWorkGroupsToUser(req, cb) {
|
|
1129
1585
|
return this.request("BindWorkGroupsToUser", req, cb);
|
|
1130
1586
|
}
|
|
1587
|
+
/**
|
|
1588
|
+
* 此接口(DeleteCHDFSBindingProduct)用于删除元数据加速桶和产品绑定关系
|
|
1589
|
+
*/
|
|
1590
|
+
async DeleteCHDFSBindingProduct(req, cb) {
|
|
1591
|
+
return this.request("DeleteCHDFSBindingProduct", req, cb);
|
|
1592
|
+
}
|
|
1131
1593
|
/**
|
|
1132
1594
|
* 查询用户自定义引擎参数
|
|
1133
1595
|
*/
|
|
@@ -1140,6 +1602,24 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1140
1602
|
async DescribeTaskLog(req, cb) {
|
|
1141
1603
|
return this.request("DescribeTaskLog", req, cb);
|
|
1142
1604
|
}
|
|
1605
|
+
/**
|
|
1606
|
+
* 获取RayCluster的YAML内容
|
|
1607
|
+
*/
|
|
1608
|
+
async GetRayClusterYaml(req, cb) {
|
|
1609
|
+
return this.request("GetRayClusterYaml", req, cb);
|
|
1610
|
+
}
|
|
1611
|
+
/**
|
|
1612
|
+
* 获取数据实验室对应的RayCluster YAML内容
|
|
1613
|
+
*/
|
|
1614
|
+
async GetLabYaml(req, cb) {
|
|
1615
|
+
return this.request("GetLabYaml", req, cb);
|
|
1616
|
+
}
|
|
1617
|
+
/**
|
|
1618
|
+
* 获取资源配置模板详情
|
|
1619
|
+
*/
|
|
1620
|
+
async GetResourceConfig(req, cb) {
|
|
1621
|
+
return this.request("GetResourceConfig", req, cb);
|
|
1622
|
+
}
|
|
1143
1623
|
/**
|
|
1144
1624
|
* 获取任务结果查询
|
|
1145
1625
|
*/
|
|
@@ -1195,10 +1675,16 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1195
1675
|
return this.request("CreateDataEngine", req, cb);
|
|
1196
1676
|
}
|
|
1197
1677
|
/**
|
|
1198
|
-
*
|
|
1678
|
+
* 删除资源配置模板
|
|
1199
1679
|
*/
|
|
1200
|
-
async
|
|
1201
|
-
return this.request("
|
|
1680
|
+
async DeleteResourceConfig(req, cb) {
|
|
1681
|
+
return this.request("DeleteResourceConfig", req, cb);
|
|
1682
|
+
}
|
|
1683
|
+
/**
|
|
1684
|
+
* DMS元数据删除库
|
|
1685
|
+
*/
|
|
1686
|
+
async DropDMSDatabase(req, cb) {
|
|
1687
|
+
return this.request("DropDMSDatabase", req, cb);
|
|
1202
1688
|
}
|
|
1203
1689
|
/**
|
|
1204
1690
|
* 查询标准引擎资源组信息
|
|
@@ -1212,6 +1698,18 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1212
1698
|
async ListTaskJobLogDetail(req, cb) {
|
|
1213
1699
|
return this.request("ListTaskJobLogDetail", req, cb);
|
|
1214
1700
|
}
|
|
1701
|
+
/**
|
|
1702
|
+
* 根据任务ID删除Ray任务
|
|
1703
|
+
*/
|
|
1704
|
+
async DeleteRayJob(req, cb) {
|
|
1705
|
+
return this.request("DeleteRayJob", req, cb);
|
|
1706
|
+
}
|
|
1707
|
+
/**
|
|
1708
|
+
* 更新实验室配置:仅在 CREATED / STOPPED / FAILED 终态可用;变更落 MySQL,下次 Start 按新 spec 创建 K8s 资源
|
|
1709
|
+
*/
|
|
1710
|
+
async UpdateLab(req, cb) {
|
|
1711
|
+
return this.request("UpdateLab", req, cb);
|
|
1712
|
+
}
|
|
1215
1713
|
/**
|
|
1216
1714
|
* 查询引擎网络信息
|
|
1217
1715
|
*/
|