@itentialopensource/adapter-amazon_route53 0.2.1 → 0.3.0
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.
- package/AUTH.md +25 -22
- package/CALLS.md +59 -22
- package/CHANGELOG.md +40 -2
- package/CONTRIBUTING.md +1 -160
- package/ENHANCE.md +2 -2
- package/README.md +32 -23
- package/SYSTEMINFO.md +15 -5
- package/adapter.js +601 -1773
- package/adapterBase.js +549 -879
- package/changelogs/changelog.md +54 -0
- package/entities/.system/action.json +2 -2
- package/entities/Rest/action.json +109 -109
- package/metadata.json +70 -0
- package/package.json +24 -28
- package/pronghorn.json +981 -642
- package/propertiesSchema.json +439 -39
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +15721 -0
- package/report/adapter-openapi.yaml +11633 -0
- package/report/adapterInfo.json +8 -8
- package/report/updateReport1691507399893.json +120 -0
- package/report/updateReport1692202434448.json +120 -0
- package/report/updateReport1694460669097.json +120 -0
- package/report/updateReport1698420502742.json +120 -0
- package/sampleProperties.json +68 -5
- package/test/integration/adapterTestBasicGet.js +2 -4
- package/test/integration/adapterTestConnectivity.js +91 -42
- package/test/integration/adapterTestIntegration.js +130 -2
- package/test/unit/adapterBaseTestUnit.js +388 -313
- package/test/unit/adapterTestUnit.js +338 -112
- package/utils/adapterInfo.js +1 -1
- package/utils/addAuth.js +1 -1
- package/utils/artifactize.js +1 -1
- package/utils/checkMigrate.js +1 -1
- package/utils/entitiesToDB.js +2 -2
- package/utils/findPath.js +1 -1
- package/utils/methodDocumentor.js +273 -0
- package/utils/modify.js +13 -15
- package/utils/packModificationScript.js +1 -1
- package/utils/pre-commit.sh +2 -0
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +89 -34
- package/utils/tbUtils.js +41 -21
- package/utils/testRunner.js +1 -1
- package/utils/troubleshootingAdapter.js +9 -6
- package/workflows/README.md +0 -3
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
|
|
2
|
+
## 0.2.2 [07-14-2022]
|
|
3
|
+
|
|
4
|
+
* patch/Auth - Auth changes
|
|
5
|
+
|
|
6
|
+
See merge request itentialopensource/adapters/cloud/adapter-amazon_route53!3
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 0.2.1 [06-24-2022]
|
|
11
|
+
|
|
12
|
+
- Auth Changes for Headers and Streamline
|
|
13
|
+
|
|
14
|
+
See merge request itentialopensource/adapters/cloud/adapter-amazon_route53!2
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## 0.2.0 [05-15-2022]
|
|
19
|
+
|
|
20
|
+
- Changes for STS Auth, IAM and Migration
|
|
21
|
+
- Add some items to .gitignore (e.g. DS_Store) to keep them out of the repos.
|
|
22
|
+
- Changes to the README (some typo fixes - Add how to extend the adapter). Split the README into various markdown files (AUTH, BROKER, CALLS, ENHANCE, PROPERTIES, SUMMARY, SYSTEMINFO, TROUBLESHOOT)
|
|
23
|
+
- Fix the issues with Confluence in the markdowns (Tables, Lists, Links)
|
|
24
|
+
- Add scripts for easier authentication, removing hooks, etc
|
|
25
|
+
- Script changes (install script as well as database changes in other scripts)
|
|
26
|
+
- Double # of path vars on generic call
|
|
27
|
+
- Update versions of foundation (e.g. adapter-utils)
|
|
28
|
+
- Update npm publish so it supports https
|
|
29
|
+
- Update dependencies
|
|
30
|
+
- Add preinstall for minimist
|
|
31
|
+
- Fix new lint issues that came from eslint dependency change
|
|
32
|
+
- Add more thorough Unit tests for standard files (Package, Pronghorn, Properties (Schema and Sample)
|
|
33
|
+
- Add the adapter type in the package.json
|
|
34
|
+
- Add AdapterInfo.js script
|
|
35
|
+
- Add json-query dependency
|
|
36
|
+
- Add the propertiesDecorators.json for product encryption
|
|
37
|
+
- Change the name of internal IAP/Adapter methods to avoid collisions and make more obvious in Workflow - iapRunAdapterBasicGet, iapRunAdapterConnectivity, iapRunAdapterHealthcheck, iapTroubleshootAdapter, iapGetAdapterQueue, iapUnsuspendAdapter, iapSuspendAdapter, iapFindAdapterPath, iapUpdateAdapterConfiguration, iapGetAdapterWorkflowFunctions
|
|
38
|
+
- Add the adapter config in the database support - iapMoveAdapterEntitiesToDB
|
|
39
|
+
- Add standard broker calls - hasEntities, getDevice, getDevicesFiltered, isAlive, getConfig and iapGetDeviceCount
|
|
40
|
+
- Add genericAdapterRequest that does not use the base_path and version so that the path can be unique - genericAdapterRequestNoBasePath
|
|
41
|
+
- Add AdapterInfo.json
|
|
42
|
+
- Add systemName for documentation
|
|
43
|
+
|
|
44
|
+
See merge request itentialopensource/adapters/cloud/adapter-amazon_route53!1
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## 0.1.1 [03-06-2022]
|
|
49
|
+
|
|
50
|
+
- Initial Commit
|
|
51
|
+
|
|
52
|
+
See commit ff30dcd
|
|
53
|
+
|
|
54
|
+
---
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"name": "healthcheck",
|
|
30
30
|
"protocol": "REST",
|
|
31
31
|
"method": "GET",
|
|
32
|
-
"entitypath": "{base_path}/{version}/
|
|
32
|
+
"entitypath": "{base_path}/{version}/healthcheckcount/?{query}",
|
|
33
33
|
"requestSchema": "schema.json",
|
|
34
34
|
"responseSchema": "schema.json",
|
|
35
35
|
"timeout": 0,
|
|
36
36
|
"sendEmpty": false,
|
|
37
37
|
"sendGetBody": false,
|
|
38
38
|
"requestDatatype": "",
|
|
39
|
-
"responseDatatype": "",
|
|
39
|
+
"responseDatatype": "XML2JSON",
|
|
40
40
|
"headers": {},
|
|
41
41
|
"responseObjects": [
|
|
42
42
|
{
|