tencentcloud-sdk-nodejs-wedata 4.1.120 → 4.1.129
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 +256 -130
- 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 +304 -136
- package/tencentcloud/services/wedata/v20250806/wedata_client.js +483 -231
- package/tencentcloud/services/wedata/v20250806/wedata_models.d.ts +7601 -4342
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,138 +3,321 @@ 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 GetDataBackfillPlan(req, cb) {
|
|
46
|
+
return this.request("GetDataBackfillPlan", req, cb);
|
|
47
|
+
}
|
|
48
|
+
async DeleteWorkflow(req, cb) {
|
|
49
|
+
return this.request("DeleteWorkflow", req, cb);
|
|
50
|
+
}
|
|
51
|
+
async DeleteDataSource(req, cb) {
|
|
52
|
+
return this.request("DeleteDataSource", req, cb);
|
|
53
|
+
}
|
|
54
|
+
async DissociateResourceGroupFromProject(req, cb) {
|
|
55
|
+
return this.request("DissociateResourceGroupFromProject", req, cb);
|
|
56
|
+
}
|
|
57
|
+
async GetResourceFile(req, cb) {
|
|
58
|
+
return this.request("GetResourceFile", req, cb);
|
|
59
|
+
}
|
|
60
|
+
async UpdateResourceFolder(req, cb) {
|
|
61
|
+
return this.request("UpdateResourceFolder", req, cb);
|
|
62
|
+
}
|
|
63
|
+
async CreateDataSource(req, cb) {
|
|
64
|
+
return this.request("CreateDataSource", req, cb);
|
|
65
|
+
}
|
|
66
|
+
async DeleteResourceFolder(req, cb) {
|
|
67
|
+
return this.request("DeleteResourceFolder", req, cb);
|
|
68
|
+
}
|
|
69
|
+
async ListTasks(req, cb) {
|
|
70
|
+
return this.request("ListTasks", req, cb);
|
|
71
|
+
}
|
|
72
|
+
async AssociateResourceGroupToProject(req, cb) {
|
|
73
|
+
return this.request("AssociateResourceGroupToProject", req, cb);
|
|
74
|
+
}
|
|
75
|
+
async RemoveMemberProjectRole(req, cb) {
|
|
76
|
+
return this.request("RemoveMemberProjectRole", req, cb);
|
|
77
|
+
}
|
|
78
|
+
async UpdateProject(req, cb) {
|
|
79
|
+
return this.request("UpdateProject", req, cb);
|
|
80
|
+
}
|
|
81
|
+
async EnableProject(req, cb) {
|
|
82
|
+
return this.request("EnableProject", req, cb);
|
|
83
|
+
}
|
|
84
|
+
async ListTenantRoles(req, cb) {
|
|
85
|
+
return this.request("ListTenantRoles", req, cb);
|
|
32
86
|
}
|
|
33
87
|
async ListUpstreamTasks(req, cb) {
|
|
34
88
|
return this.request("ListUpstreamTasks", req, cb);
|
|
35
89
|
}
|
|
36
|
-
async
|
|
37
|
-
return this.request("
|
|
90
|
+
async ListDataBackfillInstances(req, cb) {
|
|
91
|
+
return this.request("ListDataBackfillInstances", req, cb);
|
|
38
92
|
}
|
|
39
93
|
async CreateDataBackfillPlan(req, cb) {
|
|
40
94
|
return this.request("CreateDataBackfillPlan", req, cb);
|
|
41
95
|
}
|
|
42
|
-
async ListSQLFolderContents(req, cb) {
|
|
43
|
-
return this.request("ListSQLFolderContents", req, cb);
|
|
44
|
-
}
|
|
45
96
|
async RunSQLScript(req, cb) {
|
|
46
97
|
return this.request("RunSQLScript", req, cb);
|
|
47
98
|
}
|
|
48
|
-
async
|
|
49
|
-
return this.request("
|
|
50
|
-
}
|
|
51
|
-
async ListUpstreamOpsTasks(req, cb) {
|
|
52
|
-
return this.request("ListUpstreamOpsTasks", req, cb);
|
|
53
|
-
}
|
|
54
|
-
async CreateSQLScript(req, cb) {
|
|
55
|
-
return this.request("CreateSQLScript", req, cb);
|
|
99
|
+
async ListWorkflows(req, cb) {
|
|
100
|
+
return this.request("ListWorkflows", req, cb);
|
|
56
101
|
}
|
|
57
|
-
async
|
|
58
|
-
return this.request("
|
|
102
|
+
async GetProject(req, cb) {
|
|
103
|
+
return this.request("GetProject", req, cb);
|
|
59
104
|
}
|
|
60
105
|
async GetOpsAsyncJob(req, cb) {
|
|
61
106
|
return this.request("GetOpsAsyncJob", req, cb);
|
|
62
107
|
}
|
|
63
|
-
async UpdateCodeFile(req, cb) {
|
|
64
|
-
return this.request("UpdateCodeFile", req, cb);
|
|
65
|
-
}
|
|
66
108
|
async UpdateOpsTasksOwner(req, cb) {
|
|
67
109
|
return this.request("UpdateOpsTasksOwner", req, cb);
|
|
68
110
|
}
|
|
69
|
-
async
|
|
70
|
-
return this.request("
|
|
111
|
+
async GetTableColumns(req, cb) {
|
|
112
|
+
return this.request("GetTableColumns", req, cb);
|
|
71
113
|
}
|
|
72
|
-
async
|
|
73
|
-
return this.request("
|
|
114
|
+
async ListColumnLineage(req, cb) {
|
|
115
|
+
return this.request("ListColumnLineage", req, cb);
|
|
74
116
|
}
|
|
75
|
-
async
|
|
76
|
-
return this.request("
|
|
117
|
+
async DeleteCodeFile(req, cb) {
|
|
118
|
+
return this.request("DeleteCodeFile", req, cb);
|
|
77
119
|
}
|
|
78
|
-
async
|
|
79
|
-
return this.request("
|
|
120
|
+
async DisableProject(req, cb) {
|
|
121
|
+
return this.request("DisableProject", req, cb);
|
|
80
122
|
}
|
|
81
|
-
async
|
|
82
|
-
return this.request("
|
|
123
|
+
async AddCalcEnginesToProject(req, cb) {
|
|
124
|
+
return this.request("AddCalcEnginesToProject", req, cb);
|
|
83
125
|
}
|
|
84
|
-
async
|
|
85
|
-
return this.request("
|
|
126
|
+
async RegisterLineage(req, cb) {
|
|
127
|
+
return this.request("RegisterLineage", req, cb);
|
|
86
128
|
}
|
|
87
|
-
async
|
|
88
|
-
return this.request("
|
|
129
|
+
async ListProjectMembers(req, cb) {
|
|
130
|
+
return this.request("ListProjectMembers", req, cb);
|
|
89
131
|
}
|
|
90
|
-
async
|
|
91
|
-
return this.request("
|
|
132
|
+
async GetOpsAlarmRule(req, cb) {
|
|
133
|
+
return this.request("GetOpsAlarmRule", req, cb);
|
|
92
134
|
}
|
|
93
|
-
async
|
|
94
|
-
return this.request("
|
|
135
|
+
async DeleteResourceGroup(req, cb) {
|
|
136
|
+
return this.request("DeleteResourceGroup", req, cb);
|
|
137
|
+
}
|
|
138
|
+
async ListUpstreamTaskInstances(req, cb) {
|
|
139
|
+
return this.request("ListUpstreamTaskInstances", req, cb);
|
|
140
|
+
}
|
|
141
|
+
async GetTask(req, cb) {
|
|
142
|
+
return this.request("GetTask", req, cb);
|
|
143
|
+
}
|
|
144
|
+
async GetTaskInstanceLog(req, cb) {
|
|
145
|
+
return this.request("GetTaskInstanceLog", req, cb);
|
|
146
|
+
}
|
|
147
|
+
async ListDataSources(req, cb) {
|
|
148
|
+
return this.request("ListDataSources", req, cb);
|
|
95
149
|
}
|
|
96
150
|
async GetTaskCode(req, cb) {
|
|
97
151
|
return this.request("GetTaskCode", req, cb);
|
|
98
152
|
}
|
|
153
|
+
async ListProcessLineage(req, cb) {
|
|
154
|
+
return this.request("ListProcessLineage", req, cb);
|
|
155
|
+
}
|
|
156
|
+
async CreateProject(req, cb) {
|
|
157
|
+
return this.request("CreateProject", req, cb);
|
|
158
|
+
}
|
|
159
|
+
async CreateWorkflowFolder(req, cb) {
|
|
160
|
+
return this.request("CreateWorkflowFolder", req, cb);
|
|
161
|
+
}
|
|
162
|
+
async StopSQLScriptRun(req, cb) {
|
|
163
|
+
return this.request("StopSQLScriptRun", req, cb);
|
|
164
|
+
}
|
|
165
|
+
async UpdateSQLFolder(req, cb) {
|
|
166
|
+
return this.request("UpdateSQLFolder", req, cb);
|
|
167
|
+
}
|
|
168
|
+
async UpdateSQLScript(req, cb) {
|
|
169
|
+
return this.request("UpdateSQLScript", req, cb);
|
|
170
|
+
}
|
|
171
|
+
async DeleteLineage(req, cb) {
|
|
172
|
+
return this.request("DeleteLineage", req, cb);
|
|
173
|
+
}
|
|
174
|
+
async CreateResourceFolder(req, cb) {
|
|
175
|
+
return this.request("CreateResourceFolder", req, cb);
|
|
176
|
+
}
|
|
177
|
+
async UpdateWorkflow(req, cb) {
|
|
178
|
+
return this.request("UpdateWorkflow", req, cb);
|
|
179
|
+
}
|
|
180
|
+
async CreateSQLFolder(req, cb) {
|
|
181
|
+
return this.request("CreateSQLFolder", req, cb);
|
|
182
|
+
}
|
|
183
|
+
async UpdateCodeFolder(req, cb) {
|
|
184
|
+
return this.request("UpdateCodeFolder", req, cb);
|
|
185
|
+
}
|
|
186
|
+
async ListSQLFolderContents(req, cb) {
|
|
187
|
+
return this.request("ListSQLFolderContents", req, cb);
|
|
188
|
+
}
|
|
189
|
+
async CreateCodeFolder(req, cb) {
|
|
190
|
+
return this.request("CreateCodeFolder", req, cb);
|
|
191
|
+
}
|
|
192
|
+
async CreateSQLScript(req, cb) {
|
|
193
|
+
return this.request("CreateSQLScript", req, cb);
|
|
194
|
+
}
|
|
195
|
+
async UpdateCodeFile(req, cb) {
|
|
196
|
+
return this.request("UpdateCodeFile", req, cb);
|
|
197
|
+
}
|
|
198
|
+
async ListResourceFolders(req, cb) {
|
|
199
|
+
return this.request("ListResourceFolders", req, cb);
|
|
200
|
+
}
|
|
201
|
+
async GetResourceGroupMetrics(req, cb) {
|
|
202
|
+
return this.request("GetResourceGroupMetrics", req, cb);
|
|
203
|
+
}
|
|
204
|
+
async ListTaskVersions(req, cb) {
|
|
205
|
+
return this.request("ListTaskVersions", req, cb);
|
|
206
|
+
}
|
|
207
|
+
async StopOpsTasksAsync(req, cb) {
|
|
208
|
+
return this.request("StopOpsTasksAsync", req, cb);
|
|
209
|
+
}
|
|
210
|
+
async DeleteTask(req, cb) {
|
|
211
|
+
return this.request("DeleteTask", req, cb);
|
|
212
|
+
}
|
|
99
213
|
async ListCodeFolderContents(req, cb) {
|
|
100
214
|
return this.request("ListCodeFolderContents", req, cb);
|
|
101
215
|
}
|
|
102
216
|
async CreateResourceFile(req, cb) {
|
|
103
217
|
return this.request("CreateResourceFile", req, cb);
|
|
104
218
|
}
|
|
105
|
-
async
|
|
106
|
-
return this.request("
|
|
219
|
+
async UpdateDataSource(req, cb) {
|
|
220
|
+
return this.request("UpdateDataSource", req, cb);
|
|
107
221
|
}
|
|
108
|
-
async
|
|
109
|
-
return this.request("
|
|
222
|
+
async UpdateResourceGroup(req, cb) {
|
|
223
|
+
return this.request("UpdateResourceGroup", req, cb);
|
|
224
|
+
}
|
|
225
|
+
async ListOpsAlarmRules(req, cb) {
|
|
226
|
+
return this.request("ListOpsAlarmRules", req, cb);
|
|
227
|
+
}
|
|
228
|
+
async ListResourceGroups(req, cb) {
|
|
229
|
+
return this.request("ListResourceGroups", req, cb);
|
|
110
230
|
}
|
|
111
231
|
async UpdateOpsAlarmRule(req, cb) {
|
|
112
232
|
return this.request("UpdateOpsAlarmRule", req, cb);
|
|
113
233
|
}
|
|
114
|
-
async
|
|
115
|
-
return this.request("
|
|
234
|
+
async GrantMemberProjectRole(req, cb) {
|
|
235
|
+
return this.request("GrantMemberProjectRole", req, cb);
|
|
116
236
|
}
|
|
117
|
-
async
|
|
118
|
-
return this.request("
|
|
237
|
+
async GetSQLFolder(req, cb) {
|
|
238
|
+
return this.request("GetSQLFolder", req, cb);
|
|
119
239
|
}
|
|
120
|
-
async
|
|
121
|
-
return this.request("
|
|
240
|
+
async CreateProjectMember(req, cb) {
|
|
241
|
+
return this.request("CreateProjectMember", req, cb);
|
|
122
242
|
}
|
|
123
|
-
async
|
|
124
|
-
return this.request("
|
|
243
|
+
async DeleteResourceFile(req, cb) {
|
|
244
|
+
return this.request("DeleteResourceFile", req, cb);
|
|
125
245
|
}
|
|
126
|
-
async
|
|
127
|
-
return this.request("
|
|
246
|
+
async CreateCodeFile(req, cb) {
|
|
247
|
+
return this.request("CreateCodeFile", req, cb);
|
|
128
248
|
}
|
|
129
|
-
async
|
|
130
|
-
return this.request("
|
|
249
|
+
async UpdateWorkflowFolder(req, cb) {
|
|
250
|
+
return this.request("UpdateWorkflowFolder", req, cb);
|
|
251
|
+
}
|
|
252
|
+
async UpdateTask(req, cb) {
|
|
253
|
+
return this.request("UpdateTask", req, cb);
|
|
131
254
|
}
|
|
132
255
|
async UpdateResourceFile(req, cb) {
|
|
133
256
|
return this.request("UpdateResourceFile", req, cb);
|
|
134
257
|
}
|
|
258
|
+
async DeleteProjectMember(req, cb) {
|
|
259
|
+
return this.request("DeleteProjectMember", req, cb);
|
|
260
|
+
}
|
|
261
|
+
async ListProjectRoles(req, cb) {
|
|
262
|
+
return this.request("ListProjectRoles", req, cb);
|
|
263
|
+
}
|
|
264
|
+
async CreateWorkflow(req, cb) {
|
|
265
|
+
return this.request("CreateWorkflow", req, cb);
|
|
266
|
+
}
|
|
267
|
+
async DeleteSQLFolder(req, cb) {
|
|
268
|
+
return this.request("DeleteSQLFolder", req, cb);
|
|
269
|
+
}
|
|
270
|
+
async ListTaskInstanceExecutions(req, cb) {
|
|
271
|
+
return this.request("ListTaskInstanceExecutions", req, cb);
|
|
272
|
+
}
|
|
273
|
+
async ListDatabase(req, cb) {
|
|
274
|
+
return this.request("ListDatabase", req, cb);
|
|
275
|
+
}
|
|
276
|
+
async GetTaskInstance(req, cb) {
|
|
277
|
+
return this.request("GetTaskInstance", req, cb);
|
|
278
|
+
}
|
|
279
|
+
async ListSQLScriptRuns(req, cb) {
|
|
280
|
+
return this.request("ListSQLScriptRuns", req, cb);
|
|
281
|
+
}
|
|
282
|
+
async GetWorkflow(req, cb) {
|
|
283
|
+
return this.request("GetWorkflow", req, cb);
|
|
284
|
+
}
|
|
285
|
+
async ListSchema(req, cb) {
|
|
286
|
+
return this.request("ListSchema", req, cb);
|
|
287
|
+
}
|
|
288
|
+
async GetTaskVersion(req, cb) {
|
|
289
|
+
return this.request("GetTaskVersion", req, cb);
|
|
290
|
+
}
|
|
291
|
+
async GetCodeFolder(req, cb) {
|
|
292
|
+
return this.request("GetCodeFolder", req, cb);
|
|
293
|
+
}
|
|
294
|
+
async StartOpsTasks(req, cb) {
|
|
295
|
+
return this.request("StartOpsTasks", req, cb);
|
|
296
|
+
}
|
|
297
|
+
async DeleteOpsAlarmRule(req, cb) {
|
|
298
|
+
return this.request("DeleteOpsAlarmRule", req, cb);
|
|
299
|
+
}
|
|
300
|
+
async GetAlarmMessage(req, cb) {
|
|
301
|
+
return this.request("GetAlarmMessage", req, cb);
|
|
302
|
+
}
|
|
303
|
+
async RerunTaskInstancesAsync(req, cb) {
|
|
304
|
+
return this.request("RerunTaskInstancesAsync", req, cb);
|
|
305
|
+
}
|
|
135
306
|
async ListTaskInstances(req, cb) {
|
|
136
307
|
return this.request("ListTaskInstances", req, cb);
|
|
137
308
|
}
|
|
309
|
+
async GetSQLScript(req, cb) {
|
|
310
|
+
return this.request("GetSQLScript", req, cb);
|
|
311
|
+
}
|
|
312
|
+
async ListLineage(req, cb) {
|
|
313
|
+
return this.request("ListLineage", req, cb);
|
|
314
|
+
}
|
|
315
|
+
async GetOpsTask(req, cb) {
|
|
316
|
+
return this.request("GetOpsTask", req, cb);
|
|
317
|
+
}
|
|
318
|
+
async SetSuccessTaskInstancesAsync(req, cb) {
|
|
319
|
+
return this.request("SetSuccessTaskInstancesAsync", req, cb);
|
|
320
|
+
}
|
|
138
321
|
async GetOpsWorkflow(req, cb) {
|
|
139
322
|
return this.request("GetOpsWorkflow", req, cb);
|
|
140
323
|
}
|
|
@@ -144,94 +327,37 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
144
327
|
async CreateOpsAlarmRule(req, cb) {
|
|
145
328
|
return this.request("CreateOpsAlarmRule", req, cb);
|
|
146
329
|
}
|
|
147
|
-
async ListDataBackfillInstances(req, cb) {
|
|
148
|
-
return this.request("ListDataBackfillInstances", req, cb);
|
|
149
|
-
}
|
|
150
|
-
async ListUpstreamTaskInstances(req, cb) {
|
|
151
|
-
return this.request("ListUpstreamTaskInstances", req, cb);
|
|
152
|
-
}
|
|
153
330
|
async ListWorkflowFolders(req, cb) {
|
|
154
331
|
return this.request("ListWorkflowFolders", req, cb);
|
|
155
332
|
}
|
|
156
|
-
async DeleteResourceFile(req, cb) {
|
|
157
|
-
return this.request("DeleteResourceFile", req, cb);
|
|
158
|
-
}
|
|
159
|
-
async CreateCodeFile(req, cb) {
|
|
160
|
-
return this.request("CreateCodeFile", req, cb);
|
|
161
|
-
}
|
|
162
|
-
async GetTask(req, cb) {
|
|
163
|
-
return this.request("GetTask", req, cb);
|
|
164
|
-
}
|
|
165
333
|
async SubmitTask(req, cb) {
|
|
166
334
|
return this.request("SubmitTask", req, cb);
|
|
167
335
|
}
|
|
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);
|
|
173
|
-
}
|
|
174
|
-
async UpdateTask(req, cb) {
|
|
175
|
-
return this.request("UpdateTask", req, cb);
|
|
176
|
-
}
|
|
177
|
-
async DeleteWorkflow(req, cb) {
|
|
178
|
-
return this.request("DeleteWorkflow", req, cb);
|
|
179
|
-
}
|
|
180
|
-
async GetResourceFile(req, cb) {
|
|
181
|
-
return this.request("GetResourceFile", req, cb);
|
|
182
|
-
}
|
|
183
336
|
async DeleteCodeFolder(req, cb) {
|
|
184
337
|
return this.request("DeleteCodeFolder", req, cb);
|
|
185
338
|
}
|
|
186
|
-
async
|
|
187
|
-
return this.request("
|
|
188
|
-
}
|
|
189
|
-
async CreateWorkflow(req, cb) {
|
|
190
|
-
return this.request("CreateWorkflow", req, cb);
|
|
191
|
-
}
|
|
192
|
-
async KillTaskInstancesAsync(req, cb) {
|
|
193
|
-
return this.request("KillTaskInstancesAsync", req, cb);
|
|
339
|
+
async CreateResourceGroup(req, cb) {
|
|
340
|
+
return this.request("CreateResourceGroup", req, cb);
|
|
194
341
|
}
|
|
195
342
|
async DeleteWorkflowFolder(req, cb) {
|
|
196
343
|
return this.request("DeleteWorkflowFolder", req, cb);
|
|
197
344
|
}
|
|
198
|
-
async
|
|
199
|
-
return this.request("
|
|
200
|
-
}
|
|
201
|
-
async ListTaskInstanceExecutions(req, cb) {
|
|
202
|
-
return this.request("ListTaskInstanceExecutions", req, cb);
|
|
345
|
+
async ListTable(req, cb) {
|
|
346
|
+
return this.request("ListTable", req, cb);
|
|
203
347
|
}
|
|
204
348
|
async GetCodeFile(req, cb) {
|
|
205
349
|
return this.request("GetCodeFile", req, cb);
|
|
206
350
|
}
|
|
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
351
|
async DeleteSQLScript(req, cb) {
|
|
214
352
|
return this.request("DeleteSQLScript", req, cb);
|
|
215
353
|
}
|
|
216
|
-
async
|
|
217
|
-
return this.request("
|
|
354
|
+
async GetDataSource(req, cb) {
|
|
355
|
+
return this.request("GetDataSource", req, cb);
|
|
218
356
|
}
|
|
219
|
-
async
|
|
220
|
-
return this.request("
|
|
221
|
-
}
|
|
222
|
-
async StopSQLScriptRun(req, cb) {
|
|
223
|
-
return this.request("StopSQLScriptRun", req, cb);
|
|
357
|
+
async GetTable(req, cb) {
|
|
358
|
+
return this.request("GetTable", req, cb);
|
|
224
359
|
}
|
|
225
360
|
async ListDownstreamTasks(req, cb) {
|
|
226
361
|
return this.request("ListDownstreamTasks", req, cb);
|
|
227
362
|
}
|
|
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
363
|
}
|
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.129",
|
|
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
|
};
|