ksyun-sdk-node 1.0.5 → 1.4.8

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 (133) hide show
  1. package/.claude/settings.local.json +12 -0
  2. package/dist/base/BaseClient.js +133 -52
  3. package/dist/index.js +9 -12
  4. package/dist/lib/fetch.js +4 -5
  5. package/dist/lib/sign.js +31 -33
  6. package/dist/lib/signautreV4.js +167 -0
  7. package/dist/service/Actiontrail/v20190401/index.js +34 -37
  8. package/dist/service/Aicp/v20240612/index.js +511 -0
  9. package/dist/service/Bill/v20180601/index.js +49 -88
  10. package/dist/service/Bill/v20220601/index.js +64 -0
  11. package/dist/service/Bill_union/v20200101/index.js +151 -77
  12. package/dist/service/Bill_union/v20221222/index.js +142 -0
  13. package/dist/service/Bill_union/v20250801/index.js +66 -0
  14. package/dist/service/Bws/v20160304/index.js +111 -94
  15. package/dist/service/Cdn/v20160901/index.js +89 -0
  16. package/dist/service/Cdn/v20200630/index.js +410 -0
  17. package/dist/service/Cdn/v20200901/index.js +162 -0
  18. package/dist/service/Cdn/v20211201/index.js +45 -0
  19. package/dist/service/Cdn/v20250503/index.js +71 -0
  20. package/dist/service/Cen/v20160304/index.js +460 -0
  21. package/dist/service/Clickhouse/v20210101/index.js +546 -0
  22. package/dist/service/Ebs/v20160304/index.js +265 -268
  23. package/dist/service/Eip/v20160304/index.js +104 -107
  24. package/dist/service/Epc/v20151101/index.js +1735 -784
  25. package/dist/service/Iam/v20151101/index.js +872 -711
  26. package/dist/service/Iam/v20240513/index.js +47 -0
  27. package/dist/service/Iam/v20240703/index.js +44 -0
  28. package/dist/service/Kad/v20161122/index.js +84 -87
  29. package/dist/service/Kce/v20180314/index.js +320 -0
  30. package/dist/service/Kce/v20190806/index.js +482 -0
  31. package/dist/service/Kce/v20201231/index.js +63 -0
  32. package/dist/service/Kcf/v20211215/index.js +203 -0
  33. package/dist/service/Kcm/v20160304/index.js +120 -0
  34. package/dist/service/Kcrs/v20211109/index.js +851 -0
  35. package/dist/service/Kcs/v20160701/index.js +1106 -0
  36. package/dist/service/Kcs/v20170401/index.js +81 -0
  37. package/dist/service/Kead/v20200101/index.js +28 -31
  38. package/dist/service/Kec/v20160304/index.js +1695 -1466
  39. package/dist/service/Kes/v20201215/index.js +171 -0
  40. package/dist/service/Ket/v20170101/index.js +141 -0
  41. package/dist/service/Kkms/v20160304/index.js +167 -0
  42. package/dist/service/Klog/v20200731/index.js +331 -0
  43. package/dist/service/Kls/v20170101/index.js +194 -0
  44. package/dist/service/Kmr/v20210902/index.js +422 -0
  45. package/dist/service/Kmr/v20231231/index.js +154 -0
  46. package/dist/service/Kmr/v20240814/index.js +370 -0
  47. package/dist/service/Krds/v20160701/index.js +1302 -0
  48. package/dist/service/Krds/v20200825/index.js +174 -0
  49. package/dist/service/Memcached/v20180627/index.js +249 -0
  50. package/dist/service/Mongodb/v20170101/index.js +516 -501
  51. package/dist/service/Monitor/v20100525/index.js +70 -0
  52. package/dist/service/Monitor/v20181114/index.js +49 -0
  53. package/dist/service/Monitor/v20210101/index.js +216 -0
  54. package/dist/service/Monitor/v20220101/index.js +58 -0
  55. package/dist/service/Monitor/v20250101/index.js +71 -0
  56. package/dist/service/Rabbitmq/v20191017/index.js +242 -0
  57. package/dist/service/Resourcemanager/v20210320/index.js +113 -116
  58. package/dist/service/Sks/v20151101/index.js +72 -75
  59. package/dist/service/Slb/v20160304/index.js +1299 -790
  60. package/dist/service/Sts/v20151101/index.js +26 -29
  61. package/dist/service/Tagv2/v20200901/index.js +174 -0
  62. package/dist/service/Tidb/v20210520/index.js +363 -0
  63. package/dist/service/Trade/v20200114/index.js +23 -26
  64. package/dist/service/Trade/v20200831/index.js +25 -28
  65. package/dist/service/Vpc/v20160304/index.js +2015 -1045
  66. package/dist/service/Waf/v20200707/index.js +248 -0
  67. package/example/iam.js +2 -1
  68. package/example/res.js +2 -1
  69. package/package.json +1 -1
  70. package/src/base/BaseClient.js +131 -35
  71. package/src/lib/signautreV4.js +166 -0
  72. package/src/service/Actiontrail/v20190401/index.js +42 -42
  73. package/src/service/Aicp/v20240612/index.js +503 -0
  74. package/src/service/Bill/v20180601/index.js +61 -102
  75. package/src/service/Bill/v20220601/index.js +56 -0
  76. package/src/service/Bill_union/v20200101/index.js +181 -109
  77. package/src/service/Bill_union/v20221222/index.js +134 -0
  78. package/src/service/Bill_union/v20250801/index.js +58 -0
  79. package/src/service/Bws/v20160304/index.js +139 -119
  80. package/src/service/Cdn/v20160901/index.js +81 -0
  81. package/src/service/Cdn/v20200630/index.js +402 -0
  82. package/src/service/Cdn/v20200901/index.js +154 -0
  83. package/src/service/Cdn/v20211201/index.js +37 -0
  84. package/src/service/Cdn/v20250503/index.js +63 -0
  85. package/src/service/Cen/v20160304/index.js +452 -0
  86. package/src/service/Clickhouse/v20210101/index.js +538 -0
  87. package/src/service/Ebs/v20160304/index.js +365 -368
  88. package/src/service/Eip/v20160304/index.js +135 -136
  89. package/src/service/Epc/v20151101/index.js +1984 -1033
  90. package/src/service/Iam/v20151101/index.js +1155 -993
  91. package/src/service/Iam/v20240513/index.js +39 -0
  92. package/src/service/Iam/v20240703/index.js +36 -0
  93. package/src/service/Kad/v20161122/index.js +112 -112
  94. package/src/service/Kce/v20180314/index.js +312 -0
  95. package/src/service/Kce/v20190806/index.js +474 -0
  96. package/src/service/Kce/v20201231/index.js +55 -0
  97. package/src/service/Kcf/v20211215/index.js +195 -0
  98. package/src/service/Kcm/v20160304/index.js +112 -0
  99. package/src/service/Kcrs/v20211109/index.js +843 -0
  100. package/src/service/Kcs/v20160701/index.js +1098 -0
  101. package/src/service/Kcs/v20170401/index.js +73 -0
  102. package/src/service/Kead/v20200101/index.js +36 -36
  103. package/src/service/Kec/v20160304/index.js +2061 -1838
  104. package/src/service/Kes/v20201215/index.js +163 -0
  105. package/src/service/Ket/v20170101/index.js +133 -0
  106. package/src/service/Kkms/v20160304/index.js +159 -0
  107. package/src/service/Klog/v20200731/index.js +323 -0
  108. package/src/service/Kls/v20170101/index.js +186 -0
  109. package/src/service/Kmr/v20210902/index.js +414 -0
  110. package/src/service/Kmr/v20231231/index.js +146 -0
  111. package/src/service/Kmr/v20240814/index.js +362 -0
  112. package/src/service/Krds/v20160701/index.js +1294 -0
  113. package/src/service/Krds/v20200825/index.js +166 -0
  114. package/src/service/Memcached/v20180627/index.js +241 -0
  115. package/src/service/Mongodb/v20170101/index.js +672 -654
  116. package/src/service/Monitor/v20100525/index.js +62 -0
  117. package/src/service/Monitor/v20181114/index.js +41 -0
  118. package/src/service/Monitor/v20210101/index.js +208 -0
  119. package/src/service/Monitor/v20220101/index.js +50 -0
  120. package/src/service/Monitor/v20250101/index.js +63 -0
  121. package/src/service/Rabbitmq/v20191017/index.js +234 -0
  122. package/src/service/Resourcemanager/v20210320/index.js +157 -158
  123. package/src/service/Sks/v20151101/index.js +95 -96
  124. package/src/service/Slb/v20160304/index.js +1471 -959
  125. package/src/service/Sts/v20151101/index.js +34 -34
  126. package/src/service/Tagv2/v20200901/index.js +166 -0
  127. package/src/service/Tidb/v20210520/index.js +355 -0
  128. package/src/service/Trade/v20200114/index.js +31 -31
  129. package/src/service/Trade/v20200831/index.js +33 -33
  130. package/src/service/Vpc/v20160304/index.js +2404 -1432
  131. package/src/service/Waf/v20200707/index.js +240 -0
  132. package/src/service/Bill_union/v20211209/index.js +0 -35
  133. package/src/service/Slb/v20171210/index.js +0 -39
@@ -0,0 +1,843 @@
1
+ const BaseClient = require("../../../base/BaseClient.js");
2
+
3
+ module.exports = class Client extends BaseClient {
4
+ _baseConfig = {
5
+ protocol: "http://",
6
+ endpoint: "kcrs.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: "kcrs",
15
+ },
16
+ },
17
+ };
18
+ _apiList = {
19
+ CreateNamespace: {
20
+ url: "/",
21
+ method: "GET",
22
+ config: {
23
+ query: {
24
+ Version: "2021-11-09",
25
+ Action: "CreateNamespace",
26
+ },
27
+ headers: {
28
+ "Content-Type": "application/json",
29
+ },
30
+ },
31
+ paramsType: {
32
+ InstanceId: "String",
33
+ Namespace: "String",
34
+ Public: "String",
35
+ },
36
+ },
37
+ DescribeNamespace: {
38
+ url: "/",
39
+ method: "GET",
40
+ config: {
41
+ query: {
42
+ Version: "2021-11-09",
43
+ Action: "DescribeNamespace",
44
+ },
45
+ headers: {
46
+ "Content-Type": "application/json",
47
+ },
48
+ },
49
+ paramsType: {
50
+ InstanceId: "String",
51
+ Namespace: "String",
52
+ Public: "String",
53
+ MaxResults: "String",
54
+ Marker: "String",
55
+ },
56
+ },
57
+ ModifyNamespaceType: {
58
+ url: "/",
59
+ method: "GET",
60
+ config: {
61
+ query: {
62
+ Version: "2021-11-09",
63
+ Action: "ModifyNamespaceType",
64
+ },
65
+ headers: {
66
+ "Content-Type": "application/json",
67
+ },
68
+ },
69
+ paramsType: {
70
+ InstanceId: "String",
71
+ Namespace: "String",
72
+ Public: "String",
73
+ },
74
+ },
75
+ DescribeNamespaceExist: {
76
+ url: "/",
77
+ method: "GET",
78
+ config: {
79
+ query: {
80
+ Version: "2021-11-09",
81
+ Action: "DescribeNamespaceExist",
82
+ },
83
+ headers: {
84
+ "Content-Type": "application/json",
85
+ },
86
+ },
87
+ paramsType: {
88
+ InstanceId: "String",
89
+ Namespace: "String",
90
+ },
91
+ },
92
+ DeleteNamespace: {
93
+ url: "/",
94
+ method: "GET",
95
+ config: {
96
+ query: {
97
+ Version: "2021-11-09",
98
+ Action: "DeleteNamespace",
99
+ },
100
+ headers: {
101
+ "Content-Type": "application/json",
102
+ },
103
+ },
104
+ paramsType: {
105
+ InstanceId: "String",
106
+ Namespace: "String",
107
+ },
108
+ },
109
+ DescribeImages: {
110
+ url: "/",
111
+ method: "GET",
112
+ config: {
113
+ query: {
114
+ Version: "2021-11-09",
115
+ Action: "DescribeImages",
116
+ },
117
+ headers: {
118
+ "Content-Type": "application/json",
119
+ },
120
+ },
121
+ paramsType: {
122
+ InstanceId: "String",
123
+ Namespace: "String",
124
+ RepoName: "String",
125
+ ImageId: "String",
126
+ MaxResults: "String",
127
+ Marker: "String",
128
+ },
129
+ },
130
+ DeleteImages: {
131
+ url: "/",
132
+ method: "GET",
133
+ config: {
134
+ query: {
135
+ Version: "2021-11-09",
136
+ Action: "DeleteImages",
137
+ },
138
+ headers: {
139
+ "Content-Type": "application/json",
140
+ },
141
+ },
142
+ paramsType: {
143
+ InstanceId: "String",
144
+ Namespace: "String",
145
+ RepoName: "String",
146
+ ImageId: "String",
147
+ },
148
+ },
149
+ DeleteRepoTag: {
150
+ url: "/",
151
+ method: "GET",
152
+ config: {
153
+ query: {
154
+ Version: "2021-11-09",
155
+ Action: "DeleteRepoTag",
156
+ },
157
+ headers: {
158
+ "Content-Type": "application/json",
159
+ },
160
+ },
161
+ paramsType: {
162
+ InstanceId: "String",
163
+ Namespace: "String",
164
+ RepoName: "String",
165
+ TagName: "String",
166
+ },
167
+ },
168
+ DescribeRepository: {
169
+ url: "/",
170
+ method: "GET",
171
+ config: {
172
+ query: {
173
+ Version: "2021-11-09",
174
+ Action: "DescribeRepository",
175
+ },
176
+ headers: {
177
+ "Content-Type": "application/json",
178
+ },
179
+ },
180
+ paramsType: {
181
+ InstanceId: "String",
182
+ Namespace: "String",
183
+ RepoName: "Filter",
184
+ MaxResults: "String",
185
+ Marker: "String",
186
+ },
187
+ },
188
+ ModifyRepoDesc: {
189
+ url: "/",
190
+ method: "GET",
191
+ config: {
192
+ query: {
193
+ Version: "2021-11-09",
194
+ Action: "ModifyRepoDesc",
195
+ },
196
+ headers: {
197
+ "Content-Type": "application/json",
198
+ },
199
+ },
200
+ paramsType: {
201
+ InstanceId: "String",
202
+ Namespace: "String",
203
+ RepoName: "String",
204
+ Desc: "String",
205
+ },
206
+ },
207
+ DeleteRepository: {
208
+ url: "/",
209
+ method: "GET",
210
+ config: {
211
+ query: {
212
+ Version: "2021-11-09",
213
+ Action: "DeleteRepository",
214
+ },
215
+ headers: {
216
+ "Content-Type": "application/json",
217
+ },
218
+ },
219
+ paramsType: {
220
+ InstanceId: "String",
221
+ Namespace: "String",
222
+ RepoName: "String",
223
+ },
224
+ },
225
+ StartImageScan: {
226
+ url: "/",
227
+ method: "GET",
228
+ config: {
229
+ query: {
230
+ Version: "2021-11-09",
231
+ Action: "StartImageScan",
232
+ },
233
+ headers: {
234
+ "Content-Type": "application/json",
235
+ },
236
+ },
237
+ paramsType: {
238
+ InstanceId: "String",
239
+ Namespace: "String",
240
+ RepoName: "String",
241
+ ImageId: "String",
242
+ },
243
+ },
244
+ DescribeImageScan: {
245
+ url: "/",
246
+ method: "GET",
247
+ config: {
248
+ query: {
249
+ Version: "2021-11-09",
250
+ Action: "DescribeImageScan",
251
+ },
252
+ headers: {
253
+ "Content-Type": "application/json",
254
+ },
255
+ },
256
+ paramsType: {
257
+ InstanceId: "String",
258
+ Namespace: "String",
259
+ RepoName: "String",
260
+ ImageId: "String",
261
+ },
262
+ },
263
+ CreateInstanceToken: {
264
+ url: "/",
265
+ method: "GET",
266
+ config: {
267
+ query: {
268
+ Version: "2021-11-09",
269
+ Action: "CreateInstanceToken",
270
+ },
271
+ headers: {
272
+ "Content-Type": "application/json",
273
+ },
274
+ },
275
+ paramsType: {
276
+ InstanceId: "String",
277
+ TokenType: "String",
278
+ TokenTime: "String",
279
+ Desc: "String",
280
+ },
281
+ },
282
+ DescribeInternalEndpoint: {
283
+ url: "/",
284
+ method: "GET",
285
+ config: {
286
+ query: {
287
+ Version: "2021-11-09",
288
+ Action: "DescribeInternalEndpoint",
289
+ },
290
+ headers: {
291
+ "Content-Type": "application/json",
292
+ },
293
+ },
294
+ paramsType: {
295
+ InstanceId: "String",
296
+ },
297
+ },
298
+ DescribeInstanceToken: {
299
+ url: "/",
300
+ method: "GET",
301
+ config: {
302
+ query: {
303
+ Version: "2021-11-09",
304
+ Action: "DescribeInstanceToken",
305
+ },
306
+ headers: {
307
+ "Content-Type": "application/json",
308
+ },
309
+ },
310
+ paramsType: {
311
+ InstanceId: "String",
312
+ Marker: "String",
313
+ MaxResults: "String",
314
+ },
315
+ },
316
+ CreateInternalEndpoint: {
317
+ url: "/",
318
+ method: "GET",
319
+ config: {
320
+ query: {
321
+ Version: "2021-11-09",
322
+ Action: "CreateInternalEndpoint",
323
+ },
324
+ headers: {
325
+ "Content-Type": "application/json",
326
+ },
327
+ },
328
+ paramsType: {
329
+ InstanceId: "String",
330
+ VpcId: "String",
331
+ ReserveSubnetId: "String",
332
+ },
333
+ },
334
+ ModifyInstanceTokenStatus: {
335
+ url: "/",
336
+ method: "GET",
337
+ config: {
338
+ query: {
339
+ Version: "2021-11-09",
340
+ Action: "ModifyInstanceTokenStatus",
341
+ },
342
+ headers: {
343
+ "Content-Type": "application/json",
344
+ },
345
+ },
346
+ paramsType: {
347
+ InstanceId: "String",
348
+ TokenId: "String",
349
+ Enable: "String",
350
+ },
351
+ },
352
+ DeleteInternalEndpoint: {
353
+ url: "/",
354
+ method: "GET",
355
+ config: {
356
+ query: {
357
+ Version: "2021-11-09",
358
+ Action: "DeleteInternalEndpoint",
359
+ },
360
+ headers: {
361
+ "Content-Type": "application/json",
362
+ },
363
+ },
364
+ paramsType: {
365
+ InstanceId: "String",
366
+ VpcId: "String",
367
+ EniLBIp: "String",
368
+ },
369
+ },
370
+ ModifyInstanceTokenInformation: {
371
+ url: "/",
372
+ method: "GET",
373
+ config: {
374
+ query: {
375
+ Version: "2021-11-09",
376
+ Action: "ModifyInstanceTokenInformation",
377
+ },
378
+ headers: {
379
+ "Content-Type": "application/json",
380
+ },
381
+ },
382
+ paramsType: {
383
+ InstanceId: "String",
384
+ TokenId: "String",
385
+ TokenType: "String",
386
+ TokenTime: "String",
387
+ Desc: "String",
388
+ },
389
+ },
390
+ DescribeInternalEndpointDns: {
391
+ url: "/",
392
+ method: "GET",
393
+ config: {
394
+ query: {
395
+ Version: "2021-11-09",
396
+ Action: "DescribeInternalEndpointDns",
397
+ },
398
+ headers: {
399
+ "Content-Type": "application/json",
400
+ },
401
+ },
402
+ paramsType: {
403
+ InstanceId: "String",
404
+ VpcId: "String",
405
+ EniLBIp: "String",
406
+ InternalEndpointDns: "String",
407
+ },
408
+ },
409
+ DeleteInstanceToken: {
410
+ url: "/",
411
+ method: "GET",
412
+ config: {
413
+ query: {
414
+ Version: "2021-11-09",
415
+ Action: "DeleteInstanceToken",
416
+ },
417
+ headers: {
418
+ "Content-Type": "application/json",
419
+ },
420
+ },
421
+ paramsType: {
422
+ InstanceId: "String",
423
+ TokenId: "String",
424
+ },
425
+ },
426
+ CreateInternalEndpointDns: {
427
+ url: "/",
428
+ method: "GET",
429
+ config: {
430
+ query: {
431
+ Version: "2021-11-09",
432
+ Action: "CreateInternalEndpointDns",
433
+ },
434
+ headers: {
435
+ "Content-Type": "application/json",
436
+ },
437
+ },
438
+ paramsType: {
439
+ InstanceId: "String",
440
+ VpcId: "String",
441
+ EniLBIp: "String",
442
+ InternalEndpointDns: "String",
443
+ },
444
+ },
445
+ DeleteInternalEndpointDns: {
446
+ url: "/",
447
+ method: "GET",
448
+ config: {
449
+ query: {
450
+ Version: "2021-11-09",
451
+ Action: "DeleteInternalEndpointDns",
452
+ },
453
+ headers: {
454
+ "Content-Type": "application/json",
455
+ },
456
+ },
457
+ paramsType: {
458
+ InstanceId: "String",
459
+ VpcId: "String",
460
+ EniLBIp: "String",
461
+ InternalEndpointDns: "String",
462
+ },
463
+ },
464
+ CreateInstance: {
465
+ url: "/",
466
+ method: "GET",
467
+ config: {
468
+ query: {
469
+ Version: "2021-11-09",
470
+ Action: "CreateInstance",
471
+ },
472
+ headers: {
473
+ "Content-Type": "application/json",
474
+ },
475
+ },
476
+ paramsType: {
477
+ InstanceName: "String",
478
+ ChargeType: "String",
479
+ InstanceType: "String",
480
+ PurchaseTime: "String",
481
+ ProjectId: "String",
482
+ },
483
+ },
484
+ DeleteInstance: {
485
+ url: "/",
486
+ method: "GET",
487
+ config: {
488
+ query: {
489
+ Version: "2021-11-09",
490
+ Action: "DeleteInstance",
491
+ },
492
+ headers: {
493
+ "Content-Type": "application/json",
494
+ },
495
+ },
496
+ paramsType: {
497
+ InstanceId: "String",
498
+ DeleteBucket: "String",
499
+ },
500
+ },
501
+ DescribeInstanceUsage: {
502
+ url: "/",
503
+ method: "GET",
504
+ config: {
505
+ query: {
506
+ Version: "2021-11-09",
507
+ Action: "DescribeInstanceUsage",
508
+ },
509
+ headers: {
510
+ "Content-Type": "application/json",
511
+ },
512
+ },
513
+ paramsType: {
514
+ InstanceId: "String",
515
+ },
516
+ },
517
+ DescribeInstance: {
518
+ url: "/",
519
+ method: "GET",
520
+ config: {
521
+ query: {
522
+ Version: "2021-11-09",
523
+ Action: "DescribeInstance",
524
+ },
525
+ headers: {
526
+ "Content-Type": "application/json",
527
+ },
528
+ },
529
+ paramsType: {
530
+ InstanceId: "Filter",
531
+ Marker: "String",
532
+ MaxResults: "String",
533
+ ProjectId: "Filter",
534
+ InstanceName: "String",
535
+ },
536
+ },
537
+ CreateWebhookTrigger: {
538
+ url: "/",
539
+ method: "GET",
540
+ config: {
541
+ query: {
542
+ Version: "2021-11-09",
543
+ Action: "CreateWebhookTrigger",
544
+ },
545
+ headers: {
546
+ "Content-Type": "application/json",
547
+ },
548
+ },
549
+ paramsType: {
550
+ InstanceId: "String",
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",
560
+ },
561
+ },
562
+ DescribeWebhookTrigger: {
563
+ url: "/",
564
+ method: "GET",
565
+ config: {
566
+ query: {
567
+ Version: "2021-11-09",
568
+ Action: "DescribeWebhookTrigger",
569
+ },
570
+ headers: {
571
+ "Content-Type": "application/json",
572
+ },
573
+ },
574
+ paramsType: {
575
+ InstanceId: "String",
576
+ Namespace: "String",
577
+ TriggerId: "String",
578
+ Marker: "String",
579
+ MaxResults: "String",
580
+ },
581
+ },
582
+ ModifyWebhookTrigger: {
583
+ url: "/",
584
+ method: "GET",
585
+ config: {
586
+ query: {
587
+ Version: "2021-11-09",
588
+ Action: "ModifyWebhookTrigger",
589
+ },
590
+ headers: {
591
+ "Content-Type": "application/json",
592
+ },
593
+ },
594
+ paramsType: {
595
+ InstanceId: "String",
596
+ Namespace: "String",
597
+ Trigger: "String",
598
+ TriggerId: "String",
599
+ TriggerName: "String",
600
+ EventType: "Filter",
601
+ TriggerUrl: "String",
602
+ Header: "Filter",
603
+ Enabled: "String",
604
+ Key: "String",
605
+ Value: "Filter",
606
+ },
607
+ },
608
+ DescribeWebhookTriggerLog: {
609
+ url: "/",
610
+ method: "GET",
611
+ config: {
612
+ query: {
613
+ Version: "2021-11-09",
614
+ Action: "DescribeWebhookTriggerLog",
615
+ },
616
+ headers: {
617
+ "Content-Type": "application/json",
618
+ },
619
+ },
620
+ paramsType: {
621
+ InstanceId: "String",
622
+ Namespace: "String",
623
+ TriggerId: "String",
624
+ Marker: "String",
625
+ MaxResults: "String",
626
+ },
627
+ },
628
+ DeleteWebhookTrigger: {
629
+ url: "/",
630
+ method: "GET",
631
+ config: {
632
+ query: {
633
+ Version: "2021-11-09",
634
+ Action: "DeleteWebhookTrigger",
635
+ },
636
+ headers: {
637
+ "Content-Type": "application/json",
638
+ },
639
+ },
640
+ paramsType: {
641
+ InstanceId: "String",
642
+ Namespace: "String",
643
+ TriggerId: "String",
644
+ },
645
+ },
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
+ CreateRetentionRule: {
675
+ url: "/",
676
+ method: "GET",
677
+ config: {
678
+ query: {
679
+ Version: "2021-11-09",
680
+ Action: "CreateRetentionRule",
681
+ },
682
+ headers: {
683
+ "Content-Type": "application/x-www-form-urlencoded",
684
+ },
685
+ },
686
+ paramsType: {},
687
+ },
688
+ UpdateRetentionRule: {
689
+ url: "/",
690
+ method: "GET",
691
+ config: {
692
+ query: {
693
+ Version: "2021-11-09",
694
+ Action: "UpdateRetentionRule",
695
+ },
696
+ headers: {
697
+ "Content-Type": "application/x-www-form-urlencoded",
698
+ },
699
+ },
700
+ paramsType: {},
701
+ },
702
+ DeleteRetentionRule: {
703
+ url: "/",
704
+ method: "GET",
705
+ config: {
706
+ query: {
707
+ Version: "2021-11-09",
708
+ Action: "DeleteRetentionRule",
709
+ },
710
+ headers: {
711
+ "Content-Type": "application/x-www-form-urlencoded",
712
+ },
713
+ },
714
+ paramsType: {},
715
+ },
716
+ DescribeRetentionRule: {
717
+ url: "/",
718
+ method: "GET",
719
+ config: {
720
+ query: {
721
+ Version: "2021-11-09",
722
+ Action: "DescribeRetentionRule",
723
+ },
724
+ headers: {
725
+ "Content-Type": "application/x-www-form-urlencoded",
726
+ },
727
+ },
728
+ paramsType: {},
729
+ },
730
+ RunRetentionPolicy: {
731
+ url: "/",
732
+ method: "GET",
733
+ config: {
734
+ query: {
735
+ Version: "2021-11-09",
736
+ Action: "RunRetentionPolicy",
737
+ },
738
+ headers: {
739
+ "Content-Type": "application/x-www-form-urlencoded",
740
+ },
741
+ },
742
+ paramsType: {},
743
+ },
744
+ GetRetentionPolicyLogs: {
745
+ url: "/",
746
+ method: "GET",
747
+ config: {
748
+ query: {
749
+ Version: "2021-11-09",
750
+ Action: "GetRetentionPolicyLogs",
751
+ },
752
+ headers: {
753
+ "Content-Type": "application/x-www-form-urlencoded",
754
+ },
755
+ },
756
+ paramsType: {},
757
+ },
758
+ GetRetentionPolicyLogDetail: {
759
+ url: "/",
760
+ method: "GET",
761
+ config: {
762
+ query: {
763
+ Version: "2021-11-09",
764
+ Action: "GetRetentionPolicyLogDetail",
765
+ },
766
+ headers: {
767
+ "Content-Type": "application/x-www-form-urlencoded",
768
+ },
769
+ },
770
+ paramsType: {},
771
+ },
772
+ GetRetentionPolicyLog: {
773
+ url: "/",
774
+ method: "GET",
775
+ config: {
776
+ query: {
777
+ Version: "2021-11-09",
778
+ Action: "GetRetentionPolicyLog",
779
+ },
780
+ headers: {
781
+ "Content-Type": "application/x-www-form-urlencoded",
782
+ },
783
+ },
784
+ paramsType: {},
785
+ },
786
+ GetRetentionTrigger: {
787
+ url: "/",
788
+ method: "GET",
789
+ config: {
790
+ query: {
791
+ Version: "2021-11-09",
792
+ Action: "GetRetentionTrigger",
793
+ },
794
+ headers: {
795
+ "Content-Type": "application/x-www-form-urlencoded",
796
+ },
797
+ },
798
+ paramsType: {},
799
+ },
800
+ UpdateRetentionTrigger: {
801
+ url: "/",
802
+ method: "GET",
803
+ config: {
804
+ query: {
805
+ Version: "2021-11-09",
806
+ Action: "UpdateRetentionTrigger",
807
+ },
808
+ headers: {
809
+ "Content-Type": "application/x-www-form-urlencoded",
810
+ },
811
+ },
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
+ },
825
+ },
826
+ paramsType: {},
827
+ },
828
+ Schedule: {
829
+ url: "/",
830
+ method: "GET",
831
+ config: {
832
+ query: {
833
+ Version: "2021-11-09",
834
+ Action: "Schedule",
835
+ },
836
+ headers: {
837
+ "Content-Type": "application/x-www-form-urlencoded",
838
+ },
839
+ },
840
+ paramsType: {},
841
+ },
842
+ };
843
+ };