@itentialopensource/adapter-paragon_pathfinder 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.
- package/.eslintignore +6 -0
- package/.eslintrc.js +18 -0
- package/.gitlab/.gitkeep +0 -0
- package/.gitlab/issue_templates/.gitkeep +0 -0
- package/.gitlab/issue_templates/Default.md +17 -0
- package/.gitlab/issue_templates/bugReportTemplate.md +76 -0
- package/.gitlab/issue_templates/featureRequestTemplate.md +14 -0
- package/.jshintrc +0 -0
- package/AUTH.md +39 -0
- package/BROKER.md +199 -0
- package/CALLS.md +2982 -0
- package/CHANGELOG.md +9 -0
- package/CODE_OF_CONDUCT.md +43 -0
- package/CONTRIBUTING.md +172 -0
- package/ENHANCE.md +69 -0
- package/LICENSE +201 -0
- package/PROPERTIES.md +641 -0
- package/README.md +337 -0
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +11 -0
- package/TROUBLESHOOT.md +47 -0
- package/adapter.js +40341 -0
- package/adapterBase.js +1787 -0
- package/entities/.generic/action.json +214 -0
- package/entities/.generic/schema.json +28 -0
- package/entities/.system/action.json +50 -0
- package/entities/.system/mockdatafiles/getToken-default.json +49 -0
- package/entities/.system/mockdatafiles/healthcheck-default.json +3 -0
- package/entities/.system/schema.json +19 -0
- package/entities/.system/schemaTokenReq.json +94 -0
- package/entities/.system/schemaTokenResp.json +65 -0
- package/entities/Authentication/action.json +45 -0
- package/entities/Authentication/schema.json +20 -0
- package/entities/Authorization/action.json +105 -0
- package/entities/Authorization/schema.json +23 -0
- package/entities/CommandService/action.json +44 -0
- package/entities/CommandService/schema.json +20 -0
- package/entities/ConfigOperationService/action.json +184 -0
- package/entities/ConfigOperationService/schema.json +27 -0
- package/entities/ConfigResourceService/action.json +964 -0
- package/entities/ConfigResourceService/schema.json +66 -0
- package/entities/ConfigTemplateService/action.json +345 -0
- package/entities/ConfigTemplateService/schema.json +266 -0
- package/entities/DeviceLCMService/action.json +44 -0
- package/entities/DeviceLCMService/schema.json +20 -0
- package/entities/DeviceOnboardingService/action.json +105 -0
- package/entities/DeviceOnboardingService/schema.json +23 -0
- package/entities/DevicemanagerService/action.json +1770 -0
- package/entities/DevicemanagerService/schema.json +402 -0
- package/entities/DevicemodelService/action.json +2114 -0
- package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportComponent-default.json +49 -0
- package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportDevice-default.json +29 -0
- package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportDeviceView-default.json +53 -0
- package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportInterface-default.json +21 -0
- package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportLicense-default.json +45 -0
- package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportLicenseFeature-default.json +41 -0
- package/entities/DevicemodelService/schema.json +419 -0
- package/entities/IamRPCService/action.json +872 -0
- package/entities/IamRPCService/schema.json +325 -0
- package/entities/IamService/action.json +2740 -0
- package/entities/IamService/mockdatafiles/iamServiceExportUserView-default.json +53 -0
- package/entities/IamService/schema.json +670 -0
- package/entities/InventoryService/action.json +164 -0
- package/entities/InventoryService/schema.json +26 -0
- package/error.json +190 -0
- package/package.json +87 -0
- package/pronghorn.json +100351 -0
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +1246 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +10 -0
- package/report/creationReport.json +2690 -0
- package/report/output.swagger.json +69945 -0
- package/sampleProperties.json +203 -0
- package/test/integration/adapterTestBasicGet.js +83 -0
- package/test/integration/adapterTestConnectivity.js +93 -0
- package/test/integration/adapterTestIntegration.js +35598 -0
- package/test/unit/adapterBaseTestUnit.js +949 -0
- package/test/unit/adapterTestUnit.js +14616 -0
- package/utils/adapterInfo.js +206 -0
- package/utils/addAuth.js +94 -0
- package/utils/artifactize.js +146 -0
- package/utils/basicGet.js +50 -0
- package/utils/checkMigrate.js +63 -0
- package/utils/entitiesToDB.js +178 -0
- package/utils/findPath.js +74 -0
- package/utils/methodDocumentor.js +225 -0
- package/utils/modify.js +154 -0
- package/utils/packModificationScript.js +35 -0
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +32 -0
- package/utils/removeHooks.js +20 -0
- package/utils/setup.js +33 -0
- package/utils/tbScript.js +246 -0
- package/utils/tbUtils.js +490 -0
- package/utils/testRunner.js +298 -0
- package/utils/troubleshootingAdapter.js +195 -0
- package/workflows/README.md +3 -0
package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportComponent-default.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"result": {
|
|
3
|
+
"data": "string"
|
|
4
|
+
},
|
|
5
|
+
"error": {
|
|
6
|
+
"message": "string",
|
|
7
|
+
"grpcCode": 8,
|
|
8
|
+
"httpStatus": "string",
|
|
9
|
+
"details": [
|
|
10
|
+
{
|
|
11
|
+
"typeUrl": "string",
|
|
12
|
+
"value": "string"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"typeUrl": "string",
|
|
16
|
+
"value": "string"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"typeUrl": "string",
|
|
20
|
+
"value": "string"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"typeUrl": "string",
|
|
24
|
+
"value": "string"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"typeUrl": "string",
|
|
28
|
+
"value": "string"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"typeUrl": "string",
|
|
32
|
+
"value": "string"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"typeUrl": "string",
|
|
36
|
+
"value": "string"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"typeUrl": "string",
|
|
40
|
+
"value": "string"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"typeUrl": "string",
|
|
44
|
+
"value": "string"
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"httpCode": 6
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"result": {
|
|
3
|
+
"data": "string"
|
|
4
|
+
},
|
|
5
|
+
"error": {
|
|
6
|
+
"message": "string",
|
|
7
|
+
"grpcCode": 7,
|
|
8
|
+
"httpStatus": "string",
|
|
9
|
+
"details": [
|
|
10
|
+
{
|
|
11
|
+
"typeUrl": "string",
|
|
12
|
+
"value": "string"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"typeUrl": "string",
|
|
16
|
+
"value": "string"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"typeUrl": "string",
|
|
20
|
+
"value": "string"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"typeUrl": "string",
|
|
24
|
+
"value": "string"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"httpCode": 2
|
|
28
|
+
}
|
|
29
|
+
}
|
package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportDeviceView-default.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"result": {
|
|
3
|
+
"data": "string"
|
|
4
|
+
},
|
|
5
|
+
"error": {
|
|
6
|
+
"message": "string",
|
|
7
|
+
"grpcCode": 8,
|
|
8
|
+
"httpStatus": "string",
|
|
9
|
+
"details": [
|
|
10
|
+
{
|
|
11
|
+
"typeUrl": "string",
|
|
12
|
+
"value": "string"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"typeUrl": "string",
|
|
16
|
+
"value": "string"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"typeUrl": "string",
|
|
20
|
+
"value": "string"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"typeUrl": "string",
|
|
24
|
+
"value": "string"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"typeUrl": "string",
|
|
28
|
+
"value": "string"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"typeUrl": "string",
|
|
32
|
+
"value": "string"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"typeUrl": "string",
|
|
36
|
+
"value": "string"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"typeUrl": "string",
|
|
40
|
+
"value": "string"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"typeUrl": "string",
|
|
44
|
+
"value": "string"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"typeUrl": "string",
|
|
48
|
+
"value": "string"
|
|
49
|
+
}
|
|
50
|
+
],
|
|
51
|
+
"httpCode": 1
|
|
52
|
+
}
|
|
53
|
+
}
|
package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportInterface-default.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"result": {
|
|
3
|
+
"data": "string"
|
|
4
|
+
},
|
|
5
|
+
"error": {
|
|
6
|
+
"message": "string",
|
|
7
|
+
"grpcCode": 4,
|
|
8
|
+
"httpStatus": "string",
|
|
9
|
+
"details": [
|
|
10
|
+
{
|
|
11
|
+
"typeUrl": "string",
|
|
12
|
+
"value": "string"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"typeUrl": "string",
|
|
16
|
+
"value": "string"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"httpCode": 6
|
|
20
|
+
}
|
|
21
|
+
}
|
package/entities/DevicemodelService/mockdatafiles/devicemodelServiceExportLicense-default.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"result": {
|
|
3
|
+
"data": "string"
|
|
4
|
+
},
|
|
5
|
+
"error": {
|
|
6
|
+
"message": "string",
|
|
7
|
+
"grpcCode": 4,
|
|
8
|
+
"httpStatus": "string",
|
|
9
|
+
"details": [
|
|
10
|
+
{
|
|
11
|
+
"typeUrl": "string",
|
|
12
|
+
"value": "string"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"typeUrl": "string",
|
|
16
|
+
"value": "string"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"typeUrl": "string",
|
|
20
|
+
"value": "string"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"typeUrl": "string",
|
|
24
|
+
"value": "string"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"typeUrl": "string",
|
|
28
|
+
"value": "string"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"typeUrl": "string",
|
|
32
|
+
"value": "string"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"typeUrl": "string",
|
|
36
|
+
"value": "string"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"typeUrl": "string",
|
|
40
|
+
"value": "string"
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"httpCode": 3
|
|
44
|
+
}
|
|
45
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"result": {
|
|
3
|
+
"data": "string"
|
|
4
|
+
},
|
|
5
|
+
"error": {
|
|
6
|
+
"message": "string",
|
|
7
|
+
"grpcCode": 4,
|
|
8
|
+
"httpStatus": "string",
|
|
9
|
+
"details": [
|
|
10
|
+
{
|
|
11
|
+
"typeUrl": "string",
|
|
12
|
+
"value": "string"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"typeUrl": "string",
|
|
16
|
+
"value": "string"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"typeUrl": "string",
|
|
20
|
+
"value": "string"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"typeUrl": "string",
|
|
24
|
+
"value": "string"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"typeUrl": "string",
|
|
28
|
+
"value": "string"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"typeUrl": "string",
|
|
32
|
+
"value": "string"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"typeUrl": "string",
|
|
36
|
+
"value": "string"
|
|
37
|
+
}
|
|
38
|
+
],
|
|
39
|
+
"httpCode": 1
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -0,0 +1,419 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$id": "schema.json",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"schema": "http://json-schema.org/draft-07/schema#",
|
|
5
|
+
"translate": true,
|
|
6
|
+
"dynamicfields": true,
|
|
7
|
+
"properties": {
|
|
8
|
+
"ph_request_type": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"description": "type of request (internal to adapter)",
|
|
11
|
+
"default": "devicemodelServiceCreateDeviceTagRef",
|
|
12
|
+
"enum": [
|
|
13
|
+
"devicemodelServiceCreateDeviceTagRef",
|
|
14
|
+
"devicemodelServiceUpdateDeviceOperationalState",
|
|
15
|
+
"devicemodelServiceDeleteDeviceOperationalState",
|
|
16
|
+
"devicemodelServiceGetDeviceOperationalState",
|
|
17
|
+
"devicemodelServiceBulkListConnector",
|
|
18
|
+
"devicemodelServiceExportLicenseFeature",
|
|
19
|
+
"devicemodelServiceCreateLicense",
|
|
20
|
+
"devicemodelServiceListLicense",
|
|
21
|
+
"devicemodelServiceUpdateConnector",
|
|
22
|
+
"devicemodelServiceDeleteConnector",
|
|
23
|
+
"devicemodelServiceGetConnector",
|
|
24
|
+
"devicemodelServiceCreateLicenseLicenseFeatureRef",
|
|
25
|
+
"devicemodelServiceBulkListLicense",
|
|
26
|
+
"devicemodelServiceExportInterface",
|
|
27
|
+
"devicemodelServiceSync",
|
|
28
|
+
"devicemodelServiceBulkExtRefUpdate",
|
|
29
|
+
"devicemodelServiceExportComponent",
|
|
30
|
+
"devicemodelServiceUpdateDeviceFamily",
|
|
31
|
+
"devicemodelServiceDeleteDeviceFamily",
|
|
32
|
+
"devicemodelServiceGetDeviceFamily",
|
|
33
|
+
"devicemodelServiceBulkListCertificate",
|
|
34
|
+
"devicemodelServiceCreateSubinterface",
|
|
35
|
+
"devicemodelServiceListSubinterface",
|
|
36
|
+
"devicemodelServiceBulkListTag",
|
|
37
|
+
"devicemodelServiceBulkListCaCertificate",
|
|
38
|
+
"devicemodelServiceUpdateCertificate",
|
|
39
|
+
"devicemodelServiceDeleteCertificate",
|
|
40
|
+
"devicemodelServiceGetCertificate",
|
|
41
|
+
"devicemodelServiceCreateLicenseFeature",
|
|
42
|
+
"devicemodelServiceListLicenseFeature",
|
|
43
|
+
"devicemodelServiceCreateComponent",
|
|
44
|
+
"devicemodelServiceListComponent",
|
|
45
|
+
"devicemodelServiceCreateInterface",
|
|
46
|
+
"devicemodelServiceListInterface",
|
|
47
|
+
"devicemodelServiceCreateCertificate",
|
|
48
|
+
"devicemodelServiceListCertificate",
|
|
49
|
+
"devicemodelServiceCreateDeletedResource",
|
|
50
|
+
"devicemodelServiceListDeletedResource",
|
|
51
|
+
"devicemodelServiceBulkListDeviceView",
|
|
52
|
+
"devicemodelServiceCreateConnector",
|
|
53
|
+
"devicemodelServiceListConnector",
|
|
54
|
+
"devicemodelServiceUpdateLastPublishedNotification",
|
|
55
|
+
"devicemodelServiceDeleteLastPublishedNotification",
|
|
56
|
+
"devicemodelServiceGetLastPublishedNotification",
|
|
57
|
+
"devicemodelServiceExportLicense",
|
|
58
|
+
"devicemodelServiceUpdateDeletedResource",
|
|
59
|
+
"devicemodelServiceDeleteDeletedResource",
|
|
60
|
+
"devicemodelServiceGetDeletedResource",
|
|
61
|
+
"devicemodelServiceCreateLastPublishedNotification",
|
|
62
|
+
"devicemodelServiceListLastPublishedNotification",
|
|
63
|
+
"devicemodelServiceCreateDeviceOperationalState",
|
|
64
|
+
"devicemodelServiceListDeviceOperationalState",
|
|
65
|
+
"devicemodelServiceTagDevice",
|
|
66
|
+
"devicemodelServiceBulkRefUpdate",
|
|
67
|
+
"devicemodelServiceExportDevice",
|
|
68
|
+
"devicemodelServiceBulkListInterface",
|
|
69
|
+
"devicemodelServiceUpdateDevice",
|
|
70
|
+
"devicemodelServiceDeleteDevice",
|
|
71
|
+
"devicemodelServiceGetDevice",
|
|
72
|
+
"devicemodelServiceDeleteDeviceTagRef",
|
|
73
|
+
"devicemodelServiceUpdateTag",
|
|
74
|
+
"devicemodelServiceDeleteTag",
|
|
75
|
+
"devicemodelServiceGetTag",
|
|
76
|
+
"devicemodelServiceRefUpdate",
|
|
77
|
+
"devicemodelServiceUpdateInterface",
|
|
78
|
+
"devicemodelServiceDeleteInterface",
|
|
79
|
+
"devicemodelServiceGetInterface",
|
|
80
|
+
"devicemodelServiceListDeviceView",
|
|
81
|
+
"devicemodelServiceBulkListDeviceOperationalState",
|
|
82
|
+
"devicemodelServiceUpdateSubinterface",
|
|
83
|
+
"devicemodelServiceDeleteSubinterface",
|
|
84
|
+
"devicemodelServiceGetSubinterface",
|
|
85
|
+
"devicemodelServiceBulkListDeletedResource",
|
|
86
|
+
"devicemodelServiceUpdateCaCertificate",
|
|
87
|
+
"devicemodelServiceDeleteCaCertificate",
|
|
88
|
+
"devicemodelServiceGetCaCertificate",
|
|
89
|
+
"devicemodelServiceCreateDeviceFamily",
|
|
90
|
+
"devicemodelServiceListDeviceFamily",
|
|
91
|
+
"devicemodelServiceCreateTag",
|
|
92
|
+
"devicemodelServiceListTag",
|
|
93
|
+
"devicemodelServiceDeleteLicenseLicenseFeatureRef",
|
|
94
|
+
"devicemodelServiceBulkListLicenseFeature",
|
|
95
|
+
"devicemodelServiceUntagDevice",
|
|
96
|
+
"devicemodelServiceUpdateLicense",
|
|
97
|
+
"devicemodelServiceDeleteLicense",
|
|
98
|
+
"devicemodelServiceGetLicense",
|
|
99
|
+
"devicemodelServiceExportDeviceView",
|
|
100
|
+
"devicemodelServiceBulkListDevice",
|
|
101
|
+
"devicemodelServiceExtRefUpdate",
|
|
102
|
+
"devicemodelServiceBulkListDeviceFamily",
|
|
103
|
+
"devicemodelServiceBulkListComponent",
|
|
104
|
+
"devicemodelServiceUpdateLicenseFeature",
|
|
105
|
+
"devicemodelServiceDeleteLicenseFeature",
|
|
106
|
+
"devicemodelServiceGetLicenseFeature",
|
|
107
|
+
"devicemodelServiceGetDeviceView",
|
|
108
|
+
"devicemodelServiceCreateDevice",
|
|
109
|
+
"devicemodelServiceListDevice",
|
|
110
|
+
"devicemodelServiceBulkListSubinterface",
|
|
111
|
+
"devicemodelServiceBulkListLastPublishedNotification",
|
|
112
|
+
"devicemodelServiceUpdateComponent",
|
|
113
|
+
"devicemodelServiceDeleteComponent",
|
|
114
|
+
"devicemodelServiceGetComponent",
|
|
115
|
+
"devicemodelServiceCreateCaCertificate",
|
|
116
|
+
"devicemodelServiceListCaCertificate"
|
|
117
|
+
],
|
|
118
|
+
"external_name": "ph_request_type"
|
|
119
|
+
},
|
|
120
|
+
"iD": {
|
|
121
|
+
"type": "string",
|
|
122
|
+
"description": "",
|
|
123
|
+
"parse": false,
|
|
124
|
+
"encode": false,
|
|
125
|
+
"encrypt": {
|
|
126
|
+
"type": "AES",
|
|
127
|
+
"key": ""
|
|
128
|
+
},
|
|
129
|
+
"external_name": "ID"
|
|
130
|
+
},
|
|
131
|
+
"refFields": {
|
|
132
|
+
"type": "array",
|
|
133
|
+
"description": "limit displayed reference fields.",
|
|
134
|
+
"parse": false,
|
|
135
|
+
"encode": false,
|
|
136
|
+
"encrypt": {
|
|
137
|
+
"type": "AES",
|
|
138
|
+
"key": ""
|
|
139
|
+
},
|
|
140
|
+
"external_name": "ref_fields"
|
|
141
|
+
},
|
|
142
|
+
"specSize": {
|
|
143
|
+
"type": "string",
|
|
144
|
+
"description": "Number of items expected to be returned.",
|
|
145
|
+
"parse": false,
|
|
146
|
+
"encode": false,
|
|
147
|
+
"encrypt": {
|
|
148
|
+
"type": "AES",
|
|
149
|
+
"key": ""
|
|
150
|
+
},
|
|
151
|
+
"external_name": "spec.size"
|
|
152
|
+
},
|
|
153
|
+
"specPageMarker": {
|
|
154
|
+
"type": "string",
|
|
155
|
+
"description": "Include only objects with UUID lexically greater than this.",
|
|
156
|
+
"parse": false,
|
|
157
|
+
"encode": false,
|
|
158
|
+
"encrypt": {
|
|
159
|
+
"type": "AES",
|
|
160
|
+
"key": ""
|
|
161
|
+
},
|
|
162
|
+
"external_name": "spec.page_marker"
|
|
163
|
+
},
|
|
164
|
+
"specDetail": {
|
|
165
|
+
"type": "boolean",
|
|
166
|
+
"description": "Include detail informatoin or not.",
|
|
167
|
+
"parse": false,
|
|
168
|
+
"encode": false,
|
|
169
|
+
"encrypt": {
|
|
170
|
+
"type": "AES",
|
|
171
|
+
"key": ""
|
|
172
|
+
},
|
|
173
|
+
"external_name": "spec.detail"
|
|
174
|
+
},
|
|
175
|
+
"specCount": {
|
|
176
|
+
"type": "boolean",
|
|
177
|
+
"description": "",
|
|
178
|
+
"parse": false,
|
|
179
|
+
"encode": false,
|
|
180
|
+
"encrypt": {
|
|
181
|
+
"type": "AES",
|
|
182
|
+
"key": ""
|
|
183
|
+
},
|
|
184
|
+
"external_name": "spec.count"
|
|
185
|
+
},
|
|
186
|
+
"specExcludeShared": {
|
|
187
|
+
"type": "boolean",
|
|
188
|
+
"description": "Include shared resources or not.",
|
|
189
|
+
"parse": false,
|
|
190
|
+
"encode": false,
|
|
191
|
+
"encrypt": {
|
|
192
|
+
"type": "AES",
|
|
193
|
+
"key": ""
|
|
194
|
+
},
|
|
195
|
+
"external_name": "spec.exclude_shared"
|
|
196
|
+
},
|
|
197
|
+
"specExcludeHrefs": {
|
|
198
|
+
"type": "boolean",
|
|
199
|
+
"description": "Exclude href parameters.",
|
|
200
|
+
"parse": false,
|
|
201
|
+
"encode": false,
|
|
202
|
+
"encrypt": {
|
|
203
|
+
"type": "AES",
|
|
204
|
+
"key": ""
|
|
205
|
+
},
|
|
206
|
+
"external_name": "spec.exclude_hrefs"
|
|
207
|
+
},
|
|
208
|
+
"specParentFqNameStr": {
|
|
209
|
+
"type": "array",
|
|
210
|
+
"description": "Filter by parent FQ Name.",
|
|
211
|
+
"parse": false,
|
|
212
|
+
"encode": false,
|
|
213
|
+
"encrypt": {
|
|
214
|
+
"type": "AES",
|
|
215
|
+
"key": ""
|
|
216
|
+
},
|
|
217
|
+
"external_name": "spec.parent_fq_name_str"
|
|
218
|
+
},
|
|
219
|
+
"specParentType": {
|
|
220
|
+
"type": "string",
|
|
221
|
+
"description": "Filter by parent type.",
|
|
222
|
+
"parse": false,
|
|
223
|
+
"encode": false,
|
|
224
|
+
"encrypt": {
|
|
225
|
+
"type": "AES",
|
|
226
|
+
"key": ""
|
|
227
|
+
},
|
|
228
|
+
"external_name": "spec.parent_type"
|
|
229
|
+
},
|
|
230
|
+
"specParentId": {
|
|
231
|
+
"type": "array",
|
|
232
|
+
"description": "Filter by parent UUIDs.",
|
|
233
|
+
"parse": false,
|
|
234
|
+
"encode": false,
|
|
235
|
+
"encrypt": {
|
|
236
|
+
"type": "AES",
|
|
237
|
+
"key": ""
|
|
238
|
+
},
|
|
239
|
+
"external_name": "spec.parent_id"
|
|
240
|
+
},
|
|
241
|
+
"specBackRefId": {
|
|
242
|
+
"type": "array",
|
|
243
|
+
"description": "Filter by backref UUIDss.",
|
|
244
|
+
"parse": false,
|
|
245
|
+
"encode": false,
|
|
246
|
+
"encrypt": {
|
|
247
|
+
"type": "AES",
|
|
248
|
+
"key": ""
|
|
249
|
+
},
|
|
250
|
+
"external_name": "spec.back_ref_id"
|
|
251
|
+
},
|
|
252
|
+
"specObjUuids": {
|
|
253
|
+
"type": "array",
|
|
254
|
+
"description": "Filter by UUIDs.",
|
|
255
|
+
"parse": false,
|
|
256
|
+
"encode": false,
|
|
257
|
+
"encrypt": {
|
|
258
|
+
"type": "AES",
|
|
259
|
+
"key": ""
|
|
260
|
+
},
|
|
261
|
+
"external_name": "spec.obj_uuids"
|
|
262
|
+
},
|
|
263
|
+
"specFields": {
|
|
264
|
+
"type": "array",
|
|
265
|
+
"description": "limit displayed fields.",
|
|
266
|
+
"parse": false,
|
|
267
|
+
"encode": false,
|
|
268
|
+
"encrypt": {
|
|
269
|
+
"type": "AES",
|
|
270
|
+
"key": ""
|
|
271
|
+
},
|
|
272
|
+
"external_name": "spec.fields"
|
|
273
|
+
},
|
|
274
|
+
"specFilters": {
|
|
275
|
+
"type": "array",
|
|
276
|
+
"description": "QueryFilter in string format.\nGrpc-gateway doesn't have support for nested structs and maps so\nintroducing new fields which will take string as input.",
|
|
277
|
+
"parse": false,
|
|
278
|
+
"encode": false,
|
|
279
|
+
"encrypt": {
|
|
280
|
+
"type": "AES",
|
|
281
|
+
"key": ""
|
|
282
|
+
},
|
|
283
|
+
"external_name": "spec.filters"
|
|
284
|
+
},
|
|
285
|
+
"specRefUuids": {
|
|
286
|
+
"type": "array",
|
|
287
|
+
"description": "Filter by ref UUIDss.",
|
|
288
|
+
"parse": false,
|
|
289
|
+
"encode": false,
|
|
290
|
+
"encrypt": {
|
|
291
|
+
"type": "AES",
|
|
292
|
+
"key": ""
|
|
293
|
+
},
|
|
294
|
+
"external_name": "spec.ref_uuids"
|
|
295
|
+
},
|
|
296
|
+
"specFrom": {
|
|
297
|
+
"type": "string",
|
|
298
|
+
"description": "Start from items expected to be returned.",
|
|
299
|
+
"parse": false,
|
|
300
|
+
"encode": false,
|
|
301
|
+
"encrypt": {
|
|
302
|
+
"type": "AES",
|
|
303
|
+
"key": ""
|
|
304
|
+
},
|
|
305
|
+
"external_name": "spec.from"
|
|
306
|
+
},
|
|
307
|
+
"specSortby": {
|
|
308
|
+
"type": "string",
|
|
309
|
+
"description": "Sort by column with ascending or descending by default ascending.",
|
|
310
|
+
"parse": false,
|
|
311
|
+
"encode": false,
|
|
312
|
+
"encrypt": {
|
|
313
|
+
"type": "AES",
|
|
314
|
+
"key": ""
|
|
315
|
+
},
|
|
316
|
+
"external_name": "spec.sortby"
|
|
317
|
+
},
|
|
318
|
+
"specOperation": {
|
|
319
|
+
"type": "string",
|
|
320
|
+
"description": "Operation determines whether union or interjection.",
|
|
321
|
+
"parse": false,
|
|
322
|
+
"encode": false,
|
|
323
|
+
"encrypt": {
|
|
324
|
+
"type": "AES",
|
|
325
|
+
"key": ""
|
|
326
|
+
},
|
|
327
|
+
"external_name": "spec.operation"
|
|
328
|
+
},
|
|
329
|
+
"specTagFilters": {
|
|
330
|
+
"type": "array",
|
|
331
|
+
"description": "Filter by Tag Fields.",
|
|
332
|
+
"parse": false,
|
|
333
|
+
"encode": false,
|
|
334
|
+
"encrypt": {
|
|
335
|
+
"type": "AES",
|
|
336
|
+
"key": ""
|
|
337
|
+
},
|
|
338
|
+
"external_name": "spec.tag_filters"
|
|
339
|
+
},
|
|
340
|
+
"specTagDetail": {
|
|
341
|
+
"type": "boolean",
|
|
342
|
+
"description": "Include Tag Details or not.",
|
|
343
|
+
"parse": false,
|
|
344
|
+
"encode": false,
|
|
345
|
+
"encrypt": {
|
|
346
|
+
"type": "AES",
|
|
347
|
+
"key": ""
|
|
348
|
+
},
|
|
349
|
+
"external_name": "spec.tag_detail"
|
|
350
|
+
},
|
|
351
|
+
"specRefFields": {
|
|
352
|
+
"type": "array",
|
|
353
|
+
"description": "limit displayed reference fields.",
|
|
354
|
+
"parse": false,
|
|
355
|
+
"encode": false,
|
|
356
|
+
"encrypt": {
|
|
357
|
+
"type": "AES",
|
|
358
|
+
"key": ""
|
|
359
|
+
},
|
|
360
|
+
"external_name": "spec.ref_fields"
|
|
361
|
+
},
|
|
362
|
+
"specExtRefUuids": {
|
|
363
|
+
"type": "array",
|
|
364
|
+
"description": "Filter by External Ref UUIDss.",
|
|
365
|
+
"parse": false,
|
|
366
|
+
"encode": false,
|
|
367
|
+
"encrypt": {
|
|
368
|
+
"type": "AES",
|
|
369
|
+
"key": ""
|
|
370
|
+
},
|
|
371
|
+
"external_name": "spec.ext_ref_uuids"
|
|
372
|
+
},
|
|
373
|
+
"deviceTagRefUuid": {
|
|
374
|
+
"type": "string",
|
|
375
|
+
"description": "",
|
|
376
|
+
"parse": false,
|
|
377
|
+
"encode": false,
|
|
378
|
+
"encrypt": {
|
|
379
|
+
"type": "AES",
|
|
380
|
+
"key": ""
|
|
381
|
+
},
|
|
382
|
+
"external_name": "device_tag_ref.uuid"
|
|
383
|
+
},
|
|
384
|
+
"deviceTagRefHref": {
|
|
385
|
+
"type": "string",
|
|
386
|
+
"description": "",
|
|
387
|
+
"parse": false,
|
|
388
|
+
"encode": false,
|
|
389
|
+
"encrypt": {
|
|
390
|
+
"type": "AES",
|
|
391
|
+
"key": ""
|
|
392
|
+
},
|
|
393
|
+
"external_name": "device_tag_ref.href"
|
|
394
|
+
},
|
|
395
|
+
"licenseLicenseFeatureRefUuid": {
|
|
396
|
+
"type": "string",
|
|
397
|
+
"description": "",
|
|
398
|
+
"parse": false,
|
|
399
|
+
"encode": false,
|
|
400
|
+
"encrypt": {
|
|
401
|
+
"type": "AES",
|
|
402
|
+
"key": ""
|
|
403
|
+
},
|
|
404
|
+
"external_name": "license_license_feature_ref.uuid"
|
|
405
|
+
},
|
|
406
|
+
"licenseLicenseFeatureRefHref": {
|
|
407
|
+
"type": "string",
|
|
408
|
+
"description": "",
|
|
409
|
+
"parse": false,
|
|
410
|
+
"encode": false,
|
|
411
|
+
"encrypt": {
|
|
412
|
+
"type": "AES",
|
|
413
|
+
"key": ""
|
|
414
|
+
},
|
|
415
|
+
"external_name": "license_license_feature_ref.href"
|
|
416
|
+
}
|
|
417
|
+
},
|
|
418
|
+
"definitions": {}
|
|
419
|
+
}
|