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
@@ -23,6 +23,79 @@ module.exports = class Client extends BaseClient {
23
23
  }
24
24
  });
25
25
  _defineProperty(this, "_apiList", {
26
+ CreateCertificate: {
27
+ url: "/",
28
+ method: "POST",
29
+ config: {
30
+ query: {
31
+ Version: "2016-03-04",
32
+ Action: "CreateCertificate"
33
+ },
34
+ headers: {
35
+ "Content-Type": "application/x-www-form-urlencoded"
36
+ }
37
+ },
38
+ paramsType: {
39
+ CertificateName: "String",
40
+ PrivateKey: "String",
41
+ PublicKey: "String",
42
+ CertificateType: "String",
43
+ Source: "String",
44
+ SslCertificateId: "String",
45
+ Description: "String"
46
+ }
47
+ },
48
+ DeleteCertificate: {
49
+ url: "/",
50
+ method: "GET",
51
+ config: {
52
+ query: {
53
+ Version: "2016-03-04",
54
+ Action: "DeleteCertificate"
55
+ },
56
+ headers: {
57
+ "Content-Type": "application/x-www-form-urlencoded"
58
+ }
59
+ },
60
+ paramsType: {
61
+ CertificateId: "String"
62
+ }
63
+ },
64
+ ModifyCertificate: {
65
+ url: "/",
66
+ method: "GET",
67
+ config: {
68
+ query: {
69
+ Version: "2016-03-04",
70
+ Action: "ModifyCertificate"
71
+ },
72
+ headers: {
73
+ "Content-Type": "application/x-www-form-urlencoded"
74
+ }
75
+ },
76
+ paramsType: {
77
+ CertificateId: "String",
78
+ CertificateName: "String",
79
+ PrivateKey: "String",
80
+ PublicKey: "String"
81
+ }
82
+ },
83
+ DescribeCertificates: {
84
+ url: "/",
85
+ method: "GET",
86
+ config: {
87
+ query: {
88
+ Version: "2016-03-04",
89
+ Action: "DescribeCertificates"
90
+ },
91
+ headers: {
92
+ "Content-Type": "application/x-www-form-urlencoded"
93
+ }
94
+ },
95
+ paramsType: {
96
+ CertificateId: "Filter"
97
+ }
98
+ },
26
99
  ApplyCertificate: {
27
100
  url: "/",
28
101
  method: "POST",
@@ -43,7 +116,8 @@ module.exports = class Client extends BaseClient {
43
116
  WildcardCount: "Int",
44
117
  ProductId: "String",
45
118
  SubOrderId: "String",
46
- ProjectId: "Int"
119
+ ProjectId: "Int",
120
+ BillType: "Int"
47
121
  }
48
122
  },
49
123
  UpdateCertificate: {
@@ -78,7 +152,41 @@ module.exports = class Client extends BaseClient {
78
152
  IsSubmit: "String",
79
153
  BusinessLicence: "String",
80
154
  CsrSource: "String",
81
- Algorithm: "String"
155
+ Algorithm: "String",
156
+ CertSignature: "String"
157
+ }
158
+ },
159
+ ReIssueCertificate: {
160
+ url: "/",
161
+ method: "GET",
162
+ config: {
163
+ query: {
164
+ Version: "2016-03-04",
165
+ Action: "ReIssueCertificate"
166
+ },
167
+ headers: {
168
+ "Content-Type": "application/x-www-form-urlencoded"
169
+ }
170
+ },
171
+ paramsType: {
172
+ CertificateId: "String",
173
+ CsrSource: "String"
174
+ }
175
+ },
176
+ CancelTransaction: {
177
+ url: "/",
178
+ method: "POST",
179
+ config: {
180
+ query: {
181
+ Version: "2016-03-04",
182
+ Action: "CancelTransaction"
183
+ },
184
+ headers: {
185
+ "Content-Type": "application/x-www-form-urlencoded"
186
+ }
187
+ },
188
+ paramsType: {
189
+ CertificateId: "String"
82
190
  }
83
191
  },
84
192
  ListCertificates: {
@@ -96,7 +204,9 @@ module.exports = class Client extends BaseClient {
96
204
  paramsType: {
97
205
  CertificateId: "Filter",
98
206
  ProjectId: "Filter",
99
- Filter: "Filter"
207
+ Filter: "Filter",
208
+ Page: "Int",
209
+ PageSize: "Int"
100
210
  }
101
211
  },
102
212
  GetCertificateDetail: {
@@ -32,7 +32,7 @@ module.exports = class Client extends BaseClient {
32
32
  Action: "CreateNamespace"
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: {
@@ -50,7 +50,7 @@ module.exports = class Client extends BaseClient {
50
50
  Action: "DescribeNamespace"
51
51
  },
52
52
  headers: {
53
- "Content-Type": "application/json"
53
+ "Content-Type": "application/x-www-form-urlencoded"
54
54
  }
55
55
  },
56
56
  paramsType: {
@@ -70,7 +70,7 @@ module.exports = class Client extends BaseClient {
70
70
  Action: "ModifyNamespaceType"
71
71
  },
72
72
  headers: {
73
- "Content-Type": "application/json"
73
+ "Content-Type": "application/x-www-form-urlencoded"
74
74
  }
75
75
  },
76
76
  paramsType: {
@@ -105,7 +105,7 @@ module.exports = class Client extends BaseClient {
105
105
  Action: "DeleteNamespace"
106
106
  },
107
107
  headers: {
108
- "Content-Type": "application/json"
108
+ "Content-Type": "application/x-www-form-urlencoded"
109
109
  }
110
110
  },
111
111
  paramsType: {
@@ -122,7 +122,7 @@ module.exports = class Client extends BaseClient {
122
122
  Action: "DescribeImages"
123
123
  },
124
124
  headers: {
125
- "Content-Type": "application/json"
125
+ "Content-Type": "application/x-www-form-urlencoded"
126
126
  }
127
127
  },
128
128
  paramsType: {
@@ -143,7 +143,7 @@ module.exports = class Client extends BaseClient {
143
143
  Action: "DeleteImages"
144
144
  },
145
145
  headers: {
146
- "Content-Type": "application/json"
146
+ "Content-Type": "application/x-www-form-urlencoded"
147
147
  }
148
148
  },
149
149
  paramsType: {
@@ -162,7 +162,7 @@ module.exports = class Client extends BaseClient {
162
162
  Action: "DeleteRepoTag"
163
163
  },
164
164
  headers: {
165
- "Content-Type": "application/json"
165
+ "Content-Type": "application/x-www-form-urlencoded"
166
166
  }
167
167
  },
168
168
  paramsType: {
@@ -181,7 +181,7 @@ module.exports = class Client extends BaseClient {
181
181
  Action: "DescribeRepository"
182
182
  },
183
183
  headers: {
184
- "Content-Type": "application/json"
184
+ "Content-Type": "application/x-www-form-urlencoded"
185
185
  }
186
186
  },
187
187
  paramsType: {
@@ -201,7 +201,7 @@ module.exports = class Client extends BaseClient {
201
201
  Action: "ModifyRepoDesc"
202
202
  },
203
203
  headers: {
204
- "Content-Type": "application/json"
204
+ "Content-Type": "application/x-www-form-urlencoded"
205
205
  }
206
206
  },
207
207
  paramsType: {
@@ -220,7 +220,7 @@ module.exports = class Client extends BaseClient {
220
220
  Action: "DeleteRepository"
221
221
  },
222
222
  headers: {
223
- "Content-Type": "application/json"
223
+ "Content-Type": "application/x-www-form-urlencoded"
224
224
  }
225
225
  },
226
226
  paramsType: {
@@ -238,7 +238,7 @@ module.exports = class Client extends BaseClient {
238
238
  Action: "StartImageScan"
239
239
  },
240
240
  headers: {
241
- "Content-Type": "application/json"
241
+ "Content-Type": "application/x-www-form-urlencoded"
242
242
  }
243
243
  },
244
244
  paramsType: {
@@ -257,7 +257,7 @@ module.exports = class Client extends BaseClient {
257
257
  Action: "DescribeImageScan"
258
258
  },
259
259
  headers: {
260
- "Content-Type": "application/json"
260
+ "Content-Type": "application/x-www-form-urlencoded"
261
261
  }
262
262
  },
263
263
  paramsType: {
@@ -276,7 +276,7 @@ module.exports = class Client extends BaseClient {
276
276
  Action: "CreateInstanceToken"
277
277
  },
278
278
  headers: {
279
- "Content-Type": "application/json"
279
+ "Content-Type": "application/x-www-form-urlencoded"
280
280
  }
281
281
  },
282
282
  paramsType: {
@@ -295,7 +295,7 @@ module.exports = class Client extends BaseClient {
295
295
  Action: "DescribeInternalEndpoint"
296
296
  },
297
297
  headers: {
298
- "Content-Type": "application/json"
298
+ "Content-Type": "application/x-www-form-urlencoded"
299
299
  }
300
300
  },
301
301
  paramsType: {
@@ -311,7 +311,7 @@ module.exports = class Client extends BaseClient {
311
311
  Action: "DescribeInstanceToken"
312
312
  },
313
313
  headers: {
314
- "Content-Type": "application/json"
314
+ "Content-Type": "application/x-www-form-urlencoded"
315
315
  }
316
316
  },
317
317
  paramsType: {
@@ -329,7 +329,7 @@ module.exports = class Client extends BaseClient {
329
329
  Action: "CreateInternalEndpoint"
330
330
  },
331
331
  headers: {
332
- "Content-Type": "application/json"
332
+ "Content-Type": "application/x-www-form-urlencoded"
333
333
  }
334
334
  },
335
335
  paramsType: {
@@ -347,7 +347,7 @@ module.exports = class Client extends BaseClient {
347
347
  Action: "ModifyInstanceTokenStatus"
348
348
  },
349
349
  headers: {
350
- "Content-Type": "application/json"
350
+ "Content-Type": "application/x-www-form-urlencoded"
351
351
  }
352
352
  },
353
353
  paramsType: {
@@ -365,7 +365,7 @@ module.exports = class Client extends BaseClient {
365
365
  Action: "DeleteInternalEndpoint"
366
366
  },
367
367
  headers: {
368
- "Content-Type": "application/json"
368
+ "Content-Type": "application/x-www-form-urlencoded"
369
369
  }
370
370
  },
371
371
  paramsType: {
@@ -383,7 +383,7 @@ module.exports = class Client extends BaseClient {
383
383
  Action: "ModifyInstanceTokenInformation"
384
384
  },
385
385
  headers: {
386
- "Content-Type": "application/json"
386
+ "Content-Type": "application/x-www-form-urlencoded"
387
387
  }
388
388
  },
389
389
  paramsType: {
@@ -403,7 +403,7 @@ module.exports = class Client extends BaseClient {
403
403
  Action: "DescribeInternalEndpointDns"
404
404
  },
405
405
  headers: {
406
- "Content-Type": "application/json"
406
+ "Content-Type": "application/x-www-form-urlencoded"
407
407
  }
408
408
  },
409
409
  paramsType: {
@@ -422,7 +422,7 @@ module.exports = class Client extends BaseClient {
422
422
  Action: "DeleteInstanceToken"
423
423
  },
424
424
  headers: {
425
- "Content-Type": "application/json"
425
+ "Content-Type": "application/x-www-form-urlencoded"
426
426
  }
427
427
  },
428
428
  paramsType: {
@@ -439,7 +439,7 @@ module.exports = class Client extends BaseClient {
439
439
  Action: "CreateInternalEndpointDns"
440
440
  },
441
441
  headers: {
442
- "Content-Type": "application/json"
442
+ "Content-Type": "application/x-www-form-urlencoded"
443
443
  }
444
444
  },
445
445
  paramsType: {
@@ -458,7 +458,7 @@ module.exports = class Client extends BaseClient {
458
458
  Action: "DeleteInternalEndpointDns"
459
459
  },
460
460
  headers: {
461
- "Content-Type": "application/json"
461
+ "Content-Type": "application/x-www-form-urlencoded"
462
462
  }
463
463
  },
464
464
  paramsType: {
@@ -477,7 +477,7 @@ module.exports = class Client extends BaseClient {
477
477
  Action: "CreateInstance"
478
478
  },
479
479
  headers: {
480
- "Content-Type": "application/json"
480
+ "Content-Type": "application/x-www-form-urlencoded"
481
481
  }
482
482
  },
483
483
  paramsType: {
@@ -497,12 +497,12 @@ module.exports = class Client extends BaseClient {
497
497
  Action: "DeleteInstance"
498
498
  },
499
499
  headers: {
500
- "Content-Type": "application/json"
500
+ "Content-Type": "application/x-www-form-urlencoded"
501
501
  }
502
502
  },
503
503
  paramsType: {
504
504
  InstanceId: "String",
505
- DeleteBucket: "String"
505
+ DeleteBucket: "Boolean"
506
506
  }
507
507
  },
508
508
  DescribeInstanceUsage: {
@@ -530,7 +530,7 @@ module.exports = class Client extends BaseClient {
530
530
  Action: "DescribeInstance"
531
531
  },
532
532
  headers: {
533
- "Content-Type": "application/json"
533
+ "Content-Type": "application/x-www-form-urlencoded"
534
534
  }
535
535
  },
536
536
  paramsType: {
@@ -556,14 +556,7 @@ module.exports = class Client extends BaseClient {
556
556
  paramsType: {
557
557
  InstanceId: "String",
558
558
  Namespace: "String",
559
- Trigger: "String",
560
- TriggerName: "String",
561
- EventType: "Filter",
562
- TriggerUrl: "String",
563
- Header: "Filter",
564
- Enabled: "String",
565
- Key: "String",
566
- Value: "Filter"
559
+ Trigger: "Object"
567
560
  }
568
561
  },
569
562
  DescribeWebhookTrigger: {
@@ -575,7 +568,7 @@ module.exports = class Client extends BaseClient {
575
568
  Action: "DescribeWebhookTrigger"
576
569
  },
577
570
  headers: {
578
- "Content-Type": "application/json"
571
+ "Content-Type": "application/x-www-form-urlencoded"
579
572
  }
580
573
  },
581
574
  paramsType: {
@@ -595,7 +588,7 @@ module.exports = class Client extends BaseClient {
595
588
  Action: "ModifyWebhookTrigger"
596
589
  },
597
590
  headers: {
598
- "Content-Type": "application/json"
591
+ "Content-Type": "application/x-www-form-urlencoded"
599
592
  }
600
593
  },
601
594
  paramsType: {
@@ -621,7 +614,7 @@ module.exports = class Client extends BaseClient {
621
614
  Action: "DescribeWebhookTriggerLog"
622
615
  },
623
616
  headers: {
624
- "Content-Type": "application/json"
617
+ "Content-Type": "application/x-www-form-urlencoded"
625
618
  }
626
619
  },
627
620
  paramsType: {
@@ -641,7 +634,7 @@ module.exports = class Client extends BaseClient {
641
634
  Action: "DeleteWebhookTrigger"
642
635
  },
643
636
  headers: {
644
- "Content-Type": "application/json"
637
+ "Content-Type": "application/x-www-form-urlencoded"
645
638
  }
646
639
  },
647
640
  paramsType: {
@@ -650,34 +643,6 @@ module.exports = class Client extends BaseClient {
650
643
  TriggerId: "String"
651
644
  }
652
645
  },
653
- DescribeAllRepository: {
654
- url: "/",
655
- method: "GET",
656
- config: {
657
- query: {
658
- Version: "2021-11-09",
659
- Action: "DescribeAllRepository"
660
- },
661
- headers: {
662
- "Content-Type": "application/x-www-form-urlencoded"
663
- }
664
- },
665
- paramsType: {}
666
- },
667
- GetMetadata: {
668
- url: "/",
669
- method: "GET",
670
- config: {
671
- query: {
672
- Version: "2021-11-09",
673
- Action: "GetMetadata"
674
- },
675
- headers: {
676
- "Content-Type": "application/x-www-form-urlencoded"
677
- }
678
- },
679
- paramsType: {}
680
- },
681
646
  CreateRetentionRule: {
682
647
  url: "/",
683
648
  method: "GET",
@@ -690,7 +655,11 @@ module.exports = class Client extends BaseClient {
690
655
  "Content-Type": "application/x-www-form-urlencoded"
691
656
  }
692
657
  },
693
- paramsType: {}
658
+ paramsType: {
659
+ InstanceId: "String",
660
+ Namespace: "String",
661
+ Rule: "Object"
662
+ }
694
663
  },
695
664
  UpdateRetentionRule: {
696
665
  url: "/",
@@ -704,7 +673,11 @@ module.exports = class Client extends BaseClient {
704
673
  "Content-Type": "application/x-www-form-urlencoded"
705
674
  }
706
675
  },
707
- paramsType: {}
676
+ paramsType: {
677
+ InstanceId: "String",
678
+ Namespace: "String",
679
+ Rule: "Object"
680
+ }
708
681
  },
709
682
  DeleteRetentionRule: {
710
683
  url: "/",
@@ -718,7 +691,11 @@ module.exports = class Client extends BaseClient {
718
691
  "Content-Type": "application/x-www-form-urlencoded"
719
692
  }
720
693
  },
721
- paramsType: {}
694
+ paramsType: {
695
+ InstanceId: "String",
696
+ Namespace: "String",
697
+ Rule: "Object"
698
+ }
722
699
  },
723
700
  DescribeRetentionRule: {
724
701
  url: "/",
@@ -732,7 +709,10 @@ module.exports = class Client extends BaseClient {
732
709
  "Content-Type": "application/x-www-form-urlencoded"
733
710
  }
734
711
  },
735
- paramsType: {}
712
+ paramsType: {
713
+ InstanceId: "String",
714
+ Namespace: "String"
715
+ }
736
716
  },
737
717
  RunRetentionPolicy: {
738
718
  url: "/",
@@ -746,7 +726,11 @@ module.exports = class Client extends BaseClient {
746
726
  "Content-Type": "application/x-www-form-urlencoded"
747
727
  }
748
728
  },
749
- paramsType: {}
729
+ paramsType: {
730
+ InstanceId: "String",
731
+ Namespace: "String",
732
+ TestRun: "Boolean"
733
+ }
750
734
  },
751
735
  GetRetentionPolicyLogs: {
752
736
  url: "/",
@@ -760,7 +744,12 @@ module.exports = class Client extends BaseClient {
760
744
  "Content-Type": "application/x-www-form-urlencoded"
761
745
  }
762
746
  },
763
- paramsType: {}
747
+ paramsType: {
748
+ InstanceId: "String",
749
+ Namespace: "String",
750
+ Page: "Int",
751
+ PageSize: "Int"
752
+ }
764
753
  },
765
754
  GetRetentionPolicyLogDetail: {
766
755
  url: "/",
@@ -774,7 +763,13 @@ module.exports = class Client extends BaseClient {
774
763
  "Content-Type": "application/x-www-form-urlencoded"
775
764
  }
776
765
  },
777
- paramsType: {}
766
+ paramsType: {
767
+ InstanceId: "String",
768
+ Namespace: "String",
769
+ ExecutionId: "String",
770
+ Page: "Int",
771
+ PageSize: "Int"
772
+ }
778
773
  },
779
774
  GetRetentionPolicyLog: {
780
775
  url: "/",
@@ -788,7 +783,12 @@ module.exports = class Client extends BaseClient {
788
783
  "Content-Type": "application/x-www-form-urlencoded"
789
784
  }
790
785
  },
791
- paramsType: {}
786
+ paramsType: {
787
+ InstanceId: "String",
788
+ Namespace: "String",
789
+ TaskId: "Int",
790
+ ExecutionId: "Int"
791
+ }
792
792
  },
793
793
  GetRetentionTrigger: {
794
794
  url: "/",
@@ -802,7 +802,10 @@ module.exports = class Client extends BaseClient {
802
802
  "Content-Type": "application/x-www-form-urlencoded"
803
803
  }
804
804
  },
805
- paramsType: {}
805
+ paramsType: {
806
+ InstanceId: "String",
807
+ Namespace: "String"
808
+ }
806
809
  },
807
810
  UpdateRetentionTrigger: {
808
811
  url: "/",
@@ -816,21 +819,11 @@ module.exports = class Client extends BaseClient {
816
819
  "Content-Type": "application/x-www-form-urlencoded"
817
820
  }
818
821
  },
819
- paramsType: {}
820
- },
821
- GetNamespacePolicy: {
822
- url: "/",
823
- method: "GET",
824
- config: {
825
- query: {
826
- Version: "2021-11-09",
827
- Action: "GetNamespacePolicy"
828
- },
829
- headers: {
830
- "Content-Type": "application/x-www-form-urlencoded"
831
- }
832
- },
833
- paramsType: {}
822
+ paramsType: {
823
+ InstanceId: "String",
824
+ Namespace: "String",
825
+ Trigger: "String"
826
+ }
834
827
  },
835
828
  Schedule: {
836
829
  url: "/",
@@ -844,7 +837,10 @@ module.exports = class Client extends BaseClient {
844
837
  "Content-Type": "application/x-www-form-urlencoded"
845
838
  }
846
839
  },
847
- paramsType: {}
840
+ paramsType: {
841
+ InstanceId: "String",
842
+ TestRun: "Boolean"
843
+ }
848
844
  }
849
845
  });
850
846
  }