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,864 @@
1
+ const BaseClient = require("../../../base/BaseClient.js");
2
+
3
+ module.exports = class Client extends BaseClient {
4
+ _baseConfig = {
5
+ protocol: "http://",
6
+ endpoint: "sqlserver.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: "sqlserver",
15
+ },
16
+ },
17
+ };
18
+ _apiList = {
19
+ CreateDBInstance: {
20
+ url: "/",
21
+ method: "GET",
22
+ config: {
23
+ query: {
24
+ Version: "2019-04-25",
25
+ Action: "CreateDBInstance",
26
+ },
27
+ headers: {
28
+ "Content-Type": "application/json",
29
+ },
30
+ },
31
+ paramsType: {
32
+ Mem: "Int",
33
+ Disk: "Int",
34
+ DBInstanceName: "String",
35
+ Engine: "String",
36
+ EngineVersion: "String",
37
+ DBInstanceType: "String",
38
+ MasterUserPassword: "String",
39
+ MasterUserName: "String",
40
+ VpcId: "String",
41
+ SubnetId: "String",
42
+ Port: "String",
43
+ PreferredBackupTime: "String",
44
+ DBParameterGroupId: "String",
45
+ SecurityGroupId: "String",
46
+ BillType: "String",
47
+ Duration: "String",
48
+ DurationUnit: "String",
49
+ AvailabilityZone: "Filter",
50
+ ProjectId: "Int",
51
+ },
52
+ },
53
+ DescribeDBInstances: {
54
+ url: "/",
55
+ method: "GET",
56
+ config: {
57
+ query: {
58
+ Version: "2019-04-25",
59
+ Action: "DescribeDBInstances",
60
+ },
61
+ headers: {
62
+ "Content-Type": "application/json",
63
+ },
64
+ },
65
+ paramsType: {
66
+ DBInstanceIdentifier: "String",
67
+ Keyword: "String",
68
+ DBInstanceType: "String",
69
+ DBInstanceStatus: "String",
70
+ ExpiryDateLessThan: "String",
71
+ Marker: "Int",
72
+ MaxRecords: "Int",
73
+ },
74
+ },
75
+ DeleteDBInstance: {
76
+ url: "/",
77
+ method: "GET",
78
+ config: {
79
+ query: {
80
+ Version: "2019-04-25",
81
+ Action: "DeleteDBInstance",
82
+ },
83
+ headers: {
84
+ "Content-Type": "application/json",
85
+ },
86
+ },
87
+ paramsType: {
88
+ DBInstanceIdentifier: "String",
89
+ },
90
+ },
91
+ ModifyDBInstance: {
92
+ url: "/",
93
+ method: "GET",
94
+ config: {
95
+ query: {
96
+ Version: "2019-04-25",
97
+ Action: "ModifyDBInstance",
98
+ },
99
+ headers: {
100
+ "Content-Type": "application/x-www-form-urlencoded",
101
+ },
102
+ },
103
+ paramsType: {
104
+ DBInstanceIdentifier: "String",
105
+ DBInstanceName: "String",
106
+ },
107
+ },
108
+ CreateSecurityGroup: {
109
+ url: "/",
110
+ method: "GET",
111
+ config: {
112
+ query: {
113
+ Version: "2019-04-25",
114
+ Action: "CreateSecurityGroup",
115
+ },
116
+ headers: {
117
+ "Content-Type": "application/json",
118
+ },
119
+ },
120
+ paramsType: {
121
+ SecurityGroupName: "String",
122
+ SecurityGroupDescription: "String",
123
+ DBInstanceIdentifier: "String",
124
+ SecurityGroupRule: "Filter",
125
+ },
126
+ },
127
+ DescribeSecurityGroup: {
128
+ url: "/",
129
+ method: "GET",
130
+ config: {
131
+ query: {
132
+ Version: "2019-04-25",
133
+ Action: "DescribeSecurityGroup",
134
+ },
135
+ headers: {
136
+ "Content-Type": "application/json",
137
+ },
138
+ },
139
+ paramsType: {
140
+ SecurityGroupId: "String",
141
+ },
142
+ },
143
+ DeleteSecurityGroup: {
144
+ url: "/",
145
+ method: "GET",
146
+ config: {
147
+ query: {
148
+ Version: "2019-04-25",
149
+ Action: "DeleteSecurityGroup",
150
+ },
151
+ headers: {
152
+ "Content-Type": "application/json",
153
+ },
154
+ },
155
+ paramsType: {
156
+ SecurityGroupIds: "String",
157
+ },
158
+ },
159
+ ModifySecurityGroup: {
160
+ url: "/",
161
+ method: "GET",
162
+ config: {
163
+ query: {
164
+ Version: "2019-04-25",
165
+ Action: "ModifySecurityGroup",
166
+ },
167
+ headers: {
168
+ "Content-Type": "application/json",
169
+ },
170
+ },
171
+ paramsType: {
172
+ SecurityGroupId: "String",
173
+ SecurityGroupName: "String",
174
+ SecurityGroupDescription: "String",
175
+ },
176
+ },
177
+ CloneSecurityGroup: {
178
+ url: "/",
179
+ method: "GET",
180
+ config: {
181
+ query: {
182
+ Version: "2019-04-25",
183
+ Action: "CloneSecurityGroup",
184
+ },
185
+ headers: {
186
+ "Content-Type": "application/json",
187
+ },
188
+ },
189
+ paramsType: {
190
+ SecurityGroupId: "String",
191
+ SecurityGroupName: "String",
192
+ SecurityGroupDescription: "String",
193
+ },
194
+ },
195
+ ModifySecurityGroupRule: {
196
+ url: "/",
197
+ method: "GET",
198
+ config: {
199
+ query: {
200
+ Version: "2019-04-25",
201
+ Action: "ModifySecurityGroupRule",
202
+ },
203
+ headers: {
204
+ "Content-Type": "application/json",
205
+ },
206
+ },
207
+ paramsType: {
208
+ SecurityGroupRuleAction: "String",
209
+ SecurityGroupId: "String",
210
+ SecurityGroupRule: "Filter",
211
+ },
212
+ },
213
+ SecurityGroupRelation: {
214
+ url: "/",
215
+ method: "GET",
216
+ config: {
217
+ query: {
218
+ Version: "2019-04-25",
219
+ Action: "SecurityGroupRelation",
220
+ },
221
+ headers: {
222
+ "Content-Type": "application/json",
223
+ },
224
+ },
225
+ paramsType: {
226
+ RelationAction: "String",
227
+ SecurityGroupId: "String",
228
+ DBInstanceIdentifier: "Filter",
229
+ },
230
+ },
231
+ ModifySecurityGroupRuleName: {
232
+ url: "/",
233
+ method: "GET",
234
+ config: {
235
+ query: {
236
+ Version: "2019-04-25",
237
+ Action: "ModifySecurityGroupRuleName",
238
+ },
239
+ headers: {
240
+ "Content-Type": "application/json",
241
+ },
242
+ },
243
+ paramsType: {
244
+ SecurityGroupId: "String",
245
+ SecurityGroupRuleId: "String",
246
+ SecurityGroupRuleName: "String",
247
+ },
248
+ },
249
+ DescribeCollations: {
250
+ url: "/",
251
+ method: "GET",
252
+ config: {
253
+ query: {
254
+ Version: "2019-04-25",
255
+ Action: "DescribeCollations",
256
+ },
257
+ headers: {
258
+ "Content-Type": "application/json",
259
+ },
260
+ },
261
+ paramsType: {
262
+ DBInstanceIdentifier: "String",
263
+ },
264
+ },
265
+ CreateInstanceDatabase: {
266
+ url: "/",
267
+ method: "GET",
268
+ config: {
269
+ query: {
270
+ Version: "2019-04-25",
271
+ Action: "CreateInstanceDatabase",
272
+ },
273
+ headers: {
274
+ "Content-Type": "application/json",
275
+ },
276
+ },
277
+ paramsType: {
278
+ DBInstanceIdentifier: "String",
279
+ InstanceDatabaseName: "String",
280
+ InstanceDatabaseCollation: "String",
281
+ InstanceDatabaseDescription: "String",
282
+ InstanceDatabasePrivileges: "Filter",
283
+ },
284
+ },
285
+ ModifyInstanceDatabasePrivileges: {
286
+ url: "/",
287
+ method: "GET",
288
+ config: {
289
+ query: {
290
+ Version: "2019-04-25",
291
+ Action: "ModifyInstanceDatabasePrivileges",
292
+ },
293
+ headers: {
294
+ "Content-Type": "application/json",
295
+ },
296
+ },
297
+ paramsType: {
298
+ DBInstanceIdentifier: "String",
299
+ InstanceDatabaseName: "String",
300
+ InstanceDatabasePrivileges: "Filter",
301
+ },
302
+ },
303
+ DescribeInstanceDatabases: {
304
+ url: "/",
305
+ method: "GET",
306
+ config: {
307
+ query: {
308
+ Version: "2019-04-25",
309
+ Action: "DescribeInstanceDatabases",
310
+ },
311
+ headers: {
312
+ "Content-Type": "application/json",
313
+ },
314
+ },
315
+ paramsType: {
316
+ DBInstanceIdentifier: "String",
317
+ Keyword: "String",
318
+ },
319
+ },
320
+ CreateInstanceAccount: {
321
+ url: "/",
322
+ method: "GET",
323
+ config: {
324
+ query: {
325
+ Version: "2019-04-25",
326
+ Action: "CreateInstanceAccount",
327
+ },
328
+ headers: {
329
+ "Content-Type": "application/json",
330
+ },
331
+ },
332
+ paramsType: {
333
+ DBInstanceIdentifier: "String",
334
+ InstanceAccountName: "String",
335
+ InstanceAccountPassword: "String",
336
+ InstanceAccountDescription: "String",
337
+ InstanceAccountPrivileges: "Filter",
338
+ },
339
+ },
340
+ DescribeInstanceAccounts: {
341
+ url: "/",
342
+ method: "GET",
343
+ config: {
344
+ query: {
345
+ Version: "2019-04-25",
346
+ Action: "DescribeInstanceAccounts",
347
+ },
348
+ headers: {
349
+ "Content-Type": "application/json",
350
+ },
351
+ },
352
+ paramsType: {
353
+ DBInstanceIdentifier: "String",
354
+ Keyword: "String",
355
+ },
356
+ },
357
+ ModifyInstanceAccountInfo: {
358
+ url: "/",
359
+ method: "GET",
360
+ config: {
361
+ query: {
362
+ Version: "2019-04-25",
363
+ Action: "ModifyInstanceAccountInfo",
364
+ },
365
+ headers: {
366
+ "Content-Type": "application/json",
367
+ },
368
+ },
369
+ paramsType: {
370
+ DBInstanceIdentifier: "String",
371
+ InstanceAccountName: "String",
372
+ InstanceAccountDescription: "String",
373
+ InstanceAccountPassword: "String",
374
+ },
375
+ },
376
+ ModifyInstanceAccountPrivileges: {
377
+ url: "/",
378
+ method: "GET",
379
+ config: {
380
+ query: {
381
+ Version: "2019-04-25",
382
+ Action: "ModifyInstanceAccountPrivileges",
383
+ },
384
+ headers: {
385
+ "Content-Type": "application/json",
386
+ },
387
+ },
388
+ paramsType: {
389
+ DBInstanceIdentifier: "String",
390
+ InstanceAccountName: "String",
391
+ InstanceAccountPrivileges: "Filter",
392
+ },
393
+ },
394
+ DeleteInstanceAccount: {
395
+ url: "/",
396
+ method: "GET",
397
+ config: {
398
+ query: {
399
+ Version: "2019-04-25",
400
+ Action: "DeleteInstanceAccount",
401
+ },
402
+ headers: {
403
+ "Content-Type": "application/json",
404
+ },
405
+ },
406
+ paramsType: {
407
+ DBInstanceIdentifier: "String",
408
+ InstanceAccountName: "String",
409
+ },
410
+ },
411
+ DeleteInstanceDatabase: {
412
+ url: "/",
413
+ method: "GET",
414
+ config: {
415
+ query: {
416
+ Version: "2019-04-25",
417
+ Action: "DeleteInstanceDatabase",
418
+ },
419
+ headers: {
420
+ "Content-Type": "application/json",
421
+ },
422
+ },
423
+ paramsType: {
424
+ DBInstanceIdentifier: "String",
425
+ InstanceDatabaseName: "String",
426
+ },
427
+ },
428
+ ModifyInstanceDatabaseInfo: {
429
+ url: "/",
430
+ method: "GET",
431
+ config: {
432
+ query: {
433
+ Version: "2019-04-25",
434
+ Action: "ModifyInstanceDatabaseInfo",
435
+ },
436
+ headers: {
437
+ "Content-Type": "application/json",
438
+ },
439
+ },
440
+ paramsType: {
441
+ DBInstanceIdentifier: "String",
442
+ InstanceDatabaseName: "String",
443
+ InstanceDatabaseDescription: "String",
444
+ },
445
+ },
446
+ OverrideDBInstance: {
447
+ url: "/",
448
+ method: "GET",
449
+ config: {
450
+ query: {
451
+ Version: "2019-04-25",
452
+ Action: "OverrideDBInstance",
453
+ },
454
+ headers: {
455
+ "Content-Type": "application/json",
456
+ },
457
+ },
458
+ paramsType: {
459
+ DBInstanceIdentifier: "String",
460
+ DBBackupIdentifier: "String",
461
+ },
462
+ },
463
+ RestoreDBInstanceFromDBBackup: {
464
+ url: "/",
465
+ method: "GET",
466
+ config: {
467
+ query: {
468
+ Version: "2019-04-25",
469
+ Action: "RestoreDBInstanceFromDBBackup",
470
+ },
471
+ headers: {
472
+ "Content-Type": "application/json",
473
+ },
474
+ },
475
+ paramsType: {
476
+ DBInstanceName: "String",
477
+ DBBackupIdentifier: "String",
478
+ DBInstanceType: "String",
479
+ ProjectId: "String",
480
+ AvailabilityZone: "String",
481
+ Duration: "Int",
482
+ DurationUnit: "String",
483
+ Port: "Int",
484
+ BillType: "String",
485
+ },
486
+ },
487
+ CreateDBBackup: {
488
+ url: "/",
489
+ method: "GET",
490
+ config: {
491
+ query: {
492
+ Version: "2019-04-25",
493
+ Action: "CreateDBBackup",
494
+ },
495
+ headers: {
496
+ "Content-Type": "application/json",
497
+ },
498
+ },
499
+ paramsType: {
500
+ DBInstanceIdentifier: "String",
501
+ DBBackupName: "String",
502
+ Description: "String",
503
+ },
504
+ },
505
+ DeleteDBBackup: {
506
+ url: "/",
507
+ method: "GET",
508
+ config: {
509
+ query: {
510
+ Version: "2019-04-25",
511
+ Action: "DeleteDBBackup",
512
+ },
513
+ headers: {
514
+ "Content-Type": "application/json",
515
+ },
516
+ },
517
+ paramsType: {
518
+ DBInstanceIdentifier: "String",
519
+ DBBackupIdentifier: "String",
520
+ },
521
+ },
522
+ DescribeDBBackups: {
523
+ url: "/",
524
+ method: "GET",
525
+ config: {
526
+ query: {
527
+ Version: "2019-04-25",
528
+ Action: "DescribeDBBackups",
529
+ },
530
+ headers: {
531
+ "Content-Type": "application/json",
532
+ },
533
+ },
534
+ paramsType: {
535
+ DBInstanceIdentifier: "String",
536
+ Keyword: "String",
537
+ BackupType: "String",
538
+ Marker: "Int",
539
+ MaxRecords: "Int",
540
+ },
541
+ },
542
+ ModifyDBBackupPolicy: {
543
+ url: "/",
544
+ method: "GET",
545
+ config: {
546
+ query: {
547
+ Version: "2019-04-25",
548
+ Action: "ModifyDBBackupPolicy",
549
+ },
550
+ headers: {
551
+ "Content-Type": "application/json",
552
+ },
553
+ },
554
+ paramsType: {
555
+ DBInstanceIdentifier: "String",
556
+ PreferredBackupTime: "String",
557
+ IncrementalBackupCycle: "String",
558
+ },
559
+ },
560
+ AllocateDBInstanceEip: {
561
+ url: "/",
562
+ method: "GET",
563
+ config: {
564
+ query: {
565
+ Version: "2019-04-25",
566
+ Action: "AllocateDBInstanceEip",
567
+ },
568
+ headers: {
569
+ "Content-Type": "application/json",
570
+ },
571
+ },
572
+ paramsType: {
573
+ DBInstanceIdentifier: "String",
574
+ Port: "String",
575
+ },
576
+ },
577
+ ReleaseDBInstanceEip: {
578
+ url: "/",
579
+ method: "GET",
580
+ config: {
581
+ query: {
582
+ Version: "2019-04-25",
583
+ Action: "ReleaseDBInstanceEip",
584
+ },
585
+ headers: {
586
+ "Content-Type": "application/json",
587
+ },
588
+ },
589
+ paramsType: {
590
+ DBInstanceIdentifier: "String",
591
+ },
592
+ },
593
+ ListSlowLogs: {
594
+ url: "/",
595
+ method: "GET",
596
+ config: {
597
+ query: {
598
+ Version: "2019-04-25",
599
+ Action: "ListSlowLogs",
600
+ },
601
+ headers: {
602
+ "Content-Type": "application/json",
603
+ },
604
+ },
605
+ paramsType: {
606
+ DBInstanceIdentifier: "String",
607
+ Time: "String",
608
+ OrderBy: "String",
609
+ },
610
+ },
611
+ ListErrorLogs: {
612
+ url: "/",
613
+ method: "GET",
614
+ config: {
615
+ query: {
616
+ Version: "2019-04-25",
617
+ Action: "ListErrorLogs",
618
+ },
619
+ headers: {
620
+ "Content-Type": "application/json",
621
+ },
622
+ },
623
+ paramsType: {
624
+ DBInstanceIdentifier: "String",
625
+ StartTime: "String",
626
+ EndTime: "String",
627
+ Marker: "Int",
628
+ MaxRecords: "Int",
629
+ },
630
+ },
631
+ ModifyDBInstanceSpec: {
632
+ url: "/",
633
+ method: "GET",
634
+ config: {
635
+ query: {
636
+ Version: "2019-04-25",
637
+ Action: "ModifyDBInstanceSpec",
638
+ },
639
+ headers: {
640
+ "Content-Type": "application/json",
641
+ },
642
+ },
643
+ paramsType: {
644
+ DBInstanceIdentifier: "String",
645
+ Mem: "Int",
646
+ Disk: "Int",
647
+ },
648
+ },
649
+ DescribeImportTask: {
650
+ url: "/",
651
+ method: "GET",
652
+ config: {
653
+ query: {
654
+ Version: "2019-04-25",
655
+ Action: "DescribeImportTask",
656
+ },
657
+ headers: {
658
+ "Content-Type": "application/json",
659
+ },
660
+ },
661
+ paramsType: {
662
+ DBInstanceIdentifier: "String",
663
+ Keyword: "String",
664
+ },
665
+ },
666
+ DescribeImportFile: {
667
+ url: "/",
668
+ method: "GET",
669
+ config: {
670
+ query: {
671
+ Version: "2019-04-25",
672
+ Action: "DescribeImportFile",
673
+ },
674
+ headers: {
675
+ "Content-Type": "application/json",
676
+ },
677
+ },
678
+ paramsType: {
679
+ DBInstanceIdentifier: "String",
680
+ ImportTaskId: "String",
681
+ },
682
+ },
683
+ CreateImportTask: {
684
+ url: "/",
685
+ method: "GET",
686
+ config: {
687
+ query: {
688
+ Version: "2019-04-25",
689
+ Action: "CreateImportTask",
690
+ },
691
+ headers: {
692
+ "Content-Type": "application/json",
693
+ },
694
+ },
695
+ paramsType: {
696
+ DBInstanceIdentifier: "String",
697
+ KS3Region: "String",
698
+ KS3Bucket: "String",
699
+ KS3Key: "String",
700
+ KS3FileSize: "String",
701
+ ImportTaskId: "String",
702
+ DBName: "String",
703
+ },
704
+ },
705
+ FinishImportTask: {
706
+ url: "/",
707
+ method: "GET",
708
+ config: {
709
+ query: {
710
+ Version: "2019-04-25",
711
+ Action: "FinishImportTask",
712
+ },
713
+ headers: {
714
+ "Content-Type": "application/json",
715
+ },
716
+ },
717
+ paramsType: {
718
+ DBInstanceIdentifier: "String",
719
+ ImportTaskId: "String",
720
+ },
721
+ },
722
+ DescribeDBInstanceRestorableTime: {
723
+ url: "/",
724
+ method: "GET",
725
+ config: {
726
+ query: {
727
+ Version: "2019-04-25",
728
+ Action: "DescribeDBInstanceRestorableTime",
729
+ },
730
+ headers: {
731
+ "Content-Type": "application/json",
732
+ },
733
+ },
734
+ paramsType: {
735
+ DBInstanceIdentifier: "String",
736
+ },
737
+ },
738
+ GetHistoryDatabaseInfo: {
739
+ url: "/",
740
+ method: "GET",
741
+ config: {
742
+ query: {
743
+ Version: "2019-04-25",
744
+ Action: "GetHistoryDatabaseInfo",
745
+ },
746
+ headers: {
747
+ "Content-Type": "application/json",
748
+ },
749
+ },
750
+ paramsType: {
751
+ DBInstanceIdentifier: "String",
752
+ DBBackupIdentifier: "String",
753
+ RestorableTime: "String",
754
+ },
755
+ },
756
+ RestoreToCurInstance: {
757
+ url: "/",
758
+ method: "POST",
759
+ config: {
760
+ query: {
761
+ Version: "2019-04-25",
762
+ Action: "RestoreToCurInstance",
763
+ },
764
+ headers: {
765
+ "Content-Type": "application/json",
766
+ },
767
+ },
768
+ paramsType: {
769
+ DBInstanceIdentifier: "String",
770
+ DBBackupIdentifier: "String",
771
+ RestorableTime: "String",
772
+ SrcDatabases: "Filter",
773
+ DstDatabases: "Filter",
774
+ },
775
+ },
776
+ ModifyInstanceDatabaseName: {
777
+ url: "/",
778
+ method: "GET",
779
+ config: {
780
+ query: {
781
+ Version: "2019-04-25",
782
+ Action: "ModifyInstanceDatabaseName",
783
+ },
784
+ headers: {
785
+ "Content-Type": "application/json",
786
+ },
787
+ },
788
+ paramsType: {
789
+ DBInstanceIdentifier: "String",
790
+ InstanceDatabaseName: "String",
791
+ InstanceDatabaseNameNew: "String",
792
+ },
793
+ },
794
+ RebootDBInstance: {
795
+ url: "/",
796
+ method: "GET",
797
+ config: {
798
+ query: {
799
+ Version: "2019-04-25",
800
+ Action: "RebootDBInstance",
801
+ },
802
+ headers: {
803
+ "Content-Type": "application/json",
804
+ },
805
+ },
806
+ paramsType: {
807
+ DBInstanceIdentifier: "String",
808
+ },
809
+ },
810
+ DescribeDBBackupPolicy: {
811
+ url: "/",
812
+ method: "GET",
813
+ config: {
814
+ query: {
815
+ Version: "2019-04-25",
816
+ Action: "DescribeDBBackupPolicy",
817
+ },
818
+ headers: {
819
+ "Content-Type": "application/json",
820
+ },
821
+ },
822
+ paramsType: {
823
+ DBInstanceIdentifier: "String",
824
+ },
825
+ },
826
+ UpdateDBInstanceOrder: {
827
+ url: "/",
828
+ method: "GET",
829
+ config: {
830
+ query: {
831
+ Version: "2019-04-25",
832
+ Action: "UpdateDBInstanceOrder",
833
+ },
834
+ headers: {
835
+ "Content-Type": "application/json",
836
+ },
837
+ },
838
+ paramsType: {
839
+ DBInstanceIdentifier: "String",
840
+ UpdateUse: "String",
841
+ Duration: "Int",
842
+ BillType: "String",
843
+ },
844
+ },
845
+ UpdateResourceProtection: {
846
+ url: "/",
847
+ method: "GET",
848
+ config: {
849
+ query: {
850
+ Version: "2019-04-25",
851
+ Action: "UpdateResourceProtection",
852
+ },
853
+ headers: {
854
+ "Content-Type": "application/x-www-form-urlencoded",
855
+ },
856
+ },
857
+ paramsType: {
858
+ DBInstanceIdentifier: "String",
859
+ ProtectionSwitch: "String",
860
+ ProtectionReason: "String",
861
+ },
862
+ },
863
+ };
864
+ };