ksyun-sdk-node 1.0.5 → 1.2.4

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.
Files changed (99) hide show
  1. package/dist/base/BaseClient.js +90 -55
  2. package/dist/index.js +9 -12
  3. package/dist/lib/fetch.js +4 -5
  4. package/dist/lib/sign.js +31 -33
  5. package/dist/lib/signautreV4.js +167 -0
  6. package/dist/service/Actiontrail/v20190401/index.js +4 -7
  7. package/dist/service/Bill/v20180601/index.js +11 -50
  8. package/dist/service/Bill/v20220601/index.js +64 -0
  9. package/dist/service/Bill_union/v20200101/index.js +48 -10
  10. package/dist/service/Bill_union/v20221222/index.js +142 -0
  11. package/dist/service/Bws/v20160304/index.js +23 -6
  12. package/dist/service/Cdn/v20160901/index.js +42 -0
  13. package/dist/service/Cdn/v20200630/index.js +410 -0
  14. package/dist/service/Cdn/v20200901/index.js +162 -0
  15. package/dist/service/Cen/v20160304/index.js +460 -0
  16. package/dist/service/Clickhouse/v20210101/index.js +546 -0
  17. package/dist/service/Ebs/v20160304/index.js +3 -6
  18. package/dist/service/Eip/v20160304/index.js +3 -6
  19. package/dist/service/Epc/v20151101/index.js +36 -60
  20. package/dist/service/Iam/v20151101/index.js +61 -7
  21. package/dist/service/Kad/v20161122/index.js +3 -6
  22. package/dist/service/Kce/v20180314/index.js +320 -0
  23. package/dist/service/Kce/v20190806/index.js +482 -0
  24. package/dist/service/Kce/v20201231/index.js +63 -0
  25. package/dist/service/Kcf/v20211215/index.js +203 -0
  26. package/dist/service/Kcm/v20160304/index.js +120 -0
  27. package/dist/service/Kcrs/v20211109/index.js +851 -0
  28. package/dist/service/Kcs/v20160701/index.js +1106 -0
  29. package/dist/service/Kcs/v20170401/index.js +81 -0
  30. package/dist/service/Kead/v20200101/index.js +3 -6
  31. package/dist/service/Kec/v20160304/index.js +107 -42
  32. package/dist/service/Ket/v20170101/index.js +141 -0
  33. package/dist/service/Kkms/v20160304/index.js +167 -0
  34. package/dist/service/Klog/v20200731/index.js +804 -0
  35. package/dist/service/Kls/v20170101/index.js +194 -0
  36. package/dist/service/Krds/v20160701/index.js +1302 -0
  37. package/dist/service/Krds/v20200825/index.js +174 -0
  38. package/dist/service/Memcached/v20180627/index.js +249 -0
  39. package/dist/service/Mongodb/v20170101/index.js +22 -7
  40. package/dist/service/Monitor/v20100525/index.js +70 -0
  41. package/dist/service/Monitor/v20181114/index.js +49 -0
  42. package/dist/service/Monitor/v20210101/index.js +179 -0
  43. package/dist/service/Monitor/v20220101/index.js +68 -0
  44. package/dist/service/Rabbitmq/v20191017/index.js +242 -0
  45. package/dist/service/Resourcemanager/v20210320/index.js +3 -6
  46. package/dist/service/Sks/v20151101/index.js +3 -6
  47. package/dist/service/Slb/v20160304/index.js +517 -8
  48. package/dist/service/Sts/v20151101/index.js +4 -7
  49. package/dist/service/Tagv2/v20200901/index.js +174 -0
  50. package/dist/service/Tidb/v20210520/index.js +363 -0
  51. package/dist/service/Trade/v20200114/index.js +3 -6
  52. package/dist/service/Trade/v20200831/index.js +3 -6
  53. package/dist/service/Vpc/v20160304/index.js +239 -7
  54. package/dist/service/Waf/v20200707/index.js +248 -0
  55. package/package.json +1 -1
  56. package/src/base/BaseClient.js +85 -36
  57. package/src/lib/signautreV4.js +166 -0
  58. package/src/service/Actiontrail/v20190401/index.js +1 -1
  59. package/src/service/Bill/v20180601/index.js +6 -46
  60. package/src/service/Bill/v20220601/index.js +56 -0
  61. package/src/service/Bill_union/v20200101/index.js +37 -0
  62. package/src/service/Bill_union/v20221222/index.js +134 -0
  63. package/src/service/Bws/v20160304/index.js +20 -0
  64. package/src/service/{Bill_union/v20211209 → Cdn/v20160901}/index.js +6 -6
  65. package/src/service/Cdn/v20200630/index.js +402 -0
  66. package/src/service/Cdn/v20200901/index.js +154 -0
  67. package/src/service/Cen/v20160304/index.js +452 -0
  68. package/src/service/Clickhouse/v20210101/index.js +538 -0
  69. package/src/service/Ebs/v20160304/index.js +1 -4
  70. package/src/service/Epc/v20151101/index.js +26 -50
  71. package/src/service/Iam/v20151101/index.js +57 -0
  72. package/src/service/Kce/v20180314/index.js +312 -0
  73. package/src/service/Kce/v20190806/index.js +474 -0
  74. package/src/service/Kce/v20201231/index.js +55 -0
  75. package/src/service/Kcf/v20211215/index.js +197 -0
  76. package/src/service/Kcm/v20160304/index.js +112 -0
  77. package/src/service/Kcrs/v20211109/index.js +857 -0
  78. package/src/service/Kcs/v20160701/index.js +1101 -0
  79. package/src/service/Kcs/v20170401/index.js +73 -0
  80. package/src/service/Kec/v20160304/index.js +86 -22
  81. package/src/service/Ket/v20170101/index.js +133 -0
  82. package/src/service/Kkms/v20160304/index.js +159 -0
  83. package/src/service/Klog/v20200731/index.js +810 -0
  84. package/src/service/Kls/v20170101/index.js +186 -0
  85. package/src/service/Krds/v20160701/index.js +1296 -0
  86. package/src/service/Krds/v20200825/index.js +166 -0
  87. package/src/service/Memcached/v20180627/index.js +248 -0
  88. package/src/service/Mongodb/v20170101/index.js +18 -0
  89. package/src/service/Monitor/v20100525/index.js +62 -0
  90. package/src/service/{Slb/v20171210 → Monitor/v20181114}/index.js +13 -11
  91. package/src/service/Monitor/v20210101/index.js +172 -0
  92. package/src/service/Monitor/v20220101/index.js +60 -0
  93. package/src/service/Rabbitmq/v20191017/index.js +234 -0
  94. package/src/service/Slb/v20160304/index.js +512 -0
  95. package/src/service/Sts/v20151101/index.js +1 -1
  96. package/src/service/Tagv2/v20200901/index.js +166 -0
  97. package/src/service/Tidb/v20210520/index.js +355 -0
  98. package/src/service/Vpc/v20160304/index.js +235 -0
  99. package/src/service/Waf/v20200707/index.js +240 -0
@@ -0,0 +1,804 @@
1
+ "use strict";
2
+
3
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
4
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
5
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
6
+ const BaseClient = require("../../../base/BaseClient.js");
7
+ module.exports = class Client extends BaseClient {
8
+ constructor(...args) {
9
+ super(...args);
10
+ _defineProperty(this, "_baseConfig", {
11
+ 'protocol': 'http://',
12
+ 'endpoint': 'klog.api.ksyun.com',
13
+ 'config': {
14
+ 'timeout': 60,
15
+ //设置timeout
16
+ 'headers': {
17
+ 'Accept': 'application/json'
18
+ },
19
+ 'credentials': {
20
+ 'region': 'cn-shanghai-3',
21
+ 'service': 'klog'
22
+ }
23
+ }
24
+ });
25
+ _defineProperty(this, "_apiList", {
26
+ 'CreateProject': {
27
+ 'url': '/',
28
+ 'method': 'POST',
29
+ 'config': {
30
+ 'query': {
31
+ 'Version': '2020-07-31',
32
+ 'Action': 'CreateProject'
33
+ },
34
+ 'headers': {
35
+ 'Content-Type': 'application/json'
36
+ }
37
+ },
38
+ 'paramsType': {
39
+ 'ProjectName': 'String',
40
+ 'Description': 'String',
41
+ 'Region': 'String',
42
+ 'IamProjectId': 'Int',
43
+ 'IamProjectName': 'String'
44
+ }
45
+ },
46
+ 'DescribeProject': {
47
+ 'url': '/',
48
+ 'method': 'POST',
49
+ 'config': {
50
+ 'query': {
51
+ 'Version': '2020-07-31',
52
+ 'Action': 'DescribeProject'
53
+ },
54
+ 'headers': {
55
+ 'Content-Type': 'application/json'
56
+ }
57
+ },
58
+ 'paramsType': {
59
+ 'ProjectName': 'String'
60
+ }
61
+ },
62
+ 'UpdateProject': {
63
+ 'url': '/',
64
+ 'method': 'POST',
65
+ 'config': {
66
+ 'query': {
67
+ 'Version': '2020-07-31',
68
+ 'Action': 'UpdateProject'
69
+ },
70
+ 'headers': {
71
+ 'Content-Type': 'application/json'
72
+ }
73
+ },
74
+ 'paramsType': {
75
+ 'ProjectName': 'String',
76
+ 'Description': 'String',
77
+ 'IamProjectId': 'Int'
78
+ }
79
+ },
80
+ 'DeleteProject': {
81
+ 'url': '/',
82
+ 'method': 'POST',
83
+ 'config': {
84
+ 'query': {
85
+ 'Version': '2020-07-31',
86
+ 'Action': 'DeleteProject'
87
+ },
88
+ 'headers': {
89
+ 'Content-Type': 'application/json'
90
+ }
91
+ },
92
+ 'paramsType': {
93
+ 'ProjectName': 'String'
94
+ }
95
+ },
96
+ 'ListProjects': {
97
+ 'url': '/',
98
+ 'method': 'POST',
99
+ 'config': {
100
+ 'query': {
101
+ 'Version': '2020-07-31',
102
+ 'Action': 'ListProjects'
103
+ },
104
+ 'headers': {
105
+ 'Content-Type': 'application/json'
106
+ }
107
+ },
108
+ 'paramsType': {
109
+ 'Page': 'Int',
110
+ 'Size': 'Int'
111
+ }
112
+ },
113
+ 'CreateLogPool': {
114
+ 'url': '/',
115
+ 'method': 'POST',
116
+ 'config': {
117
+ 'query': {
118
+ 'Version': '2020-07-31',
119
+ 'Action': 'CreateLogPool'
120
+ },
121
+ 'headers': {
122
+ 'Content-Type': 'application/json'
123
+ }
124
+ },
125
+ 'paramsType': {
126
+ 'ProjectName': 'String',
127
+ 'LogPoolName': 'String',
128
+ 'RetentionDays': 'Int',
129
+ 'Partitions': 'Int',
130
+ 'Description': 'String'
131
+ }
132
+ },
133
+ 'DescribeLogPool': {
134
+ 'url': '/',
135
+ 'method': 'POST',
136
+ 'config': {
137
+ 'query': {
138
+ 'Version': '2020-07-31',
139
+ 'Action': 'DescribeLogPool'
140
+ },
141
+ 'headers': {
142
+ 'Content-Type': 'application/json'
143
+ }
144
+ },
145
+ 'paramsType': {
146
+ 'ProjectName': 'String',
147
+ 'LogPoolName': 'String'
148
+ }
149
+ },
150
+ 'UpdateLogPool': {
151
+ 'url': '/',
152
+ 'method': 'POST',
153
+ 'config': {
154
+ 'query': {
155
+ 'Version': '2020-07-31',
156
+ 'Action': 'UpdateLogPool'
157
+ },
158
+ 'headers': {
159
+ 'Content-Type': 'application/json'
160
+ }
161
+ },
162
+ 'paramsType': {
163
+ 'ProjectName': 'String',
164
+ 'LogPoolName': 'String',
165
+ 'RetentionDays': 'Int',
166
+ 'Partitions': 'Int',
167
+ 'Description': 'String'
168
+ }
169
+ },
170
+ 'DeleteLogPool': {
171
+ 'url': '/',
172
+ 'method': 'POST',
173
+ 'config': {
174
+ 'query': {
175
+ 'Version': '2020-07-31',
176
+ 'Action': 'DeleteLogPool'
177
+ },
178
+ 'headers': {
179
+ 'Content-Type': 'application/json'
180
+ }
181
+ },
182
+ 'paramsType': {
183
+ 'ProjectName': 'String',
184
+ 'LogPoolName': 'String'
185
+ }
186
+ },
187
+ 'ListLogPools': {
188
+ 'url': '/',
189
+ 'method': 'POST',
190
+ 'config': {
191
+ 'query': {
192
+ 'Version': '2020-07-31',
193
+ 'Action': 'ListLogPools'
194
+ },
195
+ 'headers': {
196
+ 'Content-Type': 'application/json'
197
+ }
198
+ },
199
+ 'paramsType': {
200
+ 'ProjectName': 'String',
201
+ 'Page': 'Int',
202
+ 'Size': 'Int',
203
+ 'LogPoolName': 'String'
204
+ }
205
+ },
206
+ 'PutLogs': {
207
+ 'url': '/',
208
+ 'method': 'POST',
209
+ 'config': {
210
+ 'query': {
211
+ 'Version': '2020-07-31',
212
+ 'Action': 'PutLogs'
213
+ },
214
+ 'headers': {
215
+ 'Content-Type': 'application/json'
216
+ }
217
+ },
218
+ 'paramsType': {
219
+ 'ProjectName': 'String',
220
+ 'LogPoolName': 'String',
221
+ 'Time': 'String',
222
+ 'Contents': 'String',
223
+ 'Key': 'String',
224
+ 'Value': 'String',
225
+ 'Logs': 'String',
226
+ 'Filename': 'String',
227
+ 'Source': 'String'
228
+ }
229
+ },
230
+ 'GetLogs': {
231
+ 'url': '/',
232
+ 'method': 'POST',
233
+ 'config': {
234
+ 'query': {
235
+ 'Version': '2020-07-31',
236
+ 'Action': 'GetLogs'
237
+ },
238
+ 'headers': {
239
+ 'Content-Type': 'application/json'
240
+ }
241
+ },
242
+ 'paramsType': {
243
+ 'ProjectName': 'String',
244
+ 'LogPoolName': 'String',
245
+ 'From': 'Int',
246
+ 'To': 'Int',
247
+ 'Query': 'String',
248
+ 'LogPoolId': 'String',
249
+ 'HitsOpen': 'Boolean',
250
+ 'Interval': 'String',
251
+ 'SortBy': 'String',
252
+ 'Offset': 'Int',
253
+ 'Size': 'Int'
254
+ }
255
+ },
256
+ 'CreateQuickSearch': {
257
+ 'url': '/',
258
+ 'method': 'POST',
259
+ 'config': {
260
+ 'query': {
261
+ 'Version': '2020-07-31',
262
+ 'Action': 'CreateQuickSearch'
263
+ },
264
+ 'headers': {
265
+ 'Content-Type': 'application/json'
266
+ }
267
+ },
268
+ 'paramsType': {
269
+ 'ProjectName': 'String',
270
+ 'LogPoolName': 'String',
271
+ 'QuickSearchName': 'String',
272
+ 'Description': 'String',
273
+ 'TimeRange': 'String',
274
+ 'Query': 'String'
275
+ }
276
+ },
277
+ 'ListQuickSearchs': {
278
+ 'url': '/',
279
+ 'method': 'POST',
280
+ 'config': {
281
+ 'query': {
282
+ 'Version': '2020-07-31',
283
+ 'Action': 'ListQuickSearchs'
284
+ },
285
+ 'headers': {
286
+ 'Content-Type': 'application/json'
287
+ }
288
+ },
289
+ 'paramsType': {
290
+ 'ProjectName': 'String',
291
+ 'LogPoolName': 'String',
292
+ 'Filter': 'String',
293
+ 'Page': 'Int',
294
+ 'Size': 'Int'
295
+ }
296
+ },
297
+ 'GetQuickSearch': {
298
+ 'url': '/',
299
+ 'method': 'POST',
300
+ 'config': {
301
+ 'query': {
302
+ 'Version': '2020-07-31',
303
+ 'Action': 'GetQuickSearch'
304
+ },
305
+ 'headers': {
306
+ 'Content-Type': 'application/json'
307
+ }
308
+ },
309
+ 'paramsType': {
310
+ 'ProjectName': 'String',
311
+ 'LogPoolName': 'String',
312
+ 'QuickSearchName': 'String'
313
+ }
314
+ },
315
+ 'DeleteQuickSearchs': {
316
+ 'url': '/',
317
+ 'method': 'POST',
318
+ 'config': {
319
+ 'query': {
320
+ 'Version': '2020-07-31',
321
+ 'Action': 'DeleteQuickSearchs'
322
+ },
323
+ 'headers': {
324
+ 'Content-Type': 'application/json'
325
+ }
326
+ },
327
+ 'paramsType': {
328
+ 'ProjectName': 'String',
329
+ 'LogPoolName': 'String',
330
+ 'QuickSearchName': 'String'
331
+ }
332
+ },
333
+ 'CreateDashboard': {
334
+ 'url': '/',
335
+ 'method': 'POST',
336
+ 'config': {
337
+ 'query': {
338
+ 'Version': '2020-07-31',
339
+ 'Action': 'CreateDashboard'
340
+ },
341
+ 'headers': {
342
+ 'Content-Type': 'application/json'
343
+ }
344
+ },
345
+ 'paramsType': {
346
+ 'ProjectName': 'String',
347
+ 'DashboardName': 'String'
348
+ }
349
+ },
350
+ 'DeleteDashboard': {
351
+ 'url': '/',
352
+ 'method': 'POST',
353
+ 'config': {
354
+ 'query': {
355
+ 'Version': '2020-07-31',
356
+ 'Action': 'DeleteDashboard'
357
+ },
358
+ 'headers': {
359
+ 'Content-Type': 'application/json'
360
+ }
361
+ },
362
+ 'paramsType': {
363
+ 'DashboardId': 'String'
364
+ }
365
+ },
366
+ 'DescribeDashboard': {
367
+ 'url': '/',
368
+ 'method': 'POST',
369
+ 'config': {
370
+ 'query': {
371
+ 'Version': '2020-07-31',
372
+ 'Action': 'DescribeDashboard'
373
+ },
374
+ 'headers': {
375
+ 'Content-Type': 'application/json'
376
+ }
377
+ },
378
+ 'paramsType': {
379
+ 'DashboardId': 'String'
380
+ }
381
+ },
382
+ 'ListDashboards': {
383
+ 'url': '/',
384
+ 'method': 'POST',
385
+ 'config': {
386
+ 'query': {
387
+ 'Version': '2020-07-31',
388
+ 'Action': 'ListDashboards'
389
+ },
390
+ 'headers': {
391
+ 'Content-Type': 'application/json'
392
+ }
393
+ },
394
+ 'paramsType': {
395
+ 'ProjectName': 'String',
396
+ 'Page': 'Int',
397
+ 'Size': 'Int'
398
+ }
399
+ },
400
+ 'CreateChart': {
401
+ 'url': '/',
402
+ 'method': 'POST',
403
+ 'config': {
404
+ 'query': {
405
+ 'Version': '2020-07-31',
406
+ 'Action': 'CreateChart'
407
+ },
408
+ 'headers': {
409
+ 'Content-Type': 'application/json'
410
+ }
411
+ },
412
+ 'paramsType': {
413
+ 'DashboardId': 'String',
414
+ 'ChartName': 'String',
415
+ 'ChartType': 'String',
416
+ 'Search': 'String',
417
+ 'Display': 'String',
418
+ 'LogPoolName': 'String',
419
+ 'TimeRange': 'String',
420
+ 'Query': 'String'
421
+ }
422
+ },
423
+ 'DeleteChart': {
424
+ 'url': '/',
425
+ 'method': 'POST',
426
+ 'config': {
427
+ 'query': {
428
+ 'Version': '2020-07-31',
429
+ 'Action': 'DeleteChart'
430
+ },
431
+ 'headers': {
432
+ 'Content-Type': 'application/json'
433
+ }
434
+ },
435
+ 'paramsType': {
436
+ 'ChartId': 'String'
437
+ }
438
+ },
439
+ 'GetDashboardNamesByIds': {
440
+ 'url': '/',
441
+ 'method': 'POST',
442
+ 'config': {
443
+ 'query': {
444
+ 'Version': '2020-07-31',
445
+ 'Action': 'GetDashboardNamesByIds'
446
+ },
447
+ 'headers': {
448
+ 'Content-Type': 'application/json'
449
+ }
450
+ },
451
+ 'paramsType': {
452
+ 'ProjectName': 'String',
453
+ 'DashboardIds': 'String'
454
+ }
455
+ },
456
+ 'GetChartNamesByIds': {
457
+ 'url': '/',
458
+ 'method': 'POST',
459
+ 'config': {
460
+ 'query': {
461
+ 'Version': '2020-07-31',
462
+ 'Action': 'GetChartNamesByIds'
463
+ },
464
+ 'headers': {
465
+ 'Content-Type': 'application/json'
466
+ }
467
+ },
468
+ 'paramsType': {
469
+ 'ProjectName': 'String',
470
+ 'ChartIds': 'String'
471
+ }
472
+ },
473
+ 'UpdateDashboard': {
474
+ 'url': '/',
475
+ 'method': 'POST',
476
+ 'config': {
477
+ 'query': {
478
+ 'Version': '2020-07-31',
479
+ 'Action': 'UpdateDashboard'
480
+ },
481
+ 'headers': {
482
+ 'Content-Type': 'application/json'
483
+ }
484
+ },
485
+ 'paramsType': {
486
+ 'DashboardId': 'String',
487
+ 'DashboardName': 'String'
488
+ }
489
+ },
490
+ 'GetUsage': {
491
+ 'url': '/',
492
+ 'method': 'POST',
493
+ 'config': {
494
+ 'query': {
495
+ 'Version': '2020-07-31',
496
+ 'Action': 'GetUsage'
497
+ },
498
+ 'headers': {
499
+ 'Content-Type': 'application/json'
500
+ }
501
+ },
502
+ 'paramsType': {
503
+ 'Projects': 'String',
504
+ 'Metrics': 'String',
505
+ 'From': 'String',
506
+ 'To': 'String'
507
+ }
508
+ },
509
+ 'SetIndexTemplate': {
510
+ 'url': '/',
511
+ 'method': 'POST',
512
+ 'config': {
513
+ 'query': {
514
+ 'Version': '2020-07-31',
515
+ 'Action': 'SetIndexTemplate'
516
+ },
517
+ 'headers': {
518
+ 'Content-Type': 'application/json'
519
+ }
520
+ },
521
+ 'paramsType': {
522
+ 'ProjectName': 'String',
523
+ 'LogPoolName': 'String',
524
+ 'IndexStatus': 'Boolean',
525
+ 'FullTextIndex': 'String',
526
+ 'IndexFields': 'String',
527
+ 'Lowercase': 'Boolean',
528
+ 'Separator': 'String',
529
+ 'FieldName': 'String',
530
+ 'FieldType': 'String',
531
+ 'FieldAlias': 'String',
532
+ 'SeparatorStatus': 'Boolean'
533
+ }
534
+ },
535
+ 'GetIndexTemplate': {
536
+ 'url': '/',
537
+ 'method': 'POST',
538
+ 'config': {
539
+ 'query': {
540
+ 'Version': '2020-07-31',
541
+ 'Action': 'GetIndexTemplate'
542
+ },
543
+ 'headers': {
544
+ 'Content-Type': 'application/json'
545
+ }
546
+ },
547
+ 'paramsType': {
548
+ 'ProjectName': 'String',
549
+ 'LogPoolName': 'String'
550
+ }
551
+ },
552
+ 'CreateDownloadTask': {
553
+ 'url': '/',
554
+ 'method': 'POST',
555
+ 'config': {
556
+ 'query': {
557
+ 'Version': '2020-07-31',
558
+ 'Action': 'CreateDownloadTask'
559
+ },
560
+ 'headers': {
561
+ 'Content-Type': 'application/json'
562
+ }
563
+ },
564
+ 'paramsType': {
565
+ 'From': 'String',
566
+ 'To': 'String',
567
+ 'LogPoolName': 'String',
568
+ 'ProjectName': 'String'
569
+ }
570
+ },
571
+ 'ListDownloadTasks': {
572
+ 'url': '/',
573
+ 'method': 'POST',
574
+ 'config': {
575
+ 'query': {
576
+ 'Version': '2020-07-31',
577
+ 'Action': 'ListDownloadTasks'
578
+ },
579
+ 'headers': {
580
+ 'Content-Type': 'application/json'
581
+ }
582
+ },
583
+ 'paramsType': {
584
+ 'Page': 'String',
585
+ 'Size': 'String',
586
+ 'ProjectName': 'String'
587
+ }
588
+ },
589
+ 'GetDownloadUrls': {
590
+ 'url': '/',
591
+ 'method': 'POST',
592
+ 'config': {
593
+ 'query': {
594
+ 'Version': '2020-07-31',
595
+ 'Action': 'GetDownloadUrls'
596
+ },
597
+ 'headers': {
598
+ 'Content-Type': 'application/json'
599
+ }
600
+ },
601
+ 'paramsType': {
602
+ 'DownloadID': 'String',
603
+ 'ProjectName': 'String'
604
+ }
605
+ },
606
+ 'GetMonitorData': {
607
+ 'url': '/',
608
+ 'method': 'POST',
609
+ 'config': {
610
+ 'query': {
611
+ 'Version': '2020-07-31',
612
+ 'Action': 'GetMonitorData'
613
+ },
614
+ 'headers': {
615
+ 'Content-Type': 'application/json'
616
+ }
617
+ },
618
+ 'paramsType': {}
619
+ },
620
+ 'DescribeLogErrorReason': {
621
+ 'url': '/',
622
+ 'method': 'POST',
623
+ 'config': {
624
+ 'query': {
625
+ 'Version': '2020-07-31',
626
+ 'Action': 'DescribeLogErrorReason'
627
+ },
628
+ 'headers': {
629
+ 'Content-Type': 'application/json'
630
+ }
631
+ },
632
+ 'paramsType': {}
633
+ },
634
+ 'DeleteEtlTask': {
635
+ 'url': '/',
636
+ 'method': 'POST',
637
+ 'config': {
638
+ 'query': {
639
+ 'Version': '2020-07-31',
640
+ 'Action': 'DeleteEtlTask'
641
+ },
642
+ 'headers': {
643
+ 'Content-Type': 'application/x-www-form-urlencoded'
644
+ }
645
+ },
646
+ 'paramsType': {}
647
+ },
648
+ 'StopEtlTask': {
649
+ 'url': '/',
650
+ 'method': 'POST',
651
+ 'config': {
652
+ 'query': {
653
+ 'Version': '2020-07-31',
654
+ 'Action': 'StopEtlTask'
655
+ },
656
+ 'headers': {
657
+ 'Content-Type': 'application/x-www-form-urlencoded'
658
+ }
659
+ },
660
+ 'paramsType': {}
661
+ },
662
+ 'StartEtlTask': {
663
+ 'url': '/',
664
+ 'method': 'POST',
665
+ 'config': {
666
+ 'query': {
667
+ 'Version': '2020-07-31',
668
+ 'Action': 'StartEtlTask'
669
+ },
670
+ 'headers': {
671
+ 'Content-Type': 'application/x-www-form-urlencoded'
672
+ }
673
+ },
674
+ 'paramsType': {}
675
+ },
676
+ 'ListEtlTasks': {
677
+ 'url': '/',
678
+ 'method': 'POST',
679
+ 'config': {
680
+ 'query': {
681
+ 'Version': '2020-07-31',
682
+ 'Action': 'ListEtlTasks'
683
+ },
684
+ 'headers': {
685
+ 'Content-Type': 'application/x-www-form-urlencoded'
686
+ }
687
+ },
688
+ 'paramsType': {}
689
+ },
690
+ 'DescribeEtlTask': {
691
+ 'url': '/',
692
+ 'method': 'POST',
693
+ 'config': {
694
+ 'query': {
695
+ 'Version': '2020-07-31',
696
+ 'Action': 'DescribeEtlTask'
697
+ },
698
+ 'headers': {
699
+ 'Content-Type': 'application/x-www-form-urlencoded'
700
+ }
701
+ },
702
+ 'paramsType': {}
703
+ },
704
+ 'ModifyEtlTask': {
705
+ 'url': '/',
706
+ 'method': 'POST',
707
+ 'config': {
708
+ 'query': {
709
+ 'Version': '2020-07-31',
710
+ 'Action': 'ModifyEtlTask'
711
+ },
712
+ 'headers': {
713
+ 'Content-Type': 'application/x-www-form-urlencoded'
714
+ }
715
+ },
716
+ 'paramsType': {}
717
+ },
718
+ 'CreateEtlTask': {
719
+ 'url': '/',
720
+ 'method': 'POST',
721
+ 'config': {
722
+ 'query': {
723
+ 'Version': '2020-07-31',
724
+ 'Action': 'CreateEtlTask'
725
+ },
726
+ 'headers': {
727
+ 'Content-Type': 'application/x-www-form-urlencoded'
728
+ }
729
+ },
730
+ 'paramsType': {}
731
+ },
732
+ 'DescribeEtlException': {
733
+ 'url': '/',
734
+ 'method': 'POST',
735
+ 'config': {
736
+ 'query': {
737
+ 'Version': '2020-07-31',
738
+ 'Action': 'DescribeEtlException'
739
+ },
740
+ 'headers': {
741
+ 'Content-Type': 'application/x-www-form-urlencoded'
742
+ }
743
+ },
744
+ 'paramsType': {}
745
+ },
746
+ 'DescribeEtlStats': {
747
+ 'url': '/',
748
+ 'method': 'POST',
749
+ 'config': {
750
+ 'query': {
751
+ 'Version': '2020-07-31',
752
+ 'Action': 'DescribeEtlStats'
753
+ },
754
+ 'headers': {
755
+ 'Content-Type': 'application/x-www-form-urlencoded'
756
+ }
757
+ },
758
+ 'paramsType': {}
759
+ },
760
+ 'ExecuteEtlDemo': {
761
+ 'url': '/',
762
+ 'method': 'POST',
763
+ 'config': {
764
+ 'query': {
765
+ 'Version': '2020-07-31',
766
+ 'Action': 'ExecuteEtlDemo'
767
+ },
768
+ 'headers': {
769
+ 'Content-Type': 'application/x-www-form-urlencoded'
770
+ }
771
+ },
772
+ 'paramsType': {}
773
+ },
774
+ 'GetUserRegion': {
775
+ 'url': '/',
776
+ 'method': 'POST',
777
+ 'config': {
778
+ 'query': {
779
+ 'Version': '2020-07-31',
780
+ 'Action': 'GetUserRegion'
781
+ },
782
+ 'headers': {
783
+ 'Content-Type': 'application/x-www-form-urlencoded'
784
+ }
785
+ },
786
+ 'paramsType': {}
787
+ },
788
+ 'GetClustersByType': {
789
+ 'url': '/',
790
+ 'method': 'POST',
791
+ 'config': {
792
+ 'query': {
793
+ 'Version': '2020-07-31',
794
+ 'Action': 'GetClustersByType'
795
+ },
796
+ 'headers': {
797
+ 'Content-Type': 'application/x-www-form-urlencoded'
798
+ }
799
+ },
800
+ 'paramsType': {}
801
+ }
802
+ });
803
+ }
804
+ };