tencentcloud-sdk-nodejs-dlc 4.0.534 → 4.0.536
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/CHANGELOG.md +409 -0
- package/SERVICE_CHANGELOG.md +468 -251
- package/package.json +1 -1
- package/products.md +32 -32
- package/src/services/dlc/v20210125/dlc_client.ts +204 -52
- package/src/services/dlc/v20210125/dlc_models.ts +1109 -70
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +64 -16
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +94 -22
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +950 -72
|
@@ -19,7 +19,8 @@ import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common"
|
|
|
19
19
|
import {
|
|
20
20
|
DescribeResultDownloadResponse,
|
|
21
21
|
DescribeTaskResultResponse,
|
|
22
|
-
|
|
22
|
+
DescribeNotebookSessionStatementRequest,
|
|
23
|
+
CancelNotebookSessionStatementRequest,
|
|
23
24
|
DescribeDatabasesRequest,
|
|
24
25
|
WorkGroupMessage,
|
|
25
26
|
DeleteUserRequest,
|
|
@@ -27,10 +28,12 @@ import {
|
|
|
27
28
|
Asset,
|
|
28
29
|
CreateResultDownloadResponse,
|
|
29
30
|
ModifyGovernEventRuleResponse,
|
|
31
|
+
DescribeNotebookSessionsRequest,
|
|
30
32
|
CreateDMSDatabaseResponse,
|
|
31
33
|
CreateStoreLocationResponse,
|
|
32
34
|
DescribeNotebookSessionResponse,
|
|
33
35
|
DescribeDMSDatabaseResponse,
|
|
36
|
+
UnbindWorkGroupsFromUserResponse,
|
|
34
37
|
DropDMSDatabaseRequest,
|
|
35
38
|
CreateScriptResponse,
|
|
36
39
|
CreateTasksInOrderResponse,
|
|
@@ -43,17 +46,22 @@ import {
|
|
|
43
46
|
TableInfo,
|
|
44
47
|
Task,
|
|
45
48
|
DetachUserPolicyRequest,
|
|
46
|
-
|
|
49
|
+
CrontabResumeSuspendStrategy,
|
|
50
|
+
AlterDMSTableResponse,
|
|
47
51
|
DescribeTasksResponse,
|
|
48
52
|
DescribeDMSTableResponse,
|
|
49
53
|
DropDMSPartitionsRequest,
|
|
54
|
+
NotebookSessions,
|
|
55
|
+
CreateNotebookSessionStatementSupportBatchSQLRequest,
|
|
50
56
|
CreateTasksInOrderRequest,
|
|
51
57
|
AddDMSPartitionsResponse,
|
|
52
58
|
DetachWorkGroupPolicyResponse,
|
|
59
|
+
GenerateCreateMangedTableSqlRequest,
|
|
53
60
|
CSVSerde,
|
|
54
61
|
ModifySparkAppRequest,
|
|
55
62
|
StreamingStatistics,
|
|
56
63
|
CreateDatabaseRequest,
|
|
64
|
+
GenerateCreateMangedTableSqlResponse,
|
|
57
65
|
DescribeDMSTablesResponse,
|
|
58
66
|
UserIdSetOfWorkGroupId,
|
|
59
67
|
AlterDMSPartitionRequest,
|
|
@@ -63,7 +71,7 @@ import {
|
|
|
63
71
|
CreateDatabaseResponse,
|
|
64
72
|
DescribeTasksRequest,
|
|
65
73
|
CreateSparkAppTaskRequest,
|
|
66
|
-
|
|
74
|
+
CancelNotebookSessionStatementBatchResponse,
|
|
67
75
|
KVPair,
|
|
68
76
|
TableBaseInfo,
|
|
69
77
|
UnlockMetaDataRequest,
|
|
@@ -72,34 +80,43 @@ import {
|
|
|
72
80
|
ListTaskJobLogDetailRequest,
|
|
73
81
|
TasksInfo,
|
|
74
82
|
AttachWorkGroupPolicyRequest,
|
|
83
|
+
StatementOutput,
|
|
84
|
+
TagInfo,
|
|
75
85
|
CreateUserResponse,
|
|
86
|
+
DescribeNotebookSessionStatementsRequest,
|
|
76
87
|
DeleteUserResponse,
|
|
77
88
|
DescribeDatabasesResponse,
|
|
78
89
|
LockComponentInfo,
|
|
90
|
+
DescribeNotebookSessionsResponse,
|
|
79
91
|
DescribeDMSPartitionsRequest,
|
|
80
92
|
TPartition,
|
|
81
93
|
DescribeSparkAppJobsRequest,
|
|
94
|
+
DeleteNotebookSessionRequest,
|
|
82
95
|
CreateDMSTableResponse,
|
|
83
96
|
CreateNotebookSessionRequest,
|
|
84
97
|
Partition,
|
|
85
98
|
CreateTaskRequest,
|
|
86
99
|
DescribeNotebookSessionRequest,
|
|
87
100
|
CSV,
|
|
101
|
+
NotebookSessionStatementInfo,
|
|
88
102
|
CreateTableRequest,
|
|
103
|
+
CreateNotebookSessionStatementRequest,
|
|
89
104
|
DescribeWorkGroupsResponse,
|
|
90
105
|
CreateImportTaskRequest,
|
|
91
106
|
DescribeScriptsRequest,
|
|
92
107
|
DescribeSparkAppJobResponse,
|
|
93
|
-
|
|
108
|
+
CreateExportTaskResponse,
|
|
94
109
|
AddUsersToWorkGroupRequest,
|
|
95
110
|
DescribeStoreLocationRequest,
|
|
96
111
|
AddUsersToWorkGroupResponse,
|
|
112
|
+
DescribeNotebookSessionLogRequest,
|
|
97
113
|
UserInfo,
|
|
98
114
|
CreateExportTaskRequest,
|
|
115
|
+
DescribeNotebookSessionStatementResponse,
|
|
99
116
|
ReportHeartbeatMetaDataResponse,
|
|
100
117
|
ReportHeartbeatMetaDataRequest,
|
|
101
118
|
CreateDMSTableRequest,
|
|
102
|
-
|
|
119
|
+
CancelNotebookSessionStatementResponse,
|
|
103
120
|
DMSTable,
|
|
104
121
|
AttachWorkGroupPolicyResponse,
|
|
105
122
|
ModifyWorkGroupResponse,
|
|
@@ -111,24 +128,32 @@ import {
|
|
|
111
128
|
TaskResponseInfo,
|
|
112
129
|
TextFile,
|
|
113
130
|
BindWorkGroupsToUserResponse,
|
|
131
|
+
CreateNotebookSessionStatementResponse,
|
|
114
132
|
DescribeStoreLocationResponse,
|
|
115
133
|
DeleteScriptRequest,
|
|
116
134
|
AddDMSPartitionsRequest,
|
|
117
135
|
Script,
|
|
136
|
+
NotebookSessionStatementBatchInformation,
|
|
137
|
+
DescribeNotebookSessionStatementSqlResultRequest,
|
|
138
|
+
ModifySparkAppResponse,
|
|
118
139
|
AlterDMSTableRequest,
|
|
119
140
|
CreateImportTaskResponse,
|
|
120
141
|
NotebookSessionInfo,
|
|
121
142
|
Execution,
|
|
122
143
|
CreateTableResponse,
|
|
123
144
|
WorkGroupInfo,
|
|
145
|
+
CreateNotebookSessionStatementSupportBatchSQLResponse,
|
|
124
146
|
CreateScriptRequest,
|
|
125
147
|
BindWorkGroupsToUserRequest,
|
|
126
148
|
Column,
|
|
149
|
+
DeleteWorkGroupRequest,
|
|
127
150
|
DescribeTaskResultRequest,
|
|
128
151
|
Filter,
|
|
129
152
|
DescribeUsersResponse,
|
|
130
153
|
DataFormat,
|
|
154
|
+
DescribeNotebookSessionLogResponse,
|
|
131
155
|
ViewResponseInfo,
|
|
156
|
+
NetworkConnection,
|
|
132
157
|
CreateUserRequest,
|
|
133
158
|
ModifyWorkGroupRequest,
|
|
134
159
|
CancelTaskResponse,
|
|
@@ -140,14 +165,17 @@ import {
|
|
|
140
165
|
CreateWorkGroupResponse,
|
|
141
166
|
TaskResultInfo,
|
|
142
167
|
DescribeTablesRequest,
|
|
143
|
-
|
|
168
|
+
DeleteNotebookSessionResponse,
|
|
144
169
|
CreateStoreLocationRequest,
|
|
145
170
|
DMSTableInfo,
|
|
171
|
+
DescribeNotebookSessionStatementsResponse,
|
|
146
172
|
AttachUserPolicyResponse,
|
|
173
|
+
DropDMSTableRequest,
|
|
174
|
+
DescribeNotebookSessionStatementSqlResultResponse,
|
|
147
175
|
DMSPartition,
|
|
148
176
|
DatabaseInfo,
|
|
149
177
|
DescribeDMSPartitionsResponse,
|
|
150
|
-
|
|
178
|
+
DeleteUsersFromWorkGroupResponse,
|
|
151
179
|
UnbindWorkGroupsFromUserRequest,
|
|
152
180
|
DescribeDMSDatabaseRequest,
|
|
153
181
|
DescribeTableRequest,
|
|
@@ -166,6 +194,7 @@ import {
|
|
|
166
194
|
SuspendResumeDataEngineRequest,
|
|
167
195
|
DescribeTableResponse,
|
|
168
196
|
DescribeSparkAppJobsResponse,
|
|
197
|
+
DescribeSparkAppTasksResponse,
|
|
169
198
|
TableResponseInfo,
|
|
170
199
|
DescribeViewsRequest,
|
|
171
200
|
LockMetaDataRequest,
|
|
@@ -175,24 +204,27 @@ import {
|
|
|
175
204
|
CreateTasksResponse,
|
|
176
205
|
CreateNotebookSessionResponse,
|
|
177
206
|
CreateSparkAppRequest,
|
|
178
|
-
|
|
207
|
+
DescribeDataEnginesRequest,
|
|
179
208
|
DropDMSPartitionsResponse,
|
|
180
209
|
AlterDMSDatabaseResponse,
|
|
181
210
|
CreateWorkGroupRequest,
|
|
182
211
|
CreateInternalTableResponse,
|
|
212
|
+
DataEngineInfo,
|
|
183
213
|
DescribeSparkAppTasksRequest,
|
|
184
214
|
LockMetaDataResponse,
|
|
185
215
|
CheckLockMetaDataResponse,
|
|
186
216
|
AlterDMSDatabaseRequest,
|
|
187
217
|
SQLTask,
|
|
188
218
|
UserMessage,
|
|
219
|
+
DescribeViewsResponse,
|
|
189
220
|
Property,
|
|
190
221
|
CreateResultDownloadRequest,
|
|
191
222
|
CreateDMSDatabaseRequest,
|
|
192
223
|
DetachWorkGroupPolicyRequest,
|
|
193
224
|
DescribeDMSTableRequest,
|
|
194
225
|
ModifyGovernEventRuleRequest,
|
|
195
|
-
|
|
226
|
+
CancelNotebookSessionStatementBatchRequest,
|
|
227
|
+
DescribeDataEnginesResponse,
|
|
196
228
|
DescribeScriptsResponse,
|
|
197
229
|
DatabaseResponseInfo,
|
|
198
230
|
DMSColumn,
|
|
@@ -280,13 +312,13 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
280
312
|
}
|
|
281
313
|
|
|
282
314
|
/**
|
|
283
|
-
*
|
|
315
|
+
* 本接口(CancelNotebookSessionStatement)用于取消session statement
|
|
284
316
|
*/
|
|
285
|
-
async
|
|
286
|
-
req:
|
|
287
|
-
cb?: (error: string, rep:
|
|
288
|
-
): Promise<
|
|
289
|
-
return this.request("
|
|
317
|
+
async CancelNotebookSessionStatement(
|
|
318
|
+
req: CancelNotebookSessionStatementRequest,
|
|
319
|
+
cb?: (error: string, rep: CancelNotebookSessionStatementResponse) => void
|
|
320
|
+
): Promise<CancelNotebookSessionStatementResponse> {
|
|
321
|
+
return this.request("CancelNotebookSessionStatement", req, cb)
|
|
290
322
|
}
|
|
291
323
|
|
|
292
324
|
/**
|
|
@@ -340,13 +372,13 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
340
372
|
}
|
|
341
373
|
|
|
342
374
|
/**
|
|
343
|
-
*
|
|
375
|
+
* 本接口(CancelNotebookSessionStatementBatch)用于按批取消Session statement。
|
|
344
376
|
*/
|
|
345
|
-
async
|
|
346
|
-
req:
|
|
347
|
-
cb?: (error: string, rep:
|
|
348
|
-
): Promise<
|
|
349
|
-
return this.request("
|
|
377
|
+
async CancelNotebookSessionStatementBatch(
|
|
378
|
+
req: CancelNotebookSessionStatementBatchRequest,
|
|
379
|
+
cb?: (error: string, rep: CancelNotebookSessionStatementBatchResponse) => void
|
|
380
|
+
): Promise<CancelNotebookSessionStatementBatchResponse> {
|
|
381
|
+
return this.request("CancelNotebookSessionStatementBatch", req, cb)
|
|
350
382
|
}
|
|
351
383
|
|
|
352
384
|
/**
|
|
@@ -429,6 +461,16 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
429
461
|
return this.request("DescribeResultDownload", req, cb)
|
|
430
462
|
}
|
|
431
463
|
|
|
464
|
+
/**
|
|
465
|
+
* 本接口(DescribeDataEngines)用于获取DataEngines信息列表
|
|
466
|
+
*/
|
|
467
|
+
async DescribeDataEngines(
|
|
468
|
+
req: DescribeDataEnginesRequest,
|
|
469
|
+
cb?: (error: string, rep: DescribeDataEnginesResponse) => void
|
|
470
|
+
): Promise<DescribeDataEnginesResponse> {
|
|
471
|
+
return this.request("DescribeDataEngines", req, cb)
|
|
472
|
+
}
|
|
473
|
+
|
|
432
474
|
/**
|
|
433
475
|
* 该接口(CreateStoreLocation)新增或覆盖计算结果存储位置。
|
|
434
476
|
*/
|
|
@@ -480,13 +522,23 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
480
522
|
}
|
|
481
523
|
|
|
482
524
|
/**
|
|
483
|
-
* 本接口(
|
|
525
|
+
* 本接口(CreateNotebookSessionStatementSupportBatchSQL)用于创建Statement批量运行SQL任务。
|
|
484
526
|
*/
|
|
485
|
-
async
|
|
486
|
-
req:
|
|
487
|
-
cb?: (error: string, rep:
|
|
488
|
-
): Promise<
|
|
489
|
-
return this.request("
|
|
527
|
+
async CreateNotebookSessionStatementSupportBatchSQL(
|
|
528
|
+
req: CreateNotebookSessionStatementSupportBatchSQLRequest,
|
|
529
|
+
cb?: (error: string, rep: CreateNotebookSessionStatementSupportBatchSQLResponse) => void
|
|
530
|
+
): Promise<CreateNotebookSessionStatementSupportBatchSQLResponse> {
|
|
531
|
+
return this.request("CreateNotebookSessionStatementSupportBatchSQL", req, cb)
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
/**
|
|
535
|
+
* 本接口(DescribeNotebookSessionLog)用于获取notebook livy session日志
|
|
536
|
+
*/
|
|
537
|
+
async DescribeNotebookSessionLog(
|
|
538
|
+
req: DescribeNotebookSessionLogRequest,
|
|
539
|
+
cb?: (error: string, rep: DescribeNotebookSessionLogResponse) => void
|
|
540
|
+
): Promise<DescribeNotebookSessionLogResponse> {
|
|
541
|
+
return this.request("DescribeNotebookSessionLog", req, cb)
|
|
490
542
|
}
|
|
491
543
|
|
|
492
544
|
/**
|
|
@@ -500,17 +552,17 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
500
552
|
}
|
|
501
553
|
|
|
502
554
|
/**
|
|
503
|
-
*
|
|
555
|
+
* 更新spark应用
|
|
504
556
|
*/
|
|
505
|
-
async
|
|
506
|
-
req:
|
|
507
|
-
cb?: (error: string, rep:
|
|
508
|
-
): Promise<
|
|
509
|
-
return this.request("
|
|
557
|
+
async ModifySparkApp(
|
|
558
|
+
req: ModifySparkAppRequest,
|
|
559
|
+
cb?: (error: string, rep: ModifySparkAppResponse) => void
|
|
560
|
+
): Promise<ModifySparkAppResponse> {
|
|
561
|
+
return this.request("ModifySparkApp", req, cb)
|
|
510
562
|
}
|
|
511
563
|
|
|
512
564
|
/**
|
|
513
|
-
*
|
|
565
|
+
* 创建托管存储内表(该接口已废弃)
|
|
514
566
|
*/
|
|
515
567
|
async CreateInternalTable(
|
|
516
568
|
req: CreateInternalTableRequest,
|
|
@@ -520,13 +572,23 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
520
572
|
}
|
|
521
573
|
|
|
522
574
|
/**
|
|
523
|
-
*
|
|
575
|
+
* 本接口(DeleteNotebookSession)用于删除notebook livy session
|
|
524
576
|
*/
|
|
525
|
-
async
|
|
526
|
-
req:
|
|
527
|
-
cb?: (error: string, rep:
|
|
528
|
-
): Promise<
|
|
529
|
-
return this.request("
|
|
577
|
+
async DeleteNotebookSession(
|
|
578
|
+
req: DeleteNotebookSessionRequest,
|
|
579
|
+
cb?: (error: string, rep: DeleteNotebookSessionResponse) => void
|
|
580
|
+
): Promise<DeleteNotebookSessionResponse> {
|
|
581
|
+
return this.request("DeleteNotebookSession", req, cb)
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
/**
|
|
585
|
+
* 生成创建托管表语句
|
|
586
|
+
*/
|
|
587
|
+
async GenerateCreateMangedTableSql(
|
|
588
|
+
req: GenerateCreateMangedTableSqlRequest,
|
|
589
|
+
cb?: (error: string, rep: GenerateCreateMangedTableSqlResponse) => void
|
|
590
|
+
): Promise<GenerateCreateMangedTableSqlResponse> {
|
|
591
|
+
return this.request("GenerateCreateMangedTableSql", req, cb)
|
|
530
592
|
}
|
|
531
593
|
|
|
532
594
|
/**
|
|
@@ -539,6 +601,16 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
539
601
|
return this.request("AttachWorkGroupPolicy", req, cb)
|
|
540
602
|
}
|
|
541
603
|
|
|
604
|
+
/**
|
|
605
|
+
* 本接口(DescribeNotebookSessions)用于获取notebook livy session列表
|
|
606
|
+
*/
|
|
607
|
+
async DescribeNotebookSessions(
|
|
608
|
+
req: DescribeNotebookSessionsRequest,
|
|
609
|
+
cb?: (error: string, rep: DescribeNotebookSessionsResponse) => void
|
|
610
|
+
): Promise<DescribeNotebookSessionsResponse> {
|
|
611
|
+
return this.request("DescribeNotebookSessions", req, cb)
|
|
612
|
+
}
|
|
613
|
+
|
|
542
614
|
/**
|
|
543
615
|
* DMS元数据获取分区
|
|
544
616
|
*/
|
|
@@ -609,6 +681,36 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
609
681
|
return this.request("CreateDatabase", req, cb)
|
|
610
682
|
}
|
|
611
683
|
|
|
684
|
+
/**
|
|
685
|
+
* 本接口(DescribeNotebookSessionStatement)用于获取session statement信息
|
|
686
|
+
*/
|
|
687
|
+
async DescribeNotebookSessionStatement(
|
|
688
|
+
req: DescribeNotebookSessionStatementRequest,
|
|
689
|
+
cb?: (error: string, rep: DescribeNotebookSessionStatementResponse) => void
|
|
690
|
+
): Promise<DescribeNotebookSessionStatementResponse> {
|
|
691
|
+
return this.request("DescribeNotebookSessionStatement", req, cb)
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
/**
|
|
695
|
+
* 解绑用户上的用户组
|
|
696
|
+
*/
|
|
697
|
+
async UnbindWorkGroupsFromUser(
|
|
698
|
+
req: UnbindWorkGroupsFromUserRequest,
|
|
699
|
+
cb?: (error: string, rep: UnbindWorkGroupsFromUserResponse) => void
|
|
700
|
+
): Promise<UnbindWorkGroupsFromUserResponse> {
|
|
701
|
+
return this.request("UnbindWorkGroupsFromUser", req, cb)
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
/**
|
|
705
|
+
* 获取spark应用列表
|
|
706
|
+
*/
|
|
707
|
+
async DescribeSparkAppJobs(
|
|
708
|
+
req: DescribeSparkAppJobsRequest,
|
|
709
|
+
cb?: (error: string, rep: DescribeSparkAppJobsResponse) => void
|
|
710
|
+
): Promise<DescribeSparkAppJobsResponse> {
|
|
711
|
+
return this.request("DescribeSparkAppJobs", req, cb)
|
|
712
|
+
}
|
|
713
|
+
|
|
612
714
|
/**
|
|
613
715
|
* 获取工作组列表
|
|
614
716
|
*/
|
|
@@ -630,13 +732,13 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
630
732
|
}
|
|
631
733
|
|
|
632
734
|
/**
|
|
633
|
-
*
|
|
735
|
+
* 本接口(ListTaskJobLogDetail)用于获取spark-jar日志列表
|
|
634
736
|
*/
|
|
635
|
-
async
|
|
636
|
-
req:
|
|
637
|
-
cb?: (error: string, rep:
|
|
638
|
-
): Promise<
|
|
639
|
-
return this.request("
|
|
737
|
+
async ListTaskJobLogDetail(
|
|
738
|
+
req: ListTaskJobLogDetailRequest,
|
|
739
|
+
cb?: (error: string, rep: ListTaskJobLogDetailResponse) => void
|
|
740
|
+
): Promise<ListTaskJobLogDetailResponse> {
|
|
741
|
+
return this.request("ListTaskJobLogDetail", req, cb)
|
|
640
742
|
}
|
|
641
743
|
|
|
642
744
|
/**
|
|
@@ -659,6 +761,26 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
659
761
|
return this.request("DescribeTable", req, cb)
|
|
660
762
|
}
|
|
661
763
|
|
|
764
|
+
/**
|
|
765
|
+
* 本接口(DescribeNotebookSessionStatements)用于获取Session Statement列表。
|
|
766
|
+
*/
|
|
767
|
+
async DescribeNotebookSessionStatements(
|
|
768
|
+
req: DescribeNotebookSessionStatementsRequest,
|
|
769
|
+
cb?: (error: string, rep: DescribeNotebookSessionStatementsResponse) => void
|
|
770
|
+
): Promise<DescribeNotebookSessionStatementsResponse> {
|
|
771
|
+
return this.request("DescribeNotebookSessionStatements", req, cb)
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
/**
|
|
775
|
+
* 获取用户列表信息
|
|
776
|
+
*/
|
|
777
|
+
async DescribeUsers(
|
|
778
|
+
req: DescribeUsersRequest,
|
|
779
|
+
cb?: (error: string, rep: DescribeUsersResponse) => void
|
|
780
|
+
): Promise<DescribeUsersResponse> {
|
|
781
|
+
return this.request("DescribeUsers", req, cb)
|
|
782
|
+
}
|
|
783
|
+
|
|
662
784
|
/**
|
|
663
785
|
* DMS元数据获取库
|
|
664
786
|
*/
|
|
@@ -840,13 +962,23 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
840
962
|
}
|
|
841
963
|
|
|
842
964
|
/**
|
|
843
|
-
*
|
|
965
|
+
* 本接口(DescribeNotebookSessionStatementSqlResult)用于获取statement运行结果。
|
|
844
966
|
*/
|
|
845
|
-
async
|
|
846
|
-
req:
|
|
847
|
-
cb?: (error: string, rep:
|
|
848
|
-
): Promise<
|
|
849
|
-
return this.request("
|
|
967
|
+
async DescribeNotebookSessionStatementSqlResult(
|
|
968
|
+
req: DescribeNotebookSessionStatementSqlResultRequest,
|
|
969
|
+
cb?: (error: string, rep: DescribeNotebookSessionStatementSqlResultResponse) => void
|
|
970
|
+
): Promise<DescribeNotebookSessionStatementSqlResultResponse> {
|
|
971
|
+
return this.request("DescribeNotebookSessionStatementSqlResult", req, cb)
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
/**
|
|
975
|
+
* DMS元数据删除库
|
|
976
|
+
*/
|
|
977
|
+
async DropDMSDatabase(
|
|
978
|
+
req: DropDMSDatabaseRequest,
|
|
979
|
+
cb?: (error: string, rep: DropDMSDatabaseResponse) => void
|
|
980
|
+
): Promise<DropDMSDatabaseResponse> {
|
|
981
|
+
return this.request("DropDMSDatabase", req, cb)
|
|
850
982
|
}
|
|
851
983
|
|
|
852
984
|
/**
|
|
@@ -859,6 +991,16 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
859
991
|
return this.request("CreateUser", req, cb)
|
|
860
992
|
}
|
|
861
993
|
|
|
994
|
+
/**
|
|
995
|
+
* 本接口(CreateNotebookSessionStatement)用于创建session statement
|
|
996
|
+
*/
|
|
997
|
+
async CreateNotebookSessionStatement(
|
|
998
|
+
req: CreateNotebookSessionStatementRequest,
|
|
999
|
+
cb?: (error: string, rep: CreateNotebookSessionStatementResponse) => void
|
|
1000
|
+
): Promise<CreateNotebookSessionStatementResponse> {
|
|
1001
|
+
return this.request("CreateNotebookSessionStatement", req, cb)
|
|
1002
|
+
}
|
|
1003
|
+
|
|
862
1004
|
/**
|
|
863
1005
|
* 解绑用户鉴权策略
|
|
864
1006
|
*/
|
|
@@ -878,4 +1020,14 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
878
1020
|
): Promise<DescribeTablesResponse> {
|
|
879
1021
|
return this.request("DescribeTables", req, cb)
|
|
880
1022
|
}
|
|
1023
|
+
|
|
1024
|
+
/**
|
|
1025
|
+
* 该接口(CreateExportTask)用于创建导出任务
|
|
1026
|
+
*/
|
|
1027
|
+
async CreateExportTask(
|
|
1028
|
+
req: CreateExportTaskRequest,
|
|
1029
|
+
cb?: (error: string, rep: CreateExportTaskResponse) => void
|
|
1030
|
+
): Promise<CreateExportTaskResponse> {
|
|
1031
|
+
return this.request("CreateExportTask", req, cb)
|
|
1032
|
+
}
|
|
881
1033
|
}
|