@itentialopensource/adapter-f5_bigiq 0.5.0 → 0.5.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.
- package/CALLS.md +210 -0
- package/CHANGELOG.md +16 -0
- package/TAB2.md +2 -2
- package/adapter.js +2967 -0
- package/compliance-report.json +9 -0
- package/compliance-report.txt +5 -0
- package/entities/LicenseManagement/action.json +719 -0
- package/entities/LicenseManagement/schema.json +53 -0
- package/metadata.json +2 -1
- package/package.json +9 -9
- package/pronghorn.json +1355 -27
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +6 -6
- package/report/license-mgmt-openapi.json +1145 -0
- package/test/integration/adapterTestIntegration.js +890 -0
- package/test/unit/adapterTestUnit.js +1293 -6
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$id": "schema.json",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"schema": "http://json-schema.org/draft-07/schema#",
|
|
5
|
+
"translate": false,
|
|
6
|
+
"dynamicfields": true,
|
|
7
|
+
"properties": {
|
|
8
|
+
"ph_request_type": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"description": "type of request (internal to adapter)",
|
|
11
|
+
"default": "initialLicenseActivation",
|
|
12
|
+
"enum": [
|
|
13
|
+
"initialLicenseActivation",
|
|
14
|
+
"pollInitialLicenseActivation",
|
|
15
|
+
"completeInitialActivation",
|
|
16
|
+
"removeFailedInitialActivation",
|
|
17
|
+
"getLicenseReference",
|
|
18
|
+
"reactivateLicense",
|
|
19
|
+
"deletePurchasedPoolLicense",
|
|
20
|
+
"assignOrRevokeLicense",
|
|
21
|
+
"pollTaskForCompletion",
|
|
22
|
+
"viewOutstandingAssignments",
|
|
23
|
+
"queryExistingPurchasedLicenses",
|
|
24
|
+
"activateNewPurchasedPoolLicense",
|
|
25
|
+
"queryPurchasedPoolLicenseAssignments",
|
|
26
|
+
"assignPurchasedPoolLicenseMembers",
|
|
27
|
+
"queryPurchasedPoolLicenseAssignmentStatus",
|
|
28
|
+
"refreshPurchasedPoolLicenseOnBigIPDevice",
|
|
29
|
+
"revokeAPurchasedPoolLicense",
|
|
30
|
+
"queryExistingRegKeyPools",
|
|
31
|
+
"createRegKeyPool",
|
|
32
|
+
"updateRegKeyPool",
|
|
33
|
+
"removeRegKeyPool",
|
|
34
|
+
"queryExistingLicenseKeysForRegKeyPool",
|
|
35
|
+
"addLicenseKey",
|
|
36
|
+
"pollForRegKeyActivationStatus",
|
|
37
|
+
"completeRegKeyActivation",
|
|
38
|
+
"deleteRegistrationKey",
|
|
39
|
+
"getRegistrationKeyAssignment",
|
|
40
|
+
"assignRegistrationKeyToDevice",
|
|
41
|
+
"getRegistrationKeyAssignmentStatus",
|
|
42
|
+
"revokedRegistrationKeyFromDevice",
|
|
43
|
+
"setLicenseText",
|
|
44
|
+
"getLicenseText",
|
|
45
|
+
"createUtilityBillingLicenseReport",
|
|
46
|
+
"getUtilityBillingReportStatus",
|
|
47
|
+
"downloadUtilityBillingReport"
|
|
48
|
+
],
|
|
49
|
+
"external_name": "ph_request_type"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"definitions": {}
|
|
53
|
+
}
|
package/metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-f5_bigiq",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "This adapter integrates with system described as: f5Big-iqApi.",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"wizardVersion": "2.44.7",
|
|
@@ -54,22 +54,22 @@
|
|
|
54
54
|
"author": "Itential",
|
|
55
55
|
"homepage": "https://gitlab.com/itentialopensource/adapters/adapter-f5_bigiq#readme",
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@itentialopensource/adapter-utils": "^5.
|
|
58
|
-
"acorn": "^8.
|
|
59
|
-
"ajv": "^8.
|
|
60
|
-
"axios": "^1.
|
|
57
|
+
"@itentialopensource/adapter-utils": "^5.6.0",
|
|
58
|
+
"acorn": "^8.12.1",
|
|
59
|
+
"ajv": "^8.17.1",
|
|
60
|
+
"axios": "^1.7.2",
|
|
61
61
|
"commander": "^11.0.0",
|
|
62
62
|
"dns-lookup-promise": "^1.0.4",
|
|
63
|
-
"fs-extra": "^11.
|
|
63
|
+
"fs-extra": "^11.2.0",
|
|
64
64
|
"json-query": "^2.2.2",
|
|
65
|
-
"mocha": "^10.
|
|
65
|
+
"mocha": "^10.7.0",
|
|
66
66
|
"mocha-param": "^2.0.1",
|
|
67
67
|
"mongodb": "^4.16.0",
|
|
68
68
|
"ping": "^0.4.4",
|
|
69
69
|
"prompts": "^2.4.2",
|
|
70
70
|
"readline-sync": "^1.4.10",
|
|
71
|
-
"semver": "^7.
|
|
72
|
-
"winston": "^3.
|
|
71
|
+
"semver": "^7.6.3",
|
|
72
|
+
"winston": "^3.13.1"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@babel/helper-function-name": "^7.14.2",
|