tencentcloud-sdk-nodejs 4.0.476 → 4.0.477
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 +363 -0
- package/SERVICE_CHANGELOG.md +641 -196
- package/package.json +1 -1
- package/products.md +13 -13
- package/src/common/sdk_version.ts +1 -1
- package/src/services/ccc/v20200210/ccc_client.ts +1 -0
- package/src/services/ccc/v20200210/ccc_models.ts +23 -0
- package/src/services/cfs/v20190719/cfs_client.ts +1 -1
- package/src/services/ess/v20201111/ess_client.ts +77 -62
- package/src/services/ess/v20201111/ess_models.ts +1412 -1290
- package/src/services/essbasic/v20210526/essbasic_client.ts +86 -71
- package/src/services/essbasic/v20210526/essbasic_models.ts +1572 -1451
- package/src/services/live/v20180801/live_models.ts +16 -1
- package/src/services/mariadb/v20170312/mariadb_client.ts +12 -0
- package/src/services/mariadb/v20170312/mariadb_models.ts +25 -0
- package/src/services/mps/v20190612/mps_models.ts +3 -3
- package/src/services/redis/v20180412/redis_client.ts +1 -1
- package/src/services/redis/v20180412/redis_models.ts +8 -3
- package/src/services/tcr/v20190924/tcr_models.ts +5 -0
- package/src/services/tem/v20210701/tem_models.ts +12 -0
- package/src/services/vod/v20180717/vod_models.ts +10 -3
- package/src/services/wedata/v20210820/wedata_client.ts +1518 -451
- package/src/services/wedata/v20210820/wedata_models.ts +7670 -2230
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +20 -0
- package/tencentcloud/services/cfs/v20190719/cfs_client.d.ts +1 -1
- package/tencentcloud/services/cfs/v20190719/cfs_client.js +1 -1
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +6 -1
- package/tencentcloud/services/ess/v20201111/ess_client.js +7 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +1249 -1147
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +9 -4
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +11 -4
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +1454 -1353
- package/tencentcloud/services/live/v20180801/live_models.d.ts +14 -1
- package/tencentcloud/services/mariadb/v20170312/mariadb_client.d.ts +5 -1
- package/tencentcloud/services/mariadb/v20170312/mariadb_client.js +6 -0
- package/tencentcloud/services/mariadb/v20170312/mariadb_models.d.ts +22 -0
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +3 -3
- package/tencentcloud/services/redis/v20180412/redis_client.d.ts +1 -1
- package/tencentcloud/services/redis/v20180412/redis_client.js +1 -1
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +7 -3
- package/tencentcloud/services/tcr/v20190924/tcr_models.d.ts +4 -0
- package/tencentcloud/services/tem/v20210701/tem_models.d.ts +10 -0
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +9 -3
- package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +446 -102
- package/tencentcloud/services/wedata/v20210820/wedata_client.js +688 -172
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +6601 -2011
- package/test/ess.v20201111.test.js +10 -0
- package/test/essbasic.v20210526.test.js +12 -2
- package/test/mariadb.v20170312.test.js +10 -0
- package/test/wedata.v20210820.test.js +955 -95
|
@@ -28,9 +28,729 @@ it("wedata.v20210820.CreateTask", async function () {
|
|
|
28
28
|
}
|
|
29
29
|
})
|
|
30
30
|
|
|
31
|
+
it("wedata.v20210820.CreateTaskAlarmRegular", async function () {
|
|
32
|
+
try {
|
|
33
|
+
const data = await client.CreateTaskAlarmRegular({})
|
|
34
|
+
expect(data).to.be.ok
|
|
35
|
+
} catch(error) {
|
|
36
|
+
expect(error.requestId).to.be.ok
|
|
37
|
+
expect(error.code).to.be.ok
|
|
38
|
+
}
|
|
39
|
+
})
|
|
40
|
+
|
|
41
|
+
it("wedata.v20210820.DeleteIntegrationTask", async function () {
|
|
42
|
+
try {
|
|
43
|
+
const data = await client.DeleteIntegrationTask({})
|
|
44
|
+
expect(data).to.be.ok
|
|
45
|
+
} catch(error) {
|
|
46
|
+
expect(error.requestId).to.be.ok
|
|
47
|
+
expect(error.code).to.be.ok
|
|
48
|
+
}
|
|
49
|
+
})
|
|
50
|
+
|
|
51
|
+
it("wedata.v20210820.DescribeRealTimeTaskMetricOverview", async function () {
|
|
52
|
+
try {
|
|
53
|
+
const data = await client.DescribeRealTimeTaskMetricOverview({})
|
|
54
|
+
expect(data).to.be.ok
|
|
55
|
+
} catch(error) {
|
|
56
|
+
expect(error.requestId).to.be.ok
|
|
57
|
+
expect(error.code).to.be.ok
|
|
58
|
+
}
|
|
59
|
+
})
|
|
60
|
+
|
|
61
|
+
it("wedata.v20210820.GetOfflineInstanceList", async function () {
|
|
62
|
+
try {
|
|
63
|
+
const data = await client.GetOfflineInstanceList({})
|
|
64
|
+
expect(data).to.be.ok
|
|
65
|
+
} catch(error) {
|
|
66
|
+
expect(error.requestId).to.be.ok
|
|
67
|
+
expect(error.code).to.be.ok
|
|
68
|
+
}
|
|
69
|
+
})
|
|
70
|
+
|
|
71
|
+
it("wedata.v20210820.MakeUpTasksNew", async function () {
|
|
72
|
+
try {
|
|
73
|
+
const data = await client.MakeUpTasksNew({})
|
|
74
|
+
expect(data).to.be.ok
|
|
75
|
+
} catch(error) {
|
|
76
|
+
expect(error.requestId).to.be.ok
|
|
77
|
+
expect(error.code).to.be.ok
|
|
78
|
+
}
|
|
79
|
+
})
|
|
80
|
+
|
|
81
|
+
it("wedata.v20210820.DescribeInLongAgentVpcList", async function () {
|
|
82
|
+
try {
|
|
83
|
+
const data = await client.DescribeInLongAgentVpcList({})
|
|
84
|
+
expect(data).to.be.ok
|
|
85
|
+
} catch(error) {
|
|
86
|
+
expect(error.requestId).to.be.ok
|
|
87
|
+
expect(error.code).to.be.ok
|
|
88
|
+
}
|
|
89
|
+
})
|
|
90
|
+
|
|
91
|
+
it("wedata.v20210820.KillInstances", async function () {
|
|
92
|
+
try {
|
|
93
|
+
const data = await client.KillInstances({})
|
|
94
|
+
expect(data).to.be.ok
|
|
95
|
+
} catch(error) {
|
|
96
|
+
expect(error.requestId).to.be.ok
|
|
97
|
+
expect(error.code).to.be.ok
|
|
98
|
+
}
|
|
99
|
+
})
|
|
100
|
+
|
|
101
|
+
it("wedata.v20210820.BatchKillIntegrationTaskInstances", async function () {
|
|
102
|
+
try {
|
|
103
|
+
const data = await client.BatchKillIntegrationTaskInstances({})
|
|
104
|
+
expect(data).to.be.ok
|
|
105
|
+
} catch(error) {
|
|
106
|
+
expect(error.requestId).to.be.ok
|
|
107
|
+
expect(error.code).to.be.ok
|
|
108
|
+
}
|
|
109
|
+
})
|
|
110
|
+
|
|
111
|
+
it("wedata.v20210820.RegisterEventListener", async function () {
|
|
112
|
+
try {
|
|
113
|
+
const data = await client.RegisterEventListener({})
|
|
114
|
+
expect(data).to.be.ok
|
|
115
|
+
} catch(error) {
|
|
116
|
+
expect(error.requestId).to.be.ok
|
|
117
|
+
expect(error.code).to.be.ok
|
|
118
|
+
}
|
|
119
|
+
})
|
|
120
|
+
|
|
121
|
+
it("wedata.v20210820.CreateHiveTable", async function () {
|
|
122
|
+
try {
|
|
123
|
+
const data = await client.CreateHiveTable({})
|
|
124
|
+
expect(data).to.be.ok
|
|
125
|
+
} catch(error) {
|
|
126
|
+
expect(error.requestId).to.be.ok
|
|
127
|
+
expect(error.code).to.be.ok
|
|
128
|
+
}
|
|
129
|
+
})
|
|
130
|
+
|
|
131
|
+
it("wedata.v20210820.DescribeClusterNamespaceList", async function () {
|
|
132
|
+
try {
|
|
133
|
+
const data = await client.DescribeClusterNamespaceList({})
|
|
134
|
+
expect(data).to.be.ok
|
|
135
|
+
} catch(error) {
|
|
136
|
+
expect(error.requestId).to.be.ok
|
|
137
|
+
expect(error.code).to.be.ok
|
|
138
|
+
}
|
|
139
|
+
})
|
|
140
|
+
|
|
141
|
+
it("wedata.v20210820.DescribeTaskDetail", async function () {
|
|
142
|
+
try {
|
|
143
|
+
const data = await client.DescribeTaskDetail({})
|
|
144
|
+
expect(data).to.be.ok
|
|
145
|
+
} catch(error) {
|
|
146
|
+
expect(error.requestId).to.be.ok
|
|
147
|
+
expect(error.code).to.be.ok
|
|
148
|
+
}
|
|
149
|
+
})
|
|
150
|
+
|
|
151
|
+
it("wedata.v20210820.DescribeIntegrationNode", async function () {
|
|
152
|
+
try {
|
|
153
|
+
const data = await client.DescribeIntegrationNode({})
|
|
154
|
+
expect(data).to.be.ok
|
|
155
|
+
} catch(error) {
|
|
156
|
+
expect(error.requestId).to.be.ok
|
|
157
|
+
expect(error.code).to.be.ok
|
|
158
|
+
}
|
|
159
|
+
})
|
|
160
|
+
|
|
161
|
+
it("wedata.v20210820.DescribeStandardRuleDetailInfoList", async function () {
|
|
162
|
+
try {
|
|
163
|
+
const data = await client.DescribeStandardRuleDetailInfoList({})
|
|
164
|
+
expect(data).to.be.ok
|
|
165
|
+
} catch(error) {
|
|
166
|
+
expect(error.requestId).to.be.ok
|
|
167
|
+
expect(error.code).to.be.ok
|
|
168
|
+
}
|
|
169
|
+
})
|
|
170
|
+
|
|
171
|
+
it("wedata.v20210820.FreezeTasksByMultiWorkflow", async function () {
|
|
172
|
+
try {
|
|
173
|
+
const data = await client.FreezeTasksByMultiWorkflow({})
|
|
174
|
+
expect(data).to.be.ok
|
|
175
|
+
} catch(error) {
|
|
176
|
+
expect(error.requestId).to.be.ok
|
|
177
|
+
expect(error.code).to.be.ok
|
|
178
|
+
}
|
|
179
|
+
})
|
|
180
|
+
|
|
181
|
+
it("wedata.v20210820.DescribeInLongAgentList", async function () {
|
|
182
|
+
try {
|
|
183
|
+
const data = await client.DescribeInLongAgentList({})
|
|
184
|
+
expect(data).to.be.ok
|
|
185
|
+
} catch(error) {
|
|
186
|
+
expect(error.requestId).to.be.ok
|
|
187
|
+
expect(error.code).to.be.ok
|
|
188
|
+
}
|
|
189
|
+
})
|
|
190
|
+
|
|
191
|
+
it("wedata.v20210820.BatchDeleteTasksNew", async function () {
|
|
192
|
+
try {
|
|
193
|
+
const data = await client.BatchDeleteTasksNew({})
|
|
194
|
+
expect(data).to.be.ok
|
|
195
|
+
} catch(error) {
|
|
196
|
+
expect(error.requestId).to.be.ok
|
|
197
|
+
expect(error.code).to.be.ok
|
|
198
|
+
}
|
|
199
|
+
})
|
|
200
|
+
|
|
201
|
+
it("wedata.v20210820.ResumeIntegrationTask", async function () {
|
|
202
|
+
try {
|
|
203
|
+
const data = await client.ResumeIntegrationTask({})
|
|
204
|
+
expect(data).to.be.ok
|
|
205
|
+
} catch(error) {
|
|
206
|
+
expect(error.requestId).to.be.ok
|
|
207
|
+
expect(error.code).to.be.ok
|
|
208
|
+
}
|
|
209
|
+
})
|
|
210
|
+
|
|
211
|
+
it("wedata.v20210820.DeleteWorkflowNew", async function () {
|
|
212
|
+
try {
|
|
213
|
+
const data = await client.DeleteWorkflowNew({})
|
|
214
|
+
expect(data).to.be.ok
|
|
215
|
+
} catch(error) {
|
|
216
|
+
expect(error.requestId).to.be.ok
|
|
217
|
+
expect(error.code).to.be.ok
|
|
218
|
+
}
|
|
219
|
+
})
|
|
220
|
+
|
|
221
|
+
it("wedata.v20210820.DescribeIntegrationStatisticsAgentStatus", async function () {
|
|
222
|
+
try {
|
|
223
|
+
const data = await client.DescribeIntegrationStatisticsAgentStatus({})
|
|
224
|
+
expect(data).to.be.ok
|
|
225
|
+
} catch(error) {
|
|
226
|
+
expect(error.requestId).to.be.ok
|
|
227
|
+
expect(error.code).to.be.ok
|
|
228
|
+
}
|
|
229
|
+
})
|
|
230
|
+
|
|
231
|
+
it("wedata.v20210820.DescribeInstanceLogList", async function () {
|
|
232
|
+
try {
|
|
233
|
+
const data = await client.DescribeInstanceLogList({})
|
|
234
|
+
expect(data).to.be.ok
|
|
235
|
+
} catch(error) {
|
|
236
|
+
expect(error.requestId).to.be.ok
|
|
237
|
+
expect(error.code).to.be.ok
|
|
238
|
+
}
|
|
239
|
+
})
|
|
240
|
+
|
|
241
|
+
it("wedata.v20210820.CreateCustomFunction", async function () {
|
|
242
|
+
try {
|
|
243
|
+
const data = await client.CreateCustomFunction({})
|
|
244
|
+
expect(data).to.be.ok
|
|
245
|
+
} catch(error) {
|
|
246
|
+
expect(error.requestId).to.be.ok
|
|
247
|
+
expect(error.code).to.be.ok
|
|
248
|
+
}
|
|
249
|
+
})
|
|
250
|
+
|
|
251
|
+
it("wedata.v20210820.UnlockIntegrationTask", async function () {
|
|
252
|
+
try {
|
|
253
|
+
const data = await client.UnlockIntegrationTask({})
|
|
254
|
+
expect(data).to.be.ok
|
|
255
|
+
} catch(error) {
|
|
256
|
+
expect(error.requestId).to.be.ok
|
|
257
|
+
expect(error.code).to.be.ok
|
|
258
|
+
}
|
|
259
|
+
})
|
|
260
|
+
|
|
261
|
+
it("wedata.v20210820.BatchStopTasksNew", async function () {
|
|
262
|
+
try {
|
|
263
|
+
const data = await client.BatchStopTasksNew({})
|
|
264
|
+
expect(data).to.be.ok
|
|
265
|
+
} catch(error) {
|
|
266
|
+
expect(error.requestId).to.be.ok
|
|
267
|
+
expect(error.code).to.be.ok
|
|
268
|
+
}
|
|
269
|
+
})
|
|
270
|
+
|
|
271
|
+
it("wedata.v20210820.DeleteFolder", async function () {
|
|
272
|
+
try {
|
|
273
|
+
const data = await client.DeleteFolder({})
|
|
274
|
+
expect(data).to.be.ok
|
|
275
|
+
} catch(error) {
|
|
276
|
+
expect(error.requestId).to.be.ok
|
|
277
|
+
expect(error.code).to.be.ok
|
|
278
|
+
}
|
|
279
|
+
})
|
|
280
|
+
|
|
281
|
+
it("wedata.v20210820.CreateDataSource", async function () {
|
|
282
|
+
try {
|
|
283
|
+
const data = await client.CreateDataSource({})
|
|
284
|
+
expect(data).to.be.ok
|
|
285
|
+
} catch(error) {
|
|
286
|
+
expect(error.requestId).to.be.ok
|
|
287
|
+
expect(error.code).to.be.ok
|
|
288
|
+
}
|
|
289
|
+
})
|
|
290
|
+
|
|
31
291
|
it("wedata.v20210820.SetTaskAlarmNew", async function () {
|
|
32
292
|
try {
|
|
33
|
-
const data = await client.SetTaskAlarmNew({})
|
|
293
|
+
const data = await client.SetTaskAlarmNew({})
|
|
294
|
+
expect(data).to.be.ok
|
|
295
|
+
} catch(error) {
|
|
296
|
+
expect(error.requestId).to.be.ok
|
|
297
|
+
expect(error.code).to.be.ok
|
|
298
|
+
}
|
|
299
|
+
})
|
|
300
|
+
|
|
301
|
+
it("wedata.v20210820.DescribeOfflineTaskToken", async function () {
|
|
302
|
+
try {
|
|
303
|
+
const data = await client.DescribeOfflineTaskToken({})
|
|
304
|
+
expect(data).to.be.ok
|
|
305
|
+
} catch(error) {
|
|
306
|
+
expect(error.requestId).to.be.ok
|
|
307
|
+
expect(error.code).to.be.ok
|
|
308
|
+
}
|
|
309
|
+
})
|
|
310
|
+
|
|
311
|
+
it("wedata.v20210820.RobAndLockIntegrationTask", async function () {
|
|
312
|
+
try {
|
|
313
|
+
const data = await client.RobAndLockIntegrationTask({})
|
|
314
|
+
expect(data).to.be.ok
|
|
315
|
+
} catch(error) {
|
|
316
|
+
expect(error.requestId).to.be.ok
|
|
317
|
+
expect(error.code).to.be.ok
|
|
318
|
+
}
|
|
319
|
+
})
|
|
320
|
+
|
|
321
|
+
it("wedata.v20210820.CheckIntegrationNodeNameExists", async function () {
|
|
322
|
+
try {
|
|
323
|
+
const data = await client.CheckIntegrationNodeNameExists({})
|
|
324
|
+
expect(data).to.be.ok
|
|
325
|
+
} catch(error) {
|
|
326
|
+
expect(error.requestId).to.be.ok
|
|
327
|
+
expect(error.code).to.be.ok
|
|
328
|
+
}
|
|
329
|
+
})
|
|
330
|
+
|
|
331
|
+
it("wedata.v20210820.DescribeAlarmEvents", async function () {
|
|
332
|
+
try {
|
|
333
|
+
const data = await client.DescribeAlarmEvents({})
|
|
334
|
+
expect(data).to.be.ok
|
|
335
|
+
} catch(error) {
|
|
336
|
+
expect(error.requestId).to.be.ok
|
|
337
|
+
expect(error.code).to.be.ok
|
|
338
|
+
}
|
|
339
|
+
})
|
|
340
|
+
|
|
341
|
+
it("wedata.v20210820.GenHiveTableDDLSql", async function () {
|
|
342
|
+
try {
|
|
343
|
+
const data = await client.GenHiveTableDDLSql({})
|
|
344
|
+
expect(data).to.be.ok
|
|
345
|
+
} catch(error) {
|
|
346
|
+
expect(error.requestId).to.be.ok
|
|
347
|
+
expect(error.code).to.be.ok
|
|
348
|
+
}
|
|
349
|
+
})
|
|
350
|
+
|
|
351
|
+
it("wedata.v20210820.DescribeTaskScript", async function () {
|
|
352
|
+
try {
|
|
353
|
+
const data = await client.DescribeTaskScript({})
|
|
354
|
+
expect(data).to.be.ok
|
|
355
|
+
} catch(error) {
|
|
356
|
+
expect(error.requestId).to.be.ok
|
|
357
|
+
expect(error.code).to.be.ok
|
|
358
|
+
}
|
|
359
|
+
})
|
|
360
|
+
|
|
361
|
+
it("wedata.v20210820.SaveCustomFunction", async function () {
|
|
362
|
+
try {
|
|
363
|
+
const data = await client.SaveCustomFunction({})
|
|
364
|
+
expect(data).to.be.ok
|
|
365
|
+
} catch(error) {
|
|
366
|
+
expect(error.requestId).to.be.ok
|
|
367
|
+
expect(error.code).to.be.ok
|
|
368
|
+
}
|
|
369
|
+
})
|
|
370
|
+
|
|
371
|
+
it("wedata.v20210820.DescribeOrganizationalFunctions", async function () {
|
|
372
|
+
try {
|
|
373
|
+
const data = await client.DescribeOrganizationalFunctions({})
|
|
374
|
+
expect(data).to.be.ok
|
|
375
|
+
} catch(error) {
|
|
376
|
+
expect(error.requestId).to.be.ok
|
|
377
|
+
expect(error.code).to.be.ok
|
|
378
|
+
}
|
|
379
|
+
})
|
|
380
|
+
|
|
381
|
+
it("wedata.v20210820.DeleteInLongAgent", async function () {
|
|
382
|
+
try {
|
|
383
|
+
const data = await client.DeleteInLongAgent({})
|
|
384
|
+
expect(data).to.be.ok
|
|
385
|
+
} catch(error) {
|
|
386
|
+
expect(error.requestId).to.be.ok
|
|
387
|
+
expect(error.code).to.be.ok
|
|
388
|
+
}
|
|
389
|
+
})
|
|
390
|
+
|
|
391
|
+
it("wedata.v20210820.TaskLog", async function () {
|
|
392
|
+
try {
|
|
393
|
+
const data = await client.TaskLog({})
|
|
394
|
+
expect(data).to.be.ok
|
|
395
|
+
} catch(error) {
|
|
396
|
+
expect(error.requestId).to.be.ok
|
|
397
|
+
expect(error.code).to.be.ok
|
|
398
|
+
}
|
|
399
|
+
})
|
|
400
|
+
|
|
401
|
+
it("wedata.v20210820.DryRunDIOfflineTask", async function () {
|
|
402
|
+
try {
|
|
403
|
+
const data = await client.DryRunDIOfflineTask({})
|
|
404
|
+
expect(data).to.be.ok
|
|
405
|
+
} catch(error) {
|
|
406
|
+
expect(error.requestId).to.be.ok
|
|
407
|
+
expect(error.code).to.be.ok
|
|
408
|
+
}
|
|
409
|
+
})
|
|
410
|
+
|
|
411
|
+
it("wedata.v20210820.DescribeInLongTkeClusterList", async function () {
|
|
412
|
+
try {
|
|
413
|
+
const data = await client.DescribeInLongTkeClusterList({})
|
|
414
|
+
expect(data).to.be.ok
|
|
415
|
+
} catch(error) {
|
|
416
|
+
expect(error.requestId).to.be.ok
|
|
417
|
+
expect(error.code).to.be.ok
|
|
418
|
+
}
|
|
419
|
+
})
|
|
420
|
+
|
|
421
|
+
it("wedata.v20210820.CreateIntegrationTask", async function () {
|
|
422
|
+
try {
|
|
423
|
+
const data = await client.CreateIntegrationTask({})
|
|
424
|
+
expect(data).to.be.ok
|
|
425
|
+
} catch(error) {
|
|
426
|
+
expect(error.requestId).to.be.ok
|
|
427
|
+
expect(error.code).to.be.ok
|
|
428
|
+
}
|
|
429
|
+
})
|
|
430
|
+
|
|
431
|
+
it("wedata.v20210820.DescribeDataSourceList", async function () {
|
|
432
|
+
try {
|
|
433
|
+
const data = await client.DescribeDataSourceList({})
|
|
434
|
+
expect(data).to.be.ok
|
|
435
|
+
} catch(error) {
|
|
436
|
+
expect(error.requestId).to.be.ok
|
|
437
|
+
expect(error.code).to.be.ok
|
|
438
|
+
}
|
|
439
|
+
})
|
|
440
|
+
|
|
441
|
+
it("wedata.v20210820.ModifyTaskInfo", async function () {
|
|
442
|
+
try {
|
|
443
|
+
const data = await client.ModifyTaskInfo({})
|
|
444
|
+
expect(data).to.be.ok
|
|
445
|
+
} catch(error) {
|
|
446
|
+
expect(error.requestId).to.be.ok
|
|
447
|
+
expect(error.code).to.be.ok
|
|
448
|
+
}
|
|
449
|
+
})
|
|
450
|
+
|
|
451
|
+
it("wedata.v20210820.ModifyIntegrationTask", async function () {
|
|
452
|
+
try {
|
|
453
|
+
const data = await client.ModifyIntegrationTask({})
|
|
454
|
+
expect(data).to.be.ok
|
|
455
|
+
} catch(error) {
|
|
456
|
+
expect(error.requestId).to.be.ok
|
|
457
|
+
expect(error.code).to.be.ok
|
|
458
|
+
}
|
|
459
|
+
})
|
|
460
|
+
|
|
461
|
+
it("wedata.v20210820.DescribeIntegrationStatisticsTaskStatus", async function () {
|
|
462
|
+
try {
|
|
463
|
+
const data = await client.DescribeIntegrationStatisticsTaskStatus({})
|
|
464
|
+
expect(data).to.be.ok
|
|
465
|
+
} catch(error) {
|
|
466
|
+
expect(error.requestId).to.be.ok
|
|
467
|
+
expect(error.code).to.be.ok
|
|
468
|
+
}
|
|
469
|
+
})
|
|
470
|
+
|
|
471
|
+
it("wedata.v20210820.BatchStartIntegrationTasks", async function () {
|
|
472
|
+
try {
|
|
473
|
+
const data = await client.BatchStartIntegrationTasks({})
|
|
474
|
+
expect(data).to.be.ok
|
|
475
|
+
} catch(error) {
|
|
476
|
+
expect(error.requestId).to.be.ok
|
|
477
|
+
expect(error.code).to.be.ok
|
|
478
|
+
}
|
|
479
|
+
})
|
|
480
|
+
|
|
481
|
+
it("wedata.v20210820.ModifyTaskName", async function () {
|
|
482
|
+
try {
|
|
483
|
+
const data = await client.ModifyTaskName({})
|
|
484
|
+
expect(data).to.be.ok
|
|
485
|
+
} catch(error) {
|
|
486
|
+
expect(error.requestId).to.be.ok
|
|
487
|
+
expect(error.code).to.be.ok
|
|
488
|
+
}
|
|
489
|
+
})
|
|
490
|
+
|
|
491
|
+
it("wedata.v20210820.CheckTaskNameExist", async function () {
|
|
492
|
+
try {
|
|
493
|
+
const data = await client.CheckTaskNameExist({})
|
|
494
|
+
expect(data).to.be.ok
|
|
495
|
+
} catch(error) {
|
|
496
|
+
expect(error.requestId).to.be.ok
|
|
497
|
+
expect(error.code).to.be.ok
|
|
498
|
+
}
|
|
499
|
+
})
|
|
500
|
+
|
|
501
|
+
it("wedata.v20210820.DescribeRelatedInstances", async function () {
|
|
502
|
+
try {
|
|
503
|
+
const data = await client.DescribeRelatedInstances({})
|
|
504
|
+
expect(data).to.be.ok
|
|
505
|
+
} catch(error) {
|
|
506
|
+
expect(error.requestId).to.be.ok
|
|
507
|
+
expect(error.code).to.be.ok
|
|
508
|
+
}
|
|
509
|
+
})
|
|
510
|
+
|
|
511
|
+
it("wedata.v20210820.DescribeDatasource", async function () {
|
|
512
|
+
try {
|
|
513
|
+
const data = await client.DescribeDatasource({})
|
|
514
|
+
expect(data).to.be.ok
|
|
515
|
+
} catch(error) {
|
|
516
|
+
expect(error.requestId).to.be.ok
|
|
517
|
+
expect(error.code).to.be.ok
|
|
518
|
+
}
|
|
519
|
+
})
|
|
520
|
+
|
|
521
|
+
it("wedata.v20210820.CreateInLongAgent", async function () {
|
|
522
|
+
try {
|
|
523
|
+
const data = await client.CreateInLongAgent({})
|
|
524
|
+
expect(data).to.be.ok
|
|
525
|
+
} catch(error) {
|
|
526
|
+
expect(error.requestId).to.be.ok
|
|
527
|
+
expect(error.code).to.be.ok
|
|
528
|
+
}
|
|
529
|
+
})
|
|
530
|
+
|
|
531
|
+
it("wedata.v20210820.UpdateInLongAgent", async function () {
|
|
532
|
+
try {
|
|
533
|
+
const data = await client.UpdateInLongAgent({})
|
|
534
|
+
expect(data).to.be.ok
|
|
535
|
+
} catch(error) {
|
|
536
|
+
expect(error.requestId).to.be.ok
|
|
537
|
+
expect(error.code).to.be.ok
|
|
538
|
+
}
|
|
539
|
+
})
|
|
540
|
+
|
|
541
|
+
it("wedata.v20210820.CreateOfflineTask", async function () {
|
|
542
|
+
try {
|
|
543
|
+
const data = await client.CreateOfflineTask({})
|
|
544
|
+
expect(data).to.be.ok
|
|
545
|
+
} catch(error) {
|
|
546
|
+
expect(error.requestId).to.be.ok
|
|
547
|
+
expect(error.code).to.be.ok
|
|
548
|
+
}
|
|
549
|
+
})
|
|
550
|
+
|
|
551
|
+
it("wedata.v20210820.ModifyWorkflowSchedule", async function () {
|
|
552
|
+
try {
|
|
553
|
+
const data = await client.ModifyWorkflowSchedule({})
|
|
554
|
+
expect(data).to.be.ok
|
|
555
|
+
} catch(error) {
|
|
556
|
+
expect(error.requestId).to.be.ok
|
|
557
|
+
expect(error.code).to.be.ok
|
|
558
|
+
}
|
|
559
|
+
})
|
|
560
|
+
|
|
561
|
+
it("wedata.v20210820.DescribeTasksByPage", async function () {
|
|
562
|
+
try {
|
|
563
|
+
const data = await client.DescribeTasksByPage({})
|
|
564
|
+
expect(data).to.be.ok
|
|
565
|
+
} catch(error) {
|
|
566
|
+
expect(error.requestId).to.be.ok
|
|
567
|
+
expect(error.code).to.be.ok
|
|
568
|
+
}
|
|
569
|
+
})
|
|
570
|
+
|
|
571
|
+
it("wedata.v20210820.CreateFolder", async function () {
|
|
572
|
+
try {
|
|
573
|
+
const data = await client.CreateFolder({})
|
|
574
|
+
expect(data).to.be.ok
|
|
575
|
+
} catch(error) {
|
|
576
|
+
expect(error.requestId).to.be.ok
|
|
577
|
+
expect(error.code).to.be.ok
|
|
578
|
+
}
|
|
579
|
+
})
|
|
580
|
+
|
|
581
|
+
it("wedata.v20210820.DescribeTableSchemaInfo", async function () {
|
|
582
|
+
try {
|
|
583
|
+
const data = await client.DescribeTableSchemaInfo({})
|
|
584
|
+
expect(data).to.be.ok
|
|
585
|
+
} catch(error) {
|
|
586
|
+
expect(error.requestId).to.be.ok
|
|
587
|
+
expect(error.code).to.be.ok
|
|
588
|
+
}
|
|
589
|
+
})
|
|
590
|
+
|
|
591
|
+
it("wedata.v20210820.DescribeFunctionTypes", async function () {
|
|
592
|
+
try {
|
|
593
|
+
const data = await client.DescribeFunctionTypes({})
|
|
594
|
+
expect(data).to.be.ok
|
|
595
|
+
} catch(error) {
|
|
596
|
+
expect(error.requestId).to.be.ok
|
|
597
|
+
expect(error.code).to.be.ok
|
|
598
|
+
}
|
|
599
|
+
})
|
|
600
|
+
|
|
601
|
+
it("wedata.v20210820.DescribeTaskReportDetailList", async function () {
|
|
602
|
+
try {
|
|
603
|
+
const data = await client.DescribeTaskReportDetailList({})
|
|
604
|
+
expect(data).to.be.ok
|
|
605
|
+
} catch(error) {
|
|
606
|
+
expect(error.requestId).to.be.ok
|
|
607
|
+
expect(error.code).to.be.ok
|
|
608
|
+
}
|
|
609
|
+
})
|
|
610
|
+
|
|
611
|
+
it("wedata.v20210820.DeleteIntegrationNode", async function () {
|
|
612
|
+
try {
|
|
613
|
+
const data = await client.DeleteIntegrationNode({})
|
|
614
|
+
expect(data).to.be.ok
|
|
615
|
+
} catch(error) {
|
|
616
|
+
expect(error.requestId).to.be.ok
|
|
617
|
+
expect(error.code).to.be.ok
|
|
618
|
+
}
|
|
619
|
+
})
|
|
620
|
+
|
|
621
|
+
it("wedata.v20210820.StopIntegrationTask", async function () {
|
|
622
|
+
try {
|
|
623
|
+
const data = await client.StopIntegrationTask({})
|
|
624
|
+
expect(data).to.be.ok
|
|
625
|
+
} catch(error) {
|
|
626
|
+
expect(error.requestId).to.be.ok
|
|
627
|
+
expect(error.code).to.be.ok
|
|
628
|
+
}
|
|
629
|
+
})
|
|
630
|
+
|
|
631
|
+
it("wedata.v20210820.DescribeRealTimeTaskSpeed", async function () {
|
|
632
|
+
try {
|
|
633
|
+
const data = await client.DescribeRealTimeTaskSpeed({})
|
|
634
|
+
expect(data).to.be.ok
|
|
635
|
+
} catch(error) {
|
|
636
|
+
expect(error.requestId).to.be.ok
|
|
637
|
+
expect(error.code).to.be.ok
|
|
638
|
+
}
|
|
639
|
+
})
|
|
640
|
+
|
|
641
|
+
it("wedata.v20210820.DescribeInstanceList", async function () {
|
|
642
|
+
try {
|
|
643
|
+
const data = await client.DescribeInstanceList({})
|
|
644
|
+
expect(data).to.be.ok
|
|
645
|
+
} catch(error) {
|
|
646
|
+
expect(error.requestId).to.be.ok
|
|
647
|
+
expect(error.code).to.be.ok
|
|
648
|
+
}
|
|
649
|
+
})
|
|
650
|
+
|
|
651
|
+
it("wedata.v20210820.DescribeAlarmReceiver", async function () {
|
|
652
|
+
try {
|
|
653
|
+
const data = await client.DescribeAlarmReceiver({})
|
|
654
|
+
expect(data).to.be.ok
|
|
655
|
+
} catch(error) {
|
|
656
|
+
expect(error.requestId).to.be.ok
|
|
657
|
+
expect(error.code).to.be.ok
|
|
658
|
+
}
|
|
659
|
+
})
|
|
660
|
+
|
|
661
|
+
it("wedata.v20210820.DescribeTaskLockStatus", async function () {
|
|
662
|
+
try {
|
|
663
|
+
const data = await client.DescribeTaskLockStatus({})
|
|
664
|
+
expect(data).to.be.ok
|
|
665
|
+
} catch(error) {
|
|
666
|
+
expect(error.requestId).to.be.ok
|
|
667
|
+
expect(error.code).to.be.ok
|
|
668
|
+
}
|
|
669
|
+
})
|
|
670
|
+
|
|
671
|
+
it("wedata.v20210820.DescribeInstanceLog", async function () {
|
|
672
|
+
try {
|
|
673
|
+
const data = await client.DescribeInstanceLog({})
|
|
674
|
+
expect(data).to.be.ok
|
|
675
|
+
} catch(error) {
|
|
676
|
+
expect(error.requestId).to.be.ok
|
|
677
|
+
expect(error.code).to.be.ok
|
|
678
|
+
}
|
|
679
|
+
})
|
|
680
|
+
|
|
681
|
+
it("wedata.v20210820.BatchUpdateIntegrationTasks", async function () {
|
|
682
|
+
try {
|
|
683
|
+
const data = await client.BatchUpdateIntegrationTasks({})
|
|
684
|
+
expect(data).to.be.ok
|
|
685
|
+
} catch(error) {
|
|
686
|
+
expect(error.requestId).to.be.ok
|
|
687
|
+
expect(error.code).to.be.ok
|
|
688
|
+
}
|
|
689
|
+
})
|
|
690
|
+
|
|
691
|
+
it("wedata.v20210820.ForceSucInstances", async function () {
|
|
692
|
+
try {
|
|
693
|
+
const data = await client.ForceSucInstances({})
|
|
694
|
+
expect(data).to.be.ok
|
|
695
|
+
} catch(error) {
|
|
696
|
+
expect(error.requestId).to.be.ok
|
|
697
|
+
expect(error.code).to.be.ok
|
|
698
|
+
}
|
|
699
|
+
})
|
|
700
|
+
|
|
701
|
+
it("wedata.v20210820.DescribeDatabaseInfoList", async function () {
|
|
702
|
+
try {
|
|
703
|
+
const data = await client.DescribeDatabaseInfoList({})
|
|
704
|
+
expect(data).to.be.ok
|
|
705
|
+
} catch(error) {
|
|
706
|
+
expect(error.requestId).to.be.ok
|
|
707
|
+
expect(error.code).to.be.ok
|
|
708
|
+
}
|
|
709
|
+
})
|
|
710
|
+
|
|
711
|
+
it("wedata.v20210820.CommitIntegrationTask", async function () {
|
|
712
|
+
try {
|
|
713
|
+
const data = await client.CommitIntegrationTask({})
|
|
714
|
+
expect(data).to.be.ok
|
|
715
|
+
} catch(error) {
|
|
716
|
+
expect(error.requestId).to.be.ok
|
|
717
|
+
expect(error.code).to.be.ok
|
|
718
|
+
}
|
|
719
|
+
})
|
|
720
|
+
|
|
721
|
+
it("wedata.v20210820.DeleteOfflineTask", async function () {
|
|
722
|
+
try {
|
|
723
|
+
const data = await client.DeleteOfflineTask({})
|
|
724
|
+
expect(data).to.be.ok
|
|
725
|
+
} catch(error) {
|
|
726
|
+
expect(error.requestId).to.be.ok
|
|
727
|
+
expect(error.code).to.be.ok
|
|
728
|
+
}
|
|
729
|
+
})
|
|
730
|
+
|
|
731
|
+
it("wedata.v20210820.CreateHiveTableByDDL", async function () {
|
|
732
|
+
try {
|
|
733
|
+
const data = await client.CreateHiveTableByDDL({})
|
|
734
|
+
expect(data).to.be.ok
|
|
735
|
+
} catch(error) {
|
|
736
|
+
expect(error.requestId).to.be.ok
|
|
737
|
+
expect(error.code).to.be.ok
|
|
738
|
+
}
|
|
739
|
+
})
|
|
740
|
+
|
|
741
|
+
it("wedata.v20210820.DescribeResourceManagePathTrees", async function () {
|
|
742
|
+
try {
|
|
743
|
+
const data = await client.DescribeResourceManagePathTrees({})
|
|
744
|
+
expect(data).to.be.ok
|
|
745
|
+
} catch(error) {
|
|
746
|
+
expect(error.requestId).to.be.ok
|
|
747
|
+
expect(error.code).to.be.ok
|
|
748
|
+
}
|
|
749
|
+
})
|
|
750
|
+
|
|
751
|
+
it("wedata.v20210820.BatchForceSuccessIntegrationTaskInstances", async function () {
|
|
752
|
+
try {
|
|
753
|
+
const data = await client.BatchForceSuccessIntegrationTaskInstances({})
|
|
34
754
|
expect(data).to.be.ok
|
|
35
755
|
} catch(error) {
|
|
36
756
|
expect(error.requestId).to.be.ok
|
|
@@ -38,9 +758,29 @@ it("wedata.v20210820.SetTaskAlarmNew", async function () {
|
|
|
38
758
|
}
|
|
39
759
|
})
|
|
40
760
|
|
|
41
|
-
it("wedata.v20210820.
|
|
761
|
+
it("wedata.v20210820.FreezeTasks", async function () {
|
|
42
762
|
try {
|
|
43
|
-
const data = await client.
|
|
763
|
+
const data = await client.FreezeTasks({})
|
|
764
|
+
expect(data).to.be.ok
|
|
765
|
+
} catch(error) {
|
|
766
|
+
expect(error.requestId).to.be.ok
|
|
767
|
+
expect(error.code).to.be.ok
|
|
768
|
+
}
|
|
769
|
+
})
|
|
770
|
+
|
|
771
|
+
it("wedata.v20210820.DescribeStreamTaskLogList", async function () {
|
|
772
|
+
try {
|
|
773
|
+
const data = await client.DescribeStreamTaskLogList({})
|
|
774
|
+
expect(data).to.be.ok
|
|
775
|
+
} catch(error) {
|
|
776
|
+
expect(error.requestId).to.be.ok
|
|
777
|
+
expect(error.code).to.be.ok
|
|
778
|
+
}
|
|
779
|
+
})
|
|
780
|
+
|
|
781
|
+
it("wedata.v20210820.ModifyDataSource", async function () {
|
|
782
|
+
try {
|
|
783
|
+
const data = await client.ModifyDataSource({})
|
|
44
784
|
expect(data).to.be.ok
|
|
45
785
|
} catch(error) {
|
|
46
786
|
expect(error.requestId).to.be.ok
|
|
@@ -58,9 +798,9 @@ it("wedata.v20210820.DeleteDataSources", async function () {
|
|
|
58
798
|
}
|
|
59
799
|
})
|
|
60
800
|
|
|
61
|
-
it("wedata.v20210820.
|
|
801
|
+
it("wedata.v20210820.ModifyFolder", async function () {
|
|
62
802
|
try {
|
|
63
|
-
const data = await client.
|
|
803
|
+
const data = await client.ModifyFolder({})
|
|
64
804
|
expect(data).to.be.ok
|
|
65
805
|
} catch(error) {
|
|
66
806
|
expect(error.requestId).to.be.ok
|
|
@@ -68,9 +808,9 @@ it("wedata.v20210820.ModifyTaskScript", async function () {
|
|
|
68
808
|
}
|
|
69
809
|
})
|
|
70
810
|
|
|
71
|
-
it("wedata.v20210820.
|
|
811
|
+
it("wedata.v20210820.RerunInstances", async function () {
|
|
72
812
|
try {
|
|
73
|
-
const data = await client.
|
|
813
|
+
const data = await client.RerunInstances({})
|
|
74
814
|
expect(data).to.be.ok
|
|
75
815
|
} catch(error) {
|
|
76
816
|
expect(error.requestId).to.be.ok
|
|
@@ -78,9 +818,9 @@ it("wedata.v20210820.SubmitTask", async function () {
|
|
|
78
818
|
}
|
|
79
819
|
})
|
|
80
820
|
|
|
81
|
-
it("wedata.v20210820.
|
|
821
|
+
it("wedata.v20210820.CheckAlarmRegularNameExist", async function () {
|
|
82
822
|
try {
|
|
83
|
-
const data = await client.
|
|
823
|
+
const data = await client.CheckAlarmRegularNameExist({})
|
|
84
824
|
expect(data).to.be.ok
|
|
85
825
|
} catch(error) {
|
|
86
826
|
expect(error.requestId).to.be.ok
|
|
@@ -88,9 +828,99 @@ it("wedata.v20210820.FreezeTasks", async function () {
|
|
|
88
828
|
}
|
|
89
829
|
})
|
|
90
830
|
|
|
91
|
-
it("wedata.v20210820.
|
|
831
|
+
it("wedata.v20210820.CheckIntegrationTaskNameExists", async function () {
|
|
92
832
|
try {
|
|
93
|
-
const data = await client.
|
|
833
|
+
const data = await client.CheckIntegrationTaskNameExists({})
|
|
834
|
+
expect(data).to.be.ok
|
|
835
|
+
} catch(error) {
|
|
836
|
+
expect(error.requestId).to.be.ok
|
|
837
|
+
expect(error.code).to.be.ok
|
|
838
|
+
}
|
|
839
|
+
})
|
|
840
|
+
|
|
841
|
+
it("wedata.v20210820.DescribeDataTypes", async function () {
|
|
842
|
+
try {
|
|
843
|
+
const data = await client.DescribeDataTypes({})
|
|
844
|
+
expect(data).to.be.ok
|
|
845
|
+
} catch(error) {
|
|
846
|
+
expect(error.requestId).to.be.ok
|
|
847
|
+
expect(error.code).to.be.ok
|
|
848
|
+
}
|
|
849
|
+
})
|
|
850
|
+
|
|
851
|
+
it("wedata.v20210820.GetOfflineDIInstanceList", async function () {
|
|
852
|
+
try {
|
|
853
|
+
const data = await client.GetOfflineDIInstanceList({})
|
|
854
|
+
expect(data).to.be.ok
|
|
855
|
+
} catch(error) {
|
|
856
|
+
expect(error.requestId).to.be.ok
|
|
857
|
+
expect(error.code).to.be.ok
|
|
858
|
+
}
|
|
859
|
+
})
|
|
860
|
+
|
|
861
|
+
it("wedata.v20210820.BatchMakeUpIntegrationTasks", async function () {
|
|
862
|
+
try {
|
|
863
|
+
const data = await client.BatchMakeUpIntegrationTasks({})
|
|
864
|
+
expect(data).to.be.ok
|
|
865
|
+
} catch(error) {
|
|
866
|
+
expect(error.requestId).to.be.ok
|
|
867
|
+
expect(error.code).to.be.ok
|
|
868
|
+
}
|
|
869
|
+
})
|
|
870
|
+
|
|
871
|
+
it("wedata.v20210820.ModifyWorkflowInfo", async function () {
|
|
872
|
+
try {
|
|
873
|
+
const data = await client.ModifyWorkflowInfo({})
|
|
874
|
+
expect(data).to.be.ok
|
|
875
|
+
} catch(error) {
|
|
876
|
+
expect(error.requestId).to.be.ok
|
|
877
|
+
expect(error.code).to.be.ok
|
|
878
|
+
}
|
|
879
|
+
})
|
|
880
|
+
|
|
881
|
+
it("wedata.v20210820.ModifyTaskLinks", async function () {
|
|
882
|
+
try {
|
|
883
|
+
const data = await client.ModifyTaskLinks({})
|
|
884
|
+
expect(data).to.be.ok
|
|
885
|
+
} catch(error) {
|
|
886
|
+
expect(error.requestId).to.be.ok
|
|
887
|
+
expect(error.code).to.be.ok
|
|
888
|
+
}
|
|
889
|
+
})
|
|
890
|
+
|
|
891
|
+
it("wedata.v20210820.ModifyIntegrationNode", async function () {
|
|
892
|
+
try {
|
|
893
|
+
const data = await client.ModifyIntegrationNode({})
|
|
894
|
+
expect(data).to.be.ok
|
|
895
|
+
} catch(error) {
|
|
896
|
+
expect(error.requestId).to.be.ok
|
|
897
|
+
expect(error.code).to.be.ok
|
|
898
|
+
}
|
|
899
|
+
})
|
|
900
|
+
|
|
901
|
+
it("wedata.v20210820.BatchCreateIntegrationTaskAlarms", async function () {
|
|
902
|
+
try {
|
|
903
|
+
const data = await client.BatchCreateIntegrationTaskAlarms({})
|
|
904
|
+
expect(data).to.be.ok
|
|
905
|
+
} catch(error) {
|
|
906
|
+
expect(error.requestId).to.be.ok
|
|
907
|
+
expect(error.code).to.be.ok
|
|
908
|
+
}
|
|
909
|
+
})
|
|
910
|
+
|
|
911
|
+
it("wedata.v20210820.DescribeFolderList", async function () {
|
|
912
|
+
try {
|
|
913
|
+
const data = await client.DescribeFolderList({})
|
|
914
|
+
expect(data).to.be.ok
|
|
915
|
+
} catch(error) {
|
|
916
|
+
expect(error.requestId).to.be.ok
|
|
917
|
+
expect(error.code).to.be.ok
|
|
918
|
+
}
|
|
919
|
+
})
|
|
920
|
+
|
|
921
|
+
it("wedata.v20210820.DescribeDataSourceWithoutInfo", async function () {
|
|
922
|
+
try {
|
|
923
|
+
const data = await client.DescribeDataSourceWithoutInfo({})
|
|
94
924
|
expect(data).to.be.ok
|
|
95
925
|
} catch(error) {
|
|
96
926
|
expect(error.requestId).to.be.ok
|
|
@@ -108,9 +938,9 @@ it("wedata.v20210820.MakeUpWorkflowNew", async function () {
|
|
|
108
938
|
}
|
|
109
939
|
})
|
|
110
940
|
|
|
111
|
-
it("wedata.v20210820.
|
|
941
|
+
it("wedata.v20210820.DescribeIntegrationStatisticsTaskStatusTrend", async function () {
|
|
112
942
|
try {
|
|
113
|
-
const data = await client.
|
|
943
|
+
const data = await client.DescribeIntegrationStatisticsTaskStatusTrend({})
|
|
114
944
|
expect(data).to.be.ok
|
|
115
945
|
} catch(error) {
|
|
116
946
|
expect(error.requestId).to.be.ok
|
|
@@ -118,9 +948,9 @@ it("wedata.v20210820.RegisterEvent", async function () {
|
|
|
118
948
|
}
|
|
119
949
|
})
|
|
120
950
|
|
|
121
|
-
it("wedata.v20210820.
|
|
951
|
+
it("wedata.v20210820.BatchRerunIntegrationTaskInstances", async function () {
|
|
122
952
|
try {
|
|
123
|
-
const data = await client.
|
|
953
|
+
const data = await client.BatchRerunIntegrationTaskInstances({})
|
|
124
954
|
expect(data).to.be.ok
|
|
125
955
|
} catch(error) {
|
|
126
956
|
expect(error.requestId).to.be.ok
|
|
@@ -128,9 +958,9 @@ it("wedata.v20210820.ModifyDataSource", async function () {
|
|
|
128
958
|
}
|
|
129
959
|
})
|
|
130
960
|
|
|
131
|
-
it("wedata.v20210820.
|
|
961
|
+
it("wedata.v20210820.CreateWorkflow", async function () {
|
|
132
962
|
try {
|
|
133
|
-
const data = await client.
|
|
963
|
+
const data = await client.CreateWorkflow({})
|
|
134
964
|
expect(data).to.be.ok
|
|
135
965
|
} catch(error) {
|
|
136
966
|
expect(error.requestId).to.be.ok
|
|
@@ -138,9 +968,9 @@ it("wedata.v20210820.DescribeDataSourceList", async function () {
|
|
|
138
968
|
}
|
|
139
969
|
})
|
|
140
970
|
|
|
141
|
-
it("wedata.v20210820.
|
|
971
|
+
it("wedata.v20210820.RunTask", async function () {
|
|
142
972
|
try {
|
|
143
|
-
const data = await client.
|
|
973
|
+
const data = await client.RunTask({})
|
|
144
974
|
expect(data).to.be.ok
|
|
145
975
|
} catch(error) {
|
|
146
976
|
expect(error.requestId).to.be.ok
|
|
@@ -148,9 +978,9 @@ it("wedata.v20210820.ModifyTaskInfo", async function () {
|
|
|
148
978
|
}
|
|
149
979
|
})
|
|
150
980
|
|
|
151
|
-
it("wedata.v20210820.
|
|
981
|
+
it("wedata.v20210820.StartIntegrationTask", async function () {
|
|
152
982
|
try {
|
|
153
|
-
const data = await client.
|
|
983
|
+
const data = await client.StartIntegrationTask({})
|
|
154
984
|
expect(data).to.be.ok
|
|
155
985
|
} catch(error) {
|
|
156
986
|
expect(error.requestId).to.be.ok
|
|
@@ -158,9 +988,9 @@ it("wedata.v20210820.DeleteCustomFunction", async function () {
|
|
|
158
988
|
}
|
|
159
989
|
})
|
|
160
990
|
|
|
161
|
-
it("wedata.v20210820.
|
|
991
|
+
it("wedata.v20210820.LockIntegrationTask", async function () {
|
|
162
992
|
try {
|
|
163
|
-
const data = await client.
|
|
993
|
+
const data = await client.LockIntegrationTask({})
|
|
164
994
|
expect(data).to.be.ok
|
|
165
995
|
} catch(error) {
|
|
166
996
|
expect(error.requestId).to.be.ok
|
|
@@ -168,9 +998,9 @@ it("wedata.v20210820.KillInstances", async function () {
|
|
|
168
998
|
}
|
|
169
999
|
})
|
|
170
1000
|
|
|
171
|
-
it("wedata.v20210820.
|
|
1001
|
+
it("wedata.v20210820.SubmitWorkflow", async function () {
|
|
172
1002
|
try {
|
|
173
|
-
const data = await client.
|
|
1003
|
+
const data = await client.SubmitWorkflow({})
|
|
174
1004
|
expect(data).to.be.ok
|
|
175
1005
|
} catch(error) {
|
|
176
1006
|
expect(error.requestId).to.be.ok
|
|
@@ -178,9 +1008,9 @@ it("wedata.v20210820.DescribeFolderWorkflowList", async function () {
|
|
|
178
1008
|
}
|
|
179
1009
|
})
|
|
180
1010
|
|
|
181
|
-
it("wedata.v20210820.
|
|
1011
|
+
it("wedata.v20210820.BatchDeleteIntegrationTasks", async function () {
|
|
182
1012
|
try {
|
|
183
|
-
const data = await client.
|
|
1013
|
+
const data = await client.BatchDeleteIntegrationTasks({})
|
|
184
1014
|
expect(data).to.be.ok
|
|
185
1015
|
} catch(error) {
|
|
186
1016
|
expect(error.requestId).to.be.ok
|
|
@@ -188,9 +1018,9 @@ it("wedata.v20210820.RerunInstances", async function () {
|
|
|
188
1018
|
}
|
|
189
1019
|
})
|
|
190
1020
|
|
|
191
|
-
it("wedata.v20210820.
|
|
1021
|
+
it("wedata.v20210820.DescribeIntegrationTasks", async function () {
|
|
192
1022
|
try {
|
|
193
|
-
const data = await client.
|
|
1023
|
+
const data = await client.DescribeIntegrationTasks({})
|
|
194
1024
|
expect(data).to.be.ok
|
|
195
1025
|
} catch(error) {
|
|
196
1026
|
expect(error.requestId).to.be.ok
|
|
@@ -198,9 +1028,9 @@ it("wedata.v20210820.DescribeResourceManagePathTrees", async function () {
|
|
|
198
1028
|
}
|
|
199
1029
|
})
|
|
200
1030
|
|
|
201
|
-
it("wedata.v20210820.
|
|
1031
|
+
it("wedata.v20210820.ModifyTaskScript", async function () {
|
|
202
1032
|
try {
|
|
203
|
-
const data = await client.
|
|
1033
|
+
const data = await client.ModifyTaskScript({})
|
|
204
1034
|
expect(data).to.be.ok
|
|
205
1035
|
} catch(error) {
|
|
206
1036
|
expect(error.requestId).to.be.ok
|
|
@@ -208,9 +1038,9 @@ it("wedata.v20210820.DescribeTaskDetail", async function () {
|
|
|
208
1038
|
}
|
|
209
1039
|
})
|
|
210
1040
|
|
|
211
|
-
it("wedata.v20210820.
|
|
1041
|
+
it("wedata.v20210820.DescribeTableInfoList", async function () {
|
|
212
1042
|
try {
|
|
213
|
-
const data = await client.
|
|
1043
|
+
const data = await client.DescribeTableInfoList({})
|
|
214
1044
|
expect(data).to.be.ok
|
|
215
1045
|
} catch(error) {
|
|
216
1046
|
expect(error.requestId).to.be.ok
|
|
@@ -218,9 +1048,9 @@ it("wedata.v20210820.MakeUpTasksNew", async function () {
|
|
|
218
1048
|
}
|
|
219
1049
|
})
|
|
220
1050
|
|
|
221
|
-
it("wedata.v20210820.
|
|
1051
|
+
it("wedata.v20210820.DescribeTaskInstances", async function () {
|
|
222
1052
|
try {
|
|
223
|
-
const data = await client.
|
|
1053
|
+
const data = await client.DescribeTaskInstances({})
|
|
224
1054
|
expect(data).to.be.ok
|
|
225
1055
|
} catch(error) {
|
|
226
1056
|
expect(error.requestId).to.be.ok
|
|
@@ -228,9 +1058,9 @@ it("wedata.v20210820.ModifyFolder", async function () {
|
|
|
228
1058
|
}
|
|
229
1059
|
})
|
|
230
1060
|
|
|
231
|
-
it("wedata.v20210820.
|
|
1061
|
+
it("wedata.v20210820.DeleteTaskAlarmRegular", async function () {
|
|
232
1062
|
try {
|
|
233
|
-
const data = await client.
|
|
1063
|
+
const data = await client.DeleteTaskAlarmRegular({})
|
|
234
1064
|
expect(data).to.be.ok
|
|
235
1065
|
} catch(error) {
|
|
236
1066
|
expect(error.requestId).to.be.ok
|
|
@@ -238,9 +1068,9 @@ it("wedata.v20210820.FreezeTasksByMultiWorkflow", async function () {
|
|
|
238
1068
|
}
|
|
239
1069
|
})
|
|
240
1070
|
|
|
241
|
-
it("wedata.v20210820.
|
|
1071
|
+
it("wedata.v20210820.TriggerEvent", async function () {
|
|
242
1072
|
try {
|
|
243
|
-
const data = await client.
|
|
1073
|
+
const data = await client.TriggerEvent({})
|
|
244
1074
|
expect(data).to.be.ok
|
|
245
1075
|
} catch(error) {
|
|
246
1076
|
expect(error.requestId).to.be.ok
|
|
@@ -248,9 +1078,9 @@ it("wedata.v20210820.DescribeDataSourceWithoutInfo", async function () {
|
|
|
248
1078
|
}
|
|
249
1079
|
})
|
|
250
1080
|
|
|
251
|
-
it("wedata.v20210820.
|
|
1081
|
+
it("wedata.v20210820.DeleteResource", async function () {
|
|
252
1082
|
try {
|
|
253
|
-
const data = await client.
|
|
1083
|
+
const data = await client.DeleteResource({})
|
|
254
1084
|
expect(data).to.be.ok
|
|
255
1085
|
} catch(error) {
|
|
256
1086
|
expect(error.requestId).to.be.ok
|
|
@@ -258,9 +1088,9 @@ it("wedata.v20210820.DescribeInstanceLogs", async function () {
|
|
|
258
1088
|
}
|
|
259
1089
|
})
|
|
260
1090
|
|
|
261
|
-
it("wedata.v20210820.
|
|
1091
|
+
it("wedata.v20210820.DescribeTaskReport", async function () {
|
|
262
1092
|
try {
|
|
263
|
-
const data = await client.
|
|
1093
|
+
const data = await client.DescribeTaskReport({})
|
|
264
1094
|
expect(data).to.be.ok
|
|
265
1095
|
} catch(error) {
|
|
266
1096
|
expect(error.requestId).to.be.ok
|
|
@@ -268,9 +1098,9 @@ it("wedata.v20210820.DescribeRelatedInstances", async function () {
|
|
|
268
1098
|
}
|
|
269
1099
|
})
|
|
270
1100
|
|
|
271
|
-
it("wedata.v20210820.
|
|
1101
|
+
it("wedata.v20210820.DescribeTaskAlarmRegulations", async function () {
|
|
272
1102
|
try {
|
|
273
|
-
const data = await client.
|
|
1103
|
+
const data = await client.DescribeTaskAlarmRegulations({})
|
|
274
1104
|
expect(data).to.be.ok
|
|
275
1105
|
} catch(error) {
|
|
276
1106
|
expect(error.requestId).to.be.ok
|
|
@@ -278,9 +1108,9 @@ it("wedata.v20210820.DescribeTaskScript", async function () {
|
|
|
278
1108
|
}
|
|
279
1109
|
})
|
|
280
1110
|
|
|
281
|
-
it("wedata.v20210820.
|
|
1111
|
+
it("wedata.v20210820.DescribeIntegrationVersionNodesInfo", async function () {
|
|
282
1112
|
try {
|
|
283
|
-
const data = await client.
|
|
1113
|
+
const data = await client.DescribeIntegrationVersionNodesInfo({})
|
|
284
1114
|
expect(data).to.be.ok
|
|
285
1115
|
} catch(error) {
|
|
286
1116
|
expect(error.requestId).to.be.ok
|
|
@@ -288,9 +1118,9 @@ it("wedata.v20210820.DescribeDatasource", async function () {
|
|
|
288
1118
|
}
|
|
289
1119
|
})
|
|
290
1120
|
|
|
291
|
-
it("wedata.v20210820.
|
|
1121
|
+
it("wedata.v20210820.ModifyTaskAlarmRegular", async function () {
|
|
292
1122
|
try {
|
|
293
|
-
const data = await client.
|
|
1123
|
+
const data = await client.ModifyTaskAlarmRegular({})
|
|
294
1124
|
expect(data).to.be.ok
|
|
295
1125
|
} catch(error) {
|
|
296
1126
|
expect(error.requestId).to.be.ok
|
|
@@ -298,9 +1128,9 @@ it("wedata.v20210820.BatchDeleteTasksNew", async function () {
|
|
|
298
1128
|
}
|
|
299
1129
|
})
|
|
300
1130
|
|
|
301
|
-
it("wedata.v20210820.
|
|
1131
|
+
it("wedata.v20210820.DeleteCustomFunction", async function () {
|
|
302
1132
|
try {
|
|
303
|
-
const data = await client.
|
|
1133
|
+
const data = await client.DeleteCustomFunction({})
|
|
304
1134
|
expect(data).to.be.ok
|
|
305
1135
|
} catch(error) {
|
|
306
1136
|
expect(error.requestId).to.be.ok
|
|
@@ -308,9 +1138,9 @@ it("wedata.v20210820.DeleteWorkflowNew", async function () {
|
|
|
308
1138
|
}
|
|
309
1139
|
})
|
|
310
1140
|
|
|
311
|
-
it("wedata.v20210820.
|
|
1141
|
+
it("wedata.v20210820.DescribeFolderWorkflowList", async function () {
|
|
312
1142
|
try {
|
|
313
|
-
const data = await client.
|
|
1143
|
+
const data = await client.DescribeFolderWorkflowList({})
|
|
314
1144
|
expect(data).to.be.ok
|
|
315
1145
|
} catch(error) {
|
|
316
1146
|
expect(error.requestId).to.be.ok
|
|
@@ -318,9 +1148,9 @@ it("wedata.v20210820.ModifyWorkflowSchedule", async function () {
|
|
|
318
1148
|
}
|
|
319
1149
|
})
|
|
320
1150
|
|
|
321
|
-
it("wedata.v20210820.
|
|
1151
|
+
it("wedata.v20210820.DescribeIntegrationTask", async function () {
|
|
322
1152
|
try {
|
|
323
|
-
const data = await client.
|
|
1153
|
+
const data = await client.DescribeIntegrationTask({})
|
|
324
1154
|
expect(data).to.be.ok
|
|
325
1155
|
} catch(error) {
|
|
326
1156
|
expect(error.requestId).to.be.ok
|
|
@@ -328,9 +1158,9 @@ it("wedata.v20210820.DescribeTasksByPage", async function () {
|
|
|
328
1158
|
}
|
|
329
1159
|
})
|
|
330
1160
|
|
|
331
|
-
it("wedata.v20210820.
|
|
1161
|
+
it("wedata.v20210820.DescribeIntegrationStatisticsRecordsTrend", async function () {
|
|
332
1162
|
try {
|
|
333
|
-
const data = await client.
|
|
1163
|
+
const data = await client.DescribeIntegrationStatisticsRecordsTrend({})
|
|
334
1164
|
expect(data).to.be.ok
|
|
335
1165
|
} catch(error) {
|
|
336
1166
|
expect(error.requestId).to.be.ok
|
|
@@ -338,9 +1168,9 @@ it("wedata.v20210820.ModifyWorkflowInfo", async function () {
|
|
|
338
1168
|
}
|
|
339
1169
|
})
|
|
340
1170
|
|
|
341
|
-
it("wedata.v20210820.
|
|
1171
|
+
it("wedata.v20210820.DescribeIntegrationStatisticsInstanceTrend", async function () {
|
|
342
1172
|
try {
|
|
343
|
-
const data = await client.
|
|
1173
|
+
const data = await client.DescribeIntegrationStatisticsInstanceTrend({})
|
|
344
1174
|
expect(data).to.be.ok
|
|
345
1175
|
} catch(error) {
|
|
346
1176
|
expect(error.requestId).to.be.ok
|
|
@@ -348,9 +1178,9 @@ it("wedata.v20210820.CreateFolder", async function () {
|
|
|
348
1178
|
}
|
|
349
1179
|
})
|
|
350
1180
|
|
|
351
|
-
it("wedata.v20210820.
|
|
1181
|
+
it("wedata.v20210820.CreateIntegrationNode", async function () {
|
|
352
1182
|
try {
|
|
353
|
-
const data = await client.
|
|
1183
|
+
const data = await client.CreateIntegrationNode({})
|
|
354
1184
|
expect(data).to.be.ok
|
|
355
1185
|
} catch(error) {
|
|
356
1186
|
expect(error.requestId).to.be.ok
|
|
@@ -358,9 +1188,9 @@ it("wedata.v20210820.ModifyTaskLinks", async function () {
|
|
|
358
1188
|
}
|
|
359
1189
|
})
|
|
360
1190
|
|
|
361
|
-
it("wedata.v20210820.
|
|
1191
|
+
it("wedata.v20210820.BatchSuspendIntegrationTasks", async function () {
|
|
362
1192
|
try {
|
|
363
|
-
const data = await client.
|
|
1193
|
+
const data = await client.BatchSuspendIntegrationTasks({})
|
|
364
1194
|
expect(data).to.be.ok
|
|
365
1195
|
} catch(error) {
|
|
366
1196
|
expect(error.requestId).to.be.ok
|
|
@@ -368,9 +1198,9 @@ it("wedata.v20210820.CreateCustomFunction", async function () {
|
|
|
368
1198
|
}
|
|
369
1199
|
})
|
|
370
1200
|
|
|
371
|
-
it("wedata.v20210820.
|
|
1201
|
+
it("wedata.v20210820.DescribeInstanceLastLog", async function () {
|
|
372
1202
|
try {
|
|
373
|
-
const data = await client.
|
|
1203
|
+
const data = await client.DescribeInstanceLastLog({})
|
|
374
1204
|
expect(data).to.be.ok
|
|
375
1205
|
} catch(error) {
|
|
376
1206
|
expect(error.requestId).to.be.ok
|
|
@@ -378,9 +1208,9 @@ it("wedata.v20210820.DescribeFunctionTypes", async function () {
|
|
|
378
1208
|
}
|
|
379
1209
|
})
|
|
380
1210
|
|
|
381
|
-
it("wedata.v20210820.
|
|
1211
|
+
it("wedata.v20210820.DescribeInstanceLogs", async function () {
|
|
382
1212
|
try {
|
|
383
|
-
const data = await client.
|
|
1213
|
+
const data = await client.DescribeInstanceLogs({})
|
|
384
1214
|
expect(data).to.be.ok
|
|
385
1215
|
} catch(error) {
|
|
386
1216
|
expect(error.requestId).to.be.ok
|
|
@@ -388,9 +1218,9 @@ it("wedata.v20210820.DescribeFolderList", async function () {
|
|
|
388
1218
|
}
|
|
389
1219
|
})
|
|
390
1220
|
|
|
391
|
-
it("wedata.v20210820.
|
|
1221
|
+
it("wedata.v20210820.RegisterEvent", async function () {
|
|
392
1222
|
try {
|
|
393
|
-
const data = await client.
|
|
1223
|
+
const data = await client.RegisterEvent({})
|
|
394
1224
|
expect(data).to.be.ok
|
|
395
1225
|
} catch(error) {
|
|
396
1226
|
expect(error.requestId).to.be.ok
|
|
@@ -398,9 +1228,9 @@ it("wedata.v20210820.DeleteFolder", async function () {
|
|
|
398
1228
|
}
|
|
399
1229
|
})
|
|
400
1230
|
|
|
401
|
-
it("wedata.v20210820.
|
|
1231
|
+
it("wedata.v20210820.SubmitCustomFunction", async function () {
|
|
402
1232
|
try {
|
|
403
|
-
const data = await client.
|
|
1233
|
+
const data = await client.SubmitCustomFunction({})
|
|
404
1234
|
expect(data).to.be.ok
|
|
405
1235
|
} catch(error) {
|
|
406
1236
|
expect(error.requestId).to.be.ok
|
|
@@ -408,9 +1238,9 @@ it("wedata.v20210820.RegisterEventListener", async function () {
|
|
|
408
1238
|
}
|
|
409
1239
|
})
|
|
410
1240
|
|
|
411
|
-
it("wedata.v20210820.
|
|
1241
|
+
it("wedata.v20210820.BatchResumeIntegrationTasks", async function () {
|
|
412
1242
|
try {
|
|
413
|
-
const data = await client.
|
|
1243
|
+
const data = await client.BatchResumeIntegrationTasks({})
|
|
414
1244
|
expect(data).to.be.ok
|
|
415
1245
|
} catch(error) {
|
|
416
1246
|
expect(error.requestId).to.be.ok
|
|
@@ -418,9 +1248,9 @@ it("wedata.v20210820.DescribeFunctionKinds", async function () {
|
|
|
418
1248
|
}
|
|
419
1249
|
})
|
|
420
1250
|
|
|
421
|
-
it("wedata.v20210820.
|
|
1251
|
+
it("wedata.v20210820.RestartInLongAgent", async function () {
|
|
422
1252
|
try {
|
|
423
|
-
const data = await client.
|
|
1253
|
+
const data = await client.RestartInLongAgent({})
|
|
424
1254
|
expect(data).to.be.ok
|
|
425
1255
|
} catch(error) {
|
|
426
1256
|
expect(error.requestId).to.be.ok
|
|
@@ -428,9 +1258,9 @@ it("wedata.v20210820.TriggerEvent", async function () {
|
|
|
428
1258
|
}
|
|
429
1259
|
})
|
|
430
1260
|
|
|
431
|
-
it("wedata.v20210820.
|
|
1261
|
+
it("wedata.v20210820.SubmitTask", async function () {
|
|
432
1262
|
try {
|
|
433
|
-
const data = await client.
|
|
1263
|
+
const data = await client.SubmitTask({})
|
|
434
1264
|
expect(data).to.be.ok
|
|
435
1265
|
} catch(error) {
|
|
436
1266
|
expect(error.requestId).to.be.ok
|
|
@@ -438,9 +1268,9 @@ it("wedata.v20210820.CreateDataSource", async function () {
|
|
|
438
1268
|
}
|
|
439
1269
|
})
|
|
440
1270
|
|
|
441
|
-
it("wedata.v20210820.
|
|
1271
|
+
it("wedata.v20210820.DescribeDataSourceInfoList", async function () {
|
|
442
1272
|
try {
|
|
443
|
-
const data = await client.
|
|
1273
|
+
const data = await client.DescribeDataSourceInfoList({})
|
|
444
1274
|
expect(data).to.be.ok
|
|
445
1275
|
} catch(error) {
|
|
446
1276
|
expect(error.requestId).to.be.ok
|
|
@@ -448,9 +1278,9 @@ it("wedata.v20210820.CreateWorkflow", async function () {
|
|
|
448
1278
|
}
|
|
449
1279
|
})
|
|
450
1280
|
|
|
451
|
-
it("wedata.v20210820.
|
|
1281
|
+
it("wedata.v20210820.DescribeFunctionKinds", async function () {
|
|
452
1282
|
try {
|
|
453
|
-
const data = await client.
|
|
1283
|
+
const data = await client.DescribeFunctionKinds({})
|
|
454
1284
|
expect(data).to.be.ok
|
|
455
1285
|
} catch(error) {
|
|
456
1286
|
expect(error.requestId).to.be.ok
|
|
@@ -458,9 +1288,9 @@ it("wedata.v20210820.DescribeProject", async function () {
|
|
|
458
1288
|
}
|
|
459
1289
|
})
|
|
460
1290
|
|
|
461
|
-
it("wedata.v20210820.
|
|
1291
|
+
it("wedata.v20210820.DescribeInLongAgentTaskList", async function () {
|
|
462
1292
|
try {
|
|
463
|
-
const data = await client.
|
|
1293
|
+
const data = await client.DescribeInLongAgentTaskList({})
|
|
464
1294
|
expect(data).to.be.ok
|
|
465
1295
|
} catch(error) {
|
|
466
1296
|
expect(error.requestId).to.be.ok
|
|
@@ -468,9 +1298,9 @@ it("wedata.v20210820.ForceSucInstances", async function () {
|
|
|
468
1298
|
}
|
|
469
1299
|
})
|
|
470
1300
|
|
|
471
|
-
it("wedata.v20210820.
|
|
1301
|
+
it("wedata.v20210820.DescribeTaskInstanceReportDetail", async function () {
|
|
472
1302
|
try {
|
|
473
|
-
const data = await client.
|
|
1303
|
+
const data = await client.DescribeTaskInstanceReportDetail({})
|
|
474
1304
|
expect(data).to.be.ok
|
|
475
1305
|
} catch(error) {
|
|
476
1306
|
expect(error.requestId).to.be.ok
|
|
@@ -478,9 +1308,39 @@ it("wedata.v20210820.RunTask", async function () {
|
|
|
478
1308
|
}
|
|
479
1309
|
})
|
|
480
1310
|
|
|
481
|
-
it("wedata.v20210820.
|
|
1311
|
+
it("wedata.v20210820.SuspendIntegrationTask", async function () {
|
|
482
1312
|
try {
|
|
483
|
-
const data = await client.
|
|
1313
|
+
const data = await client.SuspendIntegrationTask({})
|
|
1314
|
+
expect(data).to.be.ok
|
|
1315
|
+
} catch(error) {
|
|
1316
|
+
expect(error.requestId).to.be.ok
|
|
1317
|
+
expect(error.code).to.be.ok
|
|
1318
|
+
}
|
|
1319
|
+
})
|
|
1320
|
+
|
|
1321
|
+
it("wedata.v20210820.DescribeProject", async function () {
|
|
1322
|
+
try {
|
|
1323
|
+
const data = await client.DescribeProject({})
|
|
1324
|
+
expect(data).to.be.ok
|
|
1325
|
+
} catch(error) {
|
|
1326
|
+
expect(error.requestId).to.be.ok
|
|
1327
|
+
expect(error.code).to.be.ok
|
|
1328
|
+
}
|
|
1329
|
+
})
|
|
1330
|
+
|
|
1331
|
+
it("wedata.v20210820.DescribeKafkaTopicInfo", async function () {
|
|
1332
|
+
try {
|
|
1333
|
+
const data = await client.DescribeKafkaTopicInfo({})
|
|
1334
|
+
expect(data).to.be.ok
|
|
1335
|
+
} catch(error) {
|
|
1336
|
+
expect(error.requestId).to.be.ok
|
|
1337
|
+
expect(error.code).to.be.ok
|
|
1338
|
+
}
|
|
1339
|
+
})
|
|
1340
|
+
|
|
1341
|
+
it("wedata.v20210820.GetIntegrationNodeColumnSchema", async function () {
|
|
1342
|
+
try {
|
|
1343
|
+
const data = await client.GetIntegrationNodeColumnSchema({})
|
|
484
1344
|
expect(data).to.be.ok
|
|
485
1345
|
} catch(error) {
|
|
486
1346
|
expect(error.requestId).to.be.ok
|
|
@@ -508,9 +1368,9 @@ it("wedata.v20210820.DescribeDependTasksNew", async function () {
|
|
|
508
1368
|
}
|
|
509
1369
|
})
|
|
510
1370
|
|
|
511
|
-
it("wedata.v20210820.
|
|
1371
|
+
it("wedata.v20210820.DescribeTaskInstance", async function () {
|
|
512
1372
|
try {
|
|
513
|
-
const data = await client.
|
|
1373
|
+
const data = await client.DescribeTaskInstance({})
|
|
514
1374
|
expect(data).to.be.ok
|
|
515
1375
|
} catch(error) {
|
|
516
1376
|
expect(error.requestId).to.be.ok
|
|
@@ -518,9 +1378,9 @@ it("wedata.v20210820.SubmitCustomFunction", async function () {
|
|
|
518
1378
|
}
|
|
519
1379
|
})
|
|
520
1380
|
|
|
521
|
-
it("wedata.v20210820.
|
|
1381
|
+
it("wedata.v20210820.DescribeRealTimeTaskInstanceNodeInfo", async function () {
|
|
522
1382
|
try {
|
|
523
|
-
const data = await client.
|
|
1383
|
+
const data = await client.DescribeRealTimeTaskInstanceNodeInfo({})
|
|
524
1384
|
expect(data).to.be.ok
|
|
525
1385
|
} catch(error) {
|
|
526
1386
|
expect(error.requestId).to.be.ok
|
|
@@ -528,9 +1388,9 @@ it("wedata.v20210820.SubmitWorkflow", async function () {
|
|
|
528
1388
|
}
|
|
529
1389
|
})
|
|
530
1390
|
|
|
531
|
-
it("wedata.v20210820.
|
|
1391
|
+
it("wedata.v20210820.DescribeIntegrationStatistics", async function () {
|
|
532
1392
|
try {
|
|
533
|
-
const data = await client.
|
|
1393
|
+
const data = await client.DescribeIntegrationStatistics({})
|
|
534
1394
|
expect(data).to.be.ok
|
|
535
1395
|
} catch(error) {
|
|
536
1396
|
expect(error.requestId).to.be.ok
|
|
@@ -548,9 +1408,9 @@ it("wedata.v20210820.BatchModifyOwnersNew", async function () {
|
|
|
548
1408
|
}
|
|
549
1409
|
})
|
|
550
1410
|
|
|
551
|
-
it("wedata.v20210820.
|
|
1411
|
+
it("wedata.v20210820.BatchStopIntegrationTasks", async function () {
|
|
552
1412
|
try {
|
|
553
|
-
const data = await client.
|
|
1413
|
+
const data = await client.BatchStopIntegrationTasks({})
|
|
554
1414
|
expect(data).to.be.ok
|
|
555
1415
|
} catch(error) {
|
|
556
1416
|
expect(error.requestId).to.be.ok
|