@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,10 @@
1
+ {
2
+ "version": "0.1.0",
3
+ "configLines": 8930,
4
+ "scriptLines": 2498,
5
+ "codeLines": 10335,
6
+ "testLines": 7910,
7
+ "testCases": 388,
8
+ "totalCodeLines": 20743,
9
+ "wfTasks": 91
10
+ }
@@ -0,0 +1,615 @@
1
+ {
2
+ "errors": [],
3
+ "statistics": [
4
+ {
5
+ "owner": "errorJson",
6
+ "description": "Standard adapter errors available for use",
7
+ "value": 31
8
+ },
9
+ {
10
+ "owner": "packageJson",
11
+ "description": "Number of production dependencies",
12
+ "value": 15
13
+ },
14
+ {
15
+ "owner": "packageJson",
16
+ "description": "Number of development dependencies",
17
+ "value": 6
18
+ },
19
+ {
20
+ "owner": "packageJson",
21
+ "description": "Number of npm scripts",
22
+ "value": 19
23
+ },
24
+ {
25
+ "owner": "packageJson",
26
+ "description": "Runtime Library dependency",
27
+ "value": "5.10.16"
28
+ },
29
+ {
30
+ "owner": "propertiesSchemaJson",
31
+ "description": "Adapter properties defined in the propertiesSchema file",
32
+ "value": 79
33
+ },
34
+ {
35
+ "owner": "adapterJS",
36
+ "description": "Lines of code generated in adapter.js",
37
+ "value": 8846
38
+ },
39
+ {
40
+ "owner": "adapterJS",
41
+ "description": "Number of Functions added to adapter.js",
42
+ "value": 66
43
+ },
44
+ {
45
+ "owner": "pronghornJson",
46
+ "description": "Number of Methods added to pronghorn.json",
47
+ "value": 66
48
+ },
49
+ {
50
+ "owner": "markdown",
51
+ "description": "Number of lines in the README.md",
52
+ "value": 345
53
+ },
54
+ {
55
+ "owner": "markdown",
56
+ "description": "Number of lines in the SUMMARY.md",
57
+ "value": 9
58
+ },
59
+ {
60
+ "owner": "markdown",
61
+ "description": "Number of lines in the PROPERTIES.md",
62
+ "value": 662
63
+ },
64
+ {
65
+ "owner": "markdown",
66
+ "description": "Number of lines in the TROUBLESHOOT.md",
67
+ "value": 57
68
+ },
69
+ {
70
+ "owner": "markdown",
71
+ "description": "Number of lines in the ENHANCE.md",
72
+ "value": 70
73
+ },
74
+ {
75
+ "owner": "markdown",
76
+ "description": "Number of lines in the BROKER.md",
77
+ "value": 212
78
+ },
79
+ {
80
+ "owner": "markdown",
81
+ "description": "Number of lines in the CALLS.md",
82
+ "value": 208
83
+ },
84
+ {
85
+ "owner": "markdown",
86
+ "description": "Number of lines in the AUTH.md",
87
+ "value": 40
88
+ },
89
+ {
90
+ "owner": "markdown",
91
+ "description": "Number of lines in the SYSTEMINFO.md",
92
+ "value": 14
93
+ },
94
+ {
95
+ "owner": "unitTestJS",
96
+ "description": "Number of lines of code in unit tests",
97
+ "value": 3943
98
+ },
99
+ {
100
+ "owner": "unitTestJS",
101
+ "description": "Number of unit tests",
102
+ "value": 233
103
+ },
104
+ {
105
+ "owner": "integrationTestJS",
106
+ "description": "Number of lines of code in integration tests",
107
+ "value": 2104
108
+ },
109
+ {
110
+ "owner": "integrationTestJS",
111
+ "description": "Number of integration tests",
112
+ "value": 73
113
+ },
114
+ {
115
+ "owner": "actionJson",
116
+ "description": "Number of actions for Layers entity",
117
+ "value": 9
118
+ },
119
+ {
120
+ "owner": "actionJson",
121
+ "description": "Number of actions for Functions entity",
122
+ "value": 42
123
+ },
124
+ {
125
+ "owner": "actionJson",
126
+ "description": "Number of actions for CodeSigningConfigs entity",
127
+ "value": 6
128
+ },
129
+ {
130
+ "owner": "actionJson",
131
+ "description": "Number of actions for EventSourceMappings entity",
132
+ "value": 5
133
+ },
134
+ {
135
+ "owner": "actionJson",
136
+ "description": "Number of actions for AccountSettings entity",
137
+ "value": 1
138
+ },
139
+ {
140
+ "owner": "actionJson",
141
+ "description": "Number of actions for Tags entity",
142
+ "value": 3
143
+ },
144
+ {
145
+ "owner": "actionJson",
146
+ "description": "Total number of actions",
147
+ "value": 66
148
+ },
149
+ {
150
+ "owner": "actionJson",
151
+ "description": "Total number of entities",
152
+ "value": 6
153
+ },
154
+ {
155
+ "owner": "schemaJson",
156
+ "description": "Number of schemas for Layers entity",
157
+ "value": 1
158
+ },
159
+ {
160
+ "owner": "schemaJson",
161
+ "description": "Number of schemas for Functions entity",
162
+ "value": 1
163
+ },
164
+ {
165
+ "owner": "schemaJson",
166
+ "description": "Number of schemas for CodeSigningConfigs entity",
167
+ "value": 1
168
+ },
169
+ {
170
+ "owner": "schemaJson",
171
+ "description": "Number of schemas for EventSourceMappings entity",
172
+ "value": 1
173
+ },
174
+ {
175
+ "owner": "schemaJson",
176
+ "description": "Number of schemas for AccountSettings entity",
177
+ "value": 1
178
+ },
179
+ {
180
+ "owner": "schemaJson",
181
+ "description": "Number of schemas for Tags entity",
182
+ "value": 1
183
+ },
184
+ {
185
+ "owner": "schemaJson",
186
+ "description": "Total number of schemas",
187
+ "value": 6
188
+ },
189
+ {
190
+ "owner": "mockdata",
191
+ "description": "Number of mock data files for Layers entity",
192
+ "value": 0
193
+ },
194
+ {
195
+ "owner": "mockdata",
196
+ "description": "Number of mock data files for Functions entity",
197
+ "value": 0
198
+ },
199
+ {
200
+ "owner": "mockdata",
201
+ "description": "Number of mock data files for CodeSigningConfigs entity",
202
+ "value": 0
203
+ },
204
+ {
205
+ "owner": "mockdata",
206
+ "description": "Number of mock data files for EventSourceMappings entity",
207
+ "value": 0
208
+ },
209
+ {
210
+ "owner": "mockdata",
211
+ "description": "Number of mock data files for AccountSettings entity",
212
+ "value": 0
213
+ },
214
+ {
215
+ "owner": "mockdata",
216
+ "description": "Number of mock data files for Tags entity",
217
+ "value": 0
218
+ },
219
+ {
220
+ "owner": "mockdata",
221
+ "description": "Total number of mock data files",
222
+ "value": 0
223
+ },
224
+ {
225
+ "owner": "actionJson",
226
+ "description": "Number of actions for .system entity",
227
+ "value": 2
228
+ },
229
+ {
230
+ "owner": "schemaJson",
231
+ "description": "Number of schemas for .system entity",
232
+ "value": 3
233
+ },
234
+ {
235
+ "owner": "mockdata",
236
+ "description": "Number of mock data files for .system entity",
237
+ "value": 2
238
+ },
239
+ {
240
+ "owner": "System",
241
+ "description": "System entity files",
242
+ "value": 6
243
+ },
244
+ {
245
+ "owner": "usecases",
246
+ "description": "Number of workflows",
247
+ "value": 0
248
+ },
249
+ {
250
+ "owner": "staticFile",
251
+ "description": "Number of lines of code in adapterBase.js",
252
+ "value": 1489
253
+ },
254
+ {
255
+ "owner": "staticFile",
256
+ "description": "Number of static files added",
257
+ "value": 193
258
+ },
259
+ {
260
+ "owner": "Overall",
261
+ "description": "Total lines of Code",
262
+ "value": 16382
263
+ },
264
+ {
265
+ "owner": "Overall",
266
+ "description": "Total Tests",
267
+ "value": 306
268
+ },
269
+ {
270
+ "owner": "Overall",
271
+ "description": "Total Files",
272
+ "value": 220
273
+ }
274
+ ],
275
+ "warnings": [],
276
+ "apiParsingReport": {
277
+ "no_mockdata": [
278
+ {
279
+ "fnName": "addLayerVersionPermission",
280
+ "method": "post",
281
+ "path": "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}/policy"
282
+ },
283
+ {
284
+ "fnName": "getLayerVersionPolicy",
285
+ "method": "get",
286
+ "path": "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}/policy"
287
+ },
288
+ {
289
+ "fnName": "deleteLayerVersion",
290
+ "method": "delete",
291
+ "path": "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}"
292
+ },
293
+ {
294
+ "fnName": "getLayerVersion",
295
+ "method": "get",
296
+ "path": "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}"
297
+ },
298
+ {
299
+ "fnName": "getLayerVersionByArn",
300
+ "method": "get",
301
+ "path": "/2018-10-31/layers#find=LayerVersion&Arn"
302
+ },
303
+ {
304
+ "fnName": "listLayerVersions",
305
+ "method": "get",
306
+ "path": "/2018-10-31/layers/{LayerName}/versions"
307
+ },
308
+ {
309
+ "fnName": "publishLayerVersion",
310
+ "method": "post",
311
+ "path": "/2018-10-31/layers/{LayerName}/versions"
312
+ },
313
+ {
314
+ "fnName": "listLayers",
315
+ "method": "get",
316
+ "path": "/2018-10-31/layers"
317
+ },
318
+ {
319
+ "fnName": "removeLayerVersionPermission",
320
+ "method": "delete",
321
+ "path": "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}/policy/{StatementId}"
322
+ },
323
+ {
324
+ "fnName": "addPermission",
325
+ "method": "post",
326
+ "path": "/2015-03-31/functions/{FunctionName}/policy"
327
+ },
328
+ {
329
+ "fnName": "getPolicy",
330
+ "method": "get",
331
+ "path": "/2015-03-31/functions/{FunctionName}/policy"
332
+ },
333
+ {
334
+ "fnName": "createAlias",
335
+ "method": "post",
336
+ "path": "/2015-03-31/functions/{FunctionName}/aliases"
337
+ },
338
+ {
339
+ "fnName": "listAliases",
340
+ "method": "get",
341
+ "path": "/2015-03-31/functions/{FunctionName}/aliases"
342
+ },
343
+ {
344
+ "fnName": "createFunction",
345
+ "method": "post",
346
+ "path": "/2015-03-31/functions"
347
+ },
348
+ {
349
+ "fnName": "createFunctionUrlConfig",
350
+ "method": "post",
351
+ "path": "/2021-10-31/functions/{FunctionName}/url"
352
+ },
353
+ {
354
+ "fnName": "deleteFunctionUrlConfig",
355
+ "method": "delete",
356
+ "path": "/2021-10-31/functions/{FunctionName}/url"
357
+ },
358
+ {
359
+ "fnName": "getFunctionUrlConfig",
360
+ "method": "get",
361
+ "path": "/2021-10-31/functions/{FunctionName}/url"
362
+ },
363
+ {
364
+ "fnName": "updateFunctionUrlConfig",
365
+ "method": "put",
366
+ "path": "/2021-10-31/functions/{FunctionName}/url"
367
+ },
368
+ {
369
+ "fnName": "deleteAlias",
370
+ "method": "delete",
371
+ "path": "/2015-03-31/functions/{FunctionName}/aliases/{Name}"
372
+ },
373
+ {
374
+ "fnName": "getAlias",
375
+ "method": "get",
376
+ "path": "/2015-03-31/functions/{FunctionName}/aliases/{Name}"
377
+ },
378
+ {
379
+ "fnName": "updateAlias",
380
+ "method": "put",
381
+ "path": "/2015-03-31/functions/{FunctionName}/aliases/{Name}"
382
+ },
383
+ {
384
+ "fnName": "deleteFunction",
385
+ "method": "delete",
386
+ "path": "/2015-03-31/functions/{FunctionName}"
387
+ },
388
+ {
389
+ "fnName": "getFunction",
390
+ "method": "get",
391
+ "path": "/2015-03-31/functions/{FunctionName}"
392
+ },
393
+ {
394
+ "fnName": "deleteFunctionCodeSigningConfig",
395
+ "method": "delete",
396
+ "path": "/2020-06-30/functions/{FunctionName}/code-signing-config"
397
+ },
398
+ {
399
+ "fnName": "getFunctionCodeSigningConfig",
400
+ "method": "get",
401
+ "path": "/2020-06-30/functions/{FunctionName}/code-signing-config"
402
+ },
403
+ {
404
+ "fnName": "putFunctionCodeSigningConfig",
405
+ "method": "put",
406
+ "path": "/2020-06-30/functions/{FunctionName}/code-signing-config"
407
+ },
408
+ {
409
+ "fnName": "deleteFunctionConcurrency",
410
+ "method": "delete",
411
+ "path": "/2017-10-31/functions/{FunctionName}/concurrency"
412
+ },
413
+ {
414
+ "fnName": "putFunctionConcurrency",
415
+ "method": "put",
416
+ "path": "/2017-10-31/functions/{FunctionName}/concurrency"
417
+ },
418
+ {
419
+ "fnName": "deleteFunctionEventInvokeConfig",
420
+ "method": "delete",
421
+ "path": "/2019-09-25/functions/{FunctionName}/event-invoke-config"
422
+ },
423
+ {
424
+ "fnName": "getFunctionEventInvokeConfig",
425
+ "method": "get",
426
+ "path": "/2019-09-25/functions/{FunctionName}/event-invoke-config"
427
+ },
428
+ {
429
+ "fnName": "putFunctionEventInvokeConfig",
430
+ "method": "put",
431
+ "path": "/2019-09-25/functions/{FunctionName}/event-invoke-config"
432
+ },
433
+ {
434
+ "fnName": "updateFunctionEventInvokeConfig",
435
+ "method": "post",
436
+ "path": "/2019-09-25/functions/{FunctionName}/event-invoke-config"
437
+ },
438
+ {
439
+ "fnName": "deleteProvisionedConcurrencyConfig",
440
+ "method": "delete",
441
+ "path": "/2019-09-30/functions/{FunctionName}/provisioned-concurrency#Qualifier"
442
+ },
443
+ {
444
+ "fnName": "getProvisionedConcurrencyConfig",
445
+ "method": "get",
446
+ "path": "/2019-09-30/functions/{FunctionName}/provisioned-concurrency#Qualifier"
447
+ },
448
+ {
449
+ "fnName": "putProvisionedConcurrencyConfig",
450
+ "method": "put",
451
+ "path": "/2019-09-30/functions/{FunctionName}/provisioned-concurrency#Qualifier"
452
+ },
453
+ {
454
+ "fnName": "getFunctionConcurrency",
455
+ "method": "get",
456
+ "path": "/2019-09-30/functions/{FunctionName}/concurrency"
457
+ },
458
+ {
459
+ "fnName": "getFunctionConfiguration",
460
+ "method": "get",
461
+ "path": "/2015-03-31/functions/{FunctionName}/configuration"
462
+ },
463
+ {
464
+ "fnName": "updateFunctionConfiguration",
465
+ "method": "put",
466
+ "path": "/2015-03-31/functions/{FunctionName}/configuration"
467
+ },
468
+ {
469
+ "fnName": "getRuntimeManagementConfig",
470
+ "method": "get",
471
+ "path": "/2021-07-20/functions/{FunctionName}/runtime-management-config"
472
+ },
473
+ {
474
+ "fnName": "putRuntimeManagementConfig",
475
+ "method": "put",
476
+ "path": "/2021-07-20/functions/{FunctionName}/runtime-management-config"
477
+ },
478
+ {
479
+ "fnName": "invoke",
480
+ "method": "post",
481
+ "path": "/2015-03-31/functions/{FunctionName}/invocations"
482
+ },
483
+ {
484
+ "fnName": "invokeAsync",
485
+ "method": "post",
486
+ "path": "/2014-11-13/functions/{FunctionName}/invoke-async/"
487
+ },
488
+ {
489
+ "fnName": "invokeWithResponseStream",
490
+ "method": "post",
491
+ "path": "/2021-11-15/functions/{FunctionName}/response-streaming-invocations"
492
+ },
493
+ {
494
+ "fnName": "listFunctionEventInvokeConfigs",
495
+ "method": "get",
496
+ "path": "/2019-09-25/functions/{FunctionName}/event-invoke-config/list"
497
+ },
498
+ {
499
+ "fnName": "listFunctionUrlConfigs",
500
+ "method": "get",
501
+ "path": "/2021-10-31/functions/{FunctionName}/urls"
502
+ },
503
+ {
504
+ "fnName": "listFunctions",
505
+ "method": "get",
506
+ "path": "/2015-03-31/functions/"
507
+ },
508
+ {
509
+ "fnName": "listProvisionedConcurrencyConfigs",
510
+ "method": "get",
511
+ "path": "/2019-09-30/functions/{FunctionName}/provisioned-concurrency#List=ALL"
512
+ },
513
+ {
514
+ "fnName": "listVersionsByFunction",
515
+ "method": "get",
516
+ "path": "/2015-03-31/functions/{FunctionName}/versions"
517
+ },
518
+ {
519
+ "fnName": "publishVersion",
520
+ "method": "post",
521
+ "path": "/2015-03-31/functions/{FunctionName}/versions"
522
+ },
523
+ {
524
+ "fnName": "removePermission",
525
+ "method": "delete",
526
+ "path": "/2015-03-31/functions/{FunctionName}/policy/{StatementId}"
527
+ },
528
+ {
529
+ "fnName": "updateFunctionCode",
530
+ "method": "put",
531
+ "path": "/2015-03-31/functions/{FunctionName}/code"
532
+ },
533
+ {
534
+ "fnName": "createCodeSigningConfig",
535
+ "method": "post",
536
+ "path": "/2020-04-22/code-signing-configs/"
537
+ },
538
+ {
539
+ "fnName": "listCodeSigningConfigs",
540
+ "method": "get",
541
+ "path": "/2020-04-22/code-signing-configs/"
542
+ },
543
+ {
544
+ "fnName": "deleteCodeSigningConfig",
545
+ "method": "delete",
546
+ "path": "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}"
547
+ },
548
+ {
549
+ "fnName": "getCodeSigningConfig",
550
+ "method": "get",
551
+ "path": "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}"
552
+ },
553
+ {
554
+ "fnName": "updateCodeSigningConfig",
555
+ "method": "put",
556
+ "path": "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}"
557
+ },
558
+ {
559
+ "fnName": "listFunctionsByCodeSigningConfig",
560
+ "method": "get",
561
+ "path": "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}/functions"
562
+ },
563
+ {
564
+ "fnName": "createEventSourceMapping",
565
+ "method": "post",
566
+ "path": "/2015-03-31/event-source-mappings/"
567
+ },
568
+ {
569
+ "fnName": "listEventSourceMappings",
570
+ "method": "get",
571
+ "path": "/2015-03-31/event-source-mappings/"
572
+ },
573
+ {
574
+ "fnName": "deleteEventSourceMapping",
575
+ "method": "delete",
576
+ "path": "/2015-03-31/event-source-mappings/{UUID}"
577
+ },
578
+ {
579
+ "fnName": "getEventSourceMapping",
580
+ "method": "get",
581
+ "path": "/2015-03-31/event-source-mappings/{UUID}"
582
+ },
583
+ {
584
+ "fnName": "updateEventSourceMapping",
585
+ "method": "put",
586
+ "path": "/2015-03-31/event-source-mappings/{UUID}"
587
+ },
588
+ {
589
+ "fnName": "getAccountSettings",
590
+ "method": "get",
591
+ "path": "/2016-08-19/account-settings/"
592
+ },
593
+ {
594
+ "fnName": "listTags",
595
+ "method": "get",
596
+ "path": "/2017-03-31/tags/{ARN}"
597
+ },
598
+ {
599
+ "fnName": "tagResource",
600
+ "method": "post",
601
+ "path": "/2017-03-31/tags/{ARN}"
602
+ },
603
+ {
604
+ "fnName": "untagResource",
605
+ "method": "delete",
606
+ "path": "/2017-03-31/tags/{ARN}#tagKeys"
607
+ }
608
+ ],
609
+ "errors": [],
610
+ "warnings": [],
611
+ "callsTotal": 66,
612
+ "callsConverted": 66,
613
+ "no_mockdata_num": 66
614
+ }
615
+ }