@itentialopensource/adapter-aws_lambda 0.1.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 (77) hide show
  1. package/.eslintignore +6 -0
  2. package/.eslintrc.js +19 -0
  3. package/.gitlab/.gitkeep +0 -0
  4. package/.gitlab/issue_templates/.gitkeep +0 -0
  5. package/.gitlab/issue_templates/Default.md +17 -0
  6. package/.gitlab/issue_templates/bugReportTemplate.md +76 -0
  7. package/.gitlab/issue_templates/featureRequestTemplate.md +14 -0
  8. package/.jshintrc +0 -0
  9. package/AUTH.md +39 -0
  10. package/BROKER.md +211 -0
  11. package/CALLS.md +603 -0
  12. package/CODE_OF_CONDUCT.md +43 -0
  13. package/CONTRIBUTING.md +13 -0
  14. package/ENHANCE.md +69 -0
  15. package/LICENSE +201 -0
  16. package/PROPERTIES.md +661 -0
  17. package/README.md +344 -0
  18. package/SUMMARY.md +9 -0
  19. package/SYSTEMINFO.md +14 -0
  20. package/TROUBLESHOOT.md +56 -0
  21. package/UTILITIES.md +473 -0
  22. package/adapter.js +8845 -0
  23. package/adapterBase.js +1488 -0
  24. package/entities/.generic/action.json +214 -0
  25. package/entities/.generic/schema.json +28 -0
  26. package/entities/.system/action.json +50 -0
  27. package/entities/.system/mockdatafiles/getToken-default.json +3 -0
  28. package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
  29. package/entities/.system/schema.json +19 -0
  30. package/entities/.system/schemaTokenReq.json +53 -0
  31. package/entities/.system/schemaTokenResp.json +53 -0
  32. package/entities/AccountSettings/action.json +25 -0
  33. package/entities/AccountSettings/schema.json +19 -0
  34. package/entities/CodeSigningConfigs/action.json +127 -0
  35. package/entities/CodeSigningConfigs/schema.json +57 -0
  36. package/entities/EventSourceMappings/action.json +106 -0
  37. package/entities/EventSourceMappings/schema.json +78 -0
  38. package/entities/Functions/action.json +860 -0
  39. package/entities/Functions/schema.json +170 -0
  40. package/entities/Layers/action.json +189 -0
  41. package/entities/Layers/schema.json +126 -0
  42. package/entities/Tags/action.json +65 -0
  43. package/entities/Tags/schema.json +32 -0
  44. package/error.json +190 -0
  45. package/metadata.json +58 -0
  46. package/package.json +77 -0
  47. package/pronghorn.json +4833 -0
  48. package/propertiesDecorators.json +14 -0
  49. package/propertiesSchema.json +1635 -0
  50. package/report/AWS Lambda-swagger.fixed.json +15883 -0
  51. package/report/adapterInfo.json +10 -0
  52. package/report/creationReport.json +615 -0
  53. package/sampleProperties.json +274 -0
  54. package/test/integration/adapterTestBasicGet.js +117 -0
  55. package/test/integration/adapterTestConnectivity.js +117 -0
  56. package/test/integration/adapterTestIntegration.js +2103 -0
  57. package/test/unit/adapterBaseTestUnit.js +1626 -0
  58. package/test/unit/adapterTestUnit.js +3942 -0
  59. package/utils/adapterInfo.js +156 -0
  60. package/utils/argParser.js +44 -0
  61. package/utils/checkMigrate.js +102 -0
  62. package/utils/entitiesToDB.js +190 -0
  63. package/utils/findPath.js +74 -0
  64. package/utils/logger.js +26 -0
  65. package/utils/methodDocumentor.js +273 -0
  66. package/utils/modify.js +153 -0
  67. package/utils/mongoDbConnection.js +79 -0
  68. package/utils/mongoUtils.js +162 -0
  69. package/utils/pre-commit.sh +32 -0
  70. package/utils/removeHooks.js +20 -0
  71. package/utils/setup.js +33 -0
  72. package/utils/taskMover.js +308 -0
  73. package/utils/tbScript.js +103 -0
  74. package/utils/tbUtils.js +347 -0
  75. package/utils/testRunner.js +298 -0
  76. package/utils/troubleshootingAdapter.js +177 -0
  77. package/utils/updateAdapterConfig.js +158 -0
@@ -0,0 +1,860 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "addPermission",
5
+ "protocol": "REST",
6
+ "method": "POST",
7
+ "entitypath": "{base_path}/{version}/2015-03-31/functions/{pathv1}/policy?{query}",
8
+ "requestSchema": "schema.json",
9
+ "responseSchema": "schema.json",
10
+ "timeout": 0,
11
+ "sendEmpty": false,
12
+ "requestDatatype": "JSON",
13
+ "responseDatatype": "JSON",
14
+ "headers": {},
15
+ "responseObjects": [
16
+ {
17
+ "type": "default",
18
+ "key": "",
19
+ "mockFile": ""
20
+ }
21
+ ]
22
+ },
23
+ {
24
+ "name": "getPolicy",
25
+ "protocol": "REST",
26
+ "method": "GET",
27
+ "entitypath": "{base_path}/{version}/2015-03-31/functions/{pathv1}/policy?{query}",
28
+ "requestSchema": "schema.json",
29
+ "responseSchema": "schema.json",
30
+ "timeout": 0,
31
+ "sendEmpty": false,
32
+ "sendGetBody": false,
33
+ "requestDatatype": "JSON",
34
+ "responseDatatype": "JSON",
35
+ "headers": {},
36
+ "responseObjects": [
37
+ {
38
+ "type": "default",
39
+ "key": "",
40
+ "mockFile": ""
41
+ }
42
+ ]
43
+ },
44
+ {
45
+ "name": "createAlias",
46
+ "protocol": "REST",
47
+ "method": "POST",
48
+ "entitypath": "{base_path}/{version}/2015-03-31/functions/{pathv1}/aliases?{query}",
49
+ "requestSchema": "schema.json",
50
+ "responseSchema": "schema.json",
51
+ "timeout": 0,
52
+ "sendEmpty": false,
53
+ "requestDatatype": "JSON",
54
+ "responseDatatype": "JSON",
55
+ "headers": {},
56
+ "responseObjects": [
57
+ {
58
+ "type": "default",
59
+ "key": "",
60
+ "mockFile": ""
61
+ }
62
+ ]
63
+ },
64
+ {
65
+ "name": "listAliases",
66
+ "protocol": "REST",
67
+ "method": "GET",
68
+ "entitypath": "{base_path}/{version}/2015-03-31/functions/{pathv1}/aliases?{query}",
69
+ "requestSchema": "schema.json",
70
+ "responseSchema": "schema.json",
71
+ "timeout": 0,
72
+ "sendEmpty": false,
73
+ "sendGetBody": false,
74
+ "requestDatatype": "JSON",
75
+ "responseDatatype": "JSON",
76
+ "headers": {},
77
+ "responseObjects": [
78
+ {
79
+ "type": "default",
80
+ "key": "",
81
+ "mockFile": ""
82
+ }
83
+ ]
84
+ },
85
+ {
86
+ "name": "createFunction",
87
+ "protocol": "REST",
88
+ "method": "POST",
89
+ "entitypath": "{base_path}/{version}/2015-03-31/functions?{query}",
90
+ "requestSchema": "schema.json",
91
+ "responseSchema": "schema.json",
92
+ "timeout": 0,
93
+ "sendEmpty": false,
94
+ "requestDatatype": "JSON",
95
+ "responseDatatype": "JSON",
96
+ "headers": {},
97
+ "responseObjects": [
98
+ {
99
+ "type": "default",
100
+ "key": "",
101
+ "mockFile": ""
102
+ }
103
+ ]
104
+ },
105
+ {
106
+ "name": "createFunctionUrlConfig",
107
+ "protocol": "REST",
108
+ "method": "POST",
109
+ "entitypath": "{base_path}/{version}/2021-10-31/functions/{pathv1}/url?{query}",
110
+ "requestSchema": "schema.json",
111
+ "responseSchema": "schema.json",
112
+ "timeout": 0,
113
+ "sendEmpty": false,
114
+ "requestDatatype": "JSON",
115
+ "responseDatatype": "JSON",
116
+ "headers": {},
117
+ "responseObjects": [
118
+ {
119
+ "type": "default",
120
+ "key": "",
121
+ "mockFile": ""
122
+ }
123
+ ]
124
+ },
125
+ {
126
+ "name": "deleteFunctionUrlConfig",
127
+ "protocol": "REST",
128
+ "method": "DELETE",
129
+ "entitypath": "{base_path}/{version}/2021-10-31/functions/{pathv1}/url?{query}",
130
+ "requestSchema": "schema.json",
131
+ "responseSchema": "schema.json",
132
+ "timeout": 0,
133
+ "sendEmpty": false,
134
+ "requestDatatype": "JSON",
135
+ "responseDatatype": "JSON",
136
+ "headers": {},
137
+ "responseObjects": [
138
+ {
139
+ "type": "default",
140
+ "key": "",
141
+ "mockFile": ""
142
+ }
143
+ ]
144
+ },
145
+ {
146
+ "name": "getFunctionUrlConfig",
147
+ "protocol": "REST",
148
+ "method": "GET",
149
+ "entitypath": "{base_path}/{version}/2021-10-31/functions/{pathv1}/url?{query}",
150
+ "requestSchema": "schema.json",
151
+ "responseSchema": "schema.json",
152
+ "timeout": 0,
153
+ "sendEmpty": false,
154
+ "sendGetBody": false,
155
+ "requestDatatype": "JSON",
156
+ "responseDatatype": "JSON",
157
+ "headers": {},
158
+ "responseObjects": [
159
+ {
160
+ "type": "default",
161
+ "key": "",
162
+ "mockFile": ""
163
+ }
164
+ ]
165
+ },
166
+ {
167
+ "name": "updateFunctionUrlConfig",
168
+ "protocol": "REST",
169
+ "method": "PUT",
170
+ "entitypath": "{base_path}/{version}/2021-10-31/functions/{pathv1}/url?{query}",
171
+ "requestSchema": "schema.json",
172
+ "responseSchema": "schema.json",
173
+ "timeout": 0,
174
+ "sendEmpty": false,
175
+ "requestDatatype": "JSON",
176
+ "responseDatatype": "JSON",
177
+ "headers": {},
178
+ "responseObjects": [
179
+ {
180
+ "type": "default",
181
+ "key": "",
182
+ "mockFile": ""
183
+ }
184
+ ]
185
+ },
186
+ {
187
+ "name": "deleteAlias",
188
+ "protocol": "REST",
189
+ "method": "DELETE",
190
+ "entitypath": "{base_path}/{version}/2015-03-31/functions/{pathv1}/aliases/{pathv2}?{query}",
191
+ "requestSchema": "schema.json",
192
+ "responseSchema": "schema.json",
193
+ "timeout": 0,
194
+ "sendEmpty": false,
195
+ "requestDatatype": "JSON",
196
+ "responseDatatype": "JSON",
197
+ "headers": {},
198
+ "responseObjects": [
199
+ {
200
+ "type": "default",
201
+ "key": "",
202
+ "mockFile": ""
203
+ }
204
+ ]
205
+ },
206
+ {
207
+ "name": "getAlias",
208
+ "protocol": "REST",
209
+ "method": "GET",
210
+ "entitypath": "{base_path}/{version}/2015-03-31/functions/{pathv1}/aliases/{pathv2}?{query}",
211
+ "requestSchema": "schema.json",
212
+ "responseSchema": "schema.json",
213
+ "timeout": 0,
214
+ "sendEmpty": false,
215
+ "sendGetBody": false,
216
+ "requestDatatype": "JSON",
217
+ "responseDatatype": "JSON",
218
+ "headers": {},
219
+ "responseObjects": [
220
+ {
221
+ "type": "default",
222
+ "key": "",
223
+ "mockFile": ""
224
+ }
225
+ ]
226
+ },
227
+ {
228
+ "name": "updateAlias",
229
+ "protocol": "REST",
230
+ "method": "PUT",
231
+ "entitypath": "{base_path}/{version}/2015-03-31/functions/{pathv1}/aliases/{pathv2}?{query}",
232
+ "requestSchema": "schema.json",
233
+ "responseSchema": "schema.json",
234
+ "timeout": 0,
235
+ "sendEmpty": false,
236
+ "requestDatatype": "JSON",
237
+ "responseDatatype": "JSON",
238
+ "headers": {},
239
+ "responseObjects": [
240
+ {
241
+ "type": "default",
242
+ "key": "",
243
+ "mockFile": ""
244
+ }
245
+ ]
246
+ },
247
+ {
248
+ "name": "deleteFunction",
249
+ "protocol": "REST",
250
+ "method": "DELETE",
251
+ "entitypath": "{base_path}/{version}/2015-03-31/functions/{pathv1}?{query}",
252
+ "requestSchema": "schema.json",
253
+ "responseSchema": "schema.json",
254
+ "timeout": 0,
255
+ "sendEmpty": false,
256
+ "requestDatatype": "JSON",
257
+ "responseDatatype": "JSON",
258
+ "headers": {},
259
+ "responseObjects": [
260
+ {
261
+ "type": "default",
262
+ "key": "",
263
+ "mockFile": ""
264
+ }
265
+ ]
266
+ },
267
+ {
268
+ "name": "getFunction",
269
+ "protocol": "REST",
270
+ "method": "GET",
271
+ "entitypath": "{base_path}/{version}/2015-03-31/functions/{pathv1}?{query}",
272
+ "requestSchema": "schema.json",
273
+ "responseSchema": "schema.json",
274
+ "timeout": 0,
275
+ "sendEmpty": false,
276
+ "sendGetBody": false,
277
+ "requestDatatype": "JSON",
278
+ "responseDatatype": "JSON",
279
+ "headers": {},
280
+ "responseObjects": [
281
+ {
282
+ "type": "default",
283
+ "key": "",
284
+ "mockFile": ""
285
+ }
286
+ ]
287
+ },
288
+ {
289
+ "name": "deleteFunctionCodeSigningConfig",
290
+ "protocol": "REST",
291
+ "method": "DELETE",
292
+ "entitypath": "{base_path}/{version}/2020-06-30/functions/{pathv1}/code-signing-config?{query}",
293
+ "requestSchema": "schema.json",
294
+ "responseSchema": "schema.json",
295
+ "timeout": 0,
296
+ "sendEmpty": false,
297
+ "requestDatatype": "JSON",
298
+ "responseDatatype": "JSON",
299
+ "headers": {},
300
+ "responseObjects": [
301
+ {
302
+ "type": "default",
303
+ "key": "",
304
+ "mockFile": ""
305
+ }
306
+ ]
307
+ },
308
+ {
309
+ "name": "getFunctionCodeSigningConfig",
310
+ "protocol": "REST",
311
+ "method": "GET",
312
+ "entitypath": "{base_path}/{version}/2020-06-30/functions/{pathv1}/code-signing-config?{query}",
313
+ "requestSchema": "schema.json",
314
+ "responseSchema": "schema.json",
315
+ "timeout": 0,
316
+ "sendEmpty": false,
317
+ "sendGetBody": false,
318
+ "requestDatatype": "JSON",
319
+ "responseDatatype": "JSON",
320
+ "headers": {},
321
+ "responseObjects": [
322
+ {
323
+ "type": "default",
324
+ "key": "",
325
+ "mockFile": ""
326
+ }
327
+ ]
328
+ },
329
+ {
330
+ "name": "putFunctionCodeSigningConfig",
331
+ "protocol": "REST",
332
+ "method": "PUT",
333
+ "entitypath": "{base_path}/{version}/2020-06-30/functions/{pathv1}/code-signing-config?{query}",
334
+ "requestSchema": "schema.json",
335
+ "responseSchema": "schema.json",
336
+ "timeout": 0,
337
+ "sendEmpty": false,
338
+ "requestDatatype": "JSON",
339
+ "responseDatatype": "JSON",
340
+ "headers": {},
341
+ "responseObjects": [
342
+ {
343
+ "type": "default",
344
+ "key": "",
345
+ "mockFile": ""
346
+ }
347
+ ]
348
+ },
349
+ {
350
+ "name": "deleteFunctionConcurrency",
351
+ "protocol": "REST",
352
+ "method": "DELETE",
353
+ "entitypath": "{base_path}/{version}/2017-10-31/functions/{pathv1}/concurrency?{query}",
354
+ "requestSchema": "schema.json",
355
+ "responseSchema": "schema.json",
356
+ "timeout": 0,
357
+ "sendEmpty": false,
358
+ "requestDatatype": "JSON",
359
+ "responseDatatype": "JSON",
360
+ "headers": {},
361
+ "responseObjects": [
362
+ {
363
+ "type": "default",
364
+ "key": "",
365
+ "mockFile": ""
366
+ }
367
+ ]
368
+ },
369
+ {
370
+ "name": "putFunctionConcurrency",
371
+ "protocol": "REST",
372
+ "method": "PUT",
373
+ "entitypath": "{base_path}/{version}/2017-10-31/functions/{pathv1}/concurrency?{query}",
374
+ "requestSchema": "schema.json",
375
+ "responseSchema": "schema.json",
376
+ "timeout": 0,
377
+ "sendEmpty": false,
378
+ "requestDatatype": "JSON",
379
+ "responseDatatype": "JSON",
380
+ "headers": {},
381
+ "responseObjects": [
382
+ {
383
+ "type": "default",
384
+ "key": "",
385
+ "mockFile": ""
386
+ }
387
+ ]
388
+ },
389
+ {
390
+ "name": "deleteFunctionEventInvokeConfig",
391
+ "protocol": "REST",
392
+ "method": "DELETE",
393
+ "entitypath": "{base_path}/{version}/2019-09-25/functions/{pathv1}/event-invoke-config?{query}",
394
+ "requestSchema": "schema.json",
395
+ "responseSchema": "schema.json",
396
+ "timeout": 0,
397
+ "sendEmpty": false,
398
+ "requestDatatype": "JSON",
399
+ "responseDatatype": "JSON",
400
+ "headers": {},
401
+ "responseObjects": [
402
+ {
403
+ "type": "default",
404
+ "key": "",
405
+ "mockFile": ""
406
+ }
407
+ ]
408
+ },
409
+ {
410
+ "name": "getFunctionEventInvokeConfig",
411
+ "protocol": "REST",
412
+ "method": "GET",
413
+ "entitypath": "{base_path}/{version}/2019-09-25/functions/{pathv1}/event-invoke-config?{query}",
414
+ "requestSchema": "schema.json",
415
+ "responseSchema": "schema.json",
416
+ "timeout": 0,
417
+ "sendEmpty": false,
418
+ "sendGetBody": false,
419
+ "requestDatatype": "JSON",
420
+ "responseDatatype": "JSON",
421
+ "headers": {},
422
+ "responseObjects": [
423
+ {
424
+ "type": "default",
425
+ "key": "",
426
+ "mockFile": ""
427
+ }
428
+ ]
429
+ },
430
+ {
431
+ "name": "putFunctionEventInvokeConfig",
432
+ "protocol": "REST",
433
+ "method": "PUT",
434
+ "entitypath": "{base_path}/{version}/2019-09-25/functions/{pathv1}/event-invoke-config?{query}",
435
+ "requestSchema": "schema.json",
436
+ "responseSchema": "schema.json",
437
+ "timeout": 0,
438
+ "sendEmpty": false,
439
+ "requestDatatype": "JSON",
440
+ "responseDatatype": "JSON",
441
+ "headers": {},
442
+ "responseObjects": [
443
+ {
444
+ "type": "default",
445
+ "key": "",
446
+ "mockFile": ""
447
+ }
448
+ ]
449
+ },
450
+ {
451
+ "name": "updateFunctionEventInvokeConfig",
452
+ "protocol": "REST",
453
+ "method": "POST",
454
+ "entitypath": "{base_path}/{version}/2019-09-25/functions/{pathv1}/event-invoke-config?{query}",
455
+ "requestSchema": "schema.json",
456
+ "responseSchema": "schema.json",
457
+ "timeout": 0,
458
+ "sendEmpty": false,
459
+ "requestDatatype": "JSON",
460
+ "responseDatatype": "JSON",
461
+ "headers": {},
462
+ "responseObjects": [
463
+ {
464
+ "type": "default",
465
+ "key": "",
466
+ "mockFile": ""
467
+ }
468
+ ]
469
+ },
470
+ {
471
+ "name": "deleteProvisionedConcurrencyConfig",
472
+ "protocol": "REST",
473
+ "method": "DELETE",
474
+ "entitypath": "{base_path}/{version}/2019-09-30/functions/{pathv1}/provisioned-concurrency?{query}",
475
+ "requestSchema": "schema.json",
476
+ "responseSchema": "schema.json",
477
+ "timeout": 0,
478
+ "sendEmpty": false,
479
+ "requestDatatype": "JSON",
480
+ "responseDatatype": "JSON",
481
+ "headers": {},
482
+ "responseObjects": [
483
+ {
484
+ "type": "default",
485
+ "key": "",
486
+ "mockFile": ""
487
+ }
488
+ ]
489
+ },
490
+ {
491
+ "name": "getProvisionedConcurrencyConfig",
492
+ "protocol": "REST",
493
+ "method": "GET",
494
+ "entitypath": "{base_path}/{version}/2019-09-30/functions/{pathv1}/provisioned-concurrency?{query}",
495
+ "requestSchema": "schema.json",
496
+ "responseSchema": "schema.json",
497
+ "timeout": 0,
498
+ "sendEmpty": false,
499
+ "sendGetBody": false,
500
+ "requestDatatype": "JSON",
501
+ "responseDatatype": "JSON",
502
+ "headers": {},
503
+ "responseObjects": [
504
+ {
505
+ "type": "default",
506
+ "key": "",
507
+ "mockFile": ""
508
+ }
509
+ ]
510
+ },
511
+ {
512
+ "name": "putProvisionedConcurrencyConfig",
513
+ "protocol": "REST",
514
+ "method": "PUT",
515
+ "entitypath": "{base_path}/{version}/2019-09-30/functions/{pathv1}/provisioned-concurrency?{query}",
516
+ "requestSchema": "schema.json",
517
+ "responseSchema": "schema.json",
518
+ "timeout": 0,
519
+ "sendEmpty": false,
520
+ "requestDatatype": "JSON",
521
+ "responseDatatype": "JSON",
522
+ "headers": {},
523
+ "responseObjects": [
524
+ {
525
+ "type": "default",
526
+ "key": "",
527
+ "mockFile": ""
528
+ }
529
+ ]
530
+ },
531
+ {
532
+ "name": "getFunctionConcurrency",
533
+ "protocol": "REST",
534
+ "method": "GET",
535
+ "entitypath": "{base_path}/{version}/2019-09-30/functions/{pathv1}/concurrency?{query}",
536
+ "requestSchema": "schema.json",
537
+ "responseSchema": "schema.json",
538
+ "timeout": 0,
539
+ "sendEmpty": false,
540
+ "sendGetBody": false,
541
+ "requestDatatype": "JSON",
542
+ "responseDatatype": "JSON",
543
+ "headers": {},
544
+ "responseObjects": [
545
+ {
546
+ "type": "default",
547
+ "key": "",
548
+ "mockFile": ""
549
+ }
550
+ ]
551
+ },
552
+ {
553
+ "name": "getFunctionConfiguration",
554
+ "protocol": "REST",
555
+ "method": "GET",
556
+ "entitypath": "{base_path}/{version}/2015-03-31/functions/{pathv1}/configuration?{query}",
557
+ "requestSchema": "schema.json",
558
+ "responseSchema": "schema.json",
559
+ "timeout": 0,
560
+ "sendEmpty": false,
561
+ "sendGetBody": false,
562
+ "requestDatatype": "JSON",
563
+ "responseDatatype": "JSON",
564
+ "headers": {},
565
+ "responseObjects": [
566
+ {
567
+ "type": "default",
568
+ "key": "",
569
+ "mockFile": ""
570
+ }
571
+ ]
572
+ },
573
+ {
574
+ "name": "updateFunctionConfiguration",
575
+ "protocol": "REST",
576
+ "method": "PUT",
577
+ "entitypath": "{base_path}/{version}/2015-03-31/functions/{pathv1}/configuration?{query}",
578
+ "requestSchema": "schema.json",
579
+ "responseSchema": "schema.json",
580
+ "timeout": 0,
581
+ "sendEmpty": false,
582
+ "requestDatatype": "JSON",
583
+ "responseDatatype": "JSON",
584
+ "headers": {},
585
+ "responseObjects": [
586
+ {
587
+ "type": "default",
588
+ "key": "",
589
+ "mockFile": ""
590
+ }
591
+ ]
592
+ },
593
+ {
594
+ "name": "getRuntimeManagementConfig",
595
+ "protocol": "REST",
596
+ "method": "GET",
597
+ "entitypath": "{base_path}/{version}/2021-07-20/functions/{pathv1}/runtime-management-config?{query}",
598
+ "requestSchema": "schema.json",
599
+ "responseSchema": "schema.json",
600
+ "timeout": 0,
601
+ "sendEmpty": false,
602
+ "sendGetBody": false,
603
+ "requestDatatype": "JSON",
604
+ "responseDatatype": "JSON",
605
+ "headers": {},
606
+ "responseObjects": [
607
+ {
608
+ "type": "default",
609
+ "key": "",
610
+ "mockFile": ""
611
+ }
612
+ ]
613
+ },
614
+ {
615
+ "name": "putRuntimeManagementConfig",
616
+ "protocol": "REST",
617
+ "method": "PUT",
618
+ "entitypath": "{base_path}/{version}/2021-07-20/functions/{pathv1}/runtime-management-config?{query}",
619
+ "requestSchema": "schema.json",
620
+ "responseSchema": "schema.json",
621
+ "timeout": 0,
622
+ "sendEmpty": false,
623
+ "requestDatatype": "JSON",
624
+ "responseDatatype": "JSON",
625
+ "headers": {},
626
+ "responseObjects": [
627
+ {
628
+ "type": "default",
629
+ "key": "",
630
+ "mockFile": ""
631
+ }
632
+ ]
633
+ },
634
+ {
635
+ "name": "invoke",
636
+ "protocol": "REST",
637
+ "method": "POST",
638
+ "entitypath": "{base_path}/{version}/2015-03-31/functions/{pathv1}/invocations?{query}",
639
+ "requestSchema": "schema.json",
640
+ "responseSchema": "schema.json",
641
+ "timeout": 0,
642
+ "sendEmpty": false,
643
+ "requestDatatype": "JSON",
644
+ "responseDatatype": "JSON",
645
+ "headers": {},
646
+ "responseObjects": [
647
+ {
648
+ "type": "default",
649
+ "key": "",
650
+ "mockFile": ""
651
+ }
652
+ ]
653
+ },
654
+ {
655
+ "name": "invokeAsync",
656
+ "protocol": "REST",
657
+ "method": "POST",
658
+ "entitypath": "{base_path}/{version}/2014-11-13/functions/{pathv1}/invoke-async/?{query}",
659
+ "requestSchema": "schema.json",
660
+ "responseSchema": "schema.json",
661
+ "timeout": 0,
662
+ "sendEmpty": false,
663
+ "requestDatatype": "JSON",
664
+ "responseDatatype": "JSON",
665
+ "headers": {},
666
+ "responseObjects": [
667
+ {
668
+ "type": "default",
669
+ "key": "",
670
+ "mockFile": ""
671
+ }
672
+ ]
673
+ },
674
+ {
675
+ "name": "invokeWithResponseStream",
676
+ "protocol": "REST",
677
+ "method": "POST",
678
+ "entitypath": "{base_path}/{version}/2021-11-15/functions/{pathv1}/response-streaming-invocations?{query}",
679
+ "requestSchema": "schema.json",
680
+ "responseSchema": "schema.json",
681
+ "timeout": 0,
682
+ "sendEmpty": false,
683
+ "requestDatatype": "JSON",
684
+ "responseDatatype": "JSON",
685
+ "headers": {},
686
+ "responseObjects": [
687
+ {
688
+ "type": "default",
689
+ "key": "",
690
+ "mockFile": ""
691
+ }
692
+ ]
693
+ },
694
+ {
695
+ "name": "listFunctionEventInvokeConfigs",
696
+ "protocol": "REST",
697
+ "method": "GET",
698
+ "entitypath": "{base_path}/{version}/2019-09-25/functions/{pathv1}/event-invoke-config/list?{query}",
699
+ "requestSchema": "schema.json",
700
+ "responseSchema": "schema.json",
701
+ "timeout": 0,
702
+ "sendEmpty": false,
703
+ "sendGetBody": false,
704
+ "requestDatatype": "JSON",
705
+ "responseDatatype": "JSON",
706
+ "headers": {},
707
+ "responseObjects": [
708
+ {
709
+ "type": "default",
710
+ "key": "",
711
+ "mockFile": ""
712
+ }
713
+ ]
714
+ },
715
+ {
716
+ "name": "listFunctionUrlConfigs",
717
+ "protocol": "REST",
718
+ "method": "GET",
719
+ "entitypath": "{base_path}/{version}/2021-10-31/functions/{pathv1}/urls?{query}",
720
+ "requestSchema": "schema.json",
721
+ "responseSchema": "schema.json",
722
+ "timeout": 0,
723
+ "sendEmpty": false,
724
+ "sendGetBody": false,
725
+ "requestDatatype": "JSON",
726
+ "responseDatatype": "JSON",
727
+ "headers": {},
728
+ "responseObjects": [
729
+ {
730
+ "type": "default",
731
+ "key": "",
732
+ "mockFile": ""
733
+ }
734
+ ]
735
+ },
736
+ {
737
+ "name": "listFunctions",
738
+ "protocol": "REST",
739
+ "method": "GET",
740
+ "entitypath": "{base_path}/{version}/2015-03-31/functions/?{query}",
741
+ "requestSchema": "schema.json",
742
+ "responseSchema": "schema.json",
743
+ "timeout": 0,
744
+ "sendEmpty": false,
745
+ "sendGetBody": false,
746
+ "requestDatatype": "JSON",
747
+ "responseDatatype": "JSON",
748
+ "headers": {},
749
+ "responseObjects": [
750
+ {
751
+ "type": "default",
752
+ "key": "",
753
+ "mockFile": ""
754
+ }
755
+ ]
756
+ },
757
+ {
758
+ "name": "listProvisionedConcurrencyConfigs",
759
+ "protocol": "REST",
760
+ "method": "GET",
761
+ "entitypath": "{base_path}/{version}/2019-09-30/functions/{pathv1}/provisioned-concurrency?{query}",
762
+ "requestSchema": "schema.json",
763
+ "responseSchema": "schema.json",
764
+ "timeout": 0,
765
+ "sendEmpty": false,
766
+ "sendGetBody": false,
767
+ "requestDatatype": "JSON",
768
+ "responseDatatype": "JSON",
769
+ "headers": {},
770
+ "responseObjects": [
771
+ {
772
+ "type": "default",
773
+ "key": "",
774
+ "mockFile": ""
775
+ }
776
+ ]
777
+ },
778
+ {
779
+ "name": "listVersionsByFunction",
780
+ "protocol": "REST",
781
+ "method": "GET",
782
+ "entitypath": "{base_path}/{version}/2015-03-31/functions/{pathv1}/versions?{query}",
783
+ "requestSchema": "schema.json",
784
+ "responseSchema": "schema.json",
785
+ "timeout": 0,
786
+ "sendEmpty": false,
787
+ "sendGetBody": false,
788
+ "requestDatatype": "JSON",
789
+ "responseDatatype": "JSON",
790
+ "headers": {},
791
+ "responseObjects": [
792
+ {
793
+ "type": "default",
794
+ "key": "",
795
+ "mockFile": ""
796
+ }
797
+ ]
798
+ },
799
+ {
800
+ "name": "publishVersion",
801
+ "protocol": "REST",
802
+ "method": "POST",
803
+ "entitypath": "{base_path}/{version}/2015-03-31/functions/{pathv1}/versions?{query}",
804
+ "requestSchema": "schema.json",
805
+ "responseSchema": "schema.json",
806
+ "timeout": 0,
807
+ "sendEmpty": false,
808
+ "requestDatatype": "JSON",
809
+ "responseDatatype": "JSON",
810
+ "headers": {},
811
+ "responseObjects": [
812
+ {
813
+ "type": "default",
814
+ "key": "",
815
+ "mockFile": ""
816
+ }
817
+ ]
818
+ },
819
+ {
820
+ "name": "removePermission",
821
+ "protocol": "REST",
822
+ "method": "DELETE",
823
+ "entitypath": "{base_path}/{version}/2015-03-31/functions/{pathv1}/policy/{pathv2}?{query}",
824
+ "requestSchema": "schema.json",
825
+ "responseSchema": "schema.json",
826
+ "timeout": 0,
827
+ "sendEmpty": false,
828
+ "requestDatatype": "JSON",
829
+ "responseDatatype": "JSON",
830
+ "headers": {},
831
+ "responseObjects": [
832
+ {
833
+ "type": "default",
834
+ "key": "",
835
+ "mockFile": ""
836
+ }
837
+ ]
838
+ },
839
+ {
840
+ "name": "updateFunctionCode",
841
+ "protocol": "REST",
842
+ "method": "PUT",
843
+ "entitypath": "{base_path}/{version}/2015-03-31/functions/{pathv1}/code?{query}",
844
+ "requestSchema": "schema.json",
845
+ "responseSchema": "schema.json",
846
+ "timeout": 0,
847
+ "sendEmpty": false,
848
+ "requestDatatype": "JSON",
849
+ "responseDatatype": "JSON",
850
+ "headers": {},
851
+ "responseObjects": [
852
+ {
853
+ "type": "default",
854
+ "key": "",
855
+ "mockFile": ""
856
+ }
857
+ ]
858
+ }
859
+ ]
860
+ }