ksyun-sdk-node 1.4.9 → 1.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. package/dist/service/Aicp/v20240612/index.js +24 -0
  2. package/dist/service/Bws/v20160304/index.js +3 -0
  3. package/dist/service/Cdn/v20250503/index.js +0 -333
  4. package/dist/service/Cdn/v3/index.js +600 -0
  5. package/dist/service/Cen/v20160304/index.js +147 -103
  6. package/dist/service/Clickhouse/v20210101/index.js +204 -19
  7. package/dist/service/Cloud_advisor/v20250610/index.js +81 -0
  8. package/dist/service/Dmp/v20240101/index.js +362 -0
  9. package/dist/service/Dts/v20180108/index.js +386 -0
  10. package/dist/service/Ebs/v20160304/index.js +197 -34
  11. package/dist/service/Eip/v20160304/index.js +79 -1
  12. package/dist/service/Influxdb/v20191010/index.js +504 -0
  13. package/dist/service/Kad/v20161122/index.js +32 -0
  14. package/dist/service/Kce/v20190806/index.js +234 -43
  15. package/dist/service/Kce/v20201231/index.js +2 -2
  16. package/dist/service/Kce/v20230101/index.js +193 -0
  17. package/dist/service/Kce/v20230306/index.js +434 -0
  18. package/dist/service/Kce/v20231115/index.js +65 -0
  19. package/dist/service/Kce2/v20230101/index.js +313 -0
  20. package/dist/service/Kci/v20200702/index.js +336 -0
  21. package/dist/service/Kcm/v20160304/index.js +113 -3
  22. package/dist/service/Kcrs/v20211109/index.js +88 -92
  23. package/dist/service/Kcs/v20160701/index.js +165 -23
  24. package/dist/service/Kcs/v20170401/index.js +1 -36
  25. package/dist/service/Kcs/v20240701/index.js +45 -0
  26. package/dist/service/Kead/v20200101/index.js +37 -8
  27. package/dist/service/Ked/v1/index.js +805 -0
  28. package/dist/service/Ket/v20170101/index.js +42 -0
  29. package/dist/service/Kfw/v20160304/index.js +59 -0
  30. package/dist/service/Kingpay/v1/index.js +44 -0
  31. package/dist/service/Knad/v20230323/index.js +333 -0
  32. package/dist/service/Kpfs/v20240930/index.js +181 -0
  33. package/dist/service/Krds/v20160701/index.js +505 -96
  34. package/dist/service/Krds/v20200825/index.js +48 -8
  35. package/dist/service/Milvus/v20231010/index.js +366 -0
  36. package/dist/service/Mongodb/v20170101/index.js +163 -13
  37. package/dist/service/Mongodb/v20250101/index.js +44 -0
  38. package/dist/service/Pdns/v20160304/index.js +636 -0
  39. package/dist/service/Postgresql/v20181225/index.js +950 -0
  40. package/dist/service/Rabbitmq/v20191017/index.js +107 -6
  41. package/dist/service/Relyt/v20240117/index.js +45 -0
  42. package/dist/service/Sks/v20151101/index.js +2 -1
  43. package/dist/service/Slb/v20160304/index.js +426 -53
  44. package/dist/service/Slb/v20250430/index.js +750 -0
  45. package/dist/service/Sqlserver/v20190425/index.js +872 -0
  46. package/dist/service/Sts/v20151101/index.js +19 -0
  47. package/dist/service/Tagv2/v20200901/index.js +42 -6
  48. package/dist/service/Ter/v20240415/index.js +114 -0
  49. package/dist/service/Tidb/v20210520/index.js +415 -21
  50. package/dist/service/Trade/v20250220/index.js +97 -0
  51. package/dist/service/Trade/v20250321/index.js +93 -0
  52. package/dist/service/Trade/v20250828/index.js +56 -0
  53. package/dist/service/Vpc/v20160304/index.js +32 -0
  54. package/dist/service/Waf/v20200707/index.js +188 -5
  55. package/package.json +1 -1
  56. package/src/service/Aicp/v20240612/index.js +24 -0
  57. package/src/service/Bws/v20160304/index.js +3 -0
  58. package/src/service/Cdn/{v20250503 → v3}/index.js +196 -0
  59. package/src/service/Cen/v20160304/index.js +144 -100
  60. package/src/service/Clickhouse/v20210101/index.js +203 -18
  61. package/src/service/Cloud_advisor/v20250610/index.js +73 -0
  62. package/src/service/Dmp/v20240101/index.js +354 -0
  63. package/src/service/Dts/v20180108/index.js +378 -0
  64. package/src/service/Ebs/v20160304/index.js +194 -31
  65. package/src/service/Eip/v20160304/index.js +79 -1
  66. package/src/service/Influxdb/v20191010/index.js +496 -0
  67. package/src/service/Kad/v20161122/index.js +32 -0
  68. package/src/service/Kce/v20190806/index.js +233 -42
  69. package/src/service/Kce/v20201231/index.js +2 -2
  70. package/src/service/Kce/v20230101/index.js +185 -0
  71. package/src/service/Kce/v20230306/index.js +426 -0
  72. package/src/service/Kce/v20231115/index.js +57 -0
  73. package/src/service/Kce2/v20230101/index.js +305 -0
  74. package/src/service/Kci/v20200702/index.js +328 -0
  75. package/src/service/Kcm/v20160304/index.js +110 -0
  76. package/src/service/Kcrs/v20211109/index.js +87 -91
  77. package/src/service/Kcs/v20160701/index.js +164 -22
  78. package/src/service/Kcs/v20170401/index.js +1 -36
  79. package/src/service/Kcs/v20240701/index.js +37 -0
  80. package/src/service/Kead/v20200101/index.js +37 -8
  81. package/src/service/Ked/v1/index.js +797 -0
  82. package/src/service/Ket/v20170101/index.js +42 -0
  83. package/src/service/Kfw/v20160304/index.js +51 -0
  84. package/src/service/Kingpay/v1/index.js +36 -0
  85. package/src/service/Knad/v20230323/index.js +325 -0
  86. package/src/service/Kpfs/v20240930/index.js +173 -0
  87. package/src/service/Krds/v20160701/index.js +502 -93
  88. package/src/service/Krds/v20200825/index.js +48 -8
  89. package/src/service/Milvus/v20231010/index.js +358 -0
  90. package/src/service/Mongodb/v20170101/index.js +162 -12
  91. package/src/service/Mongodb/v20250101/index.js +36 -0
  92. package/src/service/Pdns/v20160304/index.js +628 -0
  93. package/src/service/Postgresql/v20181225/index.js +942 -0
  94. package/src/service/Rabbitmq/v20191017/index.js +107 -6
  95. package/src/service/Relyt/v20240117/index.js +37 -0
  96. package/src/service/Sks/v20151101/index.js +1 -0
  97. package/src/service/Slb/v20160304/index.js +416 -43
  98. package/src/service/Slb/v20250430/index.js +742 -0
  99. package/src/service/Sqlserver/v20190425/index.js +864 -0
  100. package/src/service/Sts/v20151101/index.js +19 -0
  101. package/src/service/Tagv2/v20200901/index.js +42 -6
  102. package/src/service/Ter/v20240415/index.js +106 -0
  103. package/src/service/Tidb/v20210520/index.js +412 -18
  104. package/src/service/Trade/v20250220/index.js +89 -0
  105. package/src/service/Trade/v20250321/index.js +85 -0
  106. package/src/service/Trade/v20250828/index.js +48 -0
  107. package/src/service/Vpc/v20160304/index.js +32 -0
  108. package/src/service/Waf/v20200707/index.js +187 -4
@@ -0,0 +1,942 @@
1
+ const BaseClient = require("../../../base/BaseClient.js");
2
+
3
+ module.exports = class Client extends BaseClient {
4
+ _baseConfig = {
5
+ protocol: "http://",
6
+ endpoint: "postgresql.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: "postgresql",
15
+ },
16
+ },
17
+ };
18
+ _apiList = {
19
+ CreateDBInstance: {
20
+ url: "/",
21
+ method: "GET",
22
+ config: {
23
+ query: {
24
+ Version: "2018-12-25",
25
+ Action: "CreateDBInstance",
26
+ },
27
+ headers: {
28
+ "Content-Type": "application/json",
29
+ },
30
+ },
31
+ paramsType: {
32
+ Mem: "Int",
33
+ Disk: "Int",
34
+ DBInstanceName: "String",
35
+ Engine: "String",
36
+ EngineVersion: "String",
37
+ MasterUserPassword: "String",
38
+ MasterUserName: "String",
39
+ DBInstanceType: "String",
40
+ VpcId: "String",
41
+ SubnetId: "String",
42
+ PreferredBackupTime: "String",
43
+ DBParameterGroupId: "String",
44
+ SecurityGroupId: "String",
45
+ Port: "String",
46
+ BillType: "String",
47
+ Duration: "String",
48
+ DurationUnit: "String",
49
+ AvailabilityZone: "Filter",
50
+ ProjectId: "String",
51
+ },
52
+ },
53
+ DescribeDBInstances: {
54
+ url: "/",
55
+ method: "GET",
56
+ config: {
57
+ query: {
58
+ Version: "2018-12-25",
59
+ Action: "DescribeDBInstances",
60
+ },
61
+ headers: {
62
+ "Content-Type": "application/json",
63
+ },
64
+ },
65
+ paramsType: {
66
+ DBInstanceIdentifier: "String",
67
+ DBInstanceType: "String",
68
+ Keyword: "String",
69
+ Marker: "Int",
70
+ MaxRecords: "Int",
71
+ GroupId: "String",
72
+ ProjectId: "String",
73
+ DBInstanceIdentifierIn: "String",
74
+ DBInstanceNameIn: "String",
75
+ VipIn: "String",
76
+ ExpiryDateLessThan: "Int",
77
+ Order: "String",
78
+ },
79
+ },
80
+ DeleteDBInstance: {
81
+ url: "/",
82
+ method: "GET",
83
+ config: {
84
+ query: {
85
+ Version: "2018-12-25",
86
+ Action: "DeleteDBInstance",
87
+ },
88
+ headers: {
89
+ "Content-Type": "application/json",
90
+ },
91
+ },
92
+ paramsType: {
93
+ DBInstanceIdentifier: "String",
94
+ },
95
+ },
96
+ StatisticDBInstances: {
97
+ url: "/",
98
+ method: "GET",
99
+ config: {
100
+ query: {
101
+ Version: "2018-12-25",
102
+ Action: "StatisticDBInstances",
103
+ },
104
+ headers: {
105
+ "Content-Type": "application/json",
106
+ },
107
+ },
108
+ paramsType: {
109
+ ExpiryDateLessThan: "String",
110
+ GroupId: "String",
111
+ Keyword: "String",
112
+ },
113
+ },
114
+ ModifyDBInstance: {
115
+ url: "/",
116
+ method: "GET",
117
+ config: {
118
+ query: {
119
+ Version: "2018-12-25",
120
+ Action: "ModifyDBInstance",
121
+ },
122
+ headers: {
123
+ "Content-Type": "application/json",
124
+ },
125
+ },
126
+ paramsType: {
127
+ DBInstanceIdentifier: "String",
128
+ PreferredBackupTime: "String",
129
+ DBInstanceName: "String",
130
+ MasterUserPassword: "String",
131
+ DBParameterGroupId: "String",
132
+ SecurityGroupId: "String",
133
+ },
134
+ },
135
+ CreateSecurityGroup: {
136
+ url: "/",
137
+ method: "GET",
138
+ config: {
139
+ query: {
140
+ Version: "2018-12-25",
141
+ Action: "CreateSecurityGroup",
142
+ },
143
+ headers: {
144
+ "Content-Type": "application/json",
145
+ },
146
+ },
147
+ paramsType: {
148
+ SecurityGroupName: "String",
149
+ SecurityGroupDescription: "String",
150
+ DBInstanceIdentifier: "Filter",
151
+ SecurityGroupRule: "Filter",
152
+ },
153
+ },
154
+ DescribeSecurityGroup: {
155
+ url: "/",
156
+ method: "GET",
157
+ config: {
158
+ query: {
159
+ Version: "2018-12-25",
160
+ Action: "DescribeSecurityGroup",
161
+ },
162
+ headers: {
163
+ "Content-Type": "application/json",
164
+ },
165
+ },
166
+ paramsType: {
167
+ SecurityGroupId: "String",
168
+ },
169
+ },
170
+ DeleteSecurityGroup: {
171
+ url: "/",
172
+ method: "GET",
173
+ config: {
174
+ query: {
175
+ Version: "2018-12-25",
176
+ Action: "DeleteSecurityGroup",
177
+ },
178
+ headers: {
179
+ "Content-Type": "application/json",
180
+ },
181
+ },
182
+ paramsType: {
183
+ SecurityGroupId: "String",
184
+ },
185
+ },
186
+ ModifySecurityGroup: {
187
+ url: "/",
188
+ method: "GET",
189
+ config: {
190
+ query: {
191
+ Version: "2018-12-25",
192
+ Action: "ModifySecurityGroup",
193
+ },
194
+ headers: {
195
+ "Content-Type": "application/json",
196
+ },
197
+ },
198
+ paramsType: {
199
+ SecurityGroupId: "String",
200
+ SecurityGroupName: "String",
201
+ SecurityGroupDescription: "String",
202
+ },
203
+ },
204
+ CloneSecurityGroup: {
205
+ url: "/",
206
+ method: "GET",
207
+ config: {
208
+ query: {
209
+ Version: "2018-12-25",
210
+ Action: "CloneSecurityGroup",
211
+ },
212
+ headers: {
213
+ "Content-Type": "application/json",
214
+ },
215
+ },
216
+ paramsType: {
217
+ SecurityGroupId: "String",
218
+ SecurityGroupName: "String",
219
+ SecurityGroupDescription: "String",
220
+ },
221
+ },
222
+ ModifySecurityGroupRule: {
223
+ url: "/",
224
+ method: "GET",
225
+ config: {
226
+ query: {
227
+ Version: "2018-12-25",
228
+ Action: "ModifySecurityGroupRule",
229
+ },
230
+ headers: {
231
+ "Content-Type": "application/json",
232
+ },
233
+ },
234
+ paramsType: {
235
+ SecurityGroupId: "String",
236
+ SecurityGroupRuleAction: "String",
237
+ SecurityGroupRule: "Filter",
238
+ },
239
+ },
240
+ SecurityGroupRelation: {
241
+ url: "/",
242
+ method: "GET",
243
+ config: {
244
+ query: {
245
+ Version: "2018-12-25",
246
+ Action: "SecurityGroupRelation",
247
+ },
248
+ headers: {
249
+ "Content-Type": "application/json",
250
+ },
251
+ },
252
+ paramsType: {
253
+ RelationAction: "String",
254
+ SecurityGroupId: "String",
255
+ DBInstanceIdentifier: "Filter",
256
+ },
257
+ },
258
+ ModifySecurityGroupRuleName: {
259
+ url: "/",
260
+ method: "GET",
261
+ config: {
262
+ query: {
263
+ Version: "2018-12-25",
264
+ Action: "ModifySecurityGroupRuleName",
265
+ },
266
+ headers: {
267
+ "Content-Type": "application/json",
268
+ },
269
+ },
270
+ paramsType: {
271
+ SecurityGroupRuleId: "String",
272
+ SecurityGroupRuleName: "String",
273
+ },
274
+ },
275
+ DescribeDBLogFiles: {
276
+ url: "/",
277
+ method: "GET",
278
+ config: {
279
+ query: {
280
+ Version: "2018-12-25",
281
+ Action: "DescribeDBLogFiles",
282
+ },
283
+ headers: {
284
+ "Content-Type": "application/json",
285
+ },
286
+ },
287
+ paramsType: {
288
+ DBInstanceIdentifier: "String",
289
+ DBLogType: "String",
290
+ StartTime: "String",
291
+ EndTime: "String",
292
+ MaxFileSize: "Int",
293
+ Marker: "Int",
294
+ MaxRecords: "Int",
295
+ },
296
+ },
297
+ CreateDBBackup: {
298
+ url: "/",
299
+ method: "GET",
300
+ config: {
301
+ query: {
302
+ Version: "2018-12-25",
303
+ Action: "CreateDBBackup",
304
+ },
305
+ headers: {
306
+ "Content-Type": "application/json",
307
+ },
308
+ },
309
+ paramsType: {
310
+ DBInstanceIdentifier: "String",
311
+ DBBackupName: "String",
312
+ Description: "String",
313
+ },
314
+ },
315
+ DeleteDBBackup: {
316
+ url: "/",
317
+ method: "GET",
318
+ config: {
319
+ query: {
320
+ Version: "2018-12-25",
321
+ Action: "DeleteDBBackup",
322
+ },
323
+ headers: {
324
+ "Content-Type": "application/json",
325
+ },
326
+ },
327
+ paramsType: {
328
+ DBBackupIdentifier: "String",
329
+ },
330
+ },
331
+ DescribeDBBackups: {
332
+ url: "/",
333
+ method: "GET",
334
+ config: {
335
+ query: {
336
+ Version: "2018-12-25",
337
+ Action: "DescribeDBBackups",
338
+ },
339
+ headers: {
340
+ "Content-Type": "application/json",
341
+ },
342
+ },
343
+ paramsType: {
344
+ DBInstanceIdentifier: "String",
345
+ BackupType: "String",
346
+ Keyword: "String",
347
+ Marker: "Int",
348
+ MaxRecords: "Int",
349
+ },
350
+ },
351
+ ModifyDBBackupPolicy: {
352
+ url: "/",
353
+ method: "GET",
354
+ config: {
355
+ query: {
356
+ Version: "2018-12-25",
357
+ Action: "ModifyDBBackupPolicy",
358
+ },
359
+ headers: {
360
+ "Content-Type": "application/json",
361
+ },
362
+ },
363
+ paramsType: {
364
+ DBInstanceIdentifier: "String",
365
+ PreferredBackupTime: "String",
366
+ },
367
+ },
368
+ OverrideDBInstance: {
369
+ url: "/",
370
+ method: "GET",
371
+ config: {
372
+ query: {
373
+ Version: "2018-12-25",
374
+ Action: "OverrideDBInstance",
375
+ },
376
+ headers: {
377
+ "Content-Type": "application/json",
378
+ },
379
+ },
380
+ paramsType: {
381
+ DBInstanceIdentifier: "String",
382
+ DBBackupIdentifier: "String",
383
+ },
384
+ },
385
+ CreateDBParameterGroup: {
386
+ url: "/",
387
+ method: "GET",
388
+ config: {
389
+ query: {
390
+ Version: "2018-12-25",
391
+ Action: "CreateDBParameterGroup",
392
+ },
393
+ headers: {
394
+ "Content-Type": "application/json",
395
+ },
396
+ },
397
+ paramsType: {
398
+ Engine: "String",
399
+ EngineVersion: "String",
400
+ DBParameterGroupName: "String",
401
+ Description: "String",
402
+ Parameters: "Filter",
403
+ },
404
+ },
405
+ ModifyDBParameterGroup: {
406
+ url: "/",
407
+ method: "GET",
408
+ config: {
409
+ query: {
410
+ Version: "2018-12-25",
411
+ Action: "ModifyDBParameterGroup",
412
+ },
413
+ headers: {
414
+ "Content-Type": "application/json",
415
+ },
416
+ },
417
+ paramsType: {
418
+ DBParameterGroupId: "String",
419
+ DBParameterGroupName: "String",
420
+ Description: "String",
421
+ Parameters: "Filter",
422
+ },
423
+ },
424
+ DeleteDBParameterGroup: {
425
+ url: "/",
426
+ method: "GET",
427
+ config: {
428
+ query: {
429
+ Version: "2018-12-25",
430
+ Action: "DeleteDBParameterGroup",
431
+ },
432
+ headers: {
433
+ "Content-Type": "application/json",
434
+ },
435
+ },
436
+ paramsType: {
437
+ DBParameterGroupId: "String",
438
+ },
439
+ },
440
+ ResetDBParameterGroup: {
441
+ url: "/",
442
+ method: "GET",
443
+ config: {
444
+ query: {
445
+ Version: "2018-12-25",
446
+ Action: "ResetDBParameterGroup",
447
+ },
448
+ headers: {
449
+ "Content-Type": "application/json",
450
+ },
451
+ },
452
+ paramsType: {
453
+ DBParameterGroupId: "String",
454
+ },
455
+ },
456
+ DescribeDBParameterGroup: {
457
+ url: "/",
458
+ method: "GET",
459
+ config: {
460
+ query: {
461
+ Version: "2018-12-25",
462
+ Action: "DescribeDBParameterGroup",
463
+ },
464
+ headers: {
465
+ "Content-Type": "application/json",
466
+ },
467
+ },
468
+ paramsType: {
469
+ DBParameterGroupId: "String",
470
+ Marker: "Int",
471
+ MaxRecords: "Int",
472
+ Source: "String",
473
+ },
474
+ },
475
+ DescribeEngineDefaultParameters: {
476
+ url: "/",
477
+ method: "GET",
478
+ config: {
479
+ query: {
480
+ Version: "2018-12-25",
481
+ Action: "DescribeEngineDefaultParameters",
482
+ },
483
+ headers: {
484
+ "Content-Type": "application/json",
485
+ },
486
+ },
487
+ paramsType: {
488
+ Engine: "String",
489
+ EngineVersion: "String",
490
+ },
491
+ },
492
+ DescribeDBInstanceParameters: {
493
+ url: "/",
494
+ method: "GET",
495
+ config: {
496
+ query: {
497
+ Version: "2018-12-25",
498
+ Action: "DescribeDBInstanceParameters",
499
+ },
500
+ headers: {
501
+ "Content-Type": "application/json",
502
+ },
503
+ },
504
+ paramsType: {
505
+ DBInstanceIdentifier: "String",
506
+ },
507
+ },
508
+ RebootDBInstance: {
509
+ url: "/",
510
+ method: "GET",
511
+ config: {
512
+ query: {
513
+ Version: "2018-12-25",
514
+ Action: "RebootDBInstance",
515
+ },
516
+ headers: {
517
+ "Content-Type": "application/json",
518
+ },
519
+ },
520
+ paramsType: {
521
+ DBInstanceIdentifier: "String",
522
+ },
523
+ },
524
+ DescribeDBEngineVersions: {
525
+ url: "/",
526
+ method: "GET",
527
+ config: {
528
+ query: {
529
+ Version: "2018-12-25",
530
+ Action: "DescribeDBEngineVersions",
531
+ },
532
+ headers: {
533
+ "Content-Type": "application/json",
534
+ },
535
+ },
536
+ paramsType: {},
537
+ },
538
+ AllocateDBInstanceEip: {
539
+ url: "/",
540
+ method: "GET",
541
+ config: {
542
+ query: {
543
+ Version: "2018-12-25",
544
+ Action: "AllocateDBInstanceEip",
545
+ },
546
+ headers: {
547
+ "Content-Type": "application/json",
548
+ },
549
+ },
550
+ paramsType: {
551
+ DBInstanceIdentifier: "String",
552
+ Port: "Int",
553
+ },
554
+ },
555
+ ReleaseDBInstanceEip: {
556
+ url: "/",
557
+ method: "GET",
558
+ config: {
559
+ query: {
560
+ Version: "2018-12-25",
561
+ Action: "ReleaseDBInstanceEip",
562
+ },
563
+ headers: {
564
+ "Content-Type": "application/json",
565
+ },
566
+ },
567
+ paramsType: {
568
+ DBInstanceIdentifier: "String",
569
+ },
570
+ },
571
+ ModifyDBInstanceSpec: {
572
+ url: "/",
573
+ method: "GET",
574
+ config: {
575
+ query: {
576
+ Version: "2018-12-25",
577
+ Action: "ModifyDBInstanceSpec",
578
+ },
579
+ headers: {
580
+ "Content-Type": "application/json",
581
+ },
582
+ },
583
+ paramsType: {
584
+ DBInstanceIdentifier: "String",
585
+ Mem: "Int",
586
+ Disk: "Int",
587
+ },
588
+ },
589
+ RestoreDBInstanceFromDBBackup: {
590
+ url: "/",
591
+ method: "GET",
592
+ config: {
593
+ query: {
594
+ Version: "2018-12-25",
595
+ Action: "RestoreDBInstanceFromDBBackup",
596
+ },
597
+ headers: {
598
+ "Content-Type": "application/json",
599
+ },
600
+ },
601
+ paramsType: {
602
+ DBBackupIdentifier: "String",
603
+ DBInstanceType: "String",
604
+ DBInstanceName: "String",
605
+ BillType: "String",
606
+ Duration: "Int",
607
+ DurationUnit: "String",
608
+ AvailabilityZone: "Filter",
609
+ VpcId: "String",
610
+ SubnetId: "String",
611
+ },
612
+ },
613
+ SwitchDBInstanceHA: {
614
+ url: "/",
615
+ method: "GET",
616
+ config: {
617
+ query: {
618
+ Version: "2018-12-25",
619
+ Action: "SwitchDBInstanceHA",
620
+ },
621
+ headers: {
622
+ "Content-Type": "application/json",
623
+ },
624
+ },
625
+ paramsType: {
626
+ DBInstanceIdentifier: "String",
627
+ },
628
+ },
629
+ CreateDBInstanceReadReplica: {
630
+ url: "/",
631
+ method: "GET",
632
+ config: {
633
+ query: {
634
+ Version: "2018-12-25",
635
+ Action: "CreateDBInstanceReadReplica",
636
+ },
637
+ headers: {
638
+ "Content-Type": "application/json",
639
+ },
640
+ },
641
+ paramsType: {
642
+ DBInstanceIdentifier: "String",
643
+ DBInstanceName: "String",
644
+ AttachedVipId: "String",
645
+ BillType: "String",
646
+ Duration: "String",
647
+ DurationUnit: "String",
648
+ AvailabilityZone: "Filter",
649
+ Vip: "String",
650
+ Mem: "Int",
651
+ Disk: "Int",
652
+ },
653
+ },
654
+ ModifyInstanceAccountInfo: {
655
+ url: "/",
656
+ method: "GET",
657
+ config: {
658
+ query: {
659
+ Version: "2018-12-25",
660
+ Action: "ModifyInstanceAccountInfo",
661
+ },
662
+ headers: {
663
+ "Content-Type": "application/json",
664
+ },
665
+ },
666
+ paramsType: {
667
+ DBInstanceIdentifier: "String",
668
+ AccountName: "String",
669
+ AccountPassword: "String",
670
+ AccountDescription: "String",
671
+ },
672
+ },
673
+ DescribeInstanceDatabases: {
674
+ url: "/",
675
+ method: "GET",
676
+ config: {
677
+ query: {
678
+ Version: "2018-12-25",
679
+ Action: "DescribeInstanceDatabases",
680
+ },
681
+ headers: {
682
+ "Content-Type": "application/json",
683
+ },
684
+ },
685
+ paramsType: {
686
+ DBInstanceIdentifier: "String",
687
+ },
688
+ },
689
+ DescribeDBInstanceExtensions: {
690
+ url: "/",
691
+ method: "GET",
692
+ config: {
693
+ query: {
694
+ Version: "2018-12-25",
695
+ Action: "DescribeDBInstanceExtensions",
696
+ },
697
+ headers: {
698
+ "Content-Type": "application/json",
699
+ },
700
+ },
701
+ paramsType: {
702
+ DBInstanceIdentifier: "String",
703
+ KeyWord: "String",
704
+ },
705
+ },
706
+ ModifyDBInstanceExtension: {
707
+ url: "/",
708
+ method: "GET",
709
+ config: {
710
+ query: {
711
+ Version: "2018-12-25",
712
+ Action: "ModifyDBInstanceExtension",
713
+ },
714
+ headers: {
715
+ "Content-Type": "application/json",
716
+ },
717
+ },
718
+ paramsType: {
719
+ DBInstanceIdentifier: "String",
720
+ InstanceDatabaseName: "String",
721
+ Operation: "String",
722
+ Extension: "Filter",
723
+ },
724
+ },
725
+ DescribeCollations: {
726
+ url: "/",
727
+ method: "GET",
728
+ config: {
729
+ query: {
730
+ Version: "2018-12-25",
731
+ Action: "DescribeCollations",
732
+ },
733
+ headers: {
734
+ "Content-Type": "application/json",
735
+ },
736
+ },
737
+ paramsType: {
738
+ DBInstanceIdentifier: "String",
739
+ },
740
+ },
741
+ ModifyInstanceDatabaseOwner: {
742
+ url: "/",
743
+ method: "GET",
744
+ config: {
745
+ query: {
746
+ Version: "2018-12-25",
747
+ Action: "ModifyInstanceDatabaseOwner",
748
+ },
749
+ headers: {
750
+ "Content-Type": "application/json",
751
+ },
752
+ },
753
+ paramsType: {
754
+ DBInstanceIdentifier: "String",
755
+ InstanceDatabaseName: "String",
756
+ Owner: "String",
757
+ },
758
+ },
759
+ DeleteInstanceDatabase: {
760
+ url: "/",
761
+ method: "GET",
762
+ config: {
763
+ query: {
764
+ Version: "2018-12-25",
765
+ Action: "DeleteInstanceDatabase",
766
+ },
767
+ headers: {
768
+ "Content-Type": "application/json",
769
+ },
770
+ },
771
+ paramsType: {
772
+ DBInstanceIdentifier: "String",
773
+ InstanceDatabaseName: "String",
774
+ },
775
+ },
776
+ CreateInstanceDatabase: {
777
+ url: "/",
778
+ method: "GET",
779
+ config: {
780
+ query: {
781
+ Version: "2018-12-25",
782
+ Action: "CreateInstanceDatabase",
783
+ },
784
+ headers: {
785
+ "Content-Type": "application/json",
786
+ },
787
+ },
788
+ paramsType: {
789
+ DBInstanceIdentifier: "String",
790
+ InstanceDatabaseName: "String",
791
+ InstanceDatabaseCollation: "String",
792
+ InstanceDatabaseCharacterSet: "String",
793
+ InstanceDatabaseCharacterSetType: "String",
794
+ Description: "String",
795
+ InstanceDatabaseOwner: "String",
796
+ },
797
+ },
798
+ DescribeInstanceAccounts: {
799
+ url: "/",
800
+ method: "GET",
801
+ config: {
802
+ query: {
803
+ Version: "2018-12-25",
804
+ Action: "DescribeInstanceAccounts",
805
+ },
806
+ headers: {
807
+ "Content-Type": "application/json",
808
+ },
809
+ },
810
+ paramsType: {
811
+ DBInstanceIdentifier: "String",
812
+ },
813
+ },
814
+ CreateInstanceAccount: {
815
+ url: "/",
816
+ method: "GET",
817
+ config: {
818
+ query: {
819
+ Version: "2018-12-25",
820
+ Action: "CreateInstanceAccount",
821
+ },
822
+ headers: {
823
+ "Content-Type": "application/json",
824
+ },
825
+ },
826
+ paramsType: {
827
+ DBInstanceIdentifier: "String",
828
+ AccountName: "String",
829
+ AccountPassword: "String",
830
+ AccountDescription: "String",
831
+ },
832
+ },
833
+ DeleteInstanceAccount: {
834
+ url: "/",
835
+ method: "GET",
836
+ config: {
837
+ query: {
838
+ Version: "2018-12-25",
839
+ Action: "DeleteInstanceAccount",
840
+ },
841
+ headers: {
842
+ "Content-Type": "application/json",
843
+ },
844
+ },
845
+ paramsType: {
846
+ DBInstanceIdentifier: "String",
847
+ AccountName: "String",
848
+ },
849
+ },
850
+ ModifyDBNetwork: {
851
+ url: "/",
852
+ method: "GET",
853
+ config: {
854
+ query: {
855
+ Version: "2018-12-25",
856
+ Action: "ModifyDBNetwork",
857
+ },
858
+ headers: {
859
+ "Content-Type": "application/json",
860
+ },
861
+ },
862
+ paramsType: {
863
+ DBInstanceIdentifier: "String",
864
+ SubnetId: "String",
865
+ VpcId: "String",
866
+ },
867
+ },
868
+ UpdateDBInstanceVersion: {
869
+ url: "/",
870
+ method: "GET",
871
+ config: {
872
+ query: {
873
+ Version: "2018-12-25",
874
+ Action: "UpdateDBInstanceVersion",
875
+ },
876
+ headers: {
877
+ "Content-Type": "application/json",
878
+ },
879
+ },
880
+ paramsType: {
881
+ DBInstanceIdentifier: "String",
882
+ Engine: "String",
883
+ EngineVersion: "String",
884
+ },
885
+ },
886
+ ModifyDBInstanceAvailabilityZone: {
887
+ url: "/",
888
+ method: "GET",
889
+ config: {
890
+ query: {
891
+ Version: "2018-12-25",
892
+ Action: "ModifyDBInstanceAvailabilityZone",
893
+ },
894
+ headers: {
895
+ "Content-Type": "application/json",
896
+ },
897
+ },
898
+ paramsType: {
899
+ DBInstanceIdentifier: "String",
900
+ "AvailabilityZone.1": "String",
901
+ "AvailabilityZone.2": "String",
902
+ },
903
+ },
904
+ UpdateDBInstanceOrder: {
905
+ url: "/",
906
+ method: "GET",
907
+ config: {
908
+ query: {
909
+ Version: "2018-12-25",
910
+ Action: "UpdateDBInstanceOrder",
911
+ },
912
+ headers: {
913
+ "Content-Type": "application/json",
914
+ },
915
+ },
916
+ paramsType: {
917
+ DBInstanceIdentifier: "String",
918
+ UpdateUse: "String",
919
+ Duration: "Int",
920
+ BillType: "String",
921
+ },
922
+ },
923
+ UpdateResourceProtection: {
924
+ url: "/",
925
+ method: "GET",
926
+ config: {
927
+ query: {
928
+ Version: "2018-12-25",
929
+ Action: "UpdateResourceProtection",
930
+ },
931
+ headers: {
932
+ "Content-Type": "application/x-www-form-urlencoded",
933
+ },
934
+ },
935
+ paramsType: {
936
+ DBInstanceIdentifier: "String",
937
+ ProtectionSwitch: "String",
938
+ ProtectionReason: "String",
939
+ },
940
+ },
941
+ };
942
+ };