@itentialopensource/adapter-aws_cloudformation 0.1.3 → 0.2.2

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 (87) hide show
  1. package/.eslintignore +1 -0
  2. package/AUTH.md +53 -0
  3. package/BROKER.md +199 -0
  4. package/CALLS.md +620 -0
  5. package/CHANGELOG.md +3 -18
  6. package/CODE_OF_CONDUCT.md +12 -17
  7. package/CONTRIBUTING.md +3 -148
  8. package/ENHANCE.md +69 -0
  9. package/PROPERTIES.md +641 -0
  10. package/README.md +240 -423
  11. package/SUMMARY.md +9 -0
  12. package/TROUBLESHOOT.md +47 -0
  13. package/adapter.js +4788 -1315
  14. package/adapterBase.js +979 -278
  15. package/changelogs/CHANGELOG.md +48 -0
  16. package/entities/.generic/action.json +214 -0
  17. package/entities/.generic/schema.json +28 -0
  18. package/entities/.system/action.json +1 -1
  19. package/entities/Account/action.json +42 -0
  20. package/entities/Account/mockdatafiles/describePublisher-default.xml +6 -0
  21. package/entities/Account/mockdatafiles/registerPublisher-default.xml +6 -0
  22. package/entities/Account/schema.json +3 -1
  23. package/entities/ChangeSet/action.json +21 -0
  24. package/entities/ChangeSet/mockdatafiles/describeChangeSetHooks-default.xml +6 -0
  25. package/entities/ChangeSet/schema.json +2 -1
  26. package/entities/Organization/action.json +67 -0
  27. package/entities/Organization/mockdatafiles/activateOrganizationsAccess-default.xml +6 -0
  28. package/entities/Organization/mockdatafiles/deactivateOrganizationsAccess-default.xml +6 -0
  29. package/entities/Organization/mockdatafiles/describeOrganizationsAccess-default.xml +8 -0
  30. package/entities/Organization/schema.json +21 -0
  31. package/entities/Resource/action.json +21 -0
  32. package/entities/Resource/mockdatafiles/recordHandlerProgress-default.xml +6 -0
  33. package/entities/Resource/schema.json +2 -1
  34. package/entities/Stack/action.json +42 -0
  35. package/entities/Stack/mockdatafiles/importStacksToStackSet-default.xml +6 -0
  36. package/entities/Stack/mockdatafiles/rollbackStack-default.xml +6 -0
  37. package/entities/Stack/schema.json +3 -1
  38. package/entities/Type/action.json +126 -0
  39. package/entities/Type/mockdatafiles/activateType-default.xml +6 -0
  40. package/entities/Type/mockdatafiles/batchDescribeTypeConfigurations-default.xml +6 -0
  41. package/entities/Type/mockdatafiles/deactivateType-default.xml +6 -0
  42. package/entities/Type/mockdatafiles/publishType-default.xml +6 -0
  43. package/entities/Type/mockdatafiles/setTypeConfiguration-default.xml +6 -0
  44. package/entities/Type/mockdatafiles/testType-default.xml +6 -0
  45. package/entities/Type/schema.json +7 -1
  46. package/error.json +12 -0
  47. package/metadata.json +44 -0
  48. package/package.json +41 -20
  49. package/pronghorn.json +8996 -1335
  50. package/propertiesDecorators.json +14 -0
  51. package/propertiesSchema.json +877 -9
  52. package/refs?service=git-upload-pack +0 -0
  53. package/report/adapter-openapi.json +25034 -0
  54. package/report/adapter-openapi.yaml +22498 -0
  55. package/report/adapterInfo.json +10 -0
  56. package/report/updateReport1614638977739.json +95 -0
  57. package/report/updateReport1691507502657.json +120 -0
  58. package/report/updateReport1692202523445.json +120 -0
  59. package/report/updateReport1694461395239.json +120 -0
  60. package/report/updateReport1698420779793.json +120 -0
  61. package/sampleProperties.json +166 -9
  62. package/storage/metrics.json +1141 -0
  63. package/test/integration/adapterTestBasicGet.js +83 -0
  64. package/test/integration/adapterTestConnectivity.js +142 -0
  65. package/test/integration/adapterTestIntegration.js +541 -103
  66. package/test/unit/adapterBaseTestUnit.js +1024 -0
  67. package/test/unit/adapterTestUnit.js +1273 -218
  68. package/utils/adapterInfo.js +206 -0
  69. package/utils/addAuth.js +94 -0
  70. package/utils/artifactize.js +1 -1
  71. package/utils/basicGet.js +50 -0
  72. package/utils/checkMigrate.js +63 -0
  73. package/utils/entitiesToDB.js +179 -0
  74. package/utils/findPath.js +74 -0
  75. package/utils/methodDocumentor.js +273 -0
  76. package/utils/modify.js +152 -0
  77. package/utils/packModificationScript.js +2 -2
  78. package/utils/patches2bundledDeps.js +90 -0
  79. package/utils/pre-commit.sh +5 -0
  80. package/utils/removeHooks.js +20 -0
  81. package/utils/taskMover.js +309 -0
  82. package/utils/tbScript.js +239 -0
  83. package/utils/tbUtils.js +489 -0
  84. package/utils/testRunner.js +17 -17
  85. package/utils/troubleshootingAdapter.js +193 -0
  86. package/img/adapter.jpg +0 -0
  87. package/workflows/README.md +0 -3
@@ -0,0 +1,14 @@
1
+ [
2
+ {
3
+ "type": "encryption",
4
+ "pointer": "/authentication/password"
5
+ },
6
+ {
7
+ "type": "encryption",
8
+ "pointer": "/authentication/token"
9
+ },
10
+ {
11
+ "type": "encryption",
12
+ "pointer": "/mongo/password"
13
+ }
14
+ ]