ksyun-sdk-node 1.4.9 → 1.5.1

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 (108) hide show
  1. package/dist/service/Aicp/v20240612/index.js +24 -0
  2. package/dist/service/Bws/v20160304/index.js +3 -0
  3. package/dist/service/Cdn/v20250503/index.js +0 -333
  4. package/dist/service/Cdn/v3/index.js +600 -0
  5. package/dist/service/Cen/v20160304/index.js +147 -103
  6. package/dist/service/Clickhouse/v20210101/index.js +204 -19
  7. package/dist/service/Cloud_advisor/v20250610/index.js +81 -0
  8. package/dist/service/Dmp/v20240101/index.js +362 -0
  9. package/dist/service/Dts/v20180108/index.js +386 -0
  10. package/dist/service/Ebs/v20160304/index.js +197 -34
  11. package/dist/service/Eip/v20160304/index.js +79 -1
  12. package/dist/service/Influxdb/v20191010/index.js +504 -0
  13. package/dist/service/Kad/v20161122/index.js +32 -0
  14. package/dist/service/Kce/v20190806/index.js +234 -43
  15. package/dist/service/Kce/v20201231/index.js +2 -2
  16. package/dist/service/Kce/v20230101/index.js +193 -0
  17. package/dist/service/Kce/v20230306/index.js +434 -0
  18. package/dist/service/Kce/v20231115/index.js +65 -0
  19. package/dist/service/Kce2/v20230101/index.js +313 -0
  20. package/dist/service/Kci/v20200702/index.js +336 -0
  21. package/dist/service/Kcm/v20160304/index.js +113 -3
  22. package/dist/service/Kcrs/v20211109/index.js +88 -92
  23. package/dist/service/Kcs/v20160701/index.js +165 -23
  24. package/dist/service/Kcs/v20170401/index.js +1 -36
  25. package/dist/service/Kcs/v20240701/index.js +45 -0
  26. package/dist/service/Kead/v20200101/index.js +37 -8
  27. package/dist/service/Ked/v1/index.js +805 -0
  28. package/dist/service/Ket/v20170101/index.js +42 -0
  29. package/dist/service/Kfw/v20160304/index.js +59 -0
  30. package/dist/service/Kingpay/v1/index.js +44 -0
  31. package/dist/service/Knad/v20230323/index.js +333 -0
  32. package/dist/service/Kpfs/v20240930/index.js +181 -0
  33. package/dist/service/Krds/v20160701/index.js +505 -96
  34. package/dist/service/Krds/v20200825/index.js +48 -8
  35. package/dist/service/Milvus/v20231010/index.js +366 -0
  36. package/dist/service/Mongodb/v20170101/index.js +163 -13
  37. package/dist/service/Mongodb/v20250101/index.js +44 -0
  38. package/dist/service/Pdns/v20160304/index.js +636 -0
  39. package/dist/service/Postgresql/v20181225/index.js +950 -0
  40. package/dist/service/Rabbitmq/v20191017/index.js +107 -6
  41. package/dist/service/Relyt/v20240117/index.js +45 -0
  42. package/dist/service/Sks/v20151101/index.js +2 -1
  43. package/dist/service/Slb/v20160304/index.js +426 -53
  44. package/dist/service/Slb/v20250430/index.js +750 -0
  45. package/dist/service/Sqlserver/v20190425/index.js +872 -0
  46. package/dist/service/Sts/v20151101/index.js +19 -0
  47. package/dist/service/Tagv2/v20200901/index.js +42 -6
  48. package/dist/service/Ter/v20240415/index.js +114 -0
  49. package/dist/service/Tidb/v20210520/index.js +415 -21
  50. package/dist/service/Trade/v20250220/index.js +97 -0
  51. package/dist/service/Trade/v20250321/index.js +93 -0
  52. package/dist/service/Trade/v20250828/index.js +56 -0
  53. package/dist/service/Vpc/v20160304/index.js +32 -0
  54. package/dist/service/Waf/v20200707/index.js +188 -5
  55. package/package.json +1 -1
  56. package/src/service/Aicp/v20240612/index.js +24 -0
  57. package/src/service/Bws/v20160304/index.js +3 -0
  58. package/src/service/Cdn/{v20250503 → v3}/index.js +196 -0
  59. package/src/service/Cen/v20160304/index.js +144 -100
  60. package/src/service/Clickhouse/v20210101/index.js +203 -18
  61. package/src/service/Cloud_advisor/v20250610/index.js +73 -0
  62. package/src/service/Dmp/v20240101/index.js +354 -0
  63. package/src/service/Dts/v20180108/index.js +378 -0
  64. package/src/service/Ebs/v20160304/index.js +194 -31
  65. package/src/service/Eip/v20160304/index.js +79 -1
  66. package/src/service/Influxdb/v20191010/index.js +496 -0
  67. package/src/service/Kad/v20161122/index.js +32 -0
  68. package/src/service/Kce/v20190806/index.js +233 -42
  69. package/src/service/Kce/v20201231/index.js +2 -2
  70. package/src/service/Kce/v20230101/index.js +185 -0
  71. package/src/service/Kce/v20230306/index.js +426 -0
  72. package/src/service/Kce/v20231115/index.js +57 -0
  73. package/src/service/Kce2/v20230101/index.js +305 -0
  74. package/src/service/Kci/v20200702/index.js +328 -0
  75. package/src/service/Kcm/v20160304/index.js +110 -0
  76. package/src/service/Kcrs/v20211109/index.js +87 -91
  77. package/src/service/Kcs/v20160701/index.js +164 -22
  78. package/src/service/Kcs/v20170401/index.js +1 -36
  79. package/src/service/Kcs/v20240701/index.js +37 -0
  80. package/src/service/Kead/v20200101/index.js +37 -8
  81. package/src/service/Ked/v1/index.js +797 -0
  82. package/src/service/Ket/v20170101/index.js +42 -0
  83. package/src/service/Kfw/v20160304/index.js +51 -0
  84. package/src/service/Kingpay/v1/index.js +36 -0
  85. package/src/service/Knad/v20230323/index.js +325 -0
  86. package/src/service/Kpfs/v20240930/index.js +173 -0
  87. package/src/service/Krds/v20160701/index.js +502 -93
  88. package/src/service/Krds/v20200825/index.js +48 -8
  89. package/src/service/Milvus/v20231010/index.js +358 -0
  90. package/src/service/Mongodb/v20170101/index.js +162 -12
  91. package/src/service/Mongodb/v20250101/index.js +36 -0
  92. package/src/service/Pdns/v20160304/index.js +628 -0
  93. package/src/service/Postgresql/v20181225/index.js +942 -0
  94. package/src/service/Rabbitmq/v20191017/index.js +107 -6
  95. package/src/service/Relyt/v20240117/index.js +37 -0
  96. package/src/service/Sks/v20151101/index.js +1 -0
  97. package/src/service/Slb/v20160304/index.js +416 -43
  98. package/src/service/Slb/v20250430/index.js +742 -0
  99. package/src/service/Sqlserver/v20190425/index.js +864 -0
  100. package/src/service/Sts/v20151101/index.js +19 -0
  101. package/src/service/Tagv2/v20200901/index.js +42 -6
  102. package/src/service/Ter/v20240415/index.js +106 -0
  103. package/src/service/Tidb/v20210520/index.js +412 -18
  104. package/src/service/Trade/v20250220/index.js +89 -0
  105. package/src/service/Trade/v20250321/index.js +85 -0
  106. package/src/service/Trade/v20250828/index.js +48 -0
  107. package/src/service/Vpc/v20160304/index.js +32 -0
  108. package/src/service/Waf/v20200707/index.js +187 -4
@@ -0,0 +1,496 @@
1
+ const BaseClient = require("../../../base/BaseClient.js");
2
+
3
+ module.exports = class Client extends BaseClient {
4
+ _baseConfig = {
5
+ protocol: "http://",
6
+ endpoint: "Influxdb.api.ksyun.com",
7
+ config: {
8
+ timeout: 60, //设置timeout
9
+ headers: {
10
+ Accept: "application/json",
11
+ },
12
+ credentials: {
13
+ region: "cn-shanghai-3",
14
+ service: "Influxdb",
15
+ },
16
+ },
17
+ };
18
+ _apiList = {
19
+ CreateInstance: {
20
+ url: "/",
21
+ method: "POST",
22
+ config: {
23
+ query: {
24
+ Version: "2019-10-10",
25
+ Action: "CreateInstance",
26
+ },
27
+ headers: {
28
+ "Content-Type": "application/x-www-form-urlencoded",
29
+ },
30
+ },
31
+ paramsType: {
32
+ ProjectId: "String",
33
+ InstanceName: "String",
34
+ ProductType: "String",
35
+ EngineVersion: "String",
36
+ InstanceType: "String",
37
+ EbsType: "String",
38
+ EbsSize: "Int",
39
+ VpcId: "String",
40
+ SubnetId: "String",
41
+ BillType: "Int",
42
+ },
43
+ },
44
+ DeleteInstance: {
45
+ url: "/",
46
+ method: "POST",
47
+ config: {
48
+ query: {
49
+ Version: "2019-10-10",
50
+ Action: "DeleteInstance",
51
+ },
52
+ headers: {
53
+ "Content-Type": "application/x-www-form-urlencoded",
54
+ },
55
+ },
56
+ paramsType: {
57
+ InstanceIds: "String",
58
+ },
59
+ },
60
+ DescribeInstance: {
61
+ url: "/",
62
+ method: "GET",
63
+ config: {
64
+ query: {
65
+ Version: "2019-10-10",
66
+ Action: "DescribeInstance",
67
+ },
68
+ headers: {
69
+ "Content-Type": "application/json",
70
+ },
71
+ },
72
+ paramsType: {
73
+ InstanceId: "String",
74
+ },
75
+ },
76
+ DescribeInstances: {
77
+ url: "/",
78
+ method: "GET",
79
+ config: {
80
+ query: {
81
+ Version: "2019-10-10",
82
+ Action: "DescribeInstances",
83
+ },
84
+ headers: {
85
+ "Content-Type": "application/json",
86
+ },
87
+ },
88
+ paramsType: {
89
+ InstanceId: "String",
90
+ InstanceName: "String",
91
+ Vip: "String",
92
+ VpcId: "String",
93
+ FuzzySearch: "String",
94
+ },
95
+ },
96
+ DescribeInstanceNode: {
97
+ url: "/",
98
+ method: "GET",
99
+ config: {
100
+ query: {
101
+ Version: "2019-10-10",
102
+ Action: "DescribeInstanceNode",
103
+ },
104
+ headers: {
105
+ "Content-Type": "application/json",
106
+ },
107
+ },
108
+ paramsType: {
109
+ InstanceId: "String",
110
+ },
111
+ },
112
+ RenameInstance: {
113
+ url: "/",
114
+ method: "POST",
115
+ config: {
116
+ query: {
117
+ Version: "2019-10-10",
118
+ Action: "RenameInstance",
119
+ },
120
+ headers: {
121
+ "Content-Type": "application/x-www-form-urlencoded",
122
+ },
123
+ },
124
+ paramsType: {
125
+ InstanceId: "String",
126
+ InstanceName: "String",
127
+ },
128
+ },
129
+ DescribeValidRegions: {
130
+ url: "/",
131
+ method: "GET",
132
+ config: {
133
+ query: {
134
+ Version: "2019-10-10",
135
+ Action: "DescribeValidRegions",
136
+ },
137
+ headers: {
138
+ "Content-Type": "application/json",
139
+ },
140
+ },
141
+ paramsType: {
142
+ Action: "String",
143
+ },
144
+ },
145
+ DescribeSecurityGroup: {
146
+ url: "/",
147
+ method: "GET",
148
+ config: {
149
+ query: {
150
+ Version: "2019-10-10",
151
+ Action: "DescribeSecurityGroup",
152
+ },
153
+ headers: {
154
+ "Content-Type": "application/json",
155
+ },
156
+ },
157
+ paramsType: {
158
+ InstanceId: "String",
159
+ },
160
+ },
161
+ CreateSecurityRule: {
162
+ url: "/",
163
+ method: "POST",
164
+ config: {
165
+ query: {
166
+ Version: "2019-10-10",
167
+ Action: "CreateSecurityRule",
168
+ },
169
+ headers: {
170
+ "Content-Type": "application/x-www-form-urlencoded",
171
+ },
172
+ },
173
+ paramsType: {
174
+ InstanceId: "String",
175
+ SecurityRuleCidrs: "String",
176
+ },
177
+ },
178
+ DeleteSecurityRule: {
179
+ url: "/",
180
+ method: "POST",
181
+ config: {
182
+ query: {
183
+ Version: "2019-10-10",
184
+ Action: "DeleteSecurityRule",
185
+ },
186
+ headers: {
187
+ "Content-Type": "application/x-www-form-urlencoded",
188
+ },
189
+ },
190
+ paramsType: {
191
+ InstanceId: "String",
192
+ SecurityRuleIds: "String",
193
+ },
194
+ },
195
+ DescribeDatabases: {
196
+ url: "/",
197
+ method: "GET",
198
+ config: {
199
+ query: {
200
+ Version: "2019-10-10",
201
+ Action: "DescribeDatabases",
202
+ },
203
+ headers: {
204
+ "Content-Type": "application/json",
205
+ },
206
+ },
207
+ paramsType: {
208
+ InstanceId: "String",
209
+ Offset: "Int",
210
+ Limit: "Int",
211
+ },
212
+ },
213
+ CreateDatabase: {
214
+ url: "/",
215
+ method: "POST",
216
+ config: {
217
+ query: {
218
+ Version: "2019-10-10",
219
+ Action: "CreateDatabase",
220
+ },
221
+ headers: {
222
+ "Content-Type": "application/x-www-form-urlencoded",
223
+ },
224
+ },
225
+ paramsType: {
226
+ InstanceId: "String",
227
+ DatabaseName: "String",
228
+ },
229
+ },
230
+ DeleteDatabase: {
231
+ url: "/",
232
+ method: "POST",
233
+ config: {
234
+ query: {
235
+ Version: "2019-10-10",
236
+ Action: "DeleteDatabase",
237
+ },
238
+ headers: {
239
+ "Content-Type": "application/x-www-form-urlencoded",
240
+ },
241
+ },
242
+ paramsType: {
243
+ InstanceId: "String",
244
+ DatabaseName: "String",
245
+ },
246
+ },
247
+ DescribeRetentionPolicyList: {
248
+ url: "/",
249
+ method: "GET",
250
+ config: {
251
+ query: {
252
+ Version: "2019-10-10",
253
+ Action: "DescribeRetentionPolicyList",
254
+ },
255
+ headers: {
256
+ "Content-Type": "application/json",
257
+ },
258
+ },
259
+ paramsType: {
260
+ InstanceId: "String",
261
+ DatabaseName: "String",
262
+ },
263
+ },
264
+ CreateRetentionPolicy: {
265
+ url: "/",
266
+ method: "POST",
267
+ config: {
268
+ query: {
269
+ Version: "2019-10-10",
270
+ Action: "CreateRetentionPolicy",
271
+ },
272
+ headers: {
273
+ "Content-Type": "application/x-www-form-urlencoded",
274
+ },
275
+ },
276
+ paramsType: {
277
+ InstanceId: "String",
278
+ DatabaseName: "String",
279
+ PolicyName: "String",
280
+ Duration: "String",
281
+ DefaultPolicy: "String",
282
+ },
283
+ },
284
+ DeleteRetentionPolicy: {
285
+ url: "/",
286
+ method: "POST",
287
+ config: {
288
+ query: {
289
+ Version: "2019-10-10",
290
+ Action: "DeleteRetentionPolicy",
291
+ },
292
+ headers: {
293
+ "Content-Type": "application/x-www-form-urlencoded",
294
+ },
295
+ },
296
+ paramsType: {
297
+ InstanceId: "String",
298
+ DatabaseName: "String",
299
+ PolicyName: "String",
300
+ },
301
+ },
302
+ ModifyRetentionPolicy: {
303
+ url: "/",
304
+ method: "POST",
305
+ config: {
306
+ query: {
307
+ Version: "2019-10-10",
308
+ Action: "ModifyRetentionPolicy",
309
+ },
310
+ headers: {
311
+ "Content-Type": "application/x-www-form-urlencoded",
312
+ },
313
+ },
314
+ paramsType: {
315
+ InstanceId: "String",
316
+ DatabaseName: "String",
317
+ PolicyName: "String",
318
+ Duration: "String",
319
+ },
320
+ },
321
+ DescribeMeasurements: {
322
+ url: "/",
323
+ method: "GET",
324
+ config: {
325
+ query: {
326
+ Version: "2019-10-10",
327
+ Action: "DescribeMeasurements",
328
+ },
329
+ headers: {
330
+ "Content-Type": "application/json",
331
+ },
332
+ },
333
+ paramsType: {
334
+ InstanceId: "String",
335
+ DatabaseName: "String",
336
+ },
337
+ },
338
+ DeleteMeasurement: {
339
+ url: "/",
340
+ method: "POST",
341
+ config: {
342
+ query: {
343
+ Version: "2019-10-10",
344
+ Action: "DeleteMeasurement",
345
+ },
346
+ headers: {
347
+ "Content-Type": "application/x-www-form-urlencoded",
348
+ },
349
+ },
350
+ paramsType: {
351
+ InstanceId: "String",
352
+ DatabaseName: "String",
353
+ MeasurementName: "String",
354
+ },
355
+ },
356
+ DescribeAccounts: {
357
+ url: "/",
358
+ method: "GET",
359
+ config: {
360
+ query: {
361
+ Version: "2019-10-10",
362
+ Action: "DescribeAccounts",
363
+ },
364
+ headers: {
365
+ "Content-Type": "application/json",
366
+ },
367
+ },
368
+ paramsType: {
369
+ InstanceId: "String",
370
+ },
371
+ },
372
+ CreateAccount: {
373
+ url: "/",
374
+ method: "POST",
375
+ config: {
376
+ query: {
377
+ Version: "2019-10-10",
378
+ Action: "CreateAccount",
379
+ },
380
+ headers: {
381
+ "Content-Type": "application/x-www-form-urlencoded",
382
+ },
383
+ },
384
+ paramsType: {
385
+ InstanceId: "String",
386
+ AccountName: "String",
387
+ AccountPassword: "String",
388
+ },
389
+ },
390
+ DeleteAccount: {
391
+ url: "/",
392
+ method: "POST",
393
+ config: {
394
+ query: {
395
+ Version: "2019-10-10",
396
+ Action: "DeleteAccount",
397
+ },
398
+ headers: {
399
+ "Content-Type": "application/x-www-form-urlencoded",
400
+ },
401
+ },
402
+ paramsType: {
403
+ InstanceId: "String",
404
+ AccountName: "String",
405
+ },
406
+ },
407
+ DescribeAccountPrivileges: {
408
+ url: "/",
409
+ method: "GET",
410
+ config: {
411
+ query: {
412
+ Version: "2019-10-10",
413
+ Action: "DescribeAccountPrivileges",
414
+ },
415
+ headers: {
416
+ "Content-Type": "application/json",
417
+ },
418
+ },
419
+ paramsType: {
420
+ InstanceId: "String",
421
+ AccountName: "String",
422
+ },
423
+ },
424
+ GrantAccountPrivilege: {
425
+ url: "/",
426
+ method: "POST",
427
+ config: {
428
+ query: {
429
+ Version: "2019-10-10",
430
+ Action: "GrantAccountPrivilege",
431
+ },
432
+ headers: {
433
+ "Content-Type": "application/x-www-form-urlencoded",
434
+ },
435
+ },
436
+ paramsType: {
437
+ InstanceId: "String",
438
+ AccountName: "String",
439
+ DatabaseName: "String",
440
+ AccountPrivilege: "String",
441
+ },
442
+ },
443
+ RevokeAccountPrivilege: {
444
+ url: "/",
445
+ method: "POST",
446
+ config: {
447
+ query: {
448
+ Version: "2019-10-10",
449
+ Action: "RevokeAccountPrivilege",
450
+ },
451
+ headers: {
452
+ "Content-Type": "application/x-www-form-urlencoded",
453
+ },
454
+ },
455
+ paramsType: {
456
+ InstanceId: "String",
457
+ AccountName: "String",
458
+ DatabaseName: "String",
459
+ },
460
+ },
461
+ ResetAccountPassword: {
462
+ url: "/",
463
+ method: "POST",
464
+ config: {
465
+ query: {
466
+ Version: "2019-10-10",
467
+ Action: "ResetAccountPassword",
468
+ },
469
+ headers: {
470
+ "Content-Type": "application/x-www-form-urlencoded",
471
+ },
472
+ },
473
+ paramsType: {
474
+ InstanceId: "String",
475
+ AccountName: "String",
476
+ AccountPassword: "String",
477
+ },
478
+ },
479
+ DescribeAccountDetailList: {
480
+ url: "/",
481
+ method: "GET",
482
+ config: {
483
+ query: {
484
+ Version: "2019-10-10",
485
+ Action: "DescribeAccountDetailList",
486
+ },
487
+ headers: {
488
+ "Content-Type": "application/json",
489
+ },
490
+ },
491
+ paramsType: {
492
+ Action: "String",
493
+ },
494
+ },
495
+ };
496
+ };
@@ -118,5 +118,37 @@ module.exports = class Client extends BaseClient {
118
118
  ForwardSourceId: "Filter",
119
119
  },
120
120
  },
121
+ GetAttackLog: {
122
+ url: "/",
123
+ method: "GET",
124
+ config: {
125
+ query: {
126
+ Version: "2016-11-22",
127
+ Action: "GetAttackLog",
128
+ },
129
+ headers: {
130
+ "Content-Type": "application/json",
131
+ },
132
+ },
133
+ paramsType: {},
134
+ },
135
+ DescribeOverview: {
136
+ url: "/",
137
+ method: "GET",
138
+ config: {
139
+ query: {
140
+ Version: "2016-11-22",
141
+ Action: "DescribeOverview",
142
+ },
143
+ headers: {
144
+ "Content-Type": "application/json",
145
+ },
146
+ },
147
+ paramsType: {
148
+ KadId: "String",
149
+ StartTime: "String",
150
+ EndTime: "String",
151
+ },
152
+ },
121
153
  };
122
154
  };