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
@@ -25,7 +25,7 @@ module.exports = class Client extends BaseClient {
25
25
  Action: "RebootDBInstance",
26
26
  },
27
27
  headers: {
28
- "Content-Type": "application/json",
28
+ "Content-Type": "application/x-www-form-urlencoded",
29
29
  },
30
30
  },
31
31
  paramsType: {
@@ -41,7 +41,7 @@ module.exports = class Client extends BaseClient {
41
41
  Action: "ModifyDBParameterGroup",
42
42
  },
43
43
  headers: {
44
- "Content-Type": "application/json",
44
+ "Content-Type": "application/x-www-form-urlencoded",
45
45
  },
46
46
  },
47
47
  paramsType: {
@@ -60,7 +60,7 @@ module.exports = class Client extends BaseClient {
60
60
  Action: "ResetDBParameterGroup",
61
61
  },
62
62
  headers: {
63
- "Content-Type": "application/json",
63
+ "Content-Type": "application/x-www-form-urlencoded",
64
64
  },
65
65
  },
66
66
  paramsType: {
@@ -76,7 +76,7 @@ module.exports = class Client extends BaseClient {
76
76
  Action: "DescribeDBParameterGroup",
77
77
  },
78
78
  headers: {
79
- "Content-Type": "application/json",
79
+ "Content-Type": "application/x-www-form-urlencoded",
80
80
  },
81
81
  },
82
82
  paramsType: {
@@ -96,7 +96,7 @@ module.exports = class Client extends BaseClient {
96
96
  Action: "DescribeEngineDefaultParameters",
97
97
  },
98
98
  headers: {
99
- "Content-Type": "application/json",
99
+ "Content-Type": "application/x-www-form-urlencoded",
100
100
  },
101
101
  },
102
102
  paramsType: {
@@ -113,7 +113,7 @@ module.exports = class Client extends BaseClient {
113
113
  Action: "CreateDBParameterGroup",
114
114
  },
115
115
  headers: {
116
- "Content-Type": "application/json",
116
+ "Content-Type": "application/x-www-form-urlencoded",
117
117
  },
118
118
  },
119
119
  paramsType: {
@@ -134,7 +134,7 @@ module.exports = class Client extends BaseClient {
134
134
  Action: "DeleteDBParameterGroup",
135
135
  },
136
136
  headers: {
137
- "Content-Type": "application/json",
137
+ "Content-Type": "application/x-www-form-urlencoded",
138
138
  },
139
139
  },
140
140
  paramsType: {
@@ -150,7 +150,7 @@ module.exports = class Client extends BaseClient {
150
150
  Action: "CreateDBInstance",
151
151
  },
152
152
  headers: {
153
- "Content-Type": "application/json",
153
+ "Content-Type": "application/x-www-form-urlencoded",
154
154
  },
155
155
  },
156
156
  paramsType: {
@@ -185,7 +185,7 @@ module.exports = class Client extends BaseClient {
185
185
  Action: "RestoreDBInstanceFromDBBackup",
186
186
  },
187
187
  headers: {
188
- "Content-Type": "application/json",
188
+ "Content-Type": "application/x-www-form-urlencoded",
189
189
  },
190
190
  },
191
191
  paramsType: {
@@ -197,6 +197,7 @@ module.exports = class Client extends BaseClient {
197
197
  Duration: "Int",
198
198
  DurationUnit: "String",
199
199
  Port: "Int",
200
+ BillType: "String",
200
201
  },
201
202
  },
202
203
  DeleteDBInstance: {
@@ -208,7 +209,7 @@ module.exports = class Client extends BaseClient {
208
209
  Action: "DeleteDBInstance",
209
210
  },
210
211
  headers: {
211
- "Content-Type": "application/json",
212
+ "Content-Type": "application/x-www-form-urlencoded",
212
213
  },
213
214
  },
214
215
  paramsType: {
@@ -224,7 +225,7 @@ module.exports = class Client extends BaseClient {
224
225
  Action: "CreateDBInstanceReadReplica",
225
226
  },
226
227
  headers: {
227
- "Content-Type": "application/json",
228
+ "Content-Type": "application/x-www-form-urlencoded",
228
229
  },
229
230
  },
230
231
  paramsType: {
@@ -250,7 +251,7 @@ module.exports = class Client extends BaseClient {
250
251
  Action: "RestoreDBInstanceToPointInTime",
251
252
  },
252
253
  headers: {
253
- "Content-Type": "application/json",
254
+ "Content-Type": "application/x-www-form-urlencoded",
254
255
  },
255
256
  },
256
257
  paramsType: {
@@ -267,7 +268,7 @@ module.exports = class Client extends BaseClient {
267
268
  Action: "DescribeDBInstanceRestorableTime",
268
269
  },
269
270
  headers: {
270
- "Content-Type": "application/json",
271
+ "Content-Type": "application/x-www-form-urlencoded",
271
272
  },
272
273
  },
273
274
  paramsType: {
@@ -283,7 +284,7 @@ module.exports = class Client extends BaseClient {
283
284
  Action: "ModifyDBInstance",
284
285
  },
285
286
  headers: {
286
- "Content-Type": "application/json",
287
+ "Content-Type": "application/x-www-form-urlencoded",
287
288
  },
288
289
  },
289
290
  paramsType: {
@@ -302,7 +303,7 @@ module.exports = class Client extends BaseClient {
302
303
  Action: "DescribeDBLogFiles",
303
304
  },
304
305
  headers: {
305
- "Content-Type": "application/json",
306
+ "Content-Type": "application/x-www-form-urlencoded",
306
307
  },
307
308
  },
308
309
  paramsType: {
@@ -321,7 +322,7 @@ module.exports = class Client extends BaseClient {
321
322
  Action: "DescribeDBBackups",
322
323
  },
323
324
  headers: {
324
- "Content-Type": "application/json",
325
+ "Content-Type": "application/x-www-form-urlencoded",
325
326
  },
326
327
  },
327
328
  paramsType: {
@@ -341,7 +342,7 @@ module.exports = class Client extends BaseClient {
341
342
  Action: "ModifyDBInstanceSpec",
342
343
  },
343
344
  headers: {
344
- "Content-Type": "application/json",
345
+ "Content-Type": "application/x-www-form-urlencoded",
345
346
  },
346
347
  },
347
348
  paramsType: {
@@ -359,7 +360,7 @@ module.exports = class Client extends BaseClient {
359
360
  Action: "DescribeDBInstances",
360
361
  },
361
362
  headers: {
362
- "Content-Type": "application/json",
363
+ "Content-Type": "application/x-www-form-urlencoded",
363
364
  },
364
365
  },
365
366
  paramsType: {
@@ -374,7 +375,7 @@ module.exports = class Client extends BaseClient {
374
375
  DBInstanceIdentifierIn: "Filter",
375
376
  DBInstanceNameIn: "Filter",
376
377
  VipIn: "Filter",
377
- EIPIn: "String",
378
+ EIPIn: "Filter",
378
379
  ExpiryDateLessThan: "Int",
379
380
  },
380
381
  },
@@ -387,7 +388,7 @@ module.exports = class Client extends BaseClient {
387
388
  Action: "OverrideDBInstance",
388
389
  },
389
390
  headers: {
390
- "Content-Type": "application/json",
391
+ "Content-Type": "application/x-www-form-urlencoded",
391
392
  },
392
393
  },
393
394
  paramsType: {
@@ -404,7 +405,7 @@ module.exports = class Client extends BaseClient {
404
405
  Action: "DescribeDBEngineVersions",
405
406
  },
406
407
  headers: {
407
- "Content-Type": "application/json",
408
+ "Content-Type": "application/x-www-form-urlencoded",
408
409
  },
409
410
  },
410
411
  paramsType: {},
@@ -418,7 +419,7 @@ module.exports = class Client extends BaseClient {
418
419
  Action: "UpgradeDBInstanceEngineVersion",
419
420
  },
420
421
  headers: {
421
- "Content-Type": "application/json",
422
+ "Content-Type": "application/x-www-form-urlencoded",
422
423
  },
423
424
  },
424
425
  paramsType: {
@@ -436,7 +437,7 @@ module.exports = class Client extends BaseClient {
436
437
  Action: "ModifyDBInstanceType",
437
438
  },
438
439
  headers: {
439
- "Content-Type": "application/json",
440
+ "Content-Type": "application/x-www-form-urlencoded",
440
441
  },
441
442
  },
442
443
  paramsType: {
@@ -457,113 +458,115 @@ module.exports = class Client extends BaseClient {
457
458
  Action: "DescribeDBInstanceParameters",
458
459
  },
459
460
  headers: {
460
- "Content-Type": "application/json",
461
+ "Content-Type": "application/x-www-form-urlencoded",
461
462
  },
462
463
  },
463
464
  paramsType: {
464
465
  DBInstanceIdentifier: "String",
465
466
  },
466
467
  },
467
- DeleteDBBackup: {
468
+ ModifyDBBackupPolicy: {
468
469
  url: "/",
469
470
  method: "GET",
470
471
  config: {
471
472
  query: {
472
473
  Version: "2016-07-01",
473
- Action: "DeleteDBBackup",
474
+ Action: "ModifyDBBackupPolicy",
474
475
  },
475
476
  headers: {
476
- "Content-Type": "application/json",
477
+ "Content-Type": "application/x-www-form-urlencoded",
477
478
  },
478
479
  },
479
480
  paramsType: {
480
- DBBackupIdentifier: "String",
481
+ DBInstanceIdentifier: "String",
482
+ PreferredBackupTime: "String",
483
+ ExpireAfter: "Int",
484
+ IncrementalBackupCycle: "String",
485
+ FullBackupCycle: "String",
486
+ BinlogExpireAfter: "Int",
487
+ HighFrequencyBackup: "Boolean",
481
488
  },
482
489
  },
483
- CreateDBBackup: {
490
+ DescribeDBBackupPolicy: {
484
491
  url: "/",
485
492
  method: "GET",
486
493
  config: {
487
494
  query: {
488
495
  Version: "2016-07-01",
489
- Action: "CreateDBBackup",
496
+ Action: "DescribeDBBackupPolicy",
490
497
  },
491
498
  headers: {
492
- "Content-Type": "application/json",
499
+ "Content-Type": "application/x-www-form-urlencoded",
493
500
  },
494
501
  },
495
502
  paramsType: {
496
503
  DBInstanceIdentifier: "String",
497
- DBBackupName: "String",
498
- Description: "String",
499
504
  },
500
505
  },
501
- RenewDBInstance: {
506
+ DeleteDBBackup: {
502
507
  url: "/",
503
508
  method: "GET",
504
509
  config: {
505
510
  query: {
506
511
  Version: "2016-07-01",
507
- Action: "RenewDBInstance",
512
+ Action: "DeleteDBBackup",
508
513
  },
509
514
  headers: {
510
- "Content-Type": "application/json",
515
+ "Content-Type": "application/x-www-form-urlencoded",
511
516
  },
512
517
  },
513
518
  paramsType: {
514
- DBInstanceIdentifier: "String",
515
- Duration: "Int",
516
- DurationUnit: "String",
517
- BillType: "String",
518
- EndTime: "String",
519
+ DBBackupIdentifier: "String",
519
520
  },
520
521
  },
521
- SwitchDBInstanceHA: {
522
+ CreateDBBackup: {
522
523
  url: "/",
523
524
  method: "GET",
524
525
  config: {
525
526
  query: {
526
527
  Version: "2016-07-01",
527
- Action: "SwitchDBInstanceHA",
528
+ Action: "CreateDBBackup",
528
529
  },
529
530
  headers: {
530
- "Content-Type": "application/json",
531
+ "Content-Type": "application/x-www-form-urlencoded",
531
532
  },
532
533
  },
533
534
  paramsType: {
534
535
  DBInstanceIdentifier: "String",
536
+ DBBackupName: "String",
537
+ Description: "String",
535
538
  },
536
539
  },
537
- GenerateDBAdminURL: {
540
+ SwitchDBInstanceHA: {
538
541
  url: "/",
539
542
  method: "GET",
540
543
  config: {
541
544
  query: {
542
545
  Version: "2016-07-01",
543
- Action: "GenerateDBAdminURL",
546
+ Action: "SwitchDBInstanceHA",
544
547
  },
545
548
  headers: {
546
- "Content-Type": "application/json",
549
+ "Content-Type": "application/x-www-form-urlencoded",
547
550
  },
548
551
  },
549
552
  paramsType: {
550
553
  DBInstanceIdentifier: "String",
551
554
  },
552
555
  },
553
- StatisticDBInstances: {
556
+ GenerateDBAdminURL: {
554
557
  url: "/",
555
558
  method: "GET",
556
559
  config: {
557
560
  query: {
558
561
  Version: "2016-07-01",
559
- Action: "StatisticDBInstances",
562
+ Action: "GenerateDBAdminURL",
560
563
  },
561
564
  headers: {
562
- "Content-Type": "application/json",
565
+ "Content-Type": "application/x-www-form-urlencoded",
563
566
  },
564
567
  },
565
568
  paramsType: {
566
- ExpiryDateLessThan: "Int",
569
+ DBInstanceIdentifier: "String",
567
570
  },
568
571
  },
569
572
  AllocateDBInstanceEip: {
@@ -575,7 +578,7 @@ module.exports = class Client extends BaseClient {
575
578
  Action: "AllocateDBInstanceEip",
576
579
  },
577
580
  headers: {
578
- "Content-Type": "application/json",
581
+ "Content-Type": "application/x-www-form-urlencoded",
579
582
  },
580
583
  },
581
584
  paramsType: {
@@ -592,7 +595,7 @@ module.exports = class Client extends BaseClient {
592
595
  Action: "ReleaseDBInstanceEip",
593
596
  },
594
597
  headers: {
595
- "Content-Type": "application/json",
598
+ "Content-Type": "application/x-www-form-urlencoded",
596
599
  },
597
600
  },
598
601
  paramsType: {
@@ -608,7 +611,7 @@ module.exports = class Client extends BaseClient {
608
611
  Action: "ModifyDBInstanceAvailabilityZone",
609
612
  },
610
613
  headers: {
611
- "Content-Type": "application/json",
614
+ "Content-Type": "application/x-www-form-urlencoded",
612
615
  },
613
616
  },
614
617
  paramsType: {
@@ -617,34 +620,147 @@ module.exports = class Client extends BaseClient {
617
620
  "AvailabilityZone.2": "String",
618
621
  },
619
622
  },
620
- DescribeDBInstanceRegions: {
623
+ CreateSecurityGroup: {
621
624
  url: "/",
622
625
  method: "GET",
623
626
  config: {
624
627
  query: {
625
628
  Version: "2016-07-01",
626
- Action: "DescribeDBInstanceRegions",
629
+ Action: "CreateSecurityGroup",
627
630
  },
628
631
  headers: {
629
- "Content-Type": "application/json",
632
+ "Content-Type": "application/x-www-form-urlencoded",
630
633
  },
631
634
  },
632
- paramsType: {},
635
+ paramsType: {
636
+ SecurityGroupName: "String",
637
+ SecurityGroupRule: "Filter",
638
+ DBInstanceIdentifier: "String",
639
+ SecurityGroupDescription: "String",
640
+ },
633
641
  },
634
- DescribeDBInstancePackages: {
642
+ DescribeSecurityGroup: {
635
643
  url: "/",
636
644
  method: "GET",
637
645
  config: {
638
646
  query: {
639
647
  Version: "2016-07-01",
640
- Action: "DescribeDBInstancePackages",
648
+ Action: "DescribeSecurityGroup",
641
649
  },
642
650
  headers: {
643
- "Content-Type": "application/json",
651
+ "Content-Type": "application/x-www-form-urlencoded",
652
+ },
653
+ },
654
+ paramsType: {
655
+ SecurityGroupId: "String",
656
+ Type: "String",
657
+ },
658
+ },
659
+ DeleteSecurityGroup: {
660
+ url: "/",
661
+ method: "GET",
662
+ config: {
663
+ query: {
664
+ Version: "2016-07-01",
665
+ Action: "DeleteSecurityGroup",
666
+ },
667
+ headers: {
668
+ "Content-Type": "application/x-www-form-urlencoded",
644
669
  },
645
670
  },
646
671
  paramsType: {
647
- RegionCode: "String",
672
+ SecurityGroupIdList: "String",
673
+ },
674
+ },
675
+ ModifySecurityGroup: {
676
+ url: "/",
677
+ method: "GET",
678
+ config: {
679
+ query: {
680
+ Version: "2016-07-01",
681
+ Action: "ModifySecurityGroup",
682
+ },
683
+ headers: {
684
+ "Content-Type": "application/x-www-form-urlencoded",
685
+ },
686
+ },
687
+ paramsType: {
688
+ SecurityGroupId: "String",
689
+ SecurityGroupName: "String",
690
+ SecurityGroupDescription: "String",
691
+ },
692
+ },
693
+ CloneSecurityGroup: {
694
+ url: "/",
695
+ method: "GET",
696
+ config: {
697
+ query: {
698
+ Version: "2016-07-01",
699
+ Action: "CloneSecurityGroup",
700
+ },
701
+ headers: {
702
+ "Content-Type": "application/x-www-form-urlencoded",
703
+ },
704
+ },
705
+ paramsType: {
706
+ SecurityGroupId: "String",
707
+ SecurityGroupName: "String",
708
+ SecurityGroupDescription: "String",
709
+ },
710
+ },
711
+ ModifySecurityGroupRule: {
712
+ url: "/",
713
+ method: "GET",
714
+ config: {
715
+ query: {
716
+ Version: "2016-07-01",
717
+ Action: "ModifySecurityGroupRule",
718
+ },
719
+ headers: {
720
+ "Content-Type": "application/x-www-form-urlencoded",
721
+ },
722
+ },
723
+ paramsType: {
724
+ SecurityGroupRuleAction: "String",
725
+ SecurityGroupId: "String",
726
+ "SecurityGroupRule.SecurityGroupRuleId.N": "String",
727
+ "SecurityGroupRule.SecurityGroupRuleName.N": "String",
728
+ "SecurityGroupRule.SecurityGroupRuleCidr.N": "String",
729
+ },
730
+ },
731
+ SecurityGroupRelation: {
732
+ url: "/",
733
+ method: "GET",
734
+ config: {
735
+ query: {
736
+ Version: "2016-07-01",
737
+ Action: "SecurityGroupRelation",
738
+ },
739
+ headers: {
740
+ "Content-Type": "application/x-www-form-urlencoded",
741
+ },
742
+ },
743
+ paramsType: {
744
+ SecurityGroupId: "String",
745
+ RelationAction: "String",
746
+ DBInstanceIdentifier: "Filter",
747
+ },
748
+ },
749
+ ModifySecurityGroupRuleName: {
750
+ url: "/",
751
+ method: "GET",
752
+ config: {
753
+ query: {
754
+ Version: "2016-07-01",
755
+ Action: "ModifySecurityGroupRuleName",
756
+ },
757
+ headers: {
758
+ "Content-Type": "application/x-www-form-urlencoded",
759
+ },
760
+ },
761
+ paramsType: {
762
+ SecurityGroupRuleId: "String",
763
+ SecurityGroupRuleName: "String",
648
764
  },
649
765
  },
650
766
  DescribeLastLog: {
@@ -656,7 +772,7 @@ module.exports = class Client extends BaseClient {
656
772
  Action: "DescribeLastLog",
657
773
  },
658
774
  headers: {
659
- "Content-Type": "application/json",
775
+ "Content-Type": "application/x-www-form-urlencoded",
660
776
  },
661
777
  },
662
778
  paramsType: {
@@ -705,7 +821,7 @@ module.exports = class Client extends BaseClient {
705
821
  Action: "ListAudit",
706
822
  },
707
823
  headers: {
708
- "Content-Type": "application/json",
824
+ "Content-Type": "application/x-www-form-urlencoded",
709
825
  },
710
826
  },
711
827
  paramsType: {
@@ -734,7 +850,7 @@ module.exports = class Client extends BaseClient {
734
850
  Action: "AuditStatistic",
735
851
  },
736
852
  headers: {
737
- "Content-Type": "application/json",
853
+ "Content-Type": "application/x-www-form-urlencoded",
738
854
  },
739
855
  },
740
856
  paramsType: {
@@ -743,6 +859,22 @@ module.exports = class Client extends BaseClient {
743
859
  AuditStatisticEndTime: "String",
744
860
  },
745
861
  },
862
+ GetCurrentDatabaseInfo: {
863
+ url: "/",
864
+ method: "GET",
865
+ config: {
866
+ query: {
867
+ Version: "2016-07-01",
868
+ Action: "GetCurrentDatabaseInfo",
869
+ },
870
+ headers: {
871
+ "Content-Type": "application/x-www-form-urlencoded",
872
+ },
873
+ },
874
+ paramsType: {
875
+ DBInstanceIdentifier: "String",
876
+ },
877
+ },
746
878
  GetTableRestorableTime: {
747
879
  url: "/",
748
880
  method: "GET",
@@ -752,7 +884,7 @@ module.exports = class Client extends BaseClient {
752
884
  Action: "GetTableRestorableTime",
753
885
  },
754
886
  headers: {
755
- "Content-Type": "application/json",
887
+ "Content-Type": "application/x-www-form-urlencoded",
756
888
  },
757
889
  },
758
890
  paramsType: {
@@ -768,7 +900,7 @@ module.exports = class Client extends BaseClient {
768
900
  Action: "GetHistoryDatabaseInfo",
769
901
  },
770
902
  headers: {
771
- "Content-Type": "application/json",
903
+ "Content-Type": "application/x-www-form-urlencoded",
772
904
  },
773
905
  },
774
906
  paramsType: {
@@ -786,7 +918,7 @@ module.exports = class Client extends BaseClient {
786
918
  Action: "OverrideDBInstanceByPointInTime",
787
919
  },
788
920
  headers: {
789
- "Content-Type": "application/json",
921
+ "Content-Type": "application/x-www-form-urlencoded",
790
922
  },
791
923
  },
792
924
  paramsType: {
@@ -811,8 +943,8 @@ module.exports = class Client extends BaseClient {
811
943
  DBInstanceIdentifier: "String",
812
944
  DBBackupIdentifier: "String",
813
945
  RestorableTime: "String",
814
- SrcDatabases: "Array",
815
- DstDatabases: "Array",
946
+ SrcDatabases: "Filter",
947
+ DstDatabases: "Filter",
816
948
  },
817
949
  },
818
950
  RestoreToSgInstance: {
@@ -831,8 +963,8 @@ module.exports = class Client extends BaseClient {
831
963
  DBInstanceIdentifier: "String",
832
964
  DBBackupIdentifier: "String",
833
965
  RestorableTime: "String",
834
- SrcDatabases: "Array",
835
- DstDatabases: "Array",
966
+ SrcDatabases: "Filter",
967
+ DstDatabases: "Filter",
836
968
  },
837
969
  },
838
970
  DescribeAuditHotCount: {
@@ -844,7 +976,7 @@ module.exports = class Client extends BaseClient {
844
976
  Action: "DescribeAuditHotCount",
845
977
  },
846
978
  headers: {
847
- "Content-Type": "application/json",
979
+ "Content-Type": "application/x-www-form-urlencoded",
848
980
  },
849
981
  },
850
982
  paramsType: {
@@ -863,7 +995,7 @@ module.exports = class Client extends BaseClient {
863
995
  Action: "DescribeAuditHotDuration",
864
996
  },
865
997
  headers: {
866
- "Content-Type": "application/json",
998
+ "Content-Type": "application/x-www-form-urlencoded",
867
999
  },
868
1000
  },
869
1001
  paramsType: {
@@ -925,7 +1057,7 @@ module.exports = class Client extends BaseClient {
925
1057
  Action: "SlowLogReport",
926
1058
  },
927
1059
  headers: {
928
- "Content-Type": "application/json",
1060
+ "Content-Type": "application/x-www-form-urlencoded",
929
1061
  },
930
1062
  },
931
1063
  paramsType: {
@@ -948,7 +1080,7 @@ module.exports = class Client extends BaseClient {
948
1080
  Action: "SlowLogLineChart",
949
1081
  },
950
1082
  headers: {
951
- "Content-Type": "application/json",
1083
+ "Content-Type": "application/x-www-form-urlencoded",
952
1084
  },
953
1085
  },
954
1086
  paramsType: {
@@ -966,7 +1098,7 @@ module.exports = class Client extends BaseClient {
966
1098
  Action: "SlowLogDetail",
967
1099
  },
968
1100
  headers: {
969
- "Content-Type": "application/json",
1101
+ "Content-Type": "application/x-www-form-urlencoded",
970
1102
  },
971
1103
  },
972
1104
  paramsType: {
@@ -989,7 +1121,7 @@ module.exports = class Client extends BaseClient {
989
1121
  Action: "StartAuditDetailExportTask",
990
1122
  },
991
1123
  headers: {
992
- "Content-Type": "application/json",
1124
+ "Content-Type": "application/x-www-form-urlencoded",
993
1125
  },
994
1126
  },
995
1127
  paramsType: {
@@ -1008,7 +1140,7 @@ module.exports = class Client extends BaseClient {
1008
1140
  Action: "ListAuditDetailExportTask",
1009
1141
  },
1010
1142
  headers: {
1011
- "Content-Type": "application/json",
1143
+ "Content-Type": "application/x-www-form-urlencoded",
1012
1144
  },
1013
1145
  },
1014
1146
  paramsType: {
@@ -1017,6 +1149,25 @@ module.exports = class Client extends BaseClient {
1017
1149
  MaxRecords: "String",
1018
1150
  },
1019
1151
  },
1152
+ CreateInstanceAccount: {
1153
+ url: "/",
1154
+ method: "GET",
1155
+ config: {
1156
+ query: {
1157
+ Version: "2016-07-01",
1158
+ Action: "CreateInstanceAccount",
1159
+ },
1160
+ headers: {
1161
+ "Content-Type": "application/x-www-form-urlencoded",
1162
+ },
1163
+ },
1164
+ paramsType: {
1165
+ DBInstanceIdentifier: "String",
1166
+ InstanceAccountName: "String",
1167
+ InstanceAccountPassword: "String",
1168
+ InstanceAccountDescription: "String",
1169
+ },
1170
+ },
1020
1171
  DescribeInstanceAccounts: {
1021
1172
  url: "/",
1022
1173
  method: "GET",
@@ -1026,7 +1177,7 @@ module.exports = class Client extends BaseClient {
1026
1177
  Action: "DescribeInstanceAccounts",
1027
1178
  },
1028
1179
  headers: {
1029
- "Content-Type": "application/json",
1180
+ "Content-Type": "application/x-www-form-urlencoded",
1030
1181
  },
1031
1182
  },
1032
1183
  paramsType: {
@@ -1043,7 +1194,7 @@ module.exports = class Client extends BaseClient {
1043
1194
  Action: "ModifyInstanceAccountInfo",
1044
1195
  },
1045
1196
  headers: {
1046
- "Content-Type": "application/json",
1197
+ "Content-Type": "application/x-www-form-urlencoded",
1047
1198
  },
1048
1199
  },
1049
1200
  paramsType: {
@@ -1053,6 +1204,41 @@ module.exports = class Client extends BaseClient {
1053
1204
  InstanceAccountDescription: "String",
1054
1205
  },
1055
1206
  },
1207
+ ModifyInstanceAccountPrivileges: {
1208
+ url: "/",
1209
+ method: "GET",
1210
+ config: {
1211
+ query: {
1212
+ Version: "2016-07-01",
1213
+ Action: "ModifyInstanceAccountPrivileges",
1214
+ },
1215
+ headers: {
1216
+ "Content-Type": "application/x-www-form-urlencoded",
1217
+ },
1218
+ },
1219
+ paramsType: {
1220
+ DBInstanceIdentifier: "String",
1221
+ InstanceAccountName: "String",
1222
+ InstanceAccountPrivileges: "Filter",
1223
+ },
1224
+ },
1225
+ DeleteInstanceAccount: {
1226
+ url: "/",
1227
+ method: "GET",
1228
+ config: {
1229
+ query: {
1230
+ Version: "2016-07-01",
1231
+ Action: "DeleteInstanceAccount",
1232
+ },
1233
+ headers: {
1234
+ "Content-Type": "application/x-www-form-urlencoded",
1235
+ },
1236
+ },
1237
+ paramsType: {
1238
+ DBInstanceIdentifier: "String",
1239
+ InstanceAccountName: "String",
1240
+ },
1241
+ },
1056
1242
  DescribeCollations: {
1057
1243
  url: "/",
1058
1244
  method: "GET",
@@ -1062,7 +1248,7 @@ module.exports = class Client extends BaseClient {
1062
1248
  Action: "DescribeCollations",
1063
1249
  },
1064
1250
  headers: {
1065
- "Content-Type": "application/json",
1251
+ "Content-Type": "application/x-www-form-urlencoded",
1066
1252
  },
1067
1253
  },
1068
1254
  paramsType: {
@@ -1078,7 +1264,7 @@ module.exports = class Client extends BaseClient {
1078
1264
  Action: "CreateInstanceDatabase",
1079
1265
  },
1080
1266
  headers: {
1081
- "Content-Type": "application/json",
1267
+ "Content-Type": "application/x-www-form-urlencoded",
1082
1268
  },
1083
1269
  },
1084
1270
  paramsType: {
@@ -1097,7 +1283,7 @@ module.exports = class Client extends BaseClient {
1097
1283
  Action: "ModifyInstanceDatabasePrivileges",
1098
1284
  },
1099
1285
  headers: {
1100
- "Content-Type": "application/json",
1286
+ "Content-Type": "application/x-www-form-urlencoded",
1101
1287
  },
1102
1288
  },
1103
1289
  paramsType: {
@@ -1115,7 +1301,7 @@ module.exports = class Client extends BaseClient {
1115
1301
  Action: "DescribeInstanceDatabases",
1116
1302
  },
1117
1303
  headers: {
1118
- "Content-Type": "application/json",
1304
+ "Content-Type": "application/x-www-form-urlencoded",
1119
1305
  },
1120
1306
  },
1121
1307
  paramsType: {
@@ -1133,7 +1319,7 @@ module.exports = class Client extends BaseClient {
1133
1319
  Action: "ModifyInstanceDatabaseInfo",
1134
1320
  },
1135
1321
  headers: {
1136
- "Content-Type": "application/json",
1322
+ "Content-Type": "application/x-www-form-urlencoded",
1137
1323
  },
1138
1324
  },
1139
1325
  paramsType: {
@@ -1151,7 +1337,7 @@ module.exports = class Client extends BaseClient {
1151
1337
  Action: "StartSlowLogDetailExportTask",
1152
1338
  },
1153
1339
  headers: {
1154
- "Content-Type": "application/json",
1340
+ "Content-Type": "application/x-www-form-urlencoded",
1155
1341
  },
1156
1342
  },
1157
1343
  paramsType: {
@@ -1170,7 +1356,7 @@ module.exports = class Client extends BaseClient {
1170
1356
  Action: "ListSlowLogDetailExportTask",
1171
1357
  },
1172
1358
  headers: {
1173
- "Content-Type": "application/json",
1359
+ "Content-Type": "application/x-www-form-urlencoded",
1174
1360
  },
1175
1361
  },
1176
1362
  paramsType: {
@@ -1188,7 +1374,7 @@ module.exports = class Client extends BaseClient {
1188
1374
  Action: "CreateInstanceAccountAction",
1189
1375
  },
1190
1376
  headers: {
1191
- "Content-Type": "application/x-www-form-urlencoded",
1377
+ "Content-Type": "application/json",
1192
1378
  },
1193
1379
  },
1194
1380
  paramsType: {
@@ -1208,7 +1394,7 @@ module.exports = class Client extends BaseClient {
1208
1394
  Action: "ModifyInstanceAccountPrivilegesAction",
1209
1395
  },
1210
1396
  headers: {
1211
- "Content-Type": "application/x-www-form-urlencoded",
1397
+ "Content-Type": "application/json",
1212
1398
  },
1213
1399
  },
1214
1400
  paramsType: {
@@ -1226,7 +1412,7 @@ module.exports = class Client extends BaseClient {
1226
1412
  Action: "DeleteInstanceAccountAction",
1227
1413
  },
1228
1414
  headers: {
1229
- "Content-Type": "application/x-www-form-urlencoded",
1415
+ "Content-Type": "application/json",
1230
1416
  },
1231
1417
  },
1232
1418
  paramsType: {
@@ -1243,7 +1429,7 @@ module.exports = class Client extends BaseClient {
1243
1429
  Action: "DeleteInstanceDatabaseAction",
1244
1430
  },
1245
1431
  headers: {
1246
- "Content-Type": "application/x-www-form-urlencoded",
1432
+ "Content-Type": "application/json",
1247
1433
  },
1248
1434
  },
1249
1435
  paramsType: {
@@ -1260,7 +1446,7 @@ module.exports = class Client extends BaseClient {
1260
1446
  Action: "ModifyDBNetwork",
1261
1447
  },
1262
1448
  headers: {
1263
- "Content-Type": "application/x-www-form-urlencoded",
1449
+ "Content-Type": "application/json",
1264
1450
  },
1265
1451
  },
1266
1452
  paramsType: {
@@ -1271,6 +1457,39 @@ module.exports = class Client extends BaseClient {
1271
1457
  Port: "String",
1272
1458
  },
1273
1459
  },
1460
+ DescribeDBInstanceMonitorPeriod: {
1461
+ url: "/",
1462
+ method: "GET",
1463
+ config: {
1464
+ query: {
1465
+ Version: "2016-07-01",
1466
+ Action: "DescribeDBInstanceMonitorPeriod",
1467
+ },
1468
+ headers: {
1469
+ "Content-Type": "application/x-www-form-urlencoded",
1470
+ },
1471
+ },
1472
+ paramsType: {
1473
+ DBInstanceIdentifier: "String",
1474
+ },
1475
+ },
1476
+ ModifyDBInstanceMonitorPeriod: {
1477
+ url: "/",
1478
+ method: "GET",
1479
+ config: {
1480
+ query: {
1481
+ Version: "2016-07-01",
1482
+ Action: "ModifyDBInstanceMonitorPeriod",
1483
+ },
1484
+ headers: {
1485
+ "Content-Type": "application/x-www-form-urlencoded",
1486
+ },
1487
+ },
1488
+ paramsType: {
1489
+ DBInstanceIdentifier: "String",
1490
+ Period: "String",
1491
+ },
1492
+ },
1274
1493
  DescribeEngineParametersModifyHistory: {
1275
1494
  url: "/",
1276
1495
  method: "GET",
@@ -1290,5 +1509,195 @@ module.exports = class Client extends BaseClient {
1290
1509
  Marker: "Int",
1291
1510
  },
1292
1511
  },
1512
+ BatchApplyDBParameterGroup: {
1513
+ url: "/",
1514
+ method: "POST",
1515
+ config: {
1516
+ query: {
1517
+ Version: "2016-07-01",
1518
+ Action: "BatchApplyDBParameterGroup",
1519
+ },
1520
+ headers: {
1521
+ "Content-Type": "application/json",
1522
+ },
1523
+ },
1524
+ paramsType: {
1525
+ DBInstanceIdentifier: "String",
1526
+ DBParameterGroupId: "String",
1527
+ },
1528
+ },
1529
+ UpgradeDBInstanceLatesVersion: {
1530
+ url: "/",
1531
+ method: "GET",
1532
+ config: {
1533
+ query: {
1534
+ Version: "2016-07-01",
1535
+ Action: "UpgradeDBInstanceLatesVersion",
1536
+ },
1537
+ headers: {
1538
+ "Content-Type": "application/x-www-form-urlencoded",
1539
+ },
1540
+ },
1541
+ paramsType: {
1542
+ DBInstanceIdentifier: "String",
1543
+ },
1544
+ },
1545
+ DescribeProxyInstance: {
1546
+ url: "/",
1547
+ method: "GET",
1548
+ config: {
1549
+ query: {
1550
+ Version: "2016-07-01",
1551
+ Action: "DescribeProxyInstance",
1552
+ },
1553
+ headers: {
1554
+ "Content-Type": "application/x-www-form-urlencoded",
1555
+ },
1556
+ },
1557
+ paramsType: {
1558
+ DBInstanceIdentifier: "String",
1559
+ },
1560
+ },
1561
+ SetUpProxyInstance: {
1562
+ url: "/",
1563
+ method: "GET",
1564
+ config: {
1565
+ query: {
1566
+ Version: "2016-07-01",
1567
+ Action: "SetUpProxyInstance",
1568
+ },
1569
+ headers: {
1570
+ "Content-Type": "application/x-www-form-urlencoded",
1571
+ },
1572
+ },
1573
+ paramsType: {
1574
+ DBInstanceIdentifier: "String",
1575
+ ReadOnlyInstanceList: "Filter",
1576
+ },
1577
+ },
1578
+ TemporaryCloseSwitchover: {
1579
+ url: "/",
1580
+ method: "GET",
1581
+ config: {
1582
+ query: {
1583
+ Version: "2016-07-01",
1584
+ Action: "TemporaryCloseSwitchover",
1585
+ },
1586
+ headers: {
1587
+ "Content-Type": "application/x-www-form-urlencoded",
1588
+ },
1589
+ },
1590
+ paramsType: {
1591
+ DBInstanceIdentifier: "String",
1592
+ AutoSwitch: "Boolean",
1593
+ ExpireTime: "String",
1594
+ },
1595
+ },
1596
+ DescribeBackupOverview: {
1597
+ url: "/",
1598
+ method: "GET",
1599
+ config: {
1600
+ query: {
1601
+ Version: "2016-07-01",
1602
+ Action: "DescribeBackupOverview",
1603
+ },
1604
+ headers: {
1605
+ "Content-Type": "application/x-www-form-urlencoded",
1606
+ },
1607
+ },
1608
+ paramsType: {},
1609
+ },
1610
+ DescribeStatisticBackupDetails: {
1611
+ url: "/",
1612
+ method: "GET",
1613
+ config: {
1614
+ query: {
1615
+ Version: "2016-07-01",
1616
+ Action: "DescribeStatisticBackupDetails",
1617
+ },
1618
+ headers: {
1619
+ "Content-Type": "application/x-www-form-urlencoded",
1620
+ },
1621
+ },
1622
+ paramsType: {
1623
+ DataType: "String",
1624
+ BackupType: "String",
1625
+ Marker: "Int",
1626
+ MaxRecords: "Int",
1627
+ },
1628
+ },
1629
+ ModifyMaintenanceTime: {
1630
+ url: "/",
1631
+ method: "GET",
1632
+ config: {
1633
+ query: {
1634
+ Version: "2016-07-01",
1635
+ Action: "ModifyMaintenanceTime",
1636
+ },
1637
+ headers: {
1638
+ "Content-Type": "application/x-www-form-urlencoded",
1639
+ },
1640
+ },
1641
+ paramsType: {
1642
+ DBInstanceIdentifier: "String",
1643
+ StartTime: "String",
1644
+ Duration: "Double",
1645
+ },
1646
+ },
1647
+ ModifyInstanceDatabasePrivilegesAction: {
1648
+ url: "/",
1649
+ method: "POST",
1650
+ config: {
1651
+ query: {
1652
+ Version: "2016-07-01",
1653
+ Action: "ModifyInstanceDatabasePrivilegesAction",
1654
+ },
1655
+ headers: {
1656
+ "Content-Type": "application/json",
1657
+ },
1658
+ },
1659
+ paramsType: {
1660
+ DBInstanceIdentifier: "String",
1661
+ InstanceDatabaseName: "String",
1662
+ InstanceDatabasePrivileges: "Filter",
1663
+ },
1664
+ },
1665
+ UpdateDBInstanceOrder: {
1666
+ url: "/",
1667
+ method: "GET",
1668
+ config: {
1669
+ query: {
1670
+ Version: "2016-07-01",
1671
+ Action: "UpdateDBInstanceOrder",
1672
+ },
1673
+ headers: {
1674
+ "Content-Type": "application/json",
1675
+ },
1676
+ },
1677
+ paramsType: {
1678
+ DBInstanceIdentifier: "String",
1679
+ UpdateUse: "String",
1680
+ Duration: "Int",
1681
+ BillType: "String",
1682
+ },
1683
+ },
1684
+ UpdateResourceProtection: {
1685
+ url: "/",
1686
+ method: "GET",
1687
+ config: {
1688
+ query: {
1689
+ Version: "2016-07-01",
1690
+ Action: "UpdateResourceProtection",
1691
+ },
1692
+ headers: {
1693
+ "Content-Type": "application/x-www-form-urlencoded",
1694
+ },
1695
+ },
1696
+ paramsType: {
1697
+ DBInstanceIdentifier: "String",
1698
+ ProtectionSwitch: "String",
1699
+ ProtectionReason: "String",
1700
+ },
1701
+ },
1293
1702
  };
1294
1703
  };