ksyun-sdk-node 1.0.5 → 1.2.4

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 (99) hide show
  1. package/dist/base/BaseClient.js +90 -55
  2. package/dist/index.js +9 -12
  3. package/dist/lib/fetch.js +4 -5
  4. package/dist/lib/sign.js +31 -33
  5. package/dist/lib/signautreV4.js +167 -0
  6. package/dist/service/Actiontrail/v20190401/index.js +4 -7
  7. package/dist/service/Bill/v20180601/index.js +11 -50
  8. package/dist/service/Bill/v20220601/index.js +64 -0
  9. package/dist/service/Bill_union/v20200101/index.js +48 -10
  10. package/dist/service/Bill_union/v20221222/index.js +142 -0
  11. package/dist/service/Bws/v20160304/index.js +23 -6
  12. package/dist/service/Cdn/v20160901/index.js +42 -0
  13. package/dist/service/Cdn/v20200630/index.js +410 -0
  14. package/dist/service/Cdn/v20200901/index.js +162 -0
  15. package/dist/service/Cen/v20160304/index.js +460 -0
  16. package/dist/service/Clickhouse/v20210101/index.js +546 -0
  17. package/dist/service/Ebs/v20160304/index.js +3 -6
  18. package/dist/service/Eip/v20160304/index.js +3 -6
  19. package/dist/service/Epc/v20151101/index.js +36 -60
  20. package/dist/service/Iam/v20151101/index.js +61 -7
  21. package/dist/service/Kad/v20161122/index.js +3 -6
  22. package/dist/service/Kce/v20180314/index.js +320 -0
  23. package/dist/service/Kce/v20190806/index.js +482 -0
  24. package/dist/service/Kce/v20201231/index.js +63 -0
  25. package/dist/service/Kcf/v20211215/index.js +203 -0
  26. package/dist/service/Kcm/v20160304/index.js +120 -0
  27. package/dist/service/Kcrs/v20211109/index.js +851 -0
  28. package/dist/service/Kcs/v20160701/index.js +1106 -0
  29. package/dist/service/Kcs/v20170401/index.js +81 -0
  30. package/dist/service/Kead/v20200101/index.js +3 -6
  31. package/dist/service/Kec/v20160304/index.js +107 -42
  32. package/dist/service/Ket/v20170101/index.js +141 -0
  33. package/dist/service/Kkms/v20160304/index.js +167 -0
  34. package/dist/service/Klog/v20200731/index.js +804 -0
  35. package/dist/service/Kls/v20170101/index.js +194 -0
  36. package/dist/service/Krds/v20160701/index.js +1302 -0
  37. package/dist/service/Krds/v20200825/index.js +174 -0
  38. package/dist/service/Memcached/v20180627/index.js +249 -0
  39. package/dist/service/Mongodb/v20170101/index.js +22 -7
  40. package/dist/service/Monitor/v20100525/index.js +70 -0
  41. package/dist/service/Monitor/v20181114/index.js +49 -0
  42. package/dist/service/Monitor/v20210101/index.js +179 -0
  43. package/dist/service/Monitor/v20220101/index.js +68 -0
  44. package/dist/service/Rabbitmq/v20191017/index.js +242 -0
  45. package/dist/service/Resourcemanager/v20210320/index.js +3 -6
  46. package/dist/service/Sks/v20151101/index.js +3 -6
  47. package/dist/service/Slb/v20160304/index.js +517 -8
  48. package/dist/service/Sts/v20151101/index.js +4 -7
  49. package/dist/service/Tagv2/v20200901/index.js +174 -0
  50. package/dist/service/Tidb/v20210520/index.js +363 -0
  51. package/dist/service/Trade/v20200114/index.js +3 -6
  52. package/dist/service/Trade/v20200831/index.js +3 -6
  53. package/dist/service/Vpc/v20160304/index.js +239 -7
  54. package/dist/service/Waf/v20200707/index.js +248 -0
  55. package/package.json +1 -1
  56. package/src/base/BaseClient.js +85 -36
  57. package/src/lib/signautreV4.js +166 -0
  58. package/src/service/Actiontrail/v20190401/index.js +1 -1
  59. package/src/service/Bill/v20180601/index.js +6 -46
  60. package/src/service/Bill/v20220601/index.js +56 -0
  61. package/src/service/Bill_union/v20200101/index.js +37 -0
  62. package/src/service/Bill_union/v20221222/index.js +134 -0
  63. package/src/service/Bws/v20160304/index.js +20 -0
  64. package/src/service/{Bill_union/v20211209 → Cdn/v20160901}/index.js +6 -6
  65. package/src/service/Cdn/v20200630/index.js +402 -0
  66. package/src/service/Cdn/v20200901/index.js +154 -0
  67. package/src/service/Cen/v20160304/index.js +452 -0
  68. package/src/service/Clickhouse/v20210101/index.js +538 -0
  69. package/src/service/Ebs/v20160304/index.js +1 -4
  70. package/src/service/Epc/v20151101/index.js +26 -50
  71. package/src/service/Iam/v20151101/index.js +57 -0
  72. package/src/service/Kce/v20180314/index.js +312 -0
  73. package/src/service/Kce/v20190806/index.js +474 -0
  74. package/src/service/Kce/v20201231/index.js +55 -0
  75. package/src/service/Kcf/v20211215/index.js +197 -0
  76. package/src/service/Kcm/v20160304/index.js +112 -0
  77. package/src/service/Kcrs/v20211109/index.js +857 -0
  78. package/src/service/Kcs/v20160701/index.js +1101 -0
  79. package/src/service/Kcs/v20170401/index.js +73 -0
  80. package/src/service/Kec/v20160304/index.js +86 -22
  81. package/src/service/Ket/v20170101/index.js +133 -0
  82. package/src/service/Kkms/v20160304/index.js +159 -0
  83. package/src/service/Klog/v20200731/index.js +810 -0
  84. package/src/service/Kls/v20170101/index.js +186 -0
  85. package/src/service/Krds/v20160701/index.js +1296 -0
  86. package/src/service/Krds/v20200825/index.js +166 -0
  87. package/src/service/Memcached/v20180627/index.js +248 -0
  88. package/src/service/Mongodb/v20170101/index.js +18 -0
  89. package/src/service/Monitor/v20100525/index.js +62 -0
  90. package/src/service/{Slb/v20171210 → Monitor/v20181114}/index.js +13 -11
  91. package/src/service/Monitor/v20210101/index.js +172 -0
  92. package/src/service/Monitor/v20220101/index.js +60 -0
  93. package/src/service/Rabbitmq/v20191017/index.js +234 -0
  94. package/src/service/Slb/v20160304/index.js +512 -0
  95. package/src/service/Sts/v20151101/index.js +1 -1
  96. package/src/service/Tagv2/v20200901/index.js +166 -0
  97. package/src/service/Tidb/v20210520/index.js +355 -0
  98. package/src/service/Vpc/v20160304/index.js +235 -0
  99. package/src/service/Waf/v20200707/index.js +240 -0
@@ -0,0 +1,857 @@
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
+ },
661
+ 'GetMetadata': {
662
+ 'url': '/',
663
+ 'method': 'GET',
664
+ 'config': {
665
+ 'query': {
666
+ 'Version': '2021-11-09',
667
+ 'Action': 'GetMetadata',
668
+ },
669
+ 'headers': {
670
+ 'Content-Type': 'application/x-www-form-urlencoded'
671
+ },
672
+ },
673
+ 'paramsType': {
674
+ }
675
+ },
676
+ 'CreateRetentionRule': {
677
+ 'url': '/',
678
+ 'method': 'GET',
679
+ 'config': {
680
+ 'query': {
681
+ 'Version': '2021-11-09',
682
+ 'Action': 'CreateRetentionRule',
683
+ },
684
+ 'headers': {
685
+ 'Content-Type': 'application/x-www-form-urlencoded'
686
+ },
687
+ },
688
+ 'paramsType': {
689
+ }
690
+ },
691
+ 'UpdateRetentionRule': {
692
+ 'url': '/',
693
+ 'method': 'GET',
694
+ 'config': {
695
+ 'query': {
696
+ 'Version': '2021-11-09',
697
+ 'Action': 'UpdateRetentionRule',
698
+ },
699
+ 'headers': {
700
+ 'Content-Type': 'application/x-www-form-urlencoded'
701
+ },
702
+ },
703
+ 'paramsType': {
704
+ }
705
+ },
706
+ 'DeleteRetentionRule': {
707
+ 'url': '/',
708
+ 'method': 'GET',
709
+ 'config': {
710
+ 'query': {
711
+ 'Version': '2021-11-09',
712
+ 'Action': 'DeleteRetentionRule',
713
+ },
714
+ 'headers': {
715
+ 'Content-Type': 'application/x-www-form-urlencoded'
716
+ },
717
+ },
718
+ 'paramsType': {
719
+ }
720
+ },
721
+ 'DescribeRetentionRule': {
722
+ 'url': '/',
723
+ 'method': 'GET',
724
+ 'config': {
725
+ 'query': {
726
+ 'Version': '2021-11-09',
727
+ 'Action': 'DescribeRetentionRule',
728
+ },
729
+ 'headers': {
730
+ 'Content-Type': 'application/x-www-form-urlencoded'
731
+ },
732
+ },
733
+ 'paramsType': {
734
+ }
735
+ },
736
+ 'RunRetentionPolicy': {
737
+ 'url': '/',
738
+ 'method': 'GET',
739
+ 'config': {
740
+ 'query': {
741
+ 'Version': '2021-11-09',
742
+ 'Action': 'RunRetentionPolicy',
743
+ },
744
+ 'headers': {
745
+ 'Content-Type': 'application/x-www-form-urlencoded'
746
+ },
747
+ },
748
+ 'paramsType': {
749
+ }
750
+ },
751
+ 'GetRetentionPolicyLogs': {
752
+ 'url': '/',
753
+ 'method': 'GET',
754
+ 'config': {
755
+ 'query': {
756
+ 'Version': '2021-11-09',
757
+ 'Action': 'GetRetentionPolicyLogs',
758
+ },
759
+ 'headers': {
760
+ 'Content-Type': 'application/x-www-form-urlencoded'
761
+ },
762
+ },
763
+ 'paramsType': {
764
+ }
765
+ },
766
+ 'GetRetentionPolicyLogDetail': {
767
+ 'url': '/',
768
+ 'method': 'GET',
769
+ 'config': {
770
+ 'query': {
771
+ 'Version': '2021-11-09',
772
+ 'Action': 'GetRetentionPolicyLogDetail',
773
+ },
774
+ 'headers': {
775
+ 'Content-Type': 'application/x-www-form-urlencoded'
776
+ },
777
+ },
778
+ 'paramsType': {
779
+ }
780
+ },
781
+ 'GetRetentionPolicyLog': {
782
+ 'url': '/',
783
+ 'method': 'GET',
784
+ 'config': {
785
+ 'query': {
786
+ 'Version': '2021-11-09',
787
+ 'Action': 'GetRetentionPolicyLog',
788
+ },
789
+ 'headers': {
790
+ 'Content-Type': 'application/x-www-form-urlencoded'
791
+ },
792
+ },
793
+ 'paramsType': {
794
+ }
795
+ },
796
+ 'GetRetentionTrigger': {
797
+ 'url': '/',
798
+ 'method': 'GET',
799
+ 'config': {
800
+ 'query': {
801
+ 'Version': '2021-11-09',
802
+ 'Action': 'GetRetentionTrigger',
803
+ },
804
+ 'headers': {
805
+ 'Content-Type': 'application/x-www-form-urlencoded'
806
+ },
807
+ },
808
+ 'paramsType': {
809
+ }
810
+ },
811
+ 'UpdateRetentionTrigger': {
812
+ 'url': '/',
813
+ 'method': 'GET',
814
+ 'config': {
815
+ 'query': {
816
+ 'Version': '2021-11-09',
817
+ 'Action': 'UpdateRetentionTrigger',
818
+ },
819
+ 'headers': {
820
+ 'Content-Type': 'application/x-www-form-urlencoded'
821
+ },
822
+ },
823
+ 'paramsType': {
824
+ }
825
+ },
826
+ 'GetNamespacePolicy': {
827
+ 'url': '/',
828
+ 'method': 'GET',
829
+ 'config': {
830
+ 'query': {
831
+ 'Version': '2021-11-09',
832
+ 'Action': 'GetNamespacePolicy',
833
+ },
834
+ 'headers': {
835
+ 'Content-Type': 'application/x-www-form-urlencoded'
836
+ },
837
+ },
838
+ 'paramsType': {
839
+ }
840
+ },
841
+ 'Schedule': {
842
+ 'url': '/',
843
+ 'method': 'GET',
844
+ 'config': {
845
+ 'query': {
846
+ 'Version': '2021-11-09',
847
+ 'Action': 'Schedule',
848
+ },
849
+ 'headers': {
850
+ 'Content-Type': 'application/x-www-form-urlencoded'
851
+ },
852
+ },
853
+ 'paramsType': {
854
+ }
855
+ },
856
+ }
857
+ }