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
@@ -16,6 +16,79 @@ module.exports = class Client extends BaseClient {
16
16
  },
17
17
  };
18
18
  _apiList = {
19
+ CreateCertificate: {
20
+ url: "/",
21
+ method: "POST",
22
+ config: {
23
+ query: {
24
+ Version: "2016-03-04",
25
+ Action: "CreateCertificate",
26
+ },
27
+ headers: {
28
+ "Content-Type": "application/x-www-form-urlencoded",
29
+ },
30
+ },
31
+ paramsType: {
32
+ CertificateName: "String",
33
+ PrivateKey: "String",
34
+ PublicKey: "String",
35
+ CertificateType: "String",
36
+ Source: "String",
37
+ SslCertificateId: "String",
38
+ Description: "String",
39
+ },
40
+ },
41
+ DeleteCertificate: {
42
+ url: "/",
43
+ method: "GET",
44
+ config: {
45
+ query: {
46
+ Version: "2016-03-04",
47
+ Action: "DeleteCertificate",
48
+ },
49
+ headers: {
50
+ "Content-Type": "application/x-www-form-urlencoded",
51
+ },
52
+ },
53
+ paramsType: {
54
+ CertificateId: "String",
55
+ },
56
+ },
57
+ ModifyCertificate: {
58
+ url: "/",
59
+ method: "GET",
60
+ config: {
61
+ query: {
62
+ Version: "2016-03-04",
63
+ Action: "ModifyCertificate",
64
+ },
65
+ headers: {
66
+ "Content-Type": "application/x-www-form-urlencoded",
67
+ },
68
+ },
69
+ paramsType: {
70
+ CertificateId: "String",
71
+ CertificateName: "String",
72
+ PrivateKey: "String",
73
+ PublicKey: "String",
74
+ },
75
+ },
76
+ DescribeCertificates: {
77
+ url: "/",
78
+ method: "GET",
79
+ config: {
80
+ query: {
81
+ Version: "2016-03-04",
82
+ Action: "DescribeCertificates",
83
+ },
84
+ headers: {
85
+ "Content-Type": "application/x-www-form-urlencoded",
86
+ },
87
+ },
88
+ paramsType: {
89
+ CertificateId: "Filter",
90
+ },
91
+ },
19
92
  ApplyCertificate: {
20
93
  url: "/",
21
94
  method: "POST",
@@ -37,6 +110,7 @@ module.exports = class Client extends BaseClient {
37
110
  ProductId: "String",
38
111
  SubOrderId: "String",
39
112
  ProjectId: "Int",
113
+ BillType: "Int",
40
114
  },
41
115
  },
42
116
  UpdateCertificate: {
@@ -72,6 +146,40 @@ module.exports = class Client extends BaseClient {
72
146
  BusinessLicence: "String",
73
147
  CsrSource: "String",
74
148
  Algorithm: "String",
149
+ CertSignature: "String",
150
+ },
151
+ },
152
+ ReIssueCertificate: {
153
+ url: "/",
154
+ method: "GET",
155
+ config: {
156
+ query: {
157
+ Version: "2016-03-04",
158
+ Action: "ReIssueCertificate",
159
+ },
160
+ headers: {
161
+ "Content-Type": "application/x-www-form-urlencoded",
162
+ },
163
+ },
164
+ paramsType: {
165
+ CertificateId: "String",
166
+ CsrSource: "String",
167
+ },
168
+ },
169
+ CancelTransaction: {
170
+ url: "/",
171
+ method: "POST",
172
+ config: {
173
+ query: {
174
+ Version: "2016-03-04",
175
+ Action: "CancelTransaction",
176
+ },
177
+ headers: {
178
+ "Content-Type": "application/x-www-form-urlencoded",
179
+ },
180
+ },
181
+ paramsType: {
182
+ CertificateId: "String",
75
183
  },
76
184
  },
77
185
  ListCertificates: {
@@ -90,6 +198,8 @@ module.exports = class Client extends BaseClient {
90
198
  CertificateId: "Filter",
91
199
  ProjectId: "Filter",
92
200
  Filter: "Filter",
201
+ Page: "Int",
202
+ PageSize: "Int",
93
203
  },
94
204
  },
95
205
  GetCertificateDetail: {
@@ -25,7 +25,7 @@ module.exports = class Client extends BaseClient {
25
25
  Action: "CreateNamespace",
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: {
@@ -43,7 +43,7 @@ module.exports = class Client extends BaseClient {
43
43
  Action: "DescribeNamespace",
44
44
  },
45
45
  headers: {
46
- "Content-Type": "application/json",
46
+ "Content-Type": "application/x-www-form-urlencoded",
47
47
  },
48
48
  },
49
49
  paramsType: {
@@ -63,7 +63,7 @@ module.exports = class Client extends BaseClient {
63
63
  Action: "ModifyNamespaceType",
64
64
  },
65
65
  headers: {
66
- "Content-Type": "application/json",
66
+ "Content-Type": "application/x-www-form-urlencoded",
67
67
  },
68
68
  },
69
69
  paramsType: {
@@ -98,7 +98,7 @@ module.exports = class Client extends BaseClient {
98
98
  Action: "DeleteNamespace",
99
99
  },
100
100
  headers: {
101
- "Content-Type": "application/json",
101
+ "Content-Type": "application/x-www-form-urlencoded",
102
102
  },
103
103
  },
104
104
  paramsType: {
@@ -115,7 +115,7 @@ module.exports = class Client extends BaseClient {
115
115
  Action: "DescribeImages",
116
116
  },
117
117
  headers: {
118
- "Content-Type": "application/json",
118
+ "Content-Type": "application/x-www-form-urlencoded",
119
119
  },
120
120
  },
121
121
  paramsType: {
@@ -136,7 +136,7 @@ module.exports = class Client extends BaseClient {
136
136
  Action: "DeleteImages",
137
137
  },
138
138
  headers: {
139
- "Content-Type": "application/json",
139
+ "Content-Type": "application/x-www-form-urlencoded",
140
140
  },
141
141
  },
142
142
  paramsType: {
@@ -155,7 +155,7 @@ module.exports = class Client extends BaseClient {
155
155
  Action: "DeleteRepoTag",
156
156
  },
157
157
  headers: {
158
- "Content-Type": "application/json",
158
+ "Content-Type": "application/x-www-form-urlencoded",
159
159
  },
160
160
  },
161
161
  paramsType: {
@@ -174,7 +174,7 @@ module.exports = class Client extends BaseClient {
174
174
  Action: "DescribeRepository",
175
175
  },
176
176
  headers: {
177
- "Content-Type": "application/json",
177
+ "Content-Type": "application/x-www-form-urlencoded",
178
178
  },
179
179
  },
180
180
  paramsType: {
@@ -194,7 +194,7 @@ module.exports = class Client extends BaseClient {
194
194
  Action: "ModifyRepoDesc",
195
195
  },
196
196
  headers: {
197
- "Content-Type": "application/json",
197
+ "Content-Type": "application/x-www-form-urlencoded",
198
198
  },
199
199
  },
200
200
  paramsType: {
@@ -213,7 +213,7 @@ module.exports = class Client extends BaseClient {
213
213
  Action: "DeleteRepository",
214
214
  },
215
215
  headers: {
216
- "Content-Type": "application/json",
216
+ "Content-Type": "application/x-www-form-urlencoded",
217
217
  },
218
218
  },
219
219
  paramsType: {
@@ -231,7 +231,7 @@ module.exports = class Client extends BaseClient {
231
231
  Action: "StartImageScan",
232
232
  },
233
233
  headers: {
234
- "Content-Type": "application/json",
234
+ "Content-Type": "application/x-www-form-urlencoded",
235
235
  },
236
236
  },
237
237
  paramsType: {
@@ -250,7 +250,7 @@ module.exports = class Client extends BaseClient {
250
250
  Action: "DescribeImageScan",
251
251
  },
252
252
  headers: {
253
- "Content-Type": "application/json",
253
+ "Content-Type": "application/x-www-form-urlencoded",
254
254
  },
255
255
  },
256
256
  paramsType: {
@@ -269,7 +269,7 @@ module.exports = class Client extends BaseClient {
269
269
  Action: "CreateInstanceToken",
270
270
  },
271
271
  headers: {
272
- "Content-Type": "application/json",
272
+ "Content-Type": "application/x-www-form-urlencoded",
273
273
  },
274
274
  },
275
275
  paramsType: {
@@ -288,7 +288,7 @@ module.exports = class Client extends BaseClient {
288
288
  Action: "DescribeInternalEndpoint",
289
289
  },
290
290
  headers: {
291
- "Content-Type": "application/json",
291
+ "Content-Type": "application/x-www-form-urlencoded",
292
292
  },
293
293
  },
294
294
  paramsType: {
@@ -304,7 +304,7 @@ module.exports = class Client extends BaseClient {
304
304
  Action: "DescribeInstanceToken",
305
305
  },
306
306
  headers: {
307
- "Content-Type": "application/json",
307
+ "Content-Type": "application/x-www-form-urlencoded",
308
308
  },
309
309
  },
310
310
  paramsType: {
@@ -322,7 +322,7 @@ module.exports = class Client extends BaseClient {
322
322
  Action: "CreateInternalEndpoint",
323
323
  },
324
324
  headers: {
325
- "Content-Type": "application/json",
325
+ "Content-Type": "application/x-www-form-urlencoded",
326
326
  },
327
327
  },
328
328
  paramsType: {
@@ -340,7 +340,7 @@ module.exports = class Client extends BaseClient {
340
340
  Action: "ModifyInstanceTokenStatus",
341
341
  },
342
342
  headers: {
343
- "Content-Type": "application/json",
343
+ "Content-Type": "application/x-www-form-urlencoded",
344
344
  },
345
345
  },
346
346
  paramsType: {
@@ -358,7 +358,7 @@ module.exports = class Client extends BaseClient {
358
358
  Action: "DeleteInternalEndpoint",
359
359
  },
360
360
  headers: {
361
- "Content-Type": "application/json",
361
+ "Content-Type": "application/x-www-form-urlencoded",
362
362
  },
363
363
  },
364
364
  paramsType: {
@@ -376,7 +376,7 @@ module.exports = class Client extends BaseClient {
376
376
  Action: "ModifyInstanceTokenInformation",
377
377
  },
378
378
  headers: {
379
- "Content-Type": "application/json",
379
+ "Content-Type": "application/x-www-form-urlencoded",
380
380
  },
381
381
  },
382
382
  paramsType: {
@@ -396,7 +396,7 @@ module.exports = class Client extends BaseClient {
396
396
  Action: "DescribeInternalEndpointDns",
397
397
  },
398
398
  headers: {
399
- "Content-Type": "application/json",
399
+ "Content-Type": "application/x-www-form-urlencoded",
400
400
  },
401
401
  },
402
402
  paramsType: {
@@ -415,7 +415,7 @@ module.exports = class Client extends BaseClient {
415
415
  Action: "DeleteInstanceToken",
416
416
  },
417
417
  headers: {
418
- "Content-Type": "application/json",
418
+ "Content-Type": "application/x-www-form-urlencoded",
419
419
  },
420
420
  },
421
421
  paramsType: {
@@ -432,7 +432,7 @@ module.exports = class Client extends BaseClient {
432
432
  Action: "CreateInternalEndpointDns",
433
433
  },
434
434
  headers: {
435
- "Content-Type": "application/json",
435
+ "Content-Type": "application/x-www-form-urlencoded",
436
436
  },
437
437
  },
438
438
  paramsType: {
@@ -451,7 +451,7 @@ module.exports = class Client extends BaseClient {
451
451
  Action: "DeleteInternalEndpointDns",
452
452
  },
453
453
  headers: {
454
- "Content-Type": "application/json",
454
+ "Content-Type": "application/x-www-form-urlencoded",
455
455
  },
456
456
  },
457
457
  paramsType: {
@@ -470,7 +470,7 @@ module.exports = class Client extends BaseClient {
470
470
  Action: "CreateInstance",
471
471
  },
472
472
  headers: {
473
- "Content-Type": "application/json",
473
+ "Content-Type": "application/x-www-form-urlencoded",
474
474
  },
475
475
  },
476
476
  paramsType: {
@@ -490,12 +490,12 @@ module.exports = class Client extends BaseClient {
490
490
  Action: "DeleteInstance",
491
491
  },
492
492
  headers: {
493
- "Content-Type": "application/json",
493
+ "Content-Type": "application/x-www-form-urlencoded",
494
494
  },
495
495
  },
496
496
  paramsType: {
497
497
  InstanceId: "String",
498
- DeleteBucket: "String",
498
+ DeleteBucket: "Boolean",
499
499
  },
500
500
  },
501
501
  DescribeInstanceUsage: {
@@ -523,7 +523,7 @@ module.exports = class Client extends BaseClient {
523
523
  Action: "DescribeInstance",
524
524
  },
525
525
  headers: {
526
- "Content-Type": "application/json",
526
+ "Content-Type": "application/x-www-form-urlencoded",
527
527
  },
528
528
  },
529
529
  paramsType: {
@@ -549,14 +549,7 @@ module.exports = class Client extends BaseClient {
549
549
  paramsType: {
550
550
  InstanceId: "String",
551
551
  Namespace: "String",
552
- Trigger: "String",
553
- TriggerName: "String",
554
- EventType: "Filter",
555
- TriggerUrl: "String",
556
- Header: "Filter",
557
- Enabled: "String",
558
- Key: "String",
559
- Value: "Filter",
552
+ Trigger: "Object",
560
553
  },
561
554
  },
562
555
  DescribeWebhookTrigger: {
@@ -568,7 +561,7 @@ module.exports = class Client extends BaseClient {
568
561
  Action: "DescribeWebhookTrigger",
569
562
  },
570
563
  headers: {
571
- "Content-Type": "application/json",
564
+ "Content-Type": "application/x-www-form-urlencoded",
572
565
  },
573
566
  },
574
567
  paramsType: {
@@ -588,7 +581,7 @@ module.exports = class Client extends BaseClient {
588
581
  Action: "ModifyWebhookTrigger",
589
582
  },
590
583
  headers: {
591
- "Content-Type": "application/json",
584
+ "Content-Type": "application/x-www-form-urlencoded",
592
585
  },
593
586
  },
594
587
  paramsType: {
@@ -614,7 +607,7 @@ module.exports = class Client extends BaseClient {
614
607
  Action: "DescribeWebhookTriggerLog",
615
608
  },
616
609
  headers: {
617
- "Content-Type": "application/json",
610
+ "Content-Type": "application/x-www-form-urlencoded",
618
611
  },
619
612
  },
620
613
  paramsType: {
@@ -634,7 +627,7 @@ module.exports = class Client extends BaseClient {
634
627
  Action: "DeleteWebhookTrigger",
635
628
  },
636
629
  headers: {
637
- "Content-Type": "application/json",
630
+ "Content-Type": "application/x-www-form-urlencoded",
638
631
  },
639
632
  },
640
633
  paramsType: {
@@ -643,34 +636,6 @@ module.exports = class Client extends BaseClient {
643
636
  TriggerId: "String",
644
637
  },
645
638
  },
646
- DescribeAllRepository: {
647
- url: "/",
648
- method: "GET",
649
- config: {
650
- query: {
651
- Version: "2021-11-09",
652
- Action: "DescribeAllRepository",
653
- },
654
- headers: {
655
- "Content-Type": "application/x-www-form-urlencoded",
656
- },
657
- },
658
- paramsType: {},
659
- },
660
- GetMetadata: {
661
- url: "/",
662
- method: "GET",
663
- config: {
664
- query: {
665
- Version: "2021-11-09",
666
- Action: "GetMetadata",
667
- },
668
- headers: {
669
- "Content-Type": "application/x-www-form-urlencoded",
670
- },
671
- },
672
- paramsType: {},
673
- },
674
639
  CreateRetentionRule: {
675
640
  url: "/",
676
641
  method: "GET",
@@ -683,7 +648,11 @@ module.exports = class Client extends BaseClient {
683
648
  "Content-Type": "application/x-www-form-urlencoded",
684
649
  },
685
650
  },
686
- paramsType: {},
651
+ paramsType: {
652
+ InstanceId: "String",
653
+ Namespace: "String",
654
+ Rule: "Object",
655
+ },
687
656
  },
688
657
  UpdateRetentionRule: {
689
658
  url: "/",
@@ -697,7 +666,11 @@ module.exports = class Client extends BaseClient {
697
666
  "Content-Type": "application/x-www-form-urlencoded",
698
667
  },
699
668
  },
700
- paramsType: {},
669
+ paramsType: {
670
+ InstanceId: "String",
671
+ Namespace: "String",
672
+ Rule: "Object",
673
+ },
701
674
  },
702
675
  DeleteRetentionRule: {
703
676
  url: "/",
@@ -711,7 +684,11 @@ module.exports = class Client extends BaseClient {
711
684
  "Content-Type": "application/x-www-form-urlencoded",
712
685
  },
713
686
  },
714
- paramsType: {},
687
+ paramsType: {
688
+ InstanceId: "String",
689
+ Namespace: "String",
690
+ Rule: "Object",
691
+ },
715
692
  },
716
693
  DescribeRetentionRule: {
717
694
  url: "/",
@@ -725,7 +702,10 @@ module.exports = class Client extends BaseClient {
725
702
  "Content-Type": "application/x-www-form-urlencoded",
726
703
  },
727
704
  },
728
- paramsType: {},
705
+ paramsType: {
706
+ InstanceId: "String",
707
+ Namespace: "String",
708
+ },
729
709
  },
730
710
  RunRetentionPolicy: {
731
711
  url: "/",
@@ -739,7 +719,11 @@ module.exports = class Client extends BaseClient {
739
719
  "Content-Type": "application/x-www-form-urlencoded",
740
720
  },
741
721
  },
742
- paramsType: {},
722
+ paramsType: {
723
+ InstanceId: "String",
724
+ Namespace: "String",
725
+ TestRun: "Boolean",
726
+ },
743
727
  },
744
728
  GetRetentionPolicyLogs: {
745
729
  url: "/",
@@ -753,7 +737,12 @@ module.exports = class Client extends BaseClient {
753
737
  "Content-Type": "application/x-www-form-urlencoded",
754
738
  },
755
739
  },
756
- paramsType: {},
740
+ paramsType: {
741
+ InstanceId: "String",
742
+ Namespace: "String",
743
+ Page: "Int",
744
+ PageSize: "Int",
745
+ },
757
746
  },
758
747
  GetRetentionPolicyLogDetail: {
759
748
  url: "/",
@@ -767,7 +756,13 @@ module.exports = class Client extends BaseClient {
767
756
  "Content-Type": "application/x-www-form-urlencoded",
768
757
  },
769
758
  },
770
- paramsType: {},
759
+ paramsType: {
760
+ InstanceId: "String",
761
+ Namespace: "String",
762
+ ExecutionId: "String",
763
+ Page: "Int",
764
+ PageSize: "Int",
765
+ },
771
766
  },
772
767
  GetRetentionPolicyLog: {
773
768
  url: "/",
@@ -781,7 +776,12 @@ module.exports = class Client extends BaseClient {
781
776
  "Content-Type": "application/x-www-form-urlencoded",
782
777
  },
783
778
  },
784
- paramsType: {},
779
+ paramsType: {
780
+ InstanceId: "String",
781
+ Namespace: "String",
782
+ TaskId: "Int",
783
+ ExecutionId: "Int",
784
+ },
785
785
  },
786
786
  GetRetentionTrigger: {
787
787
  url: "/",
@@ -795,7 +795,10 @@ module.exports = class Client extends BaseClient {
795
795
  "Content-Type": "application/x-www-form-urlencoded",
796
796
  },
797
797
  },
798
- paramsType: {},
798
+ paramsType: {
799
+ InstanceId: "String",
800
+ Namespace: "String",
801
+ },
799
802
  },
800
803
  UpdateRetentionTrigger: {
801
804
  url: "/",
@@ -809,21 +812,11 @@ module.exports = class Client extends BaseClient {
809
812
  "Content-Type": "application/x-www-form-urlencoded",
810
813
  },
811
814
  },
812
- paramsType: {},
813
- },
814
- GetNamespacePolicy: {
815
- url: "/",
816
- method: "GET",
817
- config: {
818
- query: {
819
- Version: "2021-11-09",
820
- Action: "GetNamespacePolicy",
821
- },
822
- headers: {
823
- "Content-Type": "application/x-www-form-urlencoded",
824
- },
815
+ paramsType: {
816
+ InstanceId: "String",
817
+ Namespace: "String",
818
+ Trigger: "String",
825
819
  },
826
- paramsType: {},
827
820
  },
828
821
  Schedule: {
829
822
  url: "/",
@@ -837,7 +830,10 @@ module.exports = class Client extends BaseClient {
837
830
  "Content-Type": "application/x-www-form-urlencoded",
838
831
  },
839
832
  },
840
- paramsType: {},
833
+ paramsType: {
834
+ InstanceId: "String",
835
+ TestRun: "Boolean",
836
+ },
841
837
  },
842
838
  };
843
839
  };