@itentialopensource/adapter-alkira 0.5.2 → 0.5.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.
- package/CHANGELOG.md +16 -0
- package/TAB1.md +10 -0
- package/TAB2.md +4091 -0
- package/metadata.json +18 -4
- package/package.json +3 -3
- package/refs?service=git-upload-pack +0 -0
- package/test/unit/adapterTestUnit.js +1 -1
package/metadata.json
CHANGED
|
@@ -19,12 +19,26 @@
|
|
|
19
19
|
"Cloud"
|
|
20
20
|
],
|
|
21
21
|
"tags": [
|
|
22
|
-
"Cloud
|
|
22
|
+
"Cloud Infrastructure Changes",
|
|
23
|
+
"Hybrid & Multi Cloud Orchestration",
|
|
24
|
+
"Configuration & Compliance",
|
|
25
|
+
"Software Upgrades & Device Maintenance"
|
|
23
26
|
],
|
|
24
27
|
"useCases": [
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
+
"VNet or VPC deploy/management",
|
|
29
|
+
"Connect VPC and VNet",
|
|
30
|
+
"Connect router to transit gateway",
|
|
31
|
+
"Route across GCP & Azure",
|
|
32
|
+
"Connect sites across cloud platforms",
|
|
33
|
+
"Router configuration backup or restore",
|
|
34
|
+
"Run network compliance checks and remediation",
|
|
35
|
+
"Determine configuration drift",
|
|
36
|
+
"Golden Configuration",
|
|
37
|
+
"Port Turn-up",
|
|
38
|
+
"Assign Network & IP",
|
|
39
|
+
"Cloud Managed Networks",
|
|
40
|
+
"Software Upgrade",
|
|
41
|
+
"Device Onboarding"
|
|
28
42
|
],
|
|
29
43
|
"deprecated": {
|
|
30
44
|
"isDeprecated": false
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-alkira",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"description": "This adapter integrates with system described as: alkiraApi.",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"systemName": "Alkira",
|
|
@@ -54,10 +54,10 @@
|
|
|
54
54
|
"author": "Itential",
|
|
55
55
|
"homepage": "https://gitlab.com/itentialopensource/adapters/cloud/adapter-alkira#readme",
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@itentialopensource/adapter-utils": "^5.3.
|
|
57
|
+
"@itentialopensource/adapter-utils": "^5.3.10",
|
|
58
58
|
"acorn": "^8.10.0",
|
|
59
59
|
"ajv": "^8.12.0",
|
|
60
|
-
"axios": "^1.6.
|
|
60
|
+
"axios": "^1.6.8",
|
|
61
61
|
"commander": "^11.0.0",
|
|
62
62
|
"dns-lookup-promise": "^1.0.4",
|
|
63
63
|
"fs-extra": "^11.1.1",
|
|
Binary file
|
|
@@ -316,7 +316,7 @@ describe('[unit] Alkira Adapter Test', () => {
|
|
|
316
316
|
assert.notEqual(null, packageDotJson.dependencies);
|
|
317
317
|
assert.notEqual('', packageDotJson.dependencies);
|
|
318
318
|
assert.equal('^8.12.0', packageDotJson.dependencies.ajv);
|
|
319
|
-
assert.equal('^1.6.
|
|
319
|
+
assert.equal('^1.6.8', packageDotJson.dependencies.axios);
|
|
320
320
|
assert.equal('^11.0.0', packageDotJson.dependencies.commander);
|
|
321
321
|
assert.equal('^11.1.1', packageDotJson.dependencies['fs-extra']);
|
|
322
322
|
assert.equal('^10.3.0', packageDotJson.dependencies.mocha);
|