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,1296 @@
1
+ const BaseClient = require("../../../base/BaseClient.js");
2
+
3
+ module.exports = class Client extends BaseClient {
4
+ _baseConfig = {
5
+ 'protocol': 'http://',
6
+ 'endpoint': 'krds.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': 'krds',
15
+ },
16
+ },
17
+ }
18
+ _apiList = {
19
+ 'RebootDBInstance': {
20
+ 'url': '/',
21
+ 'method': 'GET',
22
+ 'config': {
23
+ 'query': {
24
+ 'Version': '2016-07-01',
25
+ 'Action': 'RebootDBInstance',
26
+ },
27
+ 'headers': {
28
+ 'Content-Type': 'application/json'
29
+ },
30
+ },
31
+ 'paramsType': {
32
+ 'DBInstanceIdentifier': 'String',
33
+ }
34
+ },
35
+ 'ModifyDBParameterGroup': {
36
+ 'url': '/',
37
+ 'method': 'GET',
38
+ 'config': {
39
+ 'query': {
40
+ 'Version': '2016-07-01',
41
+ 'Action': 'ModifyDBParameterGroup',
42
+ },
43
+ 'headers': {
44
+ 'Content-Type': 'application/json'
45
+ },
46
+ },
47
+ 'paramsType': {
48
+ 'DBParameterGroupId': 'String',
49
+ 'Parameters': 'Filter',
50
+ 'DBParameterGroupName': 'String',
51
+ 'Description': 'String',
52
+ }
53
+ },
54
+ 'ResetDBParameterGroup': {
55
+ 'url': '/',
56
+ 'method': 'GET',
57
+ 'config': {
58
+ 'query': {
59
+ 'Version': '2016-07-01',
60
+ 'Action': 'ResetDBParameterGroup',
61
+ },
62
+ 'headers': {
63
+ 'Content-Type': 'application/json'
64
+ },
65
+ },
66
+ 'paramsType': {
67
+ 'DBParameterGroupId': 'String',
68
+ }
69
+ },
70
+ 'DescribeDBParameterGroup': {
71
+ 'url': '/',
72
+ 'method': 'GET',
73
+ 'config': {
74
+ 'query': {
75
+ 'Version': '2016-07-01',
76
+ 'Action': 'DescribeDBParameterGroup',
77
+ },
78
+ 'headers': {
79
+ 'Content-Type': 'application/json'
80
+ },
81
+ },
82
+ 'paramsType': {
83
+ 'DBParameterGroupId': 'String',
84
+ 'Keyword': 'String',
85
+ 'Marker': 'Int',
86
+ 'MaxRecords': 'Int',
87
+ 'Source': 'String',
88
+ }
89
+ },
90
+ 'DescribeEngineDefaultParameters': {
91
+ 'url': '/',
92
+ 'method': 'GET',
93
+ 'config': {
94
+ 'query': {
95
+ 'Version': '2016-07-01',
96
+ 'Action': 'DescribeEngineDefaultParameters',
97
+ },
98
+ 'headers': {
99
+ 'Content-Type': 'application/json'
100
+ },
101
+ },
102
+ 'paramsType': {
103
+ 'Engine': 'String',
104
+ 'EngineVersion': 'String',
105
+ }
106
+ },
107
+ 'CreateDBParameterGroup': {
108
+ 'url': '/',
109
+ 'method': 'GET',
110
+ 'config': {
111
+ 'query': {
112
+ 'Version': '2016-07-01',
113
+ 'Action': 'CreateDBParameterGroup',
114
+ },
115
+ 'headers': {
116
+ 'Content-Type': 'application/json'
117
+ },
118
+ },
119
+ 'paramsType': {
120
+ 'DBParameterGroupName': 'String',
121
+ 'Engine': 'String',
122
+ 'EngineVersion': 'String',
123
+ 'Parameters.Name': 'Filter',
124
+ 'Parameters.Value': 'Filter',
125
+ 'Description': 'String',
126
+ }
127
+ },
128
+ 'DeleteDBParameterGroup': {
129
+ 'url': '/',
130
+ 'method': 'GET',
131
+ 'config': {
132
+ 'query': {
133
+ 'Version': '2016-07-01',
134
+ 'Action': 'DeleteDBParameterGroup',
135
+ },
136
+ 'headers': {
137
+ 'Content-Type': 'application/json'
138
+ },
139
+ },
140
+ 'paramsType': {
141
+ 'DBParameterGroupId': 'String',
142
+ }
143
+ },
144
+ 'CreateDBInstance': {
145
+ 'url': '/',
146
+ 'method': 'GET',
147
+ 'config': {
148
+ 'query': {
149
+ 'Version': '2016-07-01',
150
+ 'Action': 'CreateDBInstance',
151
+ },
152
+ 'headers': {
153
+ 'Content-Type': 'application/json'
154
+ },
155
+ },
156
+ 'paramsType': {
157
+ 'Mem': 'Int',
158
+ 'Disk': 'Int',
159
+ 'DBInstanceName': 'String',
160
+ 'Engine': 'String',
161
+ 'EngineVersion': 'String',
162
+ 'MasterUserPassword': 'String',
163
+ 'MasterUserName': 'String',
164
+ 'DBInstanceType': 'String',
165
+ 'VpcId': 'String',
166
+ 'SubnetId': 'String',
167
+ 'PreferredBackupTime': 'String',
168
+ 'DBParameterGroupId': 'String',
169
+ 'SecurityGroupId': 'String',
170
+ 'Port': 'String',
171
+ 'BillType': 'String',
172
+ 'Duration': 'String',
173
+ 'DurationUnit': 'String',
174
+ 'AvailabilityZone': 'Filter',
175
+ 'ProjectId': 'Int',
176
+ 'TableNamesAreCaseSensitive': 'Int',
177
+ }
178
+ },
179
+ 'RestoreDBInstanceFromDBBackup': {
180
+ 'url': '/',
181
+ 'method': 'GET',
182
+ 'config': {
183
+ 'query': {
184
+ 'Version': '2016-07-01',
185
+ 'Action': 'RestoreDBInstanceFromDBBackup',
186
+ },
187
+ 'headers': {
188
+ 'Content-Type': 'application/json'
189
+ },
190
+ },
191
+ 'paramsType': {
192
+ 'DBInstanceName': 'String',
193
+ 'DBBackupIdentifier': 'String',
194
+ 'DBInstanceType': 'String',
195
+ 'ProjectId': 'String',
196
+ 'AvailabilityZone': 'String',
197
+ 'Duration': 'Int',
198
+ 'DurationUnit': 'String',
199
+ 'Port': 'Int',
200
+ }
201
+ },
202
+ 'DeleteDBInstance': {
203
+ 'url': '/',
204
+ 'method': 'GET',
205
+ 'config': {
206
+ 'query': {
207
+ 'Version': '2016-07-01',
208
+ 'Action': 'DeleteDBInstance',
209
+ },
210
+ 'headers': {
211
+ 'Content-Type': 'application/json'
212
+ },
213
+ },
214
+ 'paramsType': {
215
+ 'DBInstanceIdentifier': 'String',
216
+ }
217
+ },
218
+ 'CreateDBInstanceReadReplica': {
219
+ 'url': '/',
220
+ 'method': 'GET',
221
+ 'config': {
222
+ 'query': {
223
+ 'Version': '2016-07-01',
224
+ 'Action': 'CreateDBInstanceReadReplica',
225
+ },
226
+ 'headers': {
227
+ 'Content-Type': 'application/json'
228
+ },
229
+ },
230
+ 'paramsType': {
231
+ 'DBInstanceIdentifier': 'String',
232
+ 'DBInstanceName': 'String',
233
+ 'AttachedVipId': 'String',
234
+ 'BillType': 'String',
235
+ 'Duration': 'String',
236
+ 'DurationUnit': 'String',
237
+ 'AvailabilityZone.1': 'String',
238
+ 'ProjectId': 'Int',
239
+ 'Vip': 'String',
240
+ 'Mem': 'Int',
241
+ 'Disk': 'Int',
242
+ }
243
+ },
244
+ 'RestoreDBInstanceToPointInTime': {
245
+ 'url': '/',
246
+ 'method': 'GET',
247
+ 'config': {
248
+ 'query': {
249
+ 'Version': '2016-07-01',
250
+ 'Action': 'RestoreDBInstanceToPointInTime',
251
+ },
252
+ 'headers': {
253
+ 'Content-Type': 'application/json'
254
+ },
255
+ },
256
+ 'paramsType': {
257
+ 'DBInstanceIdentifier': 'String',
258
+ 'RestorableTime': 'String',
259
+ }
260
+ },
261
+ 'DescribeDBInstanceRestorableTime': {
262
+ 'url': '/',
263
+ 'method': 'GET',
264
+ 'config': {
265
+ 'query': {
266
+ 'Version': '2016-07-01',
267
+ 'Action': 'DescribeDBInstanceRestorableTime',
268
+ },
269
+ 'headers': {
270
+ 'Content-Type': 'application/json'
271
+ },
272
+ },
273
+ 'paramsType': {
274
+ 'DBInstanceIdentifier': 'String',
275
+ }
276
+ },
277
+ 'ModifyDBInstance': {
278
+ 'url': '/',
279
+ 'method': 'GET',
280
+ 'config': {
281
+ 'query': {
282
+ 'Version': '2016-07-01',
283
+ 'Action': 'ModifyDBInstance',
284
+ },
285
+ 'headers': {
286
+ 'Content-Type': 'application/json'
287
+ },
288
+ },
289
+ 'paramsType': {
290
+ 'DBInstanceIdentifier': 'String',
291
+ 'PreferredBackupTime': 'String',
292
+ 'DBInstanceName': 'String',
293
+ 'DBParameterGroupId': 'String',
294
+ }
295
+ },
296
+ 'DescribeDBLogFiles': {
297
+ 'url': '/',
298
+ 'method': 'GET',
299
+ 'config': {
300
+ 'query': {
301
+ 'Version': '2016-07-01',
302
+ 'Action': 'DescribeDBLogFiles',
303
+ },
304
+ 'headers': {
305
+ 'Content-Type': 'application/json'
306
+ },
307
+ },
308
+ 'paramsType': {
309
+ 'DBInstanceIdentifier': 'String',
310
+ 'DBLogType': 'String',
311
+ 'Marker': 'Int',
312
+ 'MaxRecords': 'Int',
313
+ }
314
+ },
315
+ 'DescribeDBBackups': {
316
+ 'url': '/',
317
+ 'method': 'GET',
318
+ 'config': {
319
+ 'query': {
320
+ 'Version': '2016-07-01',
321
+ 'Action': 'DescribeDBBackups',
322
+ },
323
+ 'headers': {
324
+ 'Content-Type': 'application/json'
325
+ },
326
+ },
327
+ 'paramsType': {
328
+ 'DBInstanceIdentifier': 'String',
329
+ 'BackupType': 'String',
330
+ 'Keyword': 'String',
331
+ 'Marker': 'String',
332
+ 'MaxRecords': 'Int',
333
+ }
334
+ },
335
+ 'ModifyDBInstanceSpec': {
336
+ 'url': '/',
337
+ 'method': 'GET',
338
+ 'config': {
339
+ 'query': {
340
+ 'Version': '2016-07-01',
341
+ 'Action': 'ModifyDBInstanceSpec',
342
+ },
343
+ 'headers': {
344
+ 'Content-Type': 'application/json'
345
+ },
346
+ },
347
+ 'paramsType': {
348
+ 'DBInstanceIdentifier': 'String',
349
+ 'Mem': 'Int',
350
+ 'Disk': 'Int',
351
+ }
352
+ },
353
+ 'DescribeDBInstances': {
354
+ 'url': '/',
355
+ 'method': 'GET',
356
+ 'config': {
357
+ 'query': {
358
+ 'Version': '2016-07-01',
359
+ 'Action': 'DescribeDBInstances',
360
+ },
361
+ 'headers': {
362
+ 'Content-Type': 'application/json'
363
+ },
364
+ },
365
+ 'paramsType': {
366
+ 'DBInstanceIdentifier': 'String',
367
+ 'DBInstanceType': 'String',
368
+ 'DBInstanceStatus': 'String',
369
+ 'Keyword': 'String',
370
+ 'Order': 'String',
371
+ 'ProjectId': 'String',
372
+ 'Marker': 'Int',
373
+ 'MaxRecords': 'Int',
374
+ 'DBInstanceIdentifierIn': 'Filter',
375
+ 'DBInstanceNameIn': 'Filter',
376
+ 'VipIn': 'Filter',
377
+ 'EIPIn': 'String',
378
+ 'ExpiryDateLessThan': 'Int',
379
+ }
380
+ },
381
+ 'OverrideDBInstance': {
382
+ 'url': '/',
383
+ 'method': 'GET',
384
+ 'config': {
385
+ 'query': {
386
+ 'Version': '2016-07-01',
387
+ 'Action': 'OverrideDBInstance',
388
+ },
389
+ 'headers': {
390
+ 'Content-Type': 'application/json'
391
+ },
392
+ },
393
+ 'paramsType': {
394
+ 'DBInstanceIdentifier': 'String',
395
+ 'DBBackupIdentifier': 'String',
396
+ }
397
+ },
398
+ 'DescribeDBEngineVersions': {
399
+ 'url': '/',
400
+ 'method': 'GET',
401
+ 'config': {
402
+ 'query': {
403
+ 'Version': '2016-07-01',
404
+ 'Action': 'DescribeDBEngineVersions',
405
+ },
406
+ 'headers': {
407
+ 'Content-Type': 'application/json'
408
+ },
409
+ },
410
+ 'paramsType': {
411
+ }
412
+ },
413
+ 'UpgradeDBInstanceEngineVersion': {
414
+ 'url': '/',
415
+ 'method': 'GET',
416
+ 'config': {
417
+ 'query': {
418
+ 'Version': '2016-07-01',
419
+ 'Action': 'UpgradeDBInstanceEngineVersion',
420
+ },
421
+ 'headers': {
422
+ 'Content-Type': 'application/json'
423
+ },
424
+ },
425
+ 'paramsType': {
426
+ 'DBInstanceIdentifier': 'String',
427
+ 'Engine': 'String',
428
+ 'EngineVersion': 'String',
429
+ }
430
+ },
431
+ 'ModifyDBInstanceType': {
432
+ 'url': '/',
433
+ 'method': 'GET',
434
+ 'config': {
435
+ 'query': {
436
+ 'Version': '2016-07-01',
437
+ 'Action': 'ModifyDBInstanceType',
438
+ },
439
+ 'headers': {
440
+ 'Content-Type': 'application/json'
441
+ },
442
+ },
443
+ 'paramsType': {
444
+ 'DBInstanceIdentifier': 'String',
445
+ 'DBInstanceType': 'String',
446
+ 'BillType': 'String',
447
+ 'Duration': 'Int',
448
+ 'DurationUnit': 'String',
449
+ 'AvailabilityZone': 'String',
450
+ }
451
+ },
452
+ 'DescribeDBInstanceParameters': {
453
+ 'url': '/',
454
+ 'method': 'GET',
455
+ 'config': {
456
+ 'query': {
457
+ 'Version': '2016-07-01',
458
+ 'Action': 'DescribeDBInstanceParameters',
459
+ },
460
+ 'headers': {
461
+ 'Content-Type': 'application/json'
462
+ },
463
+ },
464
+ 'paramsType': {
465
+ 'DBInstanceIdentifier': 'String',
466
+ }
467
+ },
468
+ 'DeleteDBBackup': {
469
+ 'url': '/',
470
+ 'method': 'GET',
471
+ 'config': {
472
+ 'query': {
473
+ 'Version': '2016-07-01',
474
+ 'Action': 'DeleteDBBackup',
475
+ },
476
+ 'headers': {
477
+ 'Content-Type': 'application/json'
478
+ },
479
+ },
480
+ 'paramsType': {
481
+ 'DBBackupIdentifier': 'String',
482
+ }
483
+ },
484
+ 'CreateDBBackup': {
485
+ 'url': '/',
486
+ 'method': 'GET',
487
+ 'config': {
488
+ 'query': {
489
+ 'Version': '2016-07-01',
490
+ 'Action': 'CreateDBBackup',
491
+ },
492
+ 'headers': {
493
+ 'Content-Type': 'application/json'
494
+ },
495
+ },
496
+ 'paramsType': {
497
+ 'DBInstanceIdentifier': 'String',
498
+ 'DBBackupName': 'String',
499
+ 'Description': 'String',
500
+ }
501
+ },
502
+ 'RenewDBInstance': {
503
+ 'url': '/',
504
+ 'method': 'GET',
505
+ 'config': {
506
+ 'query': {
507
+ 'Version': '2016-07-01',
508
+ 'Action': 'RenewDBInstance',
509
+ },
510
+ 'headers': {
511
+ 'Content-Type': 'application/json'
512
+ },
513
+ },
514
+ 'paramsType': {
515
+ 'DBInstanceIdentifier': 'String',
516
+ 'Duration': 'Int',
517
+ 'DurationUnit': 'String',
518
+ 'BillType': 'String',
519
+ 'EndTime': 'String',
520
+ }
521
+ },
522
+ 'SwitchDBInstanceHA': {
523
+ 'url': '/',
524
+ 'method': 'GET',
525
+ 'config': {
526
+ 'query': {
527
+ 'Version': '2016-07-01',
528
+ 'Action': 'SwitchDBInstanceHA',
529
+ },
530
+ 'headers': {
531
+ 'Content-Type': 'application/json'
532
+ },
533
+ },
534
+ 'paramsType': {
535
+ 'DBInstanceIdentifier': 'String',
536
+ }
537
+ },
538
+ 'GenerateDBAdminURL': {
539
+ 'url': '/',
540
+ 'method': 'GET',
541
+ 'config': {
542
+ 'query': {
543
+ 'Version': '2016-07-01',
544
+ 'Action': 'GenerateDBAdminURL',
545
+ },
546
+ 'headers': {
547
+ 'Content-Type': 'application/json'
548
+ },
549
+ },
550
+ 'paramsType': {
551
+ 'DBInstanceIdentifier': 'String',
552
+ }
553
+ },
554
+ 'StatisticDBInstances': {
555
+ 'url': '/',
556
+ 'method': 'GET',
557
+ 'config': {
558
+ 'query': {
559
+ 'Version': '2016-07-01',
560
+ 'Action': 'StatisticDBInstances',
561
+ },
562
+ 'headers': {
563
+ 'Content-Type': 'application/json'
564
+ },
565
+ },
566
+ 'paramsType': {
567
+ 'ExpiryDateLessThan': 'Int',
568
+ }
569
+ },
570
+ 'AllocateDBInstanceEip': {
571
+ 'url': '/',
572
+ 'method': 'GET',
573
+ 'config': {
574
+ 'query': {
575
+ 'Version': '2016-07-01',
576
+ 'Action': 'AllocateDBInstanceEip',
577
+ },
578
+ 'headers': {
579
+ 'Content-Type': 'application/json'
580
+ },
581
+ },
582
+ 'paramsType': {
583
+ 'DBInstanceIdentifier': 'String',
584
+ 'Port': 'String',
585
+ }
586
+ },
587
+ 'ReleaseDBInstanceEip': {
588
+ 'url': '/',
589
+ 'method': 'GET',
590
+ 'config': {
591
+ 'query': {
592
+ 'Version': '2016-07-01',
593
+ 'Action': 'ReleaseDBInstanceEip',
594
+ },
595
+ 'headers': {
596
+ 'Content-Type': 'application/json'
597
+ },
598
+ },
599
+ 'paramsType': {
600
+ 'DBInstanceIdentifier': 'String',
601
+ }
602
+ },
603
+ 'ModifyDBInstanceAvailabilityZone': {
604
+ 'url': '/',
605
+ 'method': 'GET',
606
+ 'config': {
607
+ 'query': {
608
+ 'Version': '2016-07-01',
609
+ 'Action': 'ModifyDBInstanceAvailabilityZone',
610
+ },
611
+ 'headers': {
612
+ 'Content-Type': 'application/json'
613
+ },
614
+ },
615
+ 'paramsType': {
616
+ 'DBInstanceIdentifier': 'String',
617
+ 'AvailabilityZone.1': 'String',
618
+ 'AvailabilityZone.2': 'String',
619
+ }
620
+ },
621
+ 'DescribeDBInstanceRegions': {
622
+ 'url': '/',
623
+ 'method': 'GET',
624
+ 'config': {
625
+ 'query': {
626
+ 'Version': '2016-07-01',
627
+ 'Action': 'DescribeDBInstanceRegions',
628
+ },
629
+ 'headers': {
630
+ 'Content-Type': 'application/json'
631
+ },
632
+ },
633
+ 'paramsType': {
634
+ }
635
+ },
636
+ 'DescribeDBInstancePackages': {
637
+ 'url': '/',
638
+ 'method': 'GET',
639
+ 'config': {
640
+ 'query': {
641
+ 'Version': '2016-07-01',
642
+ 'Action': 'DescribeDBInstancePackages',
643
+ },
644
+ 'headers': {
645
+ 'Content-Type': 'application/json'
646
+ },
647
+ },
648
+ 'paramsType': {
649
+ 'RegionCode': 'String',
650
+ }
651
+ },
652
+ 'DescribeLastLog': {
653
+ 'url': '/',
654
+ 'method': 'GET',
655
+ 'config': {
656
+ 'query': {
657
+ 'Version': '2016-07-01',
658
+ 'Action': 'DescribeLastLog',
659
+ },
660
+ 'headers': {
661
+ 'Content-Type': 'application/json'
662
+ },
663
+ },
664
+ 'paramsType': {
665
+ 'DBInstanceIdentifier': 'String',
666
+ 'DBLogType': 'String',
667
+ }
668
+ },
669
+ 'StartAudit': {
670
+ 'url': '/',
671
+ 'method': 'GET',
672
+ 'config': {
673
+ 'query': {
674
+ 'Version': '2016-07-01',
675
+ 'Action': 'StartAudit',
676
+ },
677
+ 'headers': {
678
+ 'Content-Type': 'application/json'
679
+ },
680
+ },
681
+ 'paramsType': {
682
+ 'DBInstanceIdentifier': 'String',
683
+ }
684
+ },
685
+ 'StopAudit': {
686
+ 'url': '/',
687
+ 'method': 'GET',
688
+ 'config': {
689
+ 'query': {
690
+ 'Version': '2016-07-01',
691
+ 'Action': 'StopAudit',
692
+ },
693
+ 'headers': {
694
+ 'Content-Type': 'application/json'
695
+ },
696
+ },
697
+ 'paramsType': {
698
+ 'DBInstanceIdentifier': 'String',
699
+ }
700
+ },
701
+ 'ListAudit': {
702
+ 'url': '/',
703
+ 'method': 'GET',
704
+ 'config': {
705
+ 'query': {
706
+ 'Version': '2016-07-01',
707
+ 'Action': 'ListAudit',
708
+ },
709
+ 'headers': {
710
+ 'Content-Type': 'application/json'
711
+ },
712
+ },
713
+ 'paramsType': {
714
+ 'DBInstanceIdentifier': 'String',
715
+ 'AccessSqlStatement': 'String',
716
+ 'AccessSqlLanguage': 'String',
717
+ 'AccessDBName': 'String',
718
+ 'SourceIp': 'String',
719
+ 'AccessUsername': 'String',
720
+ 'AuditBeginTime': 'String',
721
+ 'AuditEndTime': 'String',
722
+ 'RunResult': 'String',
723
+ 'KeyWord': 'String',
724
+ 'SortBy': 'String',
725
+ 'SortWay': 'String',
726
+ 'Marker': 'String',
727
+ 'MaxRecords': 'String',
728
+ }
729
+ },
730
+ 'AuditStatistic': {
731
+ 'url': '/',
732
+ 'method': 'GET',
733
+ 'config': {
734
+ 'query': {
735
+ 'Version': '2016-07-01',
736
+ 'Action': 'AuditStatistic',
737
+ },
738
+ 'headers': {
739
+ 'Content-Type': 'application/json'
740
+ },
741
+ },
742
+ 'paramsType': {
743
+ 'DBInstanceIdentifier': 'String',
744
+ 'AuditStatisticBeginTime': 'String',
745
+ 'AuditStatisticEndTime': 'String',
746
+ }
747
+ },
748
+ 'GetTableRestorableTime': {
749
+ 'url': '/',
750
+ 'method': 'GET',
751
+ 'config': {
752
+ 'query': {
753
+ 'Version': '2016-07-01',
754
+ 'Action': 'GetTableRestorableTime',
755
+ },
756
+ 'headers': {
757
+ 'Content-Type': 'application/json'
758
+ },
759
+ },
760
+ 'paramsType': {
761
+ 'DBInstanceIdentifier': 'String',
762
+ }
763
+ },
764
+ 'GetHistoryDatabaseInfo': {
765
+ 'url': '/',
766
+ 'method': 'GET',
767
+ 'config': {
768
+ 'query': {
769
+ 'Version': '2016-07-01',
770
+ 'Action': 'GetHistoryDatabaseInfo',
771
+ },
772
+ 'headers': {
773
+ 'Content-Type': 'application/json'
774
+ },
775
+ },
776
+ 'paramsType': {
777
+ 'DBInstanceIdentifier': 'String',
778
+ 'DBBackupIdentifier': 'String',
779
+ 'RestorableTime': 'String',
780
+ }
781
+ },
782
+ 'OverrideDBInstanceByPointInTime': {
783
+ 'url': '/',
784
+ 'method': 'GET',
785
+ 'config': {
786
+ 'query': {
787
+ 'Version': '2016-07-01',
788
+ 'Action': 'OverrideDBInstanceByPointInTime',
789
+ },
790
+ 'headers': {
791
+ 'Content-Type': 'application/json'
792
+ },
793
+ },
794
+ 'paramsType': {
795
+ 'DBInstanceIdentifier': 'String',
796
+ 'DBBackupIdentifier': 'String',
797
+ 'RestorableTime': 'String',
798
+ }
799
+ },
800
+ 'RestoreToCurInstance': {
801
+ 'url': '/',
802
+ 'method': 'POST',
803
+ 'config': {
804
+ 'query': {
805
+ 'Version': '2016-07-01',
806
+ 'Action': 'RestoreToCurInstance',
807
+ },
808
+ 'headers': {
809
+ 'Content-Type': 'application/json'
810
+ },
811
+ },
812
+ 'paramsType': {
813
+ 'DBInstanceIdentifier': 'String',
814
+ 'DBBackupIdentifier': 'String',
815
+ 'RestorableTime': 'String',
816
+ 'SrcDatabases': 'Array',
817
+ 'DstDatabases': 'Array',
818
+ }
819
+ },
820
+ 'RestoreToSgInstance': {
821
+ 'url': '/',
822
+ 'method': 'POST',
823
+ 'config': {
824
+ 'query': {
825
+ 'Version': '2016-07-01',
826
+ 'Action': 'RestoreToSgInstance',
827
+ },
828
+ 'headers': {
829
+ 'Content-Type': 'application/json'
830
+ },
831
+ },
832
+ 'paramsType': {
833
+ 'DBInstanceIdentifier': 'String',
834
+ 'DBBackupIdentifier': 'String',
835
+ 'RestorableTime': 'String',
836
+ 'SrcDatabases': 'Array',
837
+ 'DstDatabases': 'Array',
838
+ }
839
+ },
840
+ 'DescribeAuditHotCount': {
841
+ 'url': '/',
842
+ 'method': 'GET',
843
+ 'config': {
844
+ 'query': {
845
+ 'Version': '2016-07-01',
846
+ 'Action': 'DescribeAuditHotCount',
847
+ },
848
+ 'headers': {
849
+ 'Content-Type': 'application/json'
850
+ },
851
+ },
852
+ 'paramsType': {
853
+ 'DBInstanceIdentifier': 'String',
854
+ 'TimeRange': 'String',
855
+ 'StartTime': 'String',
856
+ 'EndTime': 'String',
857
+ }
858
+ },
859
+ 'DescribeAuditHotDuration': {
860
+ 'url': '/',
861
+ 'method': 'GET',
862
+ 'config': {
863
+ 'query': {
864
+ 'Version': '2016-07-01',
865
+ 'Action': 'DescribeAuditHotDuration',
866
+ },
867
+ 'headers': {
868
+ 'Content-Type': 'application/json'
869
+ },
870
+ },
871
+ 'paramsType': {
872
+ 'DBInstanceIdentifier': 'String',
873
+ 'TimeRange': 'String',
874
+ 'StartTime': 'String',
875
+ 'EndTime': 'String',
876
+ }
877
+ },
878
+ 'SqlAuditReport': {
879
+ 'url': '/',
880
+ 'method': 'GET',
881
+ 'config': {
882
+ 'query': {
883
+ 'Version': '2016-07-01',
884
+ 'Action': 'SqlAuditReport',
885
+ },
886
+ 'headers': {
887
+ 'Content-Type': 'application/json'
888
+ },
889
+ },
890
+ 'paramsType': {
891
+ 'DBInstanceIdentifier': 'String',
892
+ 'TimeRange': 'String',
893
+ 'StartTime': 'String',
894
+ 'EndTime': 'String',
895
+ 'DbName': 'String',
896
+ 'SortBy': 'String',
897
+ 'SortWay': 'Int',
898
+ 'Page': 'Int',
899
+ 'Size': 'Int',
900
+ }
901
+ },
902
+ 'SqlAuditLineChart': {
903
+ 'url': '/',
904
+ 'method': 'GET',
905
+ 'config': {
906
+ 'query': {
907
+ 'Version': '2016-07-01',
908
+ 'Action': 'SqlAuditLineChart',
909
+ },
910
+ 'headers': {
911
+ 'Content-Type': 'application/json'
912
+ },
913
+ },
914
+ 'paramsType': {
915
+ 'DBInstanceIdentifier': 'String',
916
+ 'TimeRange': 'String',
917
+ 'StartTime': 'String',
918
+ 'EndTime': 'String',
919
+ }
920
+ },
921
+ 'SlowLogReport': {
922
+ 'url': '/',
923
+ 'method': 'GET',
924
+ 'config': {
925
+ 'query': {
926
+ 'Version': '2016-07-01',
927
+ 'Action': 'SlowLogReport',
928
+ },
929
+ 'headers': {
930
+ 'Content-Type': 'application/json'
931
+ },
932
+ },
933
+ 'paramsType': {
934
+ 'DBInstanceIdentifier': 'String',
935
+ 'StartTime': 'String',
936
+ 'EndTime': 'String',
937
+ 'SortBy': 'String',
938
+ 'SortWay': 'String',
939
+ 'HeadKey': 'String',
940
+ 'Marker': 'Int',
941
+ 'MaxRecords': 'Int',
942
+ }
943
+ },
944
+ 'SlowLogLineChart': {
945
+ 'url': '/',
946
+ 'method': 'GET',
947
+ 'config': {
948
+ 'query': {
949
+ 'Version': '2016-07-01',
950
+ 'Action': 'SlowLogLineChart',
951
+ },
952
+ 'headers': {
953
+ 'Content-Type': 'application/json'
954
+ },
955
+ },
956
+ 'paramsType': {
957
+ 'DBInstanceIdentifier': 'String',
958
+ 'StartTime': 'String',
959
+ 'EndTime': 'String',
960
+ }
961
+ },
962
+ 'SlowLogDetail': {
963
+ 'url': '/',
964
+ 'method': 'GET',
965
+ 'config': {
966
+ 'query': {
967
+ 'Version': '2016-07-01',
968
+ 'Action': 'SlowLogDetail',
969
+ },
970
+ 'headers': {
971
+ 'Content-Type': 'application/json'
972
+ },
973
+ },
974
+ 'paramsType': {
975
+ 'DBInstanceIdentifier': 'String',
976
+ 'StartTime': 'String',
977
+ 'EndTime': 'String',
978
+ 'SortBy': 'String',
979
+ 'SortWay': 'String',
980
+ 'HeadKey': 'String',
981
+ 'FingerPrint': 'String',
982
+ 'checksum': 'String',
983
+ }
984
+ },
985
+ 'StartAuditDetailExportTask': {
986
+ 'url': '/',
987
+ 'method': 'GET',
988
+ 'config': {
989
+ 'query': {
990
+ 'Version': '2016-07-01',
991
+ 'Action': 'StartAuditDetailExportTask',
992
+ },
993
+ 'headers': {
994
+ 'Content-Type': 'application/json'
995
+ },
996
+ },
997
+ 'paramsType': {
998
+ 'DBInstanceIdentifier': 'String',
999
+ 'ExportFileds': 'String',
1000
+ 'AuditBeginTime': 'String',
1001
+ 'AuditEndTime': 'String',
1002
+ }
1003
+ },
1004
+ 'ListAuditDetailExportTask': {
1005
+ 'url': '/',
1006
+ 'method': 'GET',
1007
+ 'config': {
1008
+ 'query': {
1009
+ 'Version': '2016-07-01',
1010
+ 'Action': 'ListAuditDetailExportTask',
1011
+ },
1012
+ 'headers': {
1013
+ 'Content-Type': 'application/json'
1014
+ },
1015
+ },
1016
+ 'paramsType': {
1017
+ 'DBInstanceIdentifier': 'String',
1018
+ 'Marker': 'String',
1019
+ 'MaxRecords': 'String',
1020
+ }
1021
+ },
1022
+ 'DescribeInstanceAccounts': {
1023
+ 'url': '/',
1024
+ 'method': 'GET',
1025
+ 'config': {
1026
+ 'query': {
1027
+ 'Version': '2016-07-01',
1028
+ 'Action': 'DescribeInstanceAccounts',
1029
+ },
1030
+ 'headers': {
1031
+ 'Content-Type': 'application/json'
1032
+ },
1033
+ },
1034
+ 'paramsType': {
1035
+ 'DBInstanceIdentifier': 'String',
1036
+ 'Keyword': 'String',
1037
+ }
1038
+ },
1039
+ 'ModifyInstanceAccountInfo': {
1040
+ 'url': '/',
1041
+ 'method': 'GET',
1042
+ 'config': {
1043
+ 'query': {
1044
+ 'Version': '2016-07-01',
1045
+ 'Action': 'ModifyInstanceAccountInfo',
1046
+ },
1047
+ 'headers': {
1048
+ 'Content-Type': 'application/json'
1049
+ },
1050
+ },
1051
+ 'paramsType': {
1052
+ 'DBInstanceIdentifier': 'String',
1053
+ 'InstanceAccountName': 'String',
1054
+ 'InstanceAccountPassword': 'String',
1055
+ 'InstanceAccountDescription': 'String',
1056
+ }
1057
+ },
1058
+ 'DescribeCollations': {
1059
+ 'url': '/',
1060
+ 'method': 'GET',
1061
+ 'config': {
1062
+ 'query': {
1063
+ 'Version': '2016-07-01',
1064
+ 'Action': 'DescribeCollations',
1065
+ },
1066
+ 'headers': {
1067
+ 'Content-Type': 'application/json'
1068
+ },
1069
+ },
1070
+ 'paramsType': {
1071
+ 'DBInstanceIdentifier': 'String',
1072
+ }
1073
+ },
1074
+ 'CreateInstanceDatabase': {
1075
+ 'url': '/',
1076
+ 'method': 'GET',
1077
+ 'config': {
1078
+ 'query': {
1079
+ 'Version': '2016-07-01',
1080
+ 'Action': 'CreateInstanceDatabase',
1081
+ },
1082
+ 'headers': {
1083
+ 'Content-Type': 'application/json'
1084
+ },
1085
+ },
1086
+ 'paramsType': {
1087
+ 'DBInstanceIdentifier': 'String',
1088
+ 'InstanceDatabaseName': 'String',
1089
+ 'InstanceDatabaseCollation': 'String',
1090
+ 'InstanceDatabaseDescription': 'String',
1091
+ }
1092
+ },
1093
+ 'ModifyInstanceDatabasePrivileges': {
1094
+ 'url': '/',
1095
+ 'method': 'GET',
1096
+ 'config': {
1097
+ 'query': {
1098
+ 'Version': '2016-07-01',
1099
+ 'Action': 'ModifyInstanceDatabasePrivileges',
1100
+ },
1101
+ 'headers': {
1102
+ 'Content-Type': 'application/json'
1103
+ },
1104
+ },
1105
+ 'paramsType': {
1106
+ 'DBInstanceIdentifier': 'String',
1107
+ 'InstanceDatabaseName': 'String',
1108
+ 'InstanceDatabasePrivileges': 'Filter',
1109
+ }
1110
+ },
1111
+ 'DescribeInstanceDatabases': {
1112
+ 'url': '/',
1113
+ 'method': 'GET',
1114
+ 'config': {
1115
+ 'query': {
1116
+ 'Version': '2016-07-01',
1117
+ 'Action': 'DescribeInstanceDatabases',
1118
+ },
1119
+ 'headers': {
1120
+ 'Content-Type': 'application/json'
1121
+ },
1122
+ },
1123
+ 'paramsType': {
1124
+ 'DBInstanceIdentifier': 'String',
1125
+ 'InstanceDatabaseName': 'String',
1126
+ 'Keyword': 'String',
1127
+ }
1128
+ },
1129
+ 'ModifyInstanceDatabaseInfo': {
1130
+ 'url': '/',
1131
+ 'method': 'GET',
1132
+ 'config': {
1133
+ 'query': {
1134
+ 'Version': '2016-07-01',
1135
+ 'Action': 'ModifyInstanceDatabaseInfo',
1136
+ },
1137
+ 'headers': {
1138
+ 'Content-Type': 'application/json'
1139
+ },
1140
+ },
1141
+ 'paramsType': {
1142
+ 'DBInstanceIdentifier': 'String',
1143
+ 'InstanceDatabaseName': 'String',
1144
+ 'InstanceDatabaseDescription': 'String',
1145
+ }
1146
+ },
1147
+ 'StartSlowLogDetailExportTask': {
1148
+ 'url': '/',
1149
+ 'method': 'GET',
1150
+ 'config': {
1151
+ 'query': {
1152
+ 'Version': '2016-07-01',
1153
+ 'Action': 'StartSlowLogDetailExportTask',
1154
+ },
1155
+ 'headers': {
1156
+ 'Content-Type': 'application/json'
1157
+ },
1158
+ },
1159
+ 'paramsType': {
1160
+ 'DBInstanceIdentifier': 'String',
1161
+ 'AuditBeginTime': 'String',
1162
+ 'AuditEndTime': 'String',
1163
+ 'AccessSqlStatement': 'String',
1164
+ }
1165
+ },
1166
+ 'ListSlowLogDetailExportTask': {
1167
+ 'url': '/',
1168
+ 'method': 'GET',
1169
+ 'config': {
1170
+ 'query': {
1171
+ 'Version': '2016-07-01',
1172
+ 'Action': 'ListSlowLogDetailExportTask',
1173
+ },
1174
+ 'headers': {
1175
+ 'Content-Type': 'application/json'
1176
+ },
1177
+ },
1178
+ 'paramsType': {
1179
+ 'DBInstanceIdentifier': 'String',
1180
+ 'Marker': 'String',
1181
+ 'MaxRecords': 'String',
1182
+ }
1183
+ },
1184
+ 'CreateInstanceAccountAction': {
1185
+ 'url': '/',
1186
+ 'method': 'POST',
1187
+ 'config': {
1188
+ 'query': {
1189
+ 'Version': '2016-07-01',
1190
+ 'Action': 'CreateInstanceAccountAction',
1191
+ },
1192
+ 'headers': {
1193
+ 'Content-Type': 'application/x-www-form-urlencoded'
1194
+ },
1195
+ },
1196
+ 'paramsType': {
1197
+ 'DBInstanceIdentifier': 'String',
1198
+ 'InstanceAccountName': 'String',
1199
+ 'InstanceAccountPassword': 'String',
1200
+ 'InstanceAccountDescription': 'String',
1201
+ 'InstanceAccountPrivileges': 'Array',
1202
+ }
1203
+ },
1204
+ 'ModifyInstanceAccountPrivilegesAction': {
1205
+ 'url': '/',
1206
+ 'method': 'POST',
1207
+ 'config': {
1208
+ 'query': {
1209
+ 'Version': '2016-07-01',
1210
+ 'Action': 'ModifyInstanceAccountPrivilegesAction',
1211
+ },
1212
+ 'headers': {
1213
+ 'Content-Type': 'application/x-www-form-urlencoded'
1214
+ },
1215
+ },
1216
+ 'paramsType': {
1217
+ 'DBInstanceIdentifier': 'String',
1218
+ 'InstanceAccountName': 'String',
1219
+ 'InstanceAccountPrivileges': 'Array',
1220
+ }
1221
+ },
1222
+ 'DeleteInstanceAccountAction': {
1223
+ 'url': '/',
1224
+ 'method': 'POST',
1225
+ 'config': {
1226
+ 'query': {
1227
+ 'Version': '2016-07-01',
1228
+ 'Action': 'DeleteInstanceAccountAction',
1229
+ },
1230
+ 'headers': {
1231
+ 'Content-Type': 'application/x-www-form-urlencoded'
1232
+ },
1233
+ },
1234
+ 'paramsType': {
1235
+ 'DBInstanceIdentifier': 'String',
1236
+ 'InstanceAccountName': 'String',
1237
+ }
1238
+ },
1239
+ 'DeleteInstanceDatabaseAction': {
1240
+ 'url': '/',
1241
+ 'method': 'POST',
1242
+ 'config': {
1243
+ 'query': {
1244
+ 'Version': '2016-07-01',
1245
+ 'Action': 'DeleteInstanceDatabaseAction',
1246
+ },
1247
+ 'headers': {
1248
+ 'Content-Type': 'application/x-www-form-urlencoded'
1249
+ },
1250
+ },
1251
+ 'paramsType': {
1252
+ 'DBInstanceIdentifier': 'String',
1253
+ 'InstanceDatabaseName': 'String',
1254
+ }
1255
+ },
1256
+ 'ModifyDBNetwork': {
1257
+ 'url': '/',
1258
+ 'method': 'POST',
1259
+ 'config': {
1260
+ 'query': {
1261
+ 'Version': '2016-07-01',
1262
+ 'Action': 'ModifyDBNetwork',
1263
+ },
1264
+ 'headers': {
1265
+ 'Content-Type': 'application/x-www-form-urlencoded'
1266
+ },
1267
+ },
1268
+ 'paramsType': {
1269
+ 'DBInstanceIdentifier': 'String',
1270
+ 'VpcId': 'String',
1271
+ 'SubnetId': 'String',
1272
+ 'Vip': 'String',
1273
+ 'Port': 'String',
1274
+ }
1275
+ },
1276
+ 'DescribeEngineParametersModifyHistory': {
1277
+ 'url': '/',
1278
+ 'method': 'GET',
1279
+ 'config': {
1280
+ 'query': {
1281
+ 'Version': '2016-07-01',
1282
+ 'Action': 'DescribeEngineParametersModifyHistory',
1283
+ },
1284
+ 'headers': {
1285
+ 'Content-Type': 'application/json'
1286
+ },
1287
+ },
1288
+ 'paramsType': {
1289
+ 'DBParameterGroupId': 'String',
1290
+ 'Name': 'String',
1291
+ 'MaxRecords': 'Int',
1292
+ 'Marker': 'Int',
1293
+ }
1294
+ },
1295
+ }
1296
+ }