tencentcloud-sdk-nodejs-wedata 4.1.120 → 4.1.128
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/README.md +6 -4
- package/es/services/wedata/index.js +2 -2
- package/es/services/wedata/v20250806/wedata_client.js +246 -132
- package/package.json +2 -1
- package/tencentcloud/services/wedata/index.d.ts +4 -4
- package/tencentcloud/services/wedata/index.js +2 -2
- package/tencentcloud/services/wedata/v20250806/wedata_client.d.ts +288 -136
- package/tencentcloud/services/wedata/v20250806/wedata_client.js +460 -232
- package/tencentcloud/services/wedata/v20250806/wedata_models.d.ts +7367 -4339
package/README.md
CHANGED
|
@@ -62,6 +62,8 @@ npm install tencentcloud-sdk-slim-nodejs --save
|
|
|
62
62
|
|
|
63
63
|
1. clone 代码到本地:
|
|
64
64
|
```
|
|
65
|
+
git clone https://cnb.cool/tencent/cloud/api/sdk/tencentcloud-sdk-nodejs
|
|
66
|
+
# 或者
|
|
65
67
|
git clone https://github.com/tencentcloud/tencentcloud-sdk-nodejs
|
|
66
68
|
# 或者
|
|
67
69
|
git clone https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs
|
|
@@ -135,7 +137,7 @@ const CvmClient = tencentcloud.cvm.v20170312.Client
|
|
|
135
137
|
// ...
|
|
136
138
|
```
|
|
137
139
|
|
|
138
|
-
实例化 `Client` 的入参支持 `clientConfig`,数据结构和说明详见 [ClientConfig](
|
|
140
|
+
实例化 `Client` 的入参支持 `clientConfig`,数据结构和说明详见 [ClientConfig](src/common/interface.ts)。
|
|
139
141
|
|
|
140
142
|
## Common Client
|
|
141
143
|
|
|
@@ -143,17 +145,17 @@ const CvmClient = tencentcloud.cvm.v20170312.Client
|
|
|
143
145
|
|
|
144
146
|
**注意,您必须明确知道您调用的接口所需参数,否则可能会调用失败。**
|
|
145
147
|
|
|
146
|
-
详细使用请参阅示例:[使用 Common Client 进行调用](
|
|
148
|
+
详细使用请参阅示例:[使用 Common Client 进行调用](examples/common)
|
|
147
149
|
|
|
148
150
|
## 更多示例
|
|
149
151
|
|
|
150
|
-
请参考 [examples](
|
|
152
|
+
请参考 [examples](examples) 目录。
|
|
151
153
|
|
|
152
154
|
# 相关配置
|
|
153
155
|
|
|
154
156
|
## 代理
|
|
155
157
|
|
|
156
|
-
如果是有代理的环境下,需要配置代理,请在创建 Client 时传入 [profile.httpProfile.proxy](
|
|
158
|
+
如果是有代理的环境下,需要配置代理,请在创建 Client 时传入 [profile.httpProfile.proxy](src/common/interface.ts#L78) 参数,或设置系统环境变量 `http_proxy` ,否则可能无法正常调用,抛出连接超时的异常。
|
|
157
159
|
|
|
158
160
|
# 凭证管理
|
|
159
161
|
|
|
@@ -3,155 +3,239 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
3
3
|
constructor(clientConfig) {
|
|
4
4
|
super("wedata.tencentcloudapi.com", "2025-08-06", clientConfig);
|
|
5
5
|
}
|
|
6
|
-
async CreateResourceFolder(req, cb) {
|
|
7
|
-
return this.request("CreateResourceFolder", req, cb);
|
|
8
|
-
}
|
|
9
6
|
async CreateTask(req, cb) {
|
|
10
7
|
return this.request("CreateTask", req, cb);
|
|
11
8
|
}
|
|
12
9
|
async ListOpsWorkflows(req, cb) {
|
|
13
10
|
return this.request("ListOpsWorkflows", req, cb);
|
|
14
11
|
}
|
|
15
|
-
async CreateSQLFolder(req, cb) {
|
|
16
|
-
return this.request("CreateSQLFolder", req, cb);
|
|
17
|
-
}
|
|
18
|
-
async UpdateCodeFolder(req, cb) {
|
|
19
|
-
return this.request("UpdateCodeFolder", req, cb);
|
|
20
|
-
}
|
|
21
12
|
async ListAlarmMessages(req, cb) {
|
|
22
13
|
return this.request("ListAlarmMessages", req, cb);
|
|
23
14
|
}
|
|
24
|
-
async
|
|
25
|
-
return this.request("
|
|
15
|
+
async PauseOpsTasksAsync(req, cb) {
|
|
16
|
+
return this.request("PauseOpsTasksAsync", req, cb);
|
|
17
|
+
}
|
|
18
|
+
async GetDataSourceRelatedTasks(req, cb) {
|
|
19
|
+
return this.request("GetDataSourceRelatedTasks", req, cb);
|
|
20
|
+
}
|
|
21
|
+
async KillTaskInstancesAsync(req, cb) {
|
|
22
|
+
return this.request("KillTaskInstancesAsync", req, cb);
|
|
23
|
+
}
|
|
24
|
+
async ListProjects(req, cb) {
|
|
25
|
+
return this.request("ListProjects", req, cb);
|
|
26
26
|
}
|
|
27
27
|
async ListDownstreamTaskInstances(req, cb) {
|
|
28
28
|
return this.request("ListDownstreamTaskInstances", req, cb);
|
|
29
29
|
}
|
|
30
|
-
async
|
|
31
|
-
return this.request("
|
|
30
|
+
async ListDownstreamOpsTasks(req, cb) {
|
|
31
|
+
return this.request("ListDownstreamOpsTasks", req, cb);
|
|
32
|
+
}
|
|
33
|
+
async ListResourceFiles(req, cb) {
|
|
34
|
+
return this.request("ListResourceFiles", req, cb);
|
|
35
|
+
}
|
|
36
|
+
async ListUpstreamOpsTasks(req, cb) {
|
|
37
|
+
return this.request("ListUpstreamOpsTasks", req, cb);
|
|
38
|
+
}
|
|
39
|
+
async ListOpsTasks(req, cb) {
|
|
40
|
+
return this.request("ListOpsTasks", req, cb);
|
|
41
|
+
}
|
|
42
|
+
async ListCatalog(req, cb) {
|
|
43
|
+
return this.request("ListCatalog", req, cb);
|
|
44
|
+
}
|
|
45
|
+
async DeleteWorkflow(req, cb) {
|
|
46
|
+
return this.request("DeleteWorkflow", req, cb);
|
|
47
|
+
}
|
|
48
|
+
async DeleteDataSource(req, cb) {
|
|
49
|
+
return this.request("DeleteDataSource", req, cb);
|
|
50
|
+
}
|
|
51
|
+
async DissociateResourceGroupFromProject(req, cb) {
|
|
52
|
+
return this.request("DissociateResourceGroupFromProject", req, cb);
|
|
53
|
+
}
|
|
54
|
+
async GetResourceFile(req, cb) {
|
|
55
|
+
return this.request("GetResourceFile", req, cb);
|
|
56
|
+
}
|
|
57
|
+
async UpdateResourceFolder(req, cb) {
|
|
58
|
+
return this.request("UpdateResourceFolder", req, cb);
|
|
59
|
+
}
|
|
60
|
+
async CreateDataSource(req, cb) {
|
|
61
|
+
return this.request("CreateDataSource", req, cb);
|
|
62
|
+
}
|
|
63
|
+
async DeleteResourceFolder(req, cb) {
|
|
64
|
+
return this.request("DeleteResourceFolder", req, cb);
|
|
65
|
+
}
|
|
66
|
+
async ListTasks(req, cb) {
|
|
67
|
+
return this.request("ListTasks", req, cb);
|
|
68
|
+
}
|
|
69
|
+
async AssociateResourceGroupToProject(req, cb) {
|
|
70
|
+
return this.request("AssociateResourceGroupToProject", req, cb);
|
|
71
|
+
}
|
|
72
|
+
async RemoveMemberProjectRole(req, cb) {
|
|
73
|
+
return this.request("RemoveMemberProjectRole", req, cb);
|
|
74
|
+
}
|
|
75
|
+
async UpdateProject(req, cb) {
|
|
76
|
+
return this.request("UpdateProject", req, cb);
|
|
77
|
+
}
|
|
78
|
+
async EnableProject(req, cb) {
|
|
79
|
+
return this.request("EnableProject", req, cb);
|
|
80
|
+
}
|
|
81
|
+
async ListTenantRoles(req, cb) {
|
|
82
|
+
return this.request("ListTenantRoles", req, cb);
|
|
32
83
|
}
|
|
33
84
|
async ListUpstreamTasks(req, cb) {
|
|
34
85
|
return this.request("ListUpstreamTasks", req, cb);
|
|
35
86
|
}
|
|
36
|
-
async
|
|
37
|
-
return this.request("
|
|
87
|
+
async ListDataBackfillInstances(req, cb) {
|
|
88
|
+
return this.request("ListDataBackfillInstances", req, cb);
|
|
38
89
|
}
|
|
39
90
|
async CreateDataBackfillPlan(req, cb) {
|
|
40
91
|
return this.request("CreateDataBackfillPlan", req, cb);
|
|
41
92
|
}
|
|
42
|
-
async ListSQLFolderContents(req, cb) {
|
|
43
|
-
return this.request("ListSQLFolderContents", req, cb);
|
|
44
|
-
}
|
|
45
93
|
async RunSQLScript(req, cb) {
|
|
46
94
|
return this.request("RunSQLScript", req, cb);
|
|
47
95
|
}
|
|
48
|
-
async
|
|
49
|
-
return this.request("
|
|
50
|
-
}
|
|
51
|
-
async ListUpstreamOpsTasks(req, cb) {
|
|
52
|
-
return this.request("ListUpstreamOpsTasks", req, cb);
|
|
96
|
+
async ListWorkflows(req, cb) {
|
|
97
|
+
return this.request("ListWorkflows", req, cb);
|
|
53
98
|
}
|
|
54
|
-
async
|
|
55
|
-
return this.request("
|
|
56
|
-
}
|
|
57
|
-
async PauseOpsTasksAsync(req, cb) {
|
|
58
|
-
return this.request("PauseOpsTasksAsync", req, cb);
|
|
99
|
+
async GetProject(req, cb) {
|
|
100
|
+
return this.request("GetProject", req, cb);
|
|
59
101
|
}
|
|
60
102
|
async GetOpsAsyncJob(req, cb) {
|
|
61
103
|
return this.request("GetOpsAsyncJob", req, cb);
|
|
62
104
|
}
|
|
63
|
-
async UpdateCodeFile(req, cb) {
|
|
64
|
-
return this.request("UpdateCodeFile", req, cb);
|
|
65
|
-
}
|
|
66
105
|
async UpdateOpsTasksOwner(req, cb) {
|
|
67
106
|
return this.request("UpdateOpsTasksOwner", req, cb);
|
|
68
107
|
}
|
|
69
|
-
async
|
|
70
|
-
return this.request("
|
|
108
|
+
async GetTableColumns(req, cb) {
|
|
109
|
+
return this.request("GetTableColumns", req, cb);
|
|
71
110
|
}
|
|
72
|
-
async
|
|
73
|
-
return this.request("
|
|
111
|
+
async ListColumnLineage(req, cb) {
|
|
112
|
+
return this.request("ListColumnLineage", req, cb);
|
|
74
113
|
}
|
|
75
|
-
async
|
|
76
|
-
return this.request("
|
|
114
|
+
async DeleteCodeFile(req, cb) {
|
|
115
|
+
return this.request("DeleteCodeFile", req, cb);
|
|
77
116
|
}
|
|
78
|
-
async
|
|
79
|
-
return this.request("
|
|
117
|
+
async DisableProject(req, cb) {
|
|
118
|
+
return this.request("DisableProject", req, cb);
|
|
80
119
|
}
|
|
81
|
-
async
|
|
82
|
-
return this.request("
|
|
120
|
+
async AddCalcEnginesToProject(req, cb) {
|
|
121
|
+
return this.request("AddCalcEnginesToProject", req, cb);
|
|
83
122
|
}
|
|
84
|
-
async
|
|
85
|
-
return this.request("
|
|
123
|
+
async RegisterLineage(req, cb) {
|
|
124
|
+
return this.request("RegisterLineage", req, cb);
|
|
86
125
|
}
|
|
87
|
-
async
|
|
88
|
-
return this.request("
|
|
126
|
+
async ListProjectMembers(req, cb) {
|
|
127
|
+
return this.request("ListProjectMembers", req, cb);
|
|
89
128
|
}
|
|
90
|
-
async
|
|
91
|
-
return this.request("
|
|
129
|
+
async GetOpsAlarmRule(req, cb) {
|
|
130
|
+
return this.request("GetOpsAlarmRule", req, cb);
|
|
92
131
|
}
|
|
93
|
-
async
|
|
94
|
-
return this.request("
|
|
132
|
+
async DeleteResourceGroup(req, cb) {
|
|
133
|
+
return this.request("DeleteResourceGroup", req, cb);
|
|
134
|
+
}
|
|
135
|
+
async ListUpstreamTaskInstances(req, cb) {
|
|
136
|
+
return this.request("ListUpstreamTaskInstances", req, cb);
|
|
137
|
+
}
|
|
138
|
+
async GetTask(req, cb) {
|
|
139
|
+
return this.request("GetTask", req, cb);
|
|
140
|
+
}
|
|
141
|
+
async GetTaskInstanceLog(req, cb) {
|
|
142
|
+
return this.request("GetTaskInstanceLog", req, cb);
|
|
143
|
+
}
|
|
144
|
+
async ListDataSources(req, cb) {
|
|
145
|
+
return this.request("ListDataSources", req, cb);
|
|
95
146
|
}
|
|
96
147
|
async GetTaskCode(req, cb) {
|
|
97
148
|
return this.request("GetTaskCode", req, cb);
|
|
98
149
|
}
|
|
99
|
-
async
|
|
100
|
-
return this.request("
|
|
150
|
+
async ListProcessLineage(req, cb) {
|
|
151
|
+
return this.request("ListProcessLineage", req, cb);
|
|
101
152
|
}
|
|
102
|
-
async
|
|
103
|
-
return this.request("
|
|
153
|
+
async CreateProject(req, cb) {
|
|
154
|
+
return this.request("CreateProject", req, cb);
|
|
155
|
+
}
|
|
156
|
+
async CreateWorkflowFolder(req, cb) {
|
|
157
|
+
return this.request("CreateWorkflowFolder", req, cb);
|
|
158
|
+
}
|
|
159
|
+
async StopSQLScriptRun(req, cb) {
|
|
160
|
+
return this.request("StopSQLScriptRun", req, cb);
|
|
104
161
|
}
|
|
105
162
|
async UpdateSQLFolder(req, cb) {
|
|
106
163
|
return this.request("UpdateSQLFolder", req, cb);
|
|
107
164
|
}
|
|
108
|
-
async
|
|
109
|
-
return this.request("
|
|
165
|
+
async UpdateSQLScript(req, cb) {
|
|
166
|
+
return this.request("UpdateSQLScript", req, cb);
|
|
110
167
|
}
|
|
111
|
-
async
|
|
112
|
-
return this.request("
|
|
168
|
+
async DeleteLineage(req, cb) {
|
|
169
|
+
return this.request("DeleteLineage", req, cb);
|
|
113
170
|
}
|
|
114
|
-
async
|
|
115
|
-
return this.request("
|
|
171
|
+
async CreateResourceFolder(req, cb) {
|
|
172
|
+
return this.request("CreateResourceFolder", req, cb);
|
|
116
173
|
}
|
|
117
|
-
async
|
|
118
|
-
return this.request("
|
|
174
|
+
async UpdateWorkflow(req, cb) {
|
|
175
|
+
return this.request("UpdateWorkflow", req, cb);
|
|
176
|
+
}
|
|
177
|
+
async CreateSQLFolder(req, cb) {
|
|
178
|
+
return this.request("CreateSQLFolder", req, cb);
|
|
179
|
+
}
|
|
180
|
+
async UpdateCodeFolder(req, cb) {
|
|
181
|
+
return this.request("UpdateCodeFolder", req, cb);
|
|
182
|
+
}
|
|
183
|
+
async ListSQLFolderContents(req, cb) {
|
|
184
|
+
return this.request("ListSQLFolderContents", req, cb);
|
|
185
|
+
}
|
|
186
|
+
async CreateCodeFolder(req, cb) {
|
|
187
|
+
return this.request("CreateCodeFolder", req, cb);
|
|
188
|
+
}
|
|
189
|
+
async CreateSQLScript(req, cb) {
|
|
190
|
+
return this.request("CreateSQLScript", req, cb);
|
|
191
|
+
}
|
|
192
|
+
async UpdateCodeFile(req, cb) {
|
|
193
|
+
return this.request("UpdateCodeFile", req, cb);
|
|
119
194
|
}
|
|
120
195
|
async ListResourceFolders(req, cb) {
|
|
121
196
|
return this.request("ListResourceFolders", req, cb);
|
|
122
197
|
}
|
|
123
|
-
async
|
|
124
|
-
return this.request("
|
|
198
|
+
async GetResourceGroupMetrics(req, cb) {
|
|
199
|
+
return this.request("GetResourceGroupMetrics", req, cb);
|
|
125
200
|
}
|
|
126
|
-
async
|
|
127
|
-
return this.request("
|
|
201
|
+
async ListTaskVersions(req, cb) {
|
|
202
|
+
return this.request("ListTaskVersions", req, cb);
|
|
128
203
|
}
|
|
129
|
-
async
|
|
130
|
-
return this.request("
|
|
204
|
+
async StopOpsTasksAsync(req, cb) {
|
|
205
|
+
return this.request("StopOpsTasksAsync", req, cb);
|
|
131
206
|
}
|
|
132
|
-
async
|
|
133
|
-
return this.request("
|
|
207
|
+
async DeleteTask(req, cb) {
|
|
208
|
+
return this.request("DeleteTask", req, cb);
|
|
134
209
|
}
|
|
135
|
-
async
|
|
136
|
-
return this.request("
|
|
210
|
+
async ListCodeFolderContents(req, cb) {
|
|
211
|
+
return this.request("ListCodeFolderContents", req, cb);
|
|
137
212
|
}
|
|
138
|
-
async
|
|
139
|
-
return this.request("
|
|
213
|
+
async CreateResourceFile(req, cb) {
|
|
214
|
+
return this.request("CreateResourceFile", req, cb);
|
|
140
215
|
}
|
|
141
|
-
async
|
|
142
|
-
return this.request("
|
|
216
|
+
async UpdateDataSource(req, cb) {
|
|
217
|
+
return this.request("UpdateDataSource", req, cb);
|
|
143
218
|
}
|
|
144
|
-
async
|
|
145
|
-
return this.request("
|
|
219
|
+
async UpdateResourceGroup(req, cb) {
|
|
220
|
+
return this.request("UpdateResourceGroup", req, cb);
|
|
146
221
|
}
|
|
147
|
-
async
|
|
148
|
-
return this.request("
|
|
222
|
+
async ListOpsAlarmRules(req, cb) {
|
|
223
|
+
return this.request("ListOpsAlarmRules", req, cb);
|
|
149
224
|
}
|
|
150
|
-
async
|
|
151
|
-
return this.request("
|
|
225
|
+
async ListResourceGroups(req, cb) {
|
|
226
|
+
return this.request("ListResourceGroups", req, cb);
|
|
152
227
|
}
|
|
153
|
-
async
|
|
154
|
-
return this.request("
|
|
228
|
+
async UpdateOpsAlarmRule(req, cb) {
|
|
229
|
+
return this.request("UpdateOpsAlarmRule", req, cb);
|
|
230
|
+
}
|
|
231
|
+
async GrantMemberProjectRole(req, cb) {
|
|
232
|
+
return this.request("GrantMemberProjectRole", req, cb);
|
|
233
|
+
}
|
|
234
|
+
async ListTaskInstances(req, cb) {
|
|
235
|
+
return this.request("ListTaskInstances", req, cb);
|
|
236
|
+
}
|
|
237
|
+
async CreateProjectMember(req, cb) {
|
|
238
|
+
return this.request("CreateProjectMember", req, cb);
|
|
155
239
|
}
|
|
156
240
|
async DeleteResourceFile(req, cb) {
|
|
157
241
|
return this.request("DeleteResourceFile", req, cb);
|
|
@@ -159,79 +243,109 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
159
243
|
async CreateCodeFile(req, cb) {
|
|
160
244
|
return this.request("CreateCodeFile", req, cb);
|
|
161
245
|
}
|
|
162
|
-
async
|
|
163
|
-
return this.request("
|
|
164
|
-
}
|
|
165
|
-
async SubmitTask(req, cb) {
|
|
166
|
-
return this.request("SubmitTask", req, cb);
|
|
167
|
-
}
|
|
168
|
-
async GetTaskInstanceLog(req, cb) {
|
|
169
|
-
return this.request("GetTaskInstanceLog", req, cb);
|
|
170
|
-
}
|
|
171
|
-
async ListResourceFiles(req, cb) {
|
|
172
|
-
return this.request("ListResourceFiles", req, cb);
|
|
246
|
+
async UpdateWorkflowFolder(req, cb) {
|
|
247
|
+
return this.request("UpdateWorkflowFolder", req, cb);
|
|
173
248
|
}
|
|
174
249
|
async UpdateTask(req, cb) {
|
|
175
250
|
return this.request("UpdateTask", req, cb);
|
|
176
251
|
}
|
|
177
|
-
async
|
|
178
|
-
return this.request("
|
|
179
|
-
}
|
|
180
|
-
async GetResourceFile(req, cb) {
|
|
181
|
-
return this.request("GetResourceFile", req, cb);
|
|
252
|
+
async UpdateResourceFile(req, cb) {
|
|
253
|
+
return this.request("UpdateResourceFile", req, cb);
|
|
182
254
|
}
|
|
183
|
-
async
|
|
184
|
-
return this.request("
|
|
255
|
+
async DeleteProjectMember(req, cb) {
|
|
256
|
+
return this.request("DeleteProjectMember", req, cb);
|
|
185
257
|
}
|
|
186
|
-
async
|
|
187
|
-
return this.request("
|
|
258
|
+
async ListProjectRoles(req, cb) {
|
|
259
|
+
return this.request("ListProjectRoles", req, cb);
|
|
188
260
|
}
|
|
189
261
|
async CreateWorkflow(req, cb) {
|
|
190
262
|
return this.request("CreateWorkflow", req, cb);
|
|
191
263
|
}
|
|
192
|
-
async
|
|
193
|
-
return this.request("
|
|
264
|
+
async DeleteSQLFolder(req, cb) {
|
|
265
|
+
return this.request("DeleteSQLFolder", req, cb);
|
|
266
|
+
}
|
|
267
|
+
async ListTaskInstanceExecutions(req, cb) {
|
|
268
|
+
return this.request("ListTaskInstanceExecutions", req, cb);
|
|
269
|
+
}
|
|
270
|
+
async ListDatabase(req, cb) {
|
|
271
|
+
return this.request("ListDatabase", req, cb);
|
|
272
|
+
}
|
|
273
|
+
async GetTaskInstance(req, cb) {
|
|
274
|
+
return this.request("GetTaskInstance", req, cb);
|
|
275
|
+
}
|
|
276
|
+
async ListSQLScriptRuns(req, cb) {
|
|
277
|
+
return this.request("ListSQLScriptRuns", req, cb);
|
|
278
|
+
}
|
|
279
|
+
async GetWorkflow(req, cb) {
|
|
280
|
+
return this.request("GetWorkflow", req, cb);
|
|
281
|
+
}
|
|
282
|
+
async ListSchema(req, cb) {
|
|
283
|
+
return this.request("ListSchema", req, cb);
|
|
284
|
+
}
|
|
285
|
+
async GetTaskVersion(req, cb) {
|
|
286
|
+
return this.request("GetTaskVersion", req, cb);
|
|
287
|
+
}
|
|
288
|
+
async DeleteOpsAlarmRule(req, cb) {
|
|
289
|
+
return this.request("DeleteOpsAlarmRule", req, cb);
|
|
290
|
+
}
|
|
291
|
+
async GetAlarmMessage(req, cb) {
|
|
292
|
+
return this.request("GetAlarmMessage", req, cb);
|
|
293
|
+
}
|
|
294
|
+
async RerunTaskInstancesAsync(req, cb) {
|
|
295
|
+
return this.request("RerunTaskInstancesAsync", req, cb);
|
|
296
|
+
}
|
|
297
|
+
async GetSQLScript(req, cb) {
|
|
298
|
+
return this.request("GetSQLScript", req, cb);
|
|
299
|
+
}
|
|
300
|
+
async ListLineage(req, cb) {
|
|
301
|
+
return this.request("ListLineage", req, cb);
|
|
302
|
+
}
|
|
303
|
+
async GetOpsTask(req, cb) {
|
|
304
|
+
return this.request("GetOpsTask", req, cb);
|
|
305
|
+
}
|
|
306
|
+
async SetSuccessTaskInstancesAsync(req, cb) {
|
|
307
|
+
return this.request("SetSuccessTaskInstancesAsync", req, cb);
|
|
308
|
+
}
|
|
309
|
+
async GetOpsWorkflow(req, cb) {
|
|
310
|
+
return this.request("GetOpsWorkflow", req, cb);
|
|
311
|
+
}
|
|
312
|
+
async GetOpsTaskCode(req, cb) {
|
|
313
|
+
return this.request("GetOpsTaskCode", req, cb);
|
|
314
|
+
}
|
|
315
|
+
async CreateOpsAlarmRule(req, cb) {
|
|
316
|
+
return this.request("CreateOpsAlarmRule", req, cb);
|
|
317
|
+
}
|
|
318
|
+
async ListWorkflowFolders(req, cb) {
|
|
319
|
+
return this.request("ListWorkflowFolders", req, cb);
|
|
320
|
+
}
|
|
321
|
+
async SubmitTask(req, cb) {
|
|
322
|
+
return this.request("SubmitTask", req, cb);
|
|
323
|
+
}
|
|
324
|
+
async DeleteCodeFolder(req, cb) {
|
|
325
|
+
return this.request("DeleteCodeFolder", req, cb);
|
|
326
|
+
}
|
|
327
|
+
async CreateResourceGroup(req, cb) {
|
|
328
|
+
return this.request("CreateResourceGroup", req, cb);
|
|
194
329
|
}
|
|
195
330
|
async DeleteWorkflowFolder(req, cb) {
|
|
196
331
|
return this.request("DeleteWorkflowFolder", req, cb);
|
|
197
332
|
}
|
|
198
|
-
async
|
|
199
|
-
return this.request("
|
|
200
|
-
}
|
|
201
|
-
async ListTaskInstanceExecutions(req, cb) {
|
|
202
|
-
return this.request("ListTaskInstanceExecutions", req, cb);
|
|
333
|
+
async ListTable(req, cb) {
|
|
334
|
+
return this.request("ListTable", req, cb);
|
|
203
335
|
}
|
|
204
336
|
async GetCodeFile(req, cb) {
|
|
205
337
|
return this.request("GetCodeFile", req, cb);
|
|
206
338
|
}
|
|
207
|
-
async CreateWorkflowFolder(req, cb) {
|
|
208
|
-
return this.request("CreateWorkflowFolder", req, cb);
|
|
209
|
-
}
|
|
210
|
-
async DeleteSQLFolder(req, cb) {
|
|
211
|
-
return this.request("DeleteSQLFolder", req, cb);
|
|
212
|
-
}
|
|
213
339
|
async DeleteSQLScript(req, cb) {
|
|
214
340
|
return this.request("DeleteSQLScript", req, cb);
|
|
215
341
|
}
|
|
216
|
-
async
|
|
217
|
-
return this.request("
|
|
342
|
+
async GetDataSource(req, cb) {
|
|
343
|
+
return this.request("GetDataSource", req, cb);
|
|
218
344
|
}
|
|
219
|
-
async
|
|
220
|
-
return this.request("
|
|
221
|
-
}
|
|
222
|
-
async StopSQLScriptRun(req, cb) {
|
|
223
|
-
return this.request("StopSQLScriptRun", req, cb);
|
|
345
|
+
async GetTable(req, cb) {
|
|
346
|
+
return this.request("GetTable", req, cb);
|
|
224
347
|
}
|
|
225
348
|
async ListDownstreamTasks(req, cb) {
|
|
226
349
|
return this.request("ListDownstreamTasks", req, cb);
|
|
227
350
|
}
|
|
228
|
-
async UpdateResourceFolder(req, cb) {
|
|
229
|
-
return this.request("UpdateResourceFolder", req, cb);
|
|
230
|
-
}
|
|
231
|
-
async UpdateSQLScript(req, cb) {
|
|
232
|
-
return this.request("UpdateSQLScript", req, cb);
|
|
233
|
-
}
|
|
234
|
-
async GetTaskInstance(req, cb) {
|
|
235
|
-
return this.request("GetTaskInstance", req, cb);
|
|
236
|
-
}
|
|
237
351
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tencentcloud-sdk-nodejs-wedata",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.128",
|
|
4
4
|
"description": "腾讯云 API NODEJS SDK",
|
|
5
5
|
"main": "./tencentcloud/index.js",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"url": "https://github.com/tencentcloud/tencentcloud-sdk-nodejs"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
+
"@types/ini": "^4.1.1",
|
|
48
49
|
"@types/json-bigint": "^1.0.1",
|
|
49
50
|
"@types/node": "^18.0.0",
|
|
50
51
|
"@types/node-fetch": "^2.5.7",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export declare const wedata: {
|
|
2
|
-
v20210820: {
|
|
3
|
-
Client: typeof import("./v20210820/wedata_client").Client;
|
|
4
|
-
Models: typeof import("./v20210820/wedata_models");
|
|
5
|
-
};
|
|
6
2
|
v20250806: {
|
|
7
3
|
Client: typeof import("./v20250806/wedata_client").Client;
|
|
8
4
|
Models: typeof import("./v20250806/wedata_models");
|
|
9
5
|
};
|
|
6
|
+
v20210820: {
|
|
7
|
+
Client: typeof import("./v20210820/wedata_client").Client;
|
|
8
|
+
Models: typeof import("./v20210820/wedata_models");
|
|
9
|
+
};
|
|
10
10
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.wedata = void 0;
|
|
4
|
-
const v20210820_1 = require("./v20210820");
|
|
5
4
|
const v20250806_1 = require("./v20250806");
|
|
5
|
+
const v20210820_1 = require("./v20210820");
|
|
6
6
|
exports.wedata = {
|
|
7
|
-
v20210820: v20210820_1.v20210820,
|
|
8
7
|
v20250806: v20250806_1.v20250806,
|
|
8
|
+
v20210820: v20210820_1.v20210820,
|
|
9
9
|
};
|