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