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
@@ -32,7 +32,7 @@ module.exports = class Client extends BaseClient {
32
32
  Action: "RebootDBInstance"
33
33
  },
34
34
  headers: {
35
- "Content-Type": "application/json"
35
+ "Content-Type": "application/x-www-form-urlencoded"
36
36
  }
37
37
  },
38
38
  paramsType: {
@@ -48,7 +48,7 @@ module.exports = class Client extends BaseClient {
48
48
  Action: "ModifyDBParameterGroup"
49
49
  },
50
50
  headers: {
51
- "Content-Type": "application/json"
51
+ "Content-Type": "application/x-www-form-urlencoded"
52
52
  }
53
53
  },
54
54
  paramsType: {
@@ -67,7 +67,7 @@ module.exports = class Client extends BaseClient {
67
67
  Action: "ResetDBParameterGroup"
68
68
  },
69
69
  headers: {
70
- "Content-Type": "application/json"
70
+ "Content-Type": "application/x-www-form-urlencoded"
71
71
  }
72
72
  },
73
73
  paramsType: {
@@ -83,7 +83,7 @@ module.exports = class Client extends BaseClient {
83
83
  Action: "DescribeDBParameterGroup"
84
84
  },
85
85
  headers: {
86
- "Content-Type": "application/json"
86
+ "Content-Type": "application/x-www-form-urlencoded"
87
87
  }
88
88
  },
89
89
  paramsType: {
@@ -103,7 +103,7 @@ module.exports = class Client extends BaseClient {
103
103
  Action: "DescribeEngineDefaultParameters"
104
104
  },
105
105
  headers: {
106
- "Content-Type": "application/json"
106
+ "Content-Type": "application/x-www-form-urlencoded"
107
107
  }
108
108
  },
109
109
  paramsType: {
@@ -120,7 +120,7 @@ module.exports = class Client extends BaseClient {
120
120
  Action: "CreateDBParameterGroup"
121
121
  },
122
122
  headers: {
123
- "Content-Type": "application/json"
123
+ "Content-Type": "application/x-www-form-urlencoded"
124
124
  }
125
125
  },
126
126
  paramsType: {
@@ -141,7 +141,7 @@ module.exports = class Client extends BaseClient {
141
141
  Action: "DeleteDBParameterGroup"
142
142
  },
143
143
  headers: {
144
- "Content-Type": "application/json"
144
+ "Content-Type": "application/x-www-form-urlencoded"
145
145
  }
146
146
  },
147
147
  paramsType: {
@@ -157,7 +157,7 @@ module.exports = class Client extends BaseClient {
157
157
  Action: "CreateDBInstance"
158
158
  },
159
159
  headers: {
160
- "Content-Type": "application/json"
160
+ "Content-Type": "application/x-www-form-urlencoded"
161
161
  }
162
162
  },
163
163
  paramsType: {
@@ -192,7 +192,7 @@ module.exports = class Client extends BaseClient {
192
192
  Action: "RestoreDBInstanceFromDBBackup"
193
193
  },
194
194
  headers: {
195
- "Content-Type": "application/json"
195
+ "Content-Type": "application/x-www-form-urlencoded"
196
196
  }
197
197
  },
198
198
  paramsType: {
@@ -203,7 +203,8 @@ module.exports = class Client extends BaseClient {
203
203
  AvailabilityZone: "String",
204
204
  Duration: "Int",
205
205
  DurationUnit: "String",
206
- Port: "Int"
206
+ Port: "Int",
207
+ BillType: "String"
207
208
  }
208
209
  },
209
210
  DeleteDBInstance: {
@@ -215,7 +216,7 @@ module.exports = class Client extends BaseClient {
215
216
  Action: "DeleteDBInstance"
216
217
  },
217
218
  headers: {
218
- "Content-Type": "application/json"
219
+ "Content-Type": "application/x-www-form-urlencoded"
219
220
  }
220
221
  },
221
222
  paramsType: {
@@ -231,7 +232,7 @@ module.exports = class Client extends BaseClient {
231
232
  Action: "CreateDBInstanceReadReplica"
232
233
  },
233
234
  headers: {
234
- "Content-Type": "application/json"
235
+ "Content-Type": "application/x-www-form-urlencoded"
235
236
  }
236
237
  },
237
238
  paramsType: {
@@ -257,7 +258,7 @@ module.exports = class Client extends BaseClient {
257
258
  Action: "RestoreDBInstanceToPointInTime"
258
259
  },
259
260
  headers: {
260
- "Content-Type": "application/json"
261
+ "Content-Type": "application/x-www-form-urlencoded"
261
262
  }
262
263
  },
263
264
  paramsType: {
@@ -274,7 +275,7 @@ module.exports = class Client extends BaseClient {
274
275
  Action: "DescribeDBInstanceRestorableTime"
275
276
  },
276
277
  headers: {
277
- "Content-Type": "application/json"
278
+ "Content-Type": "application/x-www-form-urlencoded"
278
279
  }
279
280
  },
280
281
  paramsType: {
@@ -290,7 +291,7 @@ module.exports = class Client extends BaseClient {
290
291
  Action: "ModifyDBInstance"
291
292
  },
292
293
  headers: {
293
- "Content-Type": "application/json"
294
+ "Content-Type": "application/x-www-form-urlencoded"
294
295
  }
295
296
  },
296
297
  paramsType: {
@@ -309,7 +310,7 @@ module.exports = class Client extends BaseClient {
309
310
  Action: "DescribeDBLogFiles"
310
311
  },
311
312
  headers: {
312
- "Content-Type": "application/json"
313
+ "Content-Type": "application/x-www-form-urlencoded"
313
314
  }
314
315
  },
315
316
  paramsType: {
@@ -328,7 +329,7 @@ module.exports = class Client extends BaseClient {
328
329
  Action: "DescribeDBBackups"
329
330
  },
330
331
  headers: {
331
- "Content-Type": "application/json"
332
+ "Content-Type": "application/x-www-form-urlencoded"
332
333
  }
333
334
  },
334
335
  paramsType: {
@@ -348,7 +349,7 @@ module.exports = class Client extends BaseClient {
348
349
  Action: "ModifyDBInstanceSpec"
349
350
  },
350
351
  headers: {
351
- "Content-Type": "application/json"
352
+ "Content-Type": "application/x-www-form-urlencoded"
352
353
  }
353
354
  },
354
355
  paramsType: {
@@ -366,7 +367,7 @@ module.exports = class Client extends BaseClient {
366
367
  Action: "DescribeDBInstances"
367
368
  },
368
369
  headers: {
369
- "Content-Type": "application/json"
370
+ "Content-Type": "application/x-www-form-urlencoded"
370
371
  }
371
372
  },
372
373
  paramsType: {
@@ -381,7 +382,7 @@ module.exports = class Client extends BaseClient {
381
382
  DBInstanceIdentifierIn: "Filter",
382
383
  DBInstanceNameIn: "Filter",
383
384
  VipIn: "Filter",
384
- EIPIn: "String",
385
+ EIPIn: "Filter",
385
386
  ExpiryDateLessThan: "Int"
386
387
  }
387
388
  },
@@ -394,7 +395,7 @@ module.exports = class Client extends BaseClient {
394
395
  Action: "OverrideDBInstance"
395
396
  },
396
397
  headers: {
397
- "Content-Type": "application/json"
398
+ "Content-Type": "application/x-www-form-urlencoded"
398
399
  }
399
400
  },
400
401
  paramsType: {
@@ -411,7 +412,7 @@ module.exports = class Client extends BaseClient {
411
412
  Action: "DescribeDBEngineVersions"
412
413
  },
413
414
  headers: {
414
- "Content-Type": "application/json"
415
+ "Content-Type": "application/x-www-form-urlencoded"
415
416
  }
416
417
  },
417
418
  paramsType: {}
@@ -425,7 +426,7 @@ module.exports = class Client extends BaseClient {
425
426
  Action: "UpgradeDBInstanceEngineVersion"
426
427
  },
427
428
  headers: {
428
- "Content-Type": "application/json"
429
+ "Content-Type": "application/x-www-form-urlencoded"
429
430
  }
430
431
  },
431
432
  paramsType: {
@@ -443,7 +444,7 @@ module.exports = class Client extends BaseClient {
443
444
  Action: "ModifyDBInstanceType"
444
445
  },
445
446
  headers: {
446
- "Content-Type": "application/json"
447
+ "Content-Type": "application/x-www-form-urlencoded"
447
448
  }
448
449
  },
449
450
  paramsType: {
@@ -464,113 +465,115 @@ module.exports = class Client extends BaseClient {
464
465
  Action: "DescribeDBInstanceParameters"
465
466
  },
466
467
  headers: {
467
- "Content-Type": "application/json"
468
+ "Content-Type": "application/x-www-form-urlencoded"
468
469
  }
469
470
  },
470
471
  paramsType: {
471
472
  DBInstanceIdentifier: "String"
472
473
  }
473
474
  },
474
- DeleteDBBackup: {
475
+ ModifyDBBackupPolicy: {
475
476
  url: "/",
476
477
  method: "GET",
477
478
  config: {
478
479
  query: {
479
480
  Version: "2016-07-01",
480
- Action: "DeleteDBBackup"
481
+ Action: "ModifyDBBackupPolicy"
481
482
  },
482
483
  headers: {
483
- "Content-Type": "application/json"
484
+ "Content-Type": "application/x-www-form-urlencoded"
484
485
  }
485
486
  },
486
487
  paramsType: {
487
- DBBackupIdentifier: "String"
488
+ DBInstanceIdentifier: "String",
489
+ PreferredBackupTime: "String",
490
+ ExpireAfter: "Int",
491
+ IncrementalBackupCycle: "String",
492
+ FullBackupCycle: "String",
493
+ BinlogExpireAfter: "Int",
494
+ HighFrequencyBackup: "Boolean"
488
495
  }
489
496
  },
490
- CreateDBBackup: {
497
+ DescribeDBBackupPolicy: {
491
498
  url: "/",
492
499
  method: "GET",
493
500
  config: {
494
501
  query: {
495
502
  Version: "2016-07-01",
496
- Action: "CreateDBBackup"
503
+ Action: "DescribeDBBackupPolicy"
497
504
  },
498
505
  headers: {
499
- "Content-Type": "application/json"
506
+ "Content-Type": "application/x-www-form-urlencoded"
500
507
  }
501
508
  },
502
509
  paramsType: {
503
- DBInstanceIdentifier: "String",
504
- DBBackupName: "String",
505
- Description: "String"
510
+ DBInstanceIdentifier: "String"
506
511
  }
507
512
  },
508
- RenewDBInstance: {
513
+ DeleteDBBackup: {
509
514
  url: "/",
510
515
  method: "GET",
511
516
  config: {
512
517
  query: {
513
518
  Version: "2016-07-01",
514
- Action: "RenewDBInstance"
519
+ Action: "DeleteDBBackup"
515
520
  },
516
521
  headers: {
517
- "Content-Type": "application/json"
522
+ "Content-Type": "application/x-www-form-urlencoded"
518
523
  }
519
524
  },
520
525
  paramsType: {
521
- DBInstanceIdentifier: "String",
522
- Duration: "Int",
523
- DurationUnit: "String",
524
- BillType: "String",
525
- EndTime: "String"
526
+ DBBackupIdentifier: "String"
526
527
  }
527
528
  },
528
- SwitchDBInstanceHA: {
529
+ CreateDBBackup: {
529
530
  url: "/",
530
531
  method: "GET",
531
532
  config: {
532
533
  query: {
533
534
  Version: "2016-07-01",
534
- Action: "SwitchDBInstanceHA"
535
+ Action: "CreateDBBackup"
535
536
  },
536
537
  headers: {
537
- "Content-Type": "application/json"
538
+ "Content-Type": "application/x-www-form-urlencoded"
538
539
  }
539
540
  },
540
541
  paramsType: {
541
- DBInstanceIdentifier: "String"
542
+ DBInstanceIdentifier: "String",
543
+ DBBackupName: "String",
544
+ Description: "String"
542
545
  }
543
546
  },
544
- GenerateDBAdminURL: {
547
+ SwitchDBInstanceHA: {
545
548
  url: "/",
546
549
  method: "GET",
547
550
  config: {
548
551
  query: {
549
552
  Version: "2016-07-01",
550
- Action: "GenerateDBAdminURL"
553
+ Action: "SwitchDBInstanceHA"
551
554
  },
552
555
  headers: {
553
- "Content-Type": "application/json"
556
+ "Content-Type": "application/x-www-form-urlencoded"
554
557
  }
555
558
  },
556
559
  paramsType: {
557
560
  DBInstanceIdentifier: "String"
558
561
  }
559
562
  },
560
- StatisticDBInstances: {
563
+ GenerateDBAdminURL: {
561
564
  url: "/",
562
565
  method: "GET",
563
566
  config: {
564
567
  query: {
565
568
  Version: "2016-07-01",
566
- Action: "StatisticDBInstances"
569
+ Action: "GenerateDBAdminURL"
567
570
  },
568
571
  headers: {
569
- "Content-Type": "application/json"
572
+ "Content-Type": "application/x-www-form-urlencoded"
570
573
  }
571
574
  },
572
575
  paramsType: {
573
- ExpiryDateLessThan: "Int"
576
+ DBInstanceIdentifier: "String"
574
577
  }
575
578
  },
576
579
  AllocateDBInstanceEip: {
@@ -582,7 +585,7 @@ module.exports = class Client extends BaseClient {
582
585
  Action: "AllocateDBInstanceEip"
583
586
  },
584
587
  headers: {
585
- "Content-Type": "application/json"
588
+ "Content-Type": "application/x-www-form-urlencoded"
586
589
  }
587
590
  },
588
591
  paramsType: {
@@ -599,7 +602,7 @@ module.exports = class Client extends BaseClient {
599
602
  Action: "ReleaseDBInstanceEip"
600
603
  },
601
604
  headers: {
602
- "Content-Type": "application/json"
605
+ "Content-Type": "application/x-www-form-urlencoded"
603
606
  }
604
607
  },
605
608
  paramsType: {
@@ -615,7 +618,7 @@ module.exports = class Client extends BaseClient {
615
618
  Action: "ModifyDBInstanceAvailabilityZone"
616
619
  },
617
620
  headers: {
618
- "Content-Type": "application/json"
621
+ "Content-Type": "application/x-www-form-urlencoded"
619
622
  }
620
623
  },
621
624
  paramsType: {
@@ -624,34 +627,147 @@ module.exports = class Client extends BaseClient {
624
627
  "AvailabilityZone.2": "String"
625
628
  }
626
629
  },
627
- DescribeDBInstanceRegions: {
630
+ CreateSecurityGroup: {
628
631
  url: "/",
629
632
  method: "GET",
630
633
  config: {
631
634
  query: {
632
635
  Version: "2016-07-01",
633
- Action: "DescribeDBInstanceRegions"
636
+ Action: "CreateSecurityGroup"
634
637
  },
635
638
  headers: {
636
- "Content-Type": "application/json"
639
+ "Content-Type": "application/x-www-form-urlencoded"
637
640
  }
638
641
  },
639
- paramsType: {}
642
+ paramsType: {
643
+ SecurityGroupName: "String",
644
+ SecurityGroupRule: "Filter",
645
+ DBInstanceIdentifier: "String",
646
+ SecurityGroupDescription: "String"
647
+ }
640
648
  },
641
- DescribeDBInstancePackages: {
649
+ DescribeSecurityGroup: {
642
650
  url: "/",
643
651
  method: "GET",
644
652
  config: {
645
653
  query: {
646
654
  Version: "2016-07-01",
647
- Action: "DescribeDBInstancePackages"
655
+ Action: "DescribeSecurityGroup"
648
656
  },
649
657
  headers: {
650
- "Content-Type": "application/json"
658
+ "Content-Type": "application/x-www-form-urlencoded"
659
+ }
660
+ },
661
+ paramsType: {
662
+ SecurityGroupId: "String",
663
+ Type: "String"
664
+ }
665
+ },
666
+ DeleteSecurityGroup: {
667
+ url: "/",
668
+ method: "GET",
669
+ config: {
670
+ query: {
671
+ Version: "2016-07-01",
672
+ Action: "DeleteSecurityGroup"
673
+ },
674
+ headers: {
675
+ "Content-Type": "application/x-www-form-urlencoded"
676
+ }
677
+ },
678
+ paramsType: {
679
+ SecurityGroupIdList: "String"
680
+ }
681
+ },
682
+ ModifySecurityGroup: {
683
+ url: "/",
684
+ method: "GET",
685
+ config: {
686
+ query: {
687
+ Version: "2016-07-01",
688
+ Action: "ModifySecurityGroup"
689
+ },
690
+ headers: {
691
+ "Content-Type": "application/x-www-form-urlencoded"
692
+ }
693
+ },
694
+ paramsType: {
695
+ SecurityGroupId: "String",
696
+ SecurityGroupName: "String",
697
+ SecurityGroupDescription: "String"
698
+ }
699
+ },
700
+ CloneSecurityGroup: {
701
+ url: "/",
702
+ method: "GET",
703
+ config: {
704
+ query: {
705
+ Version: "2016-07-01",
706
+ Action: "CloneSecurityGroup"
707
+ },
708
+ headers: {
709
+ "Content-Type": "application/x-www-form-urlencoded"
710
+ }
711
+ },
712
+ paramsType: {
713
+ SecurityGroupId: "String",
714
+ SecurityGroupName: "String",
715
+ SecurityGroupDescription: "String"
716
+ }
717
+ },
718
+ ModifySecurityGroupRule: {
719
+ url: "/",
720
+ method: "GET",
721
+ config: {
722
+ query: {
723
+ Version: "2016-07-01",
724
+ Action: "ModifySecurityGroupRule"
725
+ },
726
+ headers: {
727
+ "Content-Type": "application/x-www-form-urlencoded"
651
728
  }
652
729
  },
653
730
  paramsType: {
654
- RegionCode: "String"
731
+ SecurityGroupRuleAction: "String",
732
+ SecurityGroupId: "String",
733
+ "SecurityGroupRule.SecurityGroupRuleId.N": "String",
734
+ "SecurityGroupRule.SecurityGroupRuleName.N": "String",
735
+ "SecurityGroupRule.SecurityGroupRuleCidr.N": "String"
736
+ }
737
+ },
738
+ SecurityGroupRelation: {
739
+ url: "/",
740
+ method: "GET",
741
+ config: {
742
+ query: {
743
+ Version: "2016-07-01",
744
+ Action: "SecurityGroupRelation"
745
+ },
746
+ headers: {
747
+ "Content-Type": "application/x-www-form-urlencoded"
748
+ }
749
+ },
750
+ paramsType: {
751
+ SecurityGroupId: "String",
752
+ RelationAction: "String",
753
+ DBInstanceIdentifier: "Filter"
754
+ }
755
+ },
756
+ ModifySecurityGroupRuleName: {
757
+ url: "/",
758
+ method: "GET",
759
+ config: {
760
+ query: {
761
+ Version: "2016-07-01",
762
+ Action: "ModifySecurityGroupRuleName"
763
+ },
764
+ headers: {
765
+ "Content-Type": "application/x-www-form-urlencoded"
766
+ }
767
+ },
768
+ paramsType: {
769
+ SecurityGroupRuleId: "String",
770
+ SecurityGroupRuleName: "String"
655
771
  }
656
772
  },
657
773
  DescribeLastLog: {
@@ -663,7 +779,7 @@ module.exports = class Client extends BaseClient {
663
779
  Action: "DescribeLastLog"
664
780
  },
665
781
  headers: {
666
- "Content-Type": "application/json"
782
+ "Content-Type": "application/x-www-form-urlencoded"
667
783
  }
668
784
  },
669
785
  paramsType: {
@@ -712,7 +828,7 @@ module.exports = class Client extends BaseClient {
712
828
  Action: "ListAudit"
713
829
  },
714
830
  headers: {
715
- "Content-Type": "application/json"
831
+ "Content-Type": "application/x-www-form-urlencoded"
716
832
  }
717
833
  },
718
834
  paramsType: {
@@ -741,7 +857,7 @@ module.exports = class Client extends BaseClient {
741
857
  Action: "AuditStatistic"
742
858
  },
743
859
  headers: {
744
- "Content-Type": "application/json"
860
+ "Content-Type": "application/x-www-form-urlencoded"
745
861
  }
746
862
  },
747
863
  paramsType: {
@@ -750,6 +866,22 @@ module.exports = class Client extends BaseClient {
750
866
  AuditStatisticEndTime: "String"
751
867
  }
752
868
  },
869
+ GetCurrentDatabaseInfo: {
870
+ url: "/",
871
+ method: "GET",
872
+ config: {
873
+ query: {
874
+ Version: "2016-07-01",
875
+ Action: "GetCurrentDatabaseInfo"
876
+ },
877
+ headers: {
878
+ "Content-Type": "application/x-www-form-urlencoded"
879
+ }
880
+ },
881
+ paramsType: {
882
+ DBInstanceIdentifier: "String"
883
+ }
884
+ },
753
885
  GetTableRestorableTime: {
754
886
  url: "/",
755
887
  method: "GET",
@@ -759,7 +891,7 @@ module.exports = class Client extends BaseClient {
759
891
  Action: "GetTableRestorableTime"
760
892
  },
761
893
  headers: {
762
- "Content-Type": "application/json"
894
+ "Content-Type": "application/x-www-form-urlencoded"
763
895
  }
764
896
  },
765
897
  paramsType: {
@@ -775,7 +907,7 @@ module.exports = class Client extends BaseClient {
775
907
  Action: "GetHistoryDatabaseInfo"
776
908
  },
777
909
  headers: {
778
- "Content-Type": "application/json"
910
+ "Content-Type": "application/x-www-form-urlencoded"
779
911
  }
780
912
  },
781
913
  paramsType: {
@@ -793,7 +925,7 @@ module.exports = class Client extends BaseClient {
793
925
  Action: "OverrideDBInstanceByPointInTime"
794
926
  },
795
927
  headers: {
796
- "Content-Type": "application/json"
928
+ "Content-Type": "application/x-www-form-urlencoded"
797
929
  }
798
930
  },
799
931
  paramsType: {
@@ -818,8 +950,8 @@ module.exports = class Client extends BaseClient {
818
950
  DBInstanceIdentifier: "String",
819
951
  DBBackupIdentifier: "String",
820
952
  RestorableTime: "String",
821
- SrcDatabases: "Array",
822
- DstDatabases: "Array"
953
+ SrcDatabases: "Filter",
954
+ DstDatabases: "Filter"
823
955
  }
824
956
  },
825
957
  RestoreToSgInstance: {
@@ -838,8 +970,8 @@ module.exports = class Client extends BaseClient {
838
970
  DBInstanceIdentifier: "String",
839
971
  DBBackupIdentifier: "String",
840
972
  RestorableTime: "String",
841
- SrcDatabases: "Array",
842
- DstDatabases: "Array"
973
+ SrcDatabases: "Filter",
974
+ DstDatabases: "Filter"
843
975
  }
844
976
  },
845
977
  DescribeAuditHotCount: {
@@ -851,7 +983,7 @@ module.exports = class Client extends BaseClient {
851
983
  Action: "DescribeAuditHotCount"
852
984
  },
853
985
  headers: {
854
- "Content-Type": "application/json"
986
+ "Content-Type": "application/x-www-form-urlencoded"
855
987
  }
856
988
  },
857
989
  paramsType: {
@@ -870,7 +1002,7 @@ module.exports = class Client extends BaseClient {
870
1002
  Action: "DescribeAuditHotDuration"
871
1003
  },
872
1004
  headers: {
873
- "Content-Type": "application/json"
1005
+ "Content-Type": "application/x-www-form-urlencoded"
874
1006
  }
875
1007
  },
876
1008
  paramsType: {
@@ -932,7 +1064,7 @@ module.exports = class Client extends BaseClient {
932
1064
  Action: "SlowLogReport"
933
1065
  },
934
1066
  headers: {
935
- "Content-Type": "application/json"
1067
+ "Content-Type": "application/x-www-form-urlencoded"
936
1068
  }
937
1069
  },
938
1070
  paramsType: {
@@ -955,7 +1087,7 @@ module.exports = class Client extends BaseClient {
955
1087
  Action: "SlowLogLineChart"
956
1088
  },
957
1089
  headers: {
958
- "Content-Type": "application/json"
1090
+ "Content-Type": "application/x-www-form-urlencoded"
959
1091
  }
960
1092
  },
961
1093
  paramsType: {
@@ -973,7 +1105,7 @@ module.exports = class Client extends BaseClient {
973
1105
  Action: "SlowLogDetail"
974
1106
  },
975
1107
  headers: {
976
- "Content-Type": "application/json"
1108
+ "Content-Type": "application/x-www-form-urlencoded"
977
1109
  }
978
1110
  },
979
1111
  paramsType: {
@@ -996,7 +1128,7 @@ module.exports = class Client extends BaseClient {
996
1128
  Action: "StartAuditDetailExportTask"
997
1129
  },
998
1130
  headers: {
999
- "Content-Type": "application/json"
1131
+ "Content-Type": "application/x-www-form-urlencoded"
1000
1132
  }
1001
1133
  },
1002
1134
  paramsType: {
@@ -1015,7 +1147,7 @@ module.exports = class Client extends BaseClient {
1015
1147
  Action: "ListAuditDetailExportTask"
1016
1148
  },
1017
1149
  headers: {
1018
- "Content-Type": "application/json"
1150
+ "Content-Type": "application/x-www-form-urlencoded"
1019
1151
  }
1020
1152
  },
1021
1153
  paramsType: {
@@ -1024,6 +1156,25 @@ module.exports = class Client extends BaseClient {
1024
1156
  MaxRecords: "String"
1025
1157
  }
1026
1158
  },
1159
+ CreateInstanceAccount: {
1160
+ url: "/",
1161
+ method: "GET",
1162
+ config: {
1163
+ query: {
1164
+ Version: "2016-07-01",
1165
+ Action: "CreateInstanceAccount"
1166
+ },
1167
+ headers: {
1168
+ "Content-Type": "application/x-www-form-urlencoded"
1169
+ }
1170
+ },
1171
+ paramsType: {
1172
+ DBInstanceIdentifier: "String",
1173
+ InstanceAccountName: "String",
1174
+ InstanceAccountPassword: "String",
1175
+ InstanceAccountDescription: "String"
1176
+ }
1177
+ },
1027
1178
  DescribeInstanceAccounts: {
1028
1179
  url: "/",
1029
1180
  method: "GET",
@@ -1033,7 +1184,7 @@ module.exports = class Client extends BaseClient {
1033
1184
  Action: "DescribeInstanceAccounts"
1034
1185
  },
1035
1186
  headers: {
1036
- "Content-Type": "application/json"
1187
+ "Content-Type": "application/x-www-form-urlencoded"
1037
1188
  }
1038
1189
  },
1039
1190
  paramsType: {
@@ -1050,7 +1201,7 @@ module.exports = class Client extends BaseClient {
1050
1201
  Action: "ModifyInstanceAccountInfo"
1051
1202
  },
1052
1203
  headers: {
1053
- "Content-Type": "application/json"
1204
+ "Content-Type": "application/x-www-form-urlencoded"
1054
1205
  }
1055
1206
  },
1056
1207
  paramsType: {
@@ -1060,6 +1211,41 @@ module.exports = class Client extends BaseClient {
1060
1211
  InstanceAccountDescription: "String"
1061
1212
  }
1062
1213
  },
1214
+ ModifyInstanceAccountPrivileges: {
1215
+ url: "/",
1216
+ method: "GET",
1217
+ config: {
1218
+ query: {
1219
+ Version: "2016-07-01",
1220
+ Action: "ModifyInstanceAccountPrivileges"
1221
+ },
1222
+ headers: {
1223
+ "Content-Type": "application/x-www-form-urlencoded"
1224
+ }
1225
+ },
1226
+ paramsType: {
1227
+ DBInstanceIdentifier: "String",
1228
+ InstanceAccountName: "String",
1229
+ InstanceAccountPrivileges: "Filter"
1230
+ }
1231
+ },
1232
+ DeleteInstanceAccount: {
1233
+ url: "/",
1234
+ method: "GET",
1235
+ config: {
1236
+ query: {
1237
+ Version: "2016-07-01",
1238
+ Action: "DeleteInstanceAccount"
1239
+ },
1240
+ headers: {
1241
+ "Content-Type": "application/x-www-form-urlencoded"
1242
+ }
1243
+ },
1244
+ paramsType: {
1245
+ DBInstanceIdentifier: "String",
1246
+ InstanceAccountName: "String"
1247
+ }
1248
+ },
1063
1249
  DescribeCollations: {
1064
1250
  url: "/",
1065
1251
  method: "GET",
@@ -1069,7 +1255,7 @@ module.exports = class Client extends BaseClient {
1069
1255
  Action: "DescribeCollations"
1070
1256
  },
1071
1257
  headers: {
1072
- "Content-Type": "application/json"
1258
+ "Content-Type": "application/x-www-form-urlencoded"
1073
1259
  }
1074
1260
  },
1075
1261
  paramsType: {
@@ -1085,7 +1271,7 @@ module.exports = class Client extends BaseClient {
1085
1271
  Action: "CreateInstanceDatabase"
1086
1272
  },
1087
1273
  headers: {
1088
- "Content-Type": "application/json"
1274
+ "Content-Type": "application/x-www-form-urlencoded"
1089
1275
  }
1090
1276
  },
1091
1277
  paramsType: {
@@ -1104,7 +1290,7 @@ module.exports = class Client extends BaseClient {
1104
1290
  Action: "ModifyInstanceDatabasePrivileges"
1105
1291
  },
1106
1292
  headers: {
1107
- "Content-Type": "application/json"
1293
+ "Content-Type": "application/x-www-form-urlencoded"
1108
1294
  }
1109
1295
  },
1110
1296
  paramsType: {
@@ -1122,7 +1308,7 @@ module.exports = class Client extends BaseClient {
1122
1308
  Action: "DescribeInstanceDatabases"
1123
1309
  },
1124
1310
  headers: {
1125
- "Content-Type": "application/json"
1311
+ "Content-Type": "application/x-www-form-urlencoded"
1126
1312
  }
1127
1313
  },
1128
1314
  paramsType: {
@@ -1140,7 +1326,7 @@ module.exports = class Client extends BaseClient {
1140
1326
  Action: "ModifyInstanceDatabaseInfo"
1141
1327
  },
1142
1328
  headers: {
1143
- "Content-Type": "application/json"
1329
+ "Content-Type": "application/x-www-form-urlencoded"
1144
1330
  }
1145
1331
  },
1146
1332
  paramsType: {
@@ -1158,7 +1344,7 @@ module.exports = class Client extends BaseClient {
1158
1344
  Action: "StartSlowLogDetailExportTask"
1159
1345
  },
1160
1346
  headers: {
1161
- "Content-Type": "application/json"
1347
+ "Content-Type": "application/x-www-form-urlencoded"
1162
1348
  }
1163
1349
  },
1164
1350
  paramsType: {
@@ -1177,7 +1363,7 @@ module.exports = class Client extends BaseClient {
1177
1363
  Action: "ListSlowLogDetailExportTask"
1178
1364
  },
1179
1365
  headers: {
1180
- "Content-Type": "application/json"
1366
+ "Content-Type": "application/x-www-form-urlencoded"
1181
1367
  }
1182
1368
  },
1183
1369
  paramsType: {
@@ -1195,7 +1381,7 @@ module.exports = class Client extends BaseClient {
1195
1381
  Action: "CreateInstanceAccountAction"
1196
1382
  },
1197
1383
  headers: {
1198
- "Content-Type": "application/x-www-form-urlencoded"
1384
+ "Content-Type": "application/json"
1199
1385
  }
1200
1386
  },
1201
1387
  paramsType: {
@@ -1215,7 +1401,7 @@ module.exports = class Client extends BaseClient {
1215
1401
  Action: "ModifyInstanceAccountPrivilegesAction"
1216
1402
  },
1217
1403
  headers: {
1218
- "Content-Type": "application/x-www-form-urlencoded"
1404
+ "Content-Type": "application/json"
1219
1405
  }
1220
1406
  },
1221
1407
  paramsType: {
@@ -1233,7 +1419,7 @@ module.exports = class Client extends BaseClient {
1233
1419
  Action: "DeleteInstanceAccountAction"
1234
1420
  },
1235
1421
  headers: {
1236
- "Content-Type": "application/x-www-form-urlencoded"
1422
+ "Content-Type": "application/json"
1237
1423
  }
1238
1424
  },
1239
1425
  paramsType: {
@@ -1250,7 +1436,7 @@ module.exports = class Client extends BaseClient {
1250
1436
  Action: "DeleteInstanceDatabaseAction"
1251
1437
  },
1252
1438
  headers: {
1253
- "Content-Type": "application/x-www-form-urlencoded"
1439
+ "Content-Type": "application/json"
1254
1440
  }
1255
1441
  },
1256
1442
  paramsType: {
@@ -1267,7 +1453,7 @@ module.exports = class Client extends BaseClient {
1267
1453
  Action: "ModifyDBNetwork"
1268
1454
  },
1269
1455
  headers: {
1270
- "Content-Type": "application/x-www-form-urlencoded"
1456
+ "Content-Type": "application/json"
1271
1457
  }
1272
1458
  },
1273
1459
  paramsType: {
@@ -1278,6 +1464,39 @@ module.exports = class Client extends BaseClient {
1278
1464
  Port: "String"
1279
1465
  }
1280
1466
  },
1467
+ DescribeDBInstanceMonitorPeriod: {
1468
+ url: "/",
1469
+ method: "GET",
1470
+ config: {
1471
+ query: {
1472
+ Version: "2016-07-01",
1473
+ Action: "DescribeDBInstanceMonitorPeriod"
1474
+ },
1475
+ headers: {
1476
+ "Content-Type": "application/x-www-form-urlencoded"
1477
+ }
1478
+ },
1479
+ paramsType: {
1480
+ DBInstanceIdentifier: "String"
1481
+ }
1482
+ },
1483
+ ModifyDBInstanceMonitorPeriod: {
1484
+ url: "/",
1485
+ method: "GET",
1486
+ config: {
1487
+ query: {
1488
+ Version: "2016-07-01",
1489
+ Action: "ModifyDBInstanceMonitorPeriod"
1490
+ },
1491
+ headers: {
1492
+ "Content-Type": "application/x-www-form-urlencoded"
1493
+ }
1494
+ },
1495
+ paramsType: {
1496
+ DBInstanceIdentifier: "String",
1497
+ Period: "String"
1498
+ }
1499
+ },
1281
1500
  DescribeEngineParametersModifyHistory: {
1282
1501
  url: "/",
1283
1502
  method: "GET",
@@ -1296,6 +1515,196 @@ module.exports = class Client extends BaseClient {
1296
1515
  MaxRecords: "Int",
1297
1516
  Marker: "Int"
1298
1517
  }
1518
+ },
1519
+ BatchApplyDBParameterGroup: {
1520
+ url: "/",
1521
+ method: "POST",
1522
+ config: {
1523
+ query: {
1524
+ Version: "2016-07-01",
1525
+ Action: "BatchApplyDBParameterGroup"
1526
+ },
1527
+ headers: {
1528
+ "Content-Type": "application/json"
1529
+ }
1530
+ },
1531
+ paramsType: {
1532
+ DBInstanceIdentifier: "String",
1533
+ DBParameterGroupId: "String"
1534
+ }
1535
+ },
1536
+ UpgradeDBInstanceLatesVersion: {
1537
+ url: "/",
1538
+ method: "GET",
1539
+ config: {
1540
+ query: {
1541
+ Version: "2016-07-01",
1542
+ Action: "UpgradeDBInstanceLatesVersion"
1543
+ },
1544
+ headers: {
1545
+ "Content-Type": "application/x-www-form-urlencoded"
1546
+ }
1547
+ },
1548
+ paramsType: {
1549
+ DBInstanceIdentifier: "String"
1550
+ }
1551
+ },
1552
+ DescribeProxyInstance: {
1553
+ url: "/",
1554
+ method: "GET",
1555
+ config: {
1556
+ query: {
1557
+ Version: "2016-07-01",
1558
+ Action: "DescribeProxyInstance"
1559
+ },
1560
+ headers: {
1561
+ "Content-Type": "application/x-www-form-urlencoded"
1562
+ }
1563
+ },
1564
+ paramsType: {
1565
+ DBInstanceIdentifier: "String"
1566
+ }
1567
+ },
1568
+ SetUpProxyInstance: {
1569
+ url: "/",
1570
+ method: "GET",
1571
+ config: {
1572
+ query: {
1573
+ Version: "2016-07-01",
1574
+ Action: "SetUpProxyInstance"
1575
+ },
1576
+ headers: {
1577
+ "Content-Type": "application/x-www-form-urlencoded"
1578
+ }
1579
+ },
1580
+ paramsType: {
1581
+ DBInstanceIdentifier: "String",
1582
+ ReadOnlyInstanceList: "Filter"
1583
+ }
1584
+ },
1585
+ TemporaryCloseSwitchover: {
1586
+ url: "/",
1587
+ method: "GET",
1588
+ config: {
1589
+ query: {
1590
+ Version: "2016-07-01",
1591
+ Action: "TemporaryCloseSwitchover"
1592
+ },
1593
+ headers: {
1594
+ "Content-Type": "application/x-www-form-urlencoded"
1595
+ }
1596
+ },
1597
+ paramsType: {
1598
+ DBInstanceIdentifier: "String",
1599
+ AutoSwitch: "Boolean",
1600
+ ExpireTime: "String"
1601
+ }
1602
+ },
1603
+ DescribeBackupOverview: {
1604
+ url: "/",
1605
+ method: "GET",
1606
+ config: {
1607
+ query: {
1608
+ Version: "2016-07-01",
1609
+ Action: "DescribeBackupOverview"
1610
+ },
1611
+ headers: {
1612
+ "Content-Type": "application/x-www-form-urlencoded"
1613
+ }
1614
+ },
1615
+ paramsType: {}
1616
+ },
1617
+ DescribeStatisticBackupDetails: {
1618
+ url: "/",
1619
+ method: "GET",
1620
+ config: {
1621
+ query: {
1622
+ Version: "2016-07-01",
1623
+ Action: "DescribeStatisticBackupDetails"
1624
+ },
1625
+ headers: {
1626
+ "Content-Type": "application/x-www-form-urlencoded"
1627
+ }
1628
+ },
1629
+ paramsType: {
1630
+ DataType: "String",
1631
+ BackupType: "String",
1632
+ Marker: "Int",
1633
+ MaxRecords: "Int"
1634
+ }
1635
+ },
1636
+ ModifyMaintenanceTime: {
1637
+ url: "/",
1638
+ method: "GET",
1639
+ config: {
1640
+ query: {
1641
+ Version: "2016-07-01",
1642
+ Action: "ModifyMaintenanceTime"
1643
+ },
1644
+ headers: {
1645
+ "Content-Type": "application/x-www-form-urlencoded"
1646
+ }
1647
+ },
1648
+ paramsType: {
1649
+ DBInstanceIdentifier: "String",
1650
+ StartTime: "String",
1651
+ Duration: "Double"
1652
+ }
1653
+ },
1654
+ ModifyInstanceDatabasePrivilegesAction: {
1655
+ url: "/",
1656
+ method: "POST",
1657
+ config: {
1658
+ query: {
1659
+ Version: "2016-07-01",
1660
+ Action: "ModifyInstanceDatabasePrivilegesAction"
1661
+ },
1662
+ headers: {
1663
+ "Content-Type": "application/json"
1664
+ }
1665
+ },
1666
+ paramsType: {
1667
+ DBInstanceIdentifier: "String",
1668
+ InstanceDatabaseName: "String",
1669
+ InstanceDatabasePrivileges: "Filter"
1670
+ }
1671
+ },
1672
+ UpdateDBInstanceOrder: {
1673
+ url: "/",
1674
+ method: "GET",
1675
+ config: {
1676
+ query: {
1677
+ Version: "2016-07-01",
1678
+ Action: "UpdateDBInstanceOrder"
1679
+ },
1680
+ headers: {
1681
+ "Content-Type": "application/json"
1682
+ }
1683
+ },
1684
+ paramsType: {
1685
+ DBInstanceIdentifier: "String",
1686
+ UpdateUse: "String",
1687
+ Duration: "Int",
1688
+ BillType: "String"
1689
+ }
1690
+ },
1691
+ UpdateResourceProtection: {
1692
+ url: "/",
1693
+ method: "GET",
1694
+ config: {
1695
+ query: {
1696
+ Version: "2016-07-01",
1697
+ Action: "UpdateResourceProtection"
1698
+ },
1699
+ headers: {
1700
+ "Content-Type": "application/x-www-form-urlencoded"
1701
+ }
1702
+ },
1703
+ paramsType: {
1704
+ DBInstanceIdentifier: "String",
1705
+ ProtectionSwitch: "String",
1706
+ ProtectionReason: "String"
1707
+ }
1299
1708
  }
1300
1709
  });
1301
1710
  }