@itentialopensource/adapter-sevone 2.2.4 → 2.4.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 +39 -0
- package/BROKER.md +199 -0
- package/CALLS.md +169 -0
- package/CHANGELOG.md +59 -89
- package/CODE_OF_CONDUCT.md +12 -17
- package/CONTRIBUTING.md +88 -74
- package/ENHANCE.md +69 -0
- package/PROPERTIES.md +641 -0
- package/README.md +225 -502
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +11 -0
- package/TROUBLESHOOT.md +47 -0
- package/adapter.js +18786 -55
- package/adapterBase.js +1021 -245
- package/entities/.generic/action.json +110 -5
- package/entities/.generic/schema.json +6 -1
- package/entities/ApiKeys/action.json +206 -0
- package/entities/ApiKeys/mockdatafiles/createApiKey-default.json +7 -0
- package/entities/ApiKeys/mockdatafiles/createApiKeyForUser-default.json +7 -0
- package/entities/ApiKeys/mockdatafiles/getApiKeys-default.json +9 -0
- package/entities/ApiKeys/mockdatafiles/getApiKeysForUser-default.json +23 -0
- package/entities/ApiKeys/mockdatafiles/updateApiKey-default.json +7 -0
- package/entities/ApiKeys/mockdatafiles/updateApiKeyForUser-default.json +7 -0
- package/entities/ApiKeys/schema.json +28 -0
- package/entities/Application/action.json +66 -0
- package/entities/Application/mockdatafiles/getVersion-default.json +6 -0
- package/entities/Application/mockdatafiles/postLoggingLevel-default.json +5 -0
- package/entities/Application/schema.json +21 -0
- package/entities/Authentication/action.json +126 -0
- package/entities/Authentication/mockdatafiles/getActiveSessions-default.json +26 -0
- package/entities/Authentication/mockdatafiles/signIn-default.json +3 -0
- package/entities/Authentication/schema.json +24 -0
- package/entities/CountriesAndTimezones/action.json +25 -0
- package/entities/CountriesAndTimezones/mockdatafiles/getTimezonesByCountries-default.json +30 -0
- package/entities/CountriesAndTimezones/schema.json +19 -0
- package/entities/DeviceComponent/action.json +24 -0
- package/entities/DeviceComponent/mockdatafiles/partiallyUpdateObjectById-default.json +193 -0
- package/entities/DeviceComponent/schema.json +19 -0
- package/entities/DeviceComponentGroup/action.json +24 -0
- package/entities/DeviceComponentGroup/mockdatafiles/partiallyUpdateObjectGroupById-default.json +1227 -0
- package/entities/DeviceComponentGroup/schema.json +19 -0
- package/entities/DeviceGroup/action.json +45 -0
- package/entities/DeviceGroup/mockdatafiles/getDeviceTagsById-default.json +5 -0
- package/entities/DeviceGroup/mockdatafiles/partiallyUpdateDeviceGroupById-default.json +1352 -0
- package/entities/DeviceGroup/schema.json +20 -0
- package/entities/DeviceGroupRules/action.json +127 -0
- package/entities/DeviceGroupRules/mockdatafiles/createDeviceGroupRule-default.json +16 -0
- package/entities/DeviceGroupRules/mockdatafiles/deleteDeviceGroupRule-default.json +5 -0
- package/entities/DeviceGroupRules/mockdatafiles/getDeviceGroupRule-default.json +16 -0
- package/entities/DeviceGroupRules/mockdatafiles/getDeviceGroupRules-default.json +88 -0
- package/entities/DeviceGroupRules/mockdatafiles/getDeviceGroupsRules-default.json +168 -0
- package/entities/DeviceGroupRules/mockdatafiles/updateDeviceGroupRule-default.json +16 -0
- package/entities/DeviceGroupRules/schema.json +24 -0
- package/entities/DeviceTypes/action.json +147 -0
- package/entities/DeviceTypes/mockdatafiles/createDeviceType-default.json +446 -0
- package/entities/DeviceTypes/mockdatafiles/deleteDeviceTypeById-default.json +5 -0
- package/entities/DeviceTypes/mockdatafiles/deleteDeviceTypeMemberById-default.json +5 -0
- package/entities/DeviceTypes/mockdatafiles/getDeviceTypeById-default.json +1350 -0
- package/entities/DeviceTypes/mockdatafiles/getDeviceTypeForDeviceById-default.json +22 -0
- package/entities/DeviceTypes/mockdatafiles/getDeviceTypes-default.json +4274 -0
- package/entities/DeviceTypes/schema.json +25 -0
- package/entities/Discovery/action.json +86 -0
- package/entities/Discovery/mockdatafiles/filterDevicesInDiscovery-default.json +442 -0
- package/entities/Discovery/mockdatafiles/getDeviceStatusById-default.json +224 -0
- package/entities/Discovery/mockdatafiles/getDevicesInDiscovery-default.json +1826 -0
- package/entities/Discovery/mockdatafiles/updateDevicePriority-default.json +100 -0
- package/entities/Discovery/schema.json +22 -0
- package/entities/DynamicPlugin/action.json +44 -0
- package/entities/DynamicPlugin/mockdatafiles/registerDynamicPlugin-default.json +42 -0
- package/entities/DynamicPlugin/mockdatafiles/registerDynamicPluginManager-default.json +6 -0
- package/entities/DynamicPlugin/schema.json +20 -0
- package/entities/ObjectGroupRules/action.json +147 -0
- package/entities/ObjectGroupRules/mockdatafiles/applyObjectGroupRules-default.json +5 -0
- package/entities/ObjectGroupRules/mockdatafiles/createObjectGroupRule-default.json +14 -0
- package/entities/ObjectGroupRules/mockdatafiles/deleteObjectGroupRule-default.json +5 -0
- package/entities/ObjectGroupRules/mockdatafiles/getObjectGroupRule-default.json +14 -0
- package/entities/ObjectGroupRules/mockdatafiles/getObjectGroupRules-default.json +148 -0
- package/entities/ObjectGroupRules/mockdatafiles/getObjectGroupsRules-default.json +36 -0
- package/entities/ObjectGroupRules/mockdatafiles/updateObjectGroupRule-default.json +14 -0
- package/entities/ObjectGroupRules/schema.json +25 -0
- package/entities/Peers/action.json +150 -0
- package/entities/Peers/mockdatafiles/editIncorporateModeUsingPATCH-default.json +5 -0
- package/entities/Peers/mockdatafiles/getCurrentPeerUsingGET-default.json +27 -0
- package/entities/Peers/mockdatafiles/getIncorporateModeUsingGET-default.json +5 -0
- package/entities/Peers/mockdatafiles/getPeerUsingGET-default.json +27 -0
- package/entities/Peers/mockdatafiles/getPeersUsingGET-default.json +197 -0
- package/entities/Peers/schema.json +25 -0
- package/entities/Plugins/action.json +292 -0
- package/entities/Plugins/mockdatafiles/createPluginIndicatorType-default.json +16 -0
- package/entities/Plugins/mockdatafiles/createPluginObjectType-default.json +9 -0
- package/entities/Plugins/mockdatafiles/filterPluginIndicatorTypes-default.json +88 -0
- package/entities/Plugins/mockdatafiles/filterPluginObjectTypes-default.json +98 -0
- package/entities/Plugins/mockdatafiles/getAllPluginIndicatorTypes-default.json +72 -0
- package/entities/Plugins/mockdatafiles/getAllPluginObjectTypes-default.json +35 -0
- package/entities/Plugins/mockdatafiles/getAllPlugins-default.json +29 -0
- package/entities/Plugins/mockdatafiles/updatePluginIndicatorType-default.json +16 -0
- package/entities/Plugins/mockdatafiles/updatePluginObjectType-default.json +9 -0
- package/entities/Plugins/schema.json +32 -0
- package/entities/Policies/action.json +370 -0
- package/entities/Policies/mockdatafiles/createPolicy-default.json +298 -0
- package/entities/Policies/mockdatafiles/createPolicyCondition-default.json +14 -0
- package/entities/Policies/mockdatafiles/createPolicyFolder-default.json +5 -0
- package/entities/Policies/mockdatafiles/deletePolicyActionById-default.json +5 -0
- package/entities/Policies/mockdatafiles/deletePolicyById-default.json +5 -0
- package/entities/Policies/mockdatafiles/deletePolicyConditionById-default.json +5 -0
- package/entities/Policies/mockdatafiles/deletePolicyFolderById-default.json +5 -0
- package/entities/Policies/mockdatafiles/filterPolicies-default.json +1709 -0
- package/entities/Policies/mockdatafiles/findAllUsingGET-default.json +106 -0
- package/entities/Policies/mockdatafiles/getActionsUsingGET-default.json +53 -0
- package/entities/Policies/mockdatafiles/getPolicies-default.json +1318 -0
- package/entities/Policies/mockdatafiles/getPolicy-default.json +73 -0
- package/entities/Policies/mockdatafiles/getPolicyConditionById-default.json +14 -0
- package/entities/Policies/mockdatafiles/getPolicyFolders-default.json +13 -0
- package/entities/Policies/mockdatafiles/updatePolicy-default.json +97 -0
- package/entities/Policies/mockdatafiles/updatePolicyAction-default.json +41 -0
- package/entities/Policies/mockdatafiles/updatePolicyCondition-default.json +14 -0
- package/entities/Policies/mockdatafiles/updatePolicyFolder-default.json +5 -0
- package/entities/Policies/schema.json +36 -0
- package/entities/ReportAttachments/action.json +107 -0
- package/entities/ReportAttachments/mockdatafiles/deleteReportAttachment-default.json +5 -0
- package/entities/ReportAttachments/mockdatafiles/getAllReportAttachments-default.json +26 -0
- package/entities/ReportAttachments/mockdatafiles/getReportAttachment-default.json +3 -0
- package/entities/ReportAttachments/mockdatafiles/updateReportAttachmentById-default.json +3 -0
- package/entities/ReportAttachments/schema.json +23 -0
- package/entities/ReportAttachmentsAlerts/action.json +311 -0
- package/entities/ReportAttachmentsAlerts/mockdatafiles/createAlertAttachment-default.json +122 -0
- package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentAggregation-default.json +3 -0
- package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentFilterSchema-default.json +218 -0
- package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentFilters-default.json +17 -0
- package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentResource-default.json +15 -0
- package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentSettings-default.json +67 -0
- package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentTimeSettings-default.json +8 -0
- package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentVisualizationSettings-default.json +59 -0
- package/entities/ReportAttachmentsAlerts/mockdatafiles/partiallyUpdateAlertAttachmentVisualizationSettings-default.json +65 -0
- package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentAggregation-default.json +3 -0
- package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentFilters-default.json +102 -0
- package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentResource-default.json +10 -0
- package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentSettings-default.json +52 -0
- package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentTimeSettings-default.json +8 -0
- package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentVisualizationSettings-default.json +65 -0
- package/entities/ReportAttachmentsAlerts/schema.json +33 -0
- package/entities/ReportAttachmentsDeviceGroups/action.json +106 -0
- package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/createDeviceGroupsAttachment-default.json +46 -0
- package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/getDeviceGroupsAttachment-default.json +12 -0
- package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/getDeviceGroupsAttachmentVisualization-default.json +28 -0
- package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/updateDeviceGroupsAttachment-default.json +9 -0
- package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/updateDeviceGroupsAttachmentVisualization-default.json +38 -0
- package/entities/ReportAttachmentsDeviceGroups/schema.json +23 -0
- package/entities/ReportAttachmentsDevices/action.json +209 -0
- package/entities/ReportAttachmentsDevices/mockdatafiles/createDeviceAttachment-default.json +81 -0
- package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachment-default.json +12 -0
- package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachmentFilterSchema-default.json +4 -0
- package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachmentFilters-default.json +90 -0
- package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachmentSettings-default.json +72 -0
- package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachmentVisualization-default.json +36 -0
- package/entities/ReportAttachmentsDevices/mockdatafiles/updateDeviceAttachment-default.json +6 -0
- package/entities/ReportAttachmentsDevices/mockdatafiles/updateDeviceAttachmentFilters-default.json +36 -0
- package/entities/ReportAttachmentsDevices/mockdatafiles/updateDeviceAttachmentSettings-default.json +56 -0
- package/entities/ReportAttachmentsDevices/mockdatafiles/updateDeviceAttachmentVisualization-default.json +39 -0
- package/entities/ReportAttachmentsDevices/schema.json +28 -0
- package/entities/ReportAttachmentsFlowFalcon/action.json +290 -0
- package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/createFlowFalconAttachment-default.json +243 -0
- package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentFilterSchema-default.json +4 -0
- package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentFilters-default.json +138 -0
- package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentResources-default.json +64 -0
- package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentSettings-default.json +80 -0
- package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentTimeSettings-default.json +8 -0
- package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentVisualizationSettings-default.json +71 -0
- package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/partiallyUpdateFlowFalconAttachmentSettings-default.json +48 -0
- package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/partiallyUpdateFlowFalconAttachmentVisualizationSettings-default.json +67 -0
- package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentFilters-default.json +58 -0
- package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentResources-default.json +52 -0
- package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentSettings-default.json +71 -0
- package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentTimeSettings-default.json +8 -0
- package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentVisualizationSettings-default.json +56 -0
- package/entities/ReportAttachmentsFlowFalcon/schema.json +32 -0
- package/entities/ReportAttachmentsGroupMetrics/action.json +188 -0
- package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/createGroupMetricsAttachment-default.json +208 -0
- package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/getGroupMetricsAttachment-default.json +172 -0
- package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/getGroupMetricsAttachmentSettings-default.json +47 -0
- package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/getGroupMetricsAttachmentTimeSettings-default.json +8 -0
- package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/getGroupMetricsAttachmentVisualization-default.json +34 -0
- package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/updateGroupMetricsAttachment-default.json +207 -0
- package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/updateGroupMetricsAttachmentSettings-default.json +62 -0
- package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/updateGroupMetricsAttachmentTimeSettings-default.json +8 -0
- package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/updateGroupMetricsAttachmentVisualization-default.json +30 -0
- package/entities/ReportAttachmentsGroupMetrics/schema.json +27 -0
- package/entities/ReportAttachmentsMetadata/action.json +126 -0
- package/entities/ReportAttachmentsMetadata/mockdatafiles/createMetadataAttachment-default.json +41 -0
- package/entities/ReportAttachmentsMetadata/mockdatafiles/getMetadataAttachmentResources-default.json +12 -0
- package/entities/ReportAttachmentsMetadata/mockdatafiles/getMetadataAttachmentVisualizationSettings-default.json +33 -0
- package/entities/ReportAttachmentsMetadata/mockdatafiles/partiallyUpdateMetadataAttachmentVisualizationSettings-default.json +27 -0
- package/entities/ReportAttachmentsMetadata/mockdatafiles/updateMetadataAttachmentResources-default.json +9 -0
- package/entities/ReportAttachmentsMetadata/mockdatafiles/updateMetadataAttachmentVisualizationSettings-default.json +33 -0
- package/entities/ReportAttachmentsMetadata/schema.json +24 -0
- package/entities/ReportAttachmentsObjectGroups/action.json +126 -0
- package/entities/ReportAttachmentsObjectGroups/mockdatafiles/createObjectGroupAttachment-default.json +54 -0
- package/entities/ReportAttachmentsObjectGroups/mockdatafiles/getObjectGroupAttachmentResources-default.json +11 -0
- package/entities/ReportAttachmentsObjectGroups/mockdatafiles/getObjectGroupAttachmentVisualizationSettings-default.json +41 -0
- package/entities/ReportAttachmentsObjectGroups/mockdatafiles/partiallyUpdateObjectGroupAttachmentVisualizationSettings-default.json +35 -0
- package/entities/ReportAttachmentsObjectGroups/mockdatafiles/updateObjectGroupAttachmentResources-default.json +16 -0
- package/entities/ReportAttachmentsObjectGroups/mockdatafiles/updateObjectGroupAttachmentVisualizationSettings-default.json +36 -0
- package/entities/ReportAttachmentsObjectGroups/schema.json +24 -0
- package/entities/ReportAttachmentsObjects/action.json +167 -0
- package/entities/ReportAttachmentsObjects/mockdatafiles/createObjectAttachment-default.json +51 -0
- package/entities/ReportAttachmentsObjects/mockdatafiles/getObjectAttachmentResources-default.json +10 -0
- package/entities/ReportAttachmentsObjects/mockdatafiles/getObjectAttachmentSettings-default.json +5 -0
- package/entities/ReportAttachmentsObjects/mockdatafiles/getObjectAttachmentVisualizationSettings-default.json +32 -0
- package/entities/ReportAttachmentsObjects/mockdatafiles/partiallyUpdateObjectAttachmentVisualizationSettings-default.json +31 -0
- package/entities/ReportAttachmentsObjects/mockdatafiles/updateObjectAttachmentResources-default.json +10 -0
- package/entities/ReportAttachmentsObjects/mockdatafiles/updateObjectAttachmentSettings-default.json +5 -0
- package/entities/ReportAttachmentsObjects/mockdatafiles/updateObjectAttachmentVisualizationSettings-default.json +35 -0
- package/entities/ReportAttachmentsObjects/schema.json +26 -0
- package/entities/ReportAttachmentsPerformanceMetrics/action.json +228 -0
- package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/createPerformanceMetricsAttachment-default.json +275 -0
- package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/getPerformanceMetricsAttachmentResources-default.json +53 -0
- package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/getPerformanceMetricsAttachmentSettings-default.json +92 -0
- package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/getPerformanceMetricsAttachmentTimeSettings-default.json +8 -0
- package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/getPerformanceMetricsAttachmentVisualizationSettings-default.json +124 -0
- package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/partiallyUpdatePerformanceMetricsAttachmentSettings-default.json +81 -0
- package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/partiallyUpdatePerformanceMetricsAttachmentVisualizationSettings-default.json +126 -0
- package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/updatePerformanceMetricsAttachmentResources-default.json +46 -0
- package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/updatePerformanceMetricsAttachmentSettings-default.json +139 -0
- package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/updatePerformanceMetricsAttachmentTimeSettings-default.json +8 -0
- package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/updatePerformanceMetricsAttachmentVisualizationSettings-default.json +122 -0
- package/entities/ReportAttachmentsPerformanceMetrics/schema.json +29 -0
- package/entities/ReportAttachmentsStatusMap/action.json +65 -0
- package/entities/ReportAttachmentsStatusMap/mockdatafiles/createStatusMapAttachment-default.json +9 -0
- package/entities/ReportAttachmentsStatusMap/mockdatafiles/getStatusMapAttachmentResources-default.json +3 -0
- package/entities/ReportAttachmentsStatusMap/mockdatafiles/updateStatusMapAttachmentResources-default.json +3 -0
- package/entities/ReportAttachmentsStatusMap/schema.json +21 -0
- package/entities/ReportAttachmentsTelephony/action.json +188 -0
- package/entities/ReportAttachmentsTelephony/mockdatafiles/createTelephonyAttachment-default.json +57 -0
- package/entities/ReportAttachmentsTelephony/mockdatafiles/getTelephonyAttachmentAggregation-default.json +3 -0
- package/entities/ReportAttachmentsTelephony/mockdatafiles/getTelephonyAttachmentSettings-default.json +9 -0
- package/entities/ReportAttachmentsTelephony/mockdatafiles/getTelephonyAttachmentTimeSettings-default.json +8 -0
- package/entities/ReportAttachmentsTelephony/mockdatafiles/getTelephonyAttachmentVisualizationSettings-default.json +35 -0
- package/entities/ReportAttachmentsTelephony/mockdatafiles/updateTelephonyAttachmentAggregation-default.json +3 -0
- package/entities/ReportAttachmentsTelephony/mockdatafiles/updateTelephonyAttachmentSettings-default.json +9 -0
- package/entities/ReportAttachmentsTelephony/mockdatafiles/updateTelephonyAttachmentTimeSettings-default.json +8 -0
- package/entities/ReportAttachmentsTelephony/mockdatafiles/updateTelephonyAttachmentVisualizationSettings-default.json +33 -0
- package/entities/ReportAttachmentsTelephony/schema.json +27 -0
- package/entities/ReportAttachmentsTopN/action.json +228 -0
- package/entities/ReportAttachmentsTopN/mockdatafiles/createTopNAttachment-default.json +111 -0
- package/entities/ReportAttachmentsTopN/mockdatafiles/getTopNAttachmentResources-default.json +8 -0
- package/entities/ReportAttachmentsTopN/mockdatafiles/getTopNAttachmentSettings-default.json +129 -0
- package/entities/ReportAttachmentsTopN/mockdatafiles/getTopNAttachmentTimeSettings-default.json +8 -0
- package/entities/ReportAttachmentsTopN/mockdatafiles/getTopNAttachmentVisualizationSettings-default.json +44 -0
- package/entities/ReportAttachmentsTopN/mockdatafiles/partiallyUpdateTopNAttachmentSettings-default.json +140 -0
- package/entities/ReportAttachmentsTopN/mockdatafiles/partiallyUpdateTopNAttachmentVisualizationSettings-default.json +47 -0
- package/entities/ReportAttachmentsTopN/mockdatafiles/updateTopNAttachmentResources-default.json +13 -0
- package/entities/ReportAttachmentsTopN/mockdatafiles/updateTopNAttachmentSettings-default.json +39 -0
- package/entities/ReportAttachmentsTopN/mockdatafiles/updateTopNAttachmentTimeSettings-default.json +8 -0
- package/entities/ReportAttachmentsTopN/mockdatafiles/updateTopNAttachmentVisualizationSettings-default.json +51 -0
- package/entities/ReportAttachmentsTopN/schema.json +29 -0
- package/entities/Reports/action.json +187 -0
- package/entities/Reports/mockdatafiles/createReport-default.json +24 -0
- package/entities/Reports/mockdatafiles/createReportFolder-default.json +5 -0
- package/entities/Reports/mockdatafiles/deleteReportById-default.json +5 -0
- package/entities/Reports/mockdatafiles/deleteReportFolderById-default.json +5 -0
- package/entities/Reports/mockdatafiles/getAllReportFolders-default.json +48 -0
- package/entities/Reports/mockdatafiles/getAllReports-default.json +32 -0
- package/entities/Reports/mockdatafiles/getReport-default.json +24 -0
- package/entities/Reports/mockdatafiles/updateReportById-default.json +24 -0
- package/entities/Reports/mockdatafiles/updateReportFolderById-default.json +5 -0
- package/entities/Reports/schema.json +27 -0
- package/entities/StatusMapImages/action.json +46 -0
- package/entities/StatusMapImages/mockdatafiles/getMapImages-default.json +14 -0
- package/entities/StatusMapImages/schema.json +20 -0
- package/entities/Users/action.json +25 -0
- package/entities/Users/mockdatafiles/getCurrentUser-default.json +26 -0
- package/entities/Users/schema.json +19 -0
- package/entities/alert/action.json +81 -0
- package/entities/alert/mockdatafiles/createAlertForced-default.json +27 -0
- package/entities/alert/mockdatafiles/getFlowFalconDeviceAlerts-default.json +48 -0
- package/entities/alert/mockdatafiles/getMaxSeverityAlertForObjects-default.json +14 -0
- package/entities/alert/mockdatafiles/patchAlert-default.json +36 -0
- package/entities/alert/schema.json +8 -2
- package/entities/device/action.json +20 -0
- package/entities/device/mockdatafiles/getdeviceerror.json +1 -58
- package/entities/device/mockdatafiles/partiallyUpdateDeviceById-default.json +103 -0
- package/entities/device/schema.json +2 -1
- package/entities/map/action.json +20 -0
- package/entities/map/mockdatafiles/partiallyUpdateStatusMapById-default.json +534 -0
- package/entities/map/schema.json +2 -1
- package/error.json +12 -0
- package/package.json +20 -13
- package/pronghorn.json +34868 -2005
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +436 -0
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +10 -0
- package/report/updateReport1653680202971.json +120 -0
- package/sampleProperties.json +94 -2
- package/test/integration/adapterTestBasicGet.js +2 -2
- package/test/integration/adapterTestIntegration.js +8011 -105
- package/test/unit/adapterBaseTestUnit.js +35 -27
- package/test/unit/adapterTestUnit.js +7948 -145
- package/utils/adapterInfo.js +206 -0
- package/utils/addAuth.js +94 -0
- package/utils/basicGet.js +1 -14
- package/utils/entitiesToDB.js +179 -0
- package/utils/modify.js +1 -1
- package/utils/packModificationScript.js +1 -1
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +3 -0
- package/utils/removeHooks.js +20 -0
- package/utils/tbScript.js +43 -22
- package/utils/tbUtils.js +126 -29
- package/utils/testRunner.js +16 -16
- package/utils/troubleshootingAdapter.js +2 -26
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
{
|
|
2
|
+
"allowAutomatic": true,
|
|
3
|
+
"allowManual": false,
|
|
4
|
+
"device": {
|
|
5
|
+
"allowDelete": false,
|
|
6
|
+
"alternateName": "string",
|
|
7
|
+
"dateAdded": 8,
|
|
8
|
+
"description": "string",
|
|
9
|
+
"disableConcurrentPolling": false,
|
|
10
|
+
"disablePolling": false,
|
|
11
|
+
"disableThresholding": true,
|
|
12
|
+
"id": 8,
|
|
13
|
+
"ipAddress": "string",
|
|
14
|
+
"isDeleted": true,
|
|
15
|
+
"isNew": true,
|
|
16
|
+
"lastDiscovery": 4,
|
|
17
|
+
"manualIP": false,
|
|
18
|
+
"name": "string",
|
|
19
|
+
"numElements": 8,
|
|
20
|
+
"objects": [
|
|
21
|
+
{
|
|
22
|
+
"alternateName": "string",
|
|
23
|
+
"dateAdded": 10,
|
|
24
|
+
"description": "string",
|
|
25
|
+
"deviceId": 5,
|
|
26
|
+
"enabled": {},
|
|
27
|
+
"extendedInfo": {},
|
|
28
|
+
"id": 2,
|
|
29
|
+
"indicators": [
|
|
30
|
+
{},
|
|
31
|
+
{},
|
|
32
|
+
{},
|
|
33
|
+
{}
|
|
34
|
+
],
|
|
35
|
+
"isDeleted": false,
|
|
36
|
+
"isEnabled": true,
|
|
37
|
+
"isVisible": false,
|
|
38
|
+
"name": "string",
|
|
39
|
+
"pluginId": 3,
|
|
40
|
+
"pluginObjectTypeId": 10,
|
|
41
|
+
"subtypeId": 2
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"alternateName": "string",
|
|
45
|
+
"dateAdded": 10,
|
|
46
|
+
"description": "string",
|
|
47
|
+
"deviceId": 6,
|
|
48
|
+
"enabled": {},
|
|
49
|
+
"extendedInfo": {},
|
|
50
|
+
"id": 2,
|
|
51
|
+
"indicators": [
|
|
52
|
+
{}
|
|
53
|
+
],
|
|
54
|
+
"isDeleted": false,
|
|
55
|
+
"isEnabled": true,
|
|
56
|
+
"isVisible": false,
|
|
57
|
+
"name": "string",
|
|
58
|
+
"pluginId": 1,
|
|
59
|
+
"pluginObjectTypeId": 10,
|
|
60
|
+
"subtypeId": 4
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"alternateName": "string",
|
|
64
|
+
"dateAdded": 7,
|
|
65
|
+
"description": "string",
|
|
66
|
+
"deviceId": 10,
|
|
67
|
+
"enabled": {},
|
|
68
|
+
"extendedInfo": {},
|
|
69
|
+
"id": 1,
|
|
70
|
+
"indicators": [
|
|
71
|
+
{},
|
|
72
|
+
{},
|
|
73
|
+
{},
|
|
74
|
+
{}
|
|
75
|
+
],
|
|
76
|
+
"isDeleted": true,
|
|
77
|
+
"isEnabled": false,
|
|
78
|
+
"isVisible": false,
|
|
79
|
+
"name": "string",
|
|
80
|
+
"pluginId": 5,
|
|
81
|
+
"pluginObjectTypeId": 10,
|
|
82
|
+
"subtypeId": 6
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"peerId": 1,
|
|
86
|
+
"pluginInfo": {},
|
|
87
|
+
"pluginManagerId": 7,
|
|
88
|
+
"pollFrequency": 8,
|
|
89
|
+
"timezone": "string",
|
|
90
|
+
"workhoursGroupId": 8
|
|
91
|
+
},
|
|
92
|
+
"deviceId": 8,
|
|
93
|
+
"isWorking": true,
|
|
94
|
+
"queue": "high",
|
|
95
|
+
"timeCompleted": 6,
|
|
96
|
+
"timeQueued": 9,
|
|
97
|
+
"timeStarted": 4,
|
|
98
|
+
"timeUpdated": 7,
|
|
99
|
+
"timesDiscovered": 2
|
|
100
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
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": "",
|
|
12
|
+
"enum": [
|
|
13
|
+
"getDevicesInDiscovery",
|
|
14
|
+
"filterDevicesInDiscovery",
|
|
15
|
+
"getDeviceStatusById",
|
|
16
|
+
"updateDevicePriority"
|
|
17
|
+
],
|
|
18
|
+
"external_name": "ph_request_type"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"definitions": {}
|
|
22
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": [
|
|
3
|
+
{
|
|
4
|
+
"name": "registerDynamicPluginManager",
|
|
5
|
+
"protocol": "REST",
|
|
6
|
+
"method": "POST",
|
|
7
|
+
"entitypath": "{base_path}/{version}/api/v1/pluginmanager/register?{query}",
|
|
8
|
+
"requestSchema": "schema.json",
|
|
9
|
+
"responseSchema": "schema.json",
|
|
10
|
+
"timeout": 0,
|
|
11
|
+
"sendEmpty": false,
|
|
12
|
+
"requestDatatype": "JSON",
|
|
13
|
+
"responseDatatype": "JSON",
|
|
14
|
+
"headers": {},
|
|
15
|
+
"responseObjects": [
|
|
16
|
+
{
|
|
17
|
+
"type": "default",
|
|
18
|
+
"key": "",
|
|
19
|
+
"mockFile": "mockdatafiles/registerDynamicPluginManager-default.json"
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "registerDynamicPlugin",
|
|
25
|
+
"protocol": "REST",
|
|
26
|
+
"method": "POST",
|
|
27
|
+
"entitypath": "{base_path}/{version}/api/v1/pluginmanager/{pathv1}/plugin/register?{query}",
|
|
28
|
+
"requestSchema": "schema.json",
|
|
29
|
+
"responseSchema": "schema.json",
|
|
30
|
+
"timeout": 0,
|
|
31
|
+
"sendEmpty": false,
|
|
32
|
+
"requestDatatype": "JSON",
|
|
33
|
+
"responseDatatype": "JSON",
|
|
34
|
+
"headers": {},
|
|
35
|
+
"responseObjects": [
|
|
36
|
+
{
|
|
37
|
+
"type": "default",
|
|
38
|
+
"key": "",
|
|
39
|
+
"mockFile": "mockdatafiles/registerDynamicPlugin-default.json"
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
}
|
|
43
|
+
]
|
|
44
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"fields": [
|
|
3
|
+
{
|
|
4
|
+
"defaultEntry": "string",
|
|
5
|
+
"description": "string",
|
|
6
|
+
"enumList": "string",
|
|
7
|
+
"maxLength": 4,
|
|
8
|
+
"name": "string",
|
|
9
|
+
"type": "FLOAT",
|
|
10
|
+
"valueRange": "string"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"defaultEntry": "string",
|
|
14
|
+
"description": "string",
|
|
15
|
+
"enumList": "string",
|
|
16
|
+
"maxLength": 7,
|
|
17
|
+
"name": "string",
|
|
18
|
+
"type": "SECRET",
|
|
19
|
+
"valueRange": "string"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"defaultEntry": "string",
|
|
23
|
+
"description": "string",
|
|
24
|
+
"enumList": "string",
|
|
25
|
+
"maxLength": 10,
|
|
26
|
+
"name": "string",
|
|
27
|
+
"type": "SECRET",
|
|
28
|
+
"valueRange": "string"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"defaultEntry": "string",
|
|
32
|
+
"description": "string",
|
|
33
|
+
"enumList": "string",
|
|
34
|
+
"maxLength": 5,
|
|
35
|
+
"name": "string",
|
|
36
|
+
"type": "INTEGER",
|
|
37
|
+
"valueRange": "string"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"name": "string",
|
|
41
|
+
"technology": "string"
|
|
42
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
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": "",
|
|
12
|
+
"enum": [
|
|
13
|
+
"registerDynamicPluginManager",
|
|
14
|
+
"registerDynamicPlugin"
|
|
15
|
+
],
|
|
16
|
+
"external_name": "ph_request_type"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"definitions": {}
|
|
20
|
+
}
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": [
|
|
3
|
+
{
|
|
4
|
+
"name": "getObjectGroupsRules",
|
|
5
|
+
"protocol": "REST",
|
|
6
|
+
"method": "GET",
|
|
7
|
+
"entitypath": "{base_path}/{version}/api/v1/objectgroups/rules?{query}",
|
|
8
|
+
"requestSchema": "schema.json",
|
|
9
|
+
"responseSchema": "schema.json",
|
|
10
|
+
"timeout": 0,
|
|
11
|
+
"sendEmpty": false,
|
|
12
|
+
"sendGetBody": false,
|
|
13
|
+
"requestDatatype": "JSON",
|
|
14
|
+
"responseDatatype": "JSON",
|
|
15
|
+
"headers": {},
|
|
16
|
+
"responseObjects": [
|
|
17
|
+
{
|
|
18
|
+
"type": "default",
|
|
19
|
+
"key": "",
|
|
20
|
+
"mockFile": "mockdatafiles/getObjectGroupsRules-default.json"
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "createObjectGroupRule",
|
|
26
|
+
"protocol": "REST",
|
|
27
|
+
"method": "POST",
|
|
28
|
+
"entitypath": "{base_path}/{version}/api/v1/objectgroups/rules?{query}",
|
|
29
|
+
"requestSchema": "schema.json",
|
|
30
|
+
"responseSchema": "schema.json",
|
|
31
|
+
"timeout": 0,
|
|
32
|
+
"sendEmpty": false,
|
|
33
|
+
"requestDatatype": "JSON",
|
|
34
|
+
"responseDatatype": "JSON",
|
|
35
|
+
"headers": {},
|
|
36
|
+
"responseObjects": [
|
|
37
|
+
{
|
|
38
|
+
"type": "default",
|
|
39
|
+
"key": "",
|
|
40
|
+
"mockFile": "mockdatafiles/createObjectGroupRule-default.json"
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "getObjectGroupRule",
|
|
46
|
+
"protocol": "REST",
|
|
47
|
+
"method": "GET",
|
|
48
|
+
"entitypath": "{base_path}/{version}/api/v1/objectgroups/rules/{pathv1}?{query}",
|
|
49
|
+
"requestSchema": "schema.json",
|
|
50
|
+
"responseSchema": "schema.json",
|
|
51
|
+
"timeout": 0,
|
|
52
|
+
"sendEmpty": false,
|
|
53
|
+
"sendGetBody": false,
|
|
54
|
+
"requestDatatype": "JSON",
|
|
55
|
+
"responseDatatype": "JSON",
|
|
56
|
+
"headers": {},
|
|
57
|
+
"responseObjects": [
|
|
58
|
+
{
|
|
59
|
+
"type": "default",
|
|
60
|
+
"key": "",
|
|
61
|
+
"mockFile": "mockdatafiles/getObjectGroupRule-default.json"
|
|
62
|
+
}
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "updateObjectGroupRule",
|
|
67
|
+
"protocol": "REST",
|
|
68
|
+
"method": "PUT",
|
|
69
|
+
"entitypath": "{base_path}/{version}/api/v1/objectgroups/rules/{pathv1}?{query}",
|
|
70
|
+
"requestSchema": "schema.json",
|
|
71
|
+
"responseSchema": "schema.json",
|
|
72
|
+
"timeout": 0,
|
|
73
|
+
"sendEmpty": false,
|
|
74
|
+
"requestDatatype": "JSON",
|
|
75
|
+
"responseDatatype": "JSON",
|
|
76
|
+
"headers": {},
|
|
77
|
+
"responseObjects": [
|
|
78
|
+
{
|
|
79
|
+
"type": "default",
|
|
80
|
+
"key": "",
|
|
81
|
+
"mockFile": "mockdatafiles/updateObjectGroupRule-default.json"
|
|
82
|
+
}
|
|
83
|
+
]
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "deleteObjectGroupRule",
|
|
87
|
+
"protocol": "REST",
|
|
88
|
+
"method": "DELETE",
|
|
89
|
+
"entitypath": "{base_path}/{version}/api/v1/objectgroups/rules/{pathv1}?{query}",
|
|
90
|
+
"requestSchema": "schema.json",
|
|
91
|
+
"responseSchema": "schema.json",
|
|
92
|
+
"timeout": 0,
|
|
93
|
+
"sendEmpty": false,
|
|
94
|
+
"requestDatatype": "JSON",
|
|
95
|
+
"responseDatatype": "JSON",
|
|
96
|
+
"headers": {},
|
|
97
|
+
"responseObjects": [
|
|
98
|
+
{
|
|
99
|
+
"type": "default",
|
|
100
|
+
"key": "",
|
|
101
|
+
"mockFile": "mockdatafiles/deleteObjectGroupRule-default.json"
|
|
102
|
+
}
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "getObjectGroupRules",
|
|
107
|
+
"protocol": "REST",
|
|
108
|
+
"method": "GET",
|
|
109
|
+
"entitypath": "{base_path}/{version}/api/v1/objectgroups/{pathv1}/rules?{query}",
|
|
110
|
+
"requestSchema": "schema.json",
|
|
111
|
+
"responseSchema": "schema.json",
|
|
112
|
+
"timeout": 0,
|
|
113
|
+
"sendEmpty": false,
|
|
114
|
+
"sendGetBody": false,
|
|
115
|
+
"requestDatatype": "JSON",
|
|
116
|
+
"responseDatatype": "JSON",
|
|
117
|
+
"headers": {},
|
|
118
|
+
"responseObjects": [
|
|
119
|
+
{
|
|
120
|
+
"type": "default",
|
|
121
|
+
"key": "",
|
|
122
|
+
"mockFile": "mockdatafiles/getObjectGroupRules-default.json"
|
|
123
|
+
}
|
|
124
|
+
]
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"name": "applyObjectGroupRules",
|
|
128
|
+
"protocol": "REST",
|
|
129
|
+
"method": "POST",
|
|
130
|
+
"entitypath": "{base_path}/{version}/api/v1/objectgroups/{pathv1}/rules/apply?{query}",
|
|
131
|
+
"requestSchema": "schema.json",
|
|
132
|
+
"responseSchema": "schema.json",
|
|
133
|
+
"timeout": 0,
|
|
134
|
+
"sendEmpty": false,
|
|
135
|
+
"requestDatatype": "JSON",
|
|
136
|
+
"responseDatatype": "JSON",
|
|
137
|
+
"headers": {},
|
|
138
|
+
"responseObjects": [
|
|
139
|
+
{
|
|
140
|
+
"type": "default",
|
|
141
|
+
"key": "",
|
|
142
|
+
"mockFile": "mockdatafiles/applyObjectGroupRules-default.json"
|
|
143
|
+
}
|
|
144
|
+
]
|
|
145
|
+
}
|
|
146
|
+
]
|
|
147
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"attributeId": 5,
|
|
3
|
+
"descriptionExpression": "string",
|
|
4
|
+
"deviceGroup": 2,
|
|
5
|
+
"deviceType": 9,
|
|
6
|
+
"groupId": 3,
|
|
7
|
+
"id": 1,
|
|
8
|
+
"metadataValueExpression": "string",
|
|
9
|
+
"nameExpression": "string",
|
|
10
|
+
"namespaceId": 4,
|
|
11
|
+
"objectTypeId": 6,
|
|
12
|
+
"pluginId": 4,
|
|
13
|
+
"subtypeId": 10
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"attributeId": 4,
|
|
3
|
+
"descriptionExpression": "string",
|
|
4
|
+
"deviceGroup": 8,
|
|
5
|
+
"deviceType": 4,
|
|
6
|
+
"groupId": 4,
|
|
7
|
+
"id": 7,
|
|
8
|
+
"metadataValueExpression": "string",
|
|
9
|
+
"nameExpression": "string",
|
|
10
|
+
"namespaceId": 10,
|
|
11
|
+
"objectTypeId": 5,
|
|
12
|
+
"pluginId": 3,
|
|
13
|
+
"subtypeId": 10
|
|
14
|
+
}
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
{
|
|
2
|
+
"content": [
|
|
3
|
+
{
|
|
4
|
+
"attributeId": 6,
|
|
5
|
+
"descriptionExpression": "string",
|
|
6
|
+
"deviceGroup": 3,
|
|
7
|
+
"deviceType": 6,
|
|
8
|
+
"groupId": 5,
|
|
9
|
+
"id": 2,
|
|
10
|
+
"metadataValueExpression": "string",
|
|
11
|
+
"nameExpression": "string",
|
|
12
|
+
"namespaceId": 5,
|
|
13
|
+
"objectTypeId": 3,
|
|
14
|
+
"pluginId": 2,
|
|
15
|
+
"subtypeId": 3
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"attributeId": 4,
|
|
19
|
+
"descriptionExpression": "string",
|
|
20
|
+
"deviceGroup": 8,
|
|
21
|
+
"deviceType": 1,
|
|
22
|
+
"groupId": 1,
|
|
23
|
+
"id": 5,
|
|
24
|
+
"metadataValueExpression": "string",
|
|
25
|
+
"nameExpression": "string",
|
|
26
|
+
"namespaceId": 8,
|
|
27
|
+
"objectTypeId": 9,
|
|
28
|
+
"pluginId": 10,
|
|
29
|
+
"subtypeId": 9
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"attributeId": 2,
|
|
33
|
+
"descriptionExpression": "string",
|
|
34
|
+
"deviceGroup": 2,
|
|
35
|
+
"deviceType": 9,
|
|
36
|
+
"groupId": 2,
|
|
37
|
+
"id": 3,
|
|
38
|
+
"metadataValueExpression": "string",
|
|
39
|
+
"nameExpression": "string",
|
|
40
|
+
"namespaceId": 4,
|
|
41
|
+
"objectTypeId": 10,
|
|
42
|
+
"pluginId": 6,
|
|
43
|
+
"subtypeId": 1
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"attributeId": 2,
|
|
47
|
+
"descriptionExpression": "string",
|
|
48
|
+
"deviceGroup": 8,
|
|
49
|
+
"deviceType": 5,
|
|
50
|
+
"groupId": 8,
|
|
51
|
+
"id": 9,
|
|
52
|
+
"metadataValueExpression": "string",
|
|
53
|
+
"nameExpression": "string",
|
|
54
|
+
"namespaceId": 1,
|
|
55
|
+
"objectTypeId": 1,
|
|
56
|
+
"pluginId": 7,
|
|
57
|
+
"subtypeId": 3
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"attributeId": 4,
|
|
61
|
+
"descriptionExpression": "string",
|
|
62
|
+
"deviceGroup": 4,
|
|
63
|
+
"deviceType": 9,
|
|
64
|
+
"groupId": 8,
|
|
65
|
+
"id": 10,
|
|
66
|
+
"metadataValueExpression": "string",
|
|
67
|
+
"nameExpression": "string",
|
|
68
|
+
"namespaceId": 7,
|
|
69
|
+
"objectTypeId": 6,
|
|
70
|
+
"pluginId": 2,
|
|
71
|
+
"subtypeId": 9
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"attributeId": 9,
|
|
75
|
+
"descriptionExpression": "string",
|
|
76
|
+
"deviceGroup": 3,
|
|
77
|
+
"deviceType": 6,
|
|
78
|
+
"groupId": 1,
|
|
79
|
+
"id": 10,
|
|
80
|
+
"metadataValueExpression": "string",
|
|
81
|
+
"nameExpression": "string",
|
|
82
|
+
"namespaceId": 2,
|
|
83
|
+
"objectTypeId": 10,
|
|
84
|
+
"pluginId": 4,
|
|
85
|
+
"subtypeId": 4
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"attributeId": 3,
|
|
89
|
+
"descriptionExpression": "string",
|
|
90
|
+
"deviceGroup": 4,
|
|
91
|
+
"deviceType": 6,
|
|
92
|
+
"groupId": 5,
|
|
93
|
+
"id": 8,
|
|
94
|
+
"metadataValueExpression": "string",
|
|
95
|
+
"nameExpression": "string",
|
|
96
|
+
"namespaceId": 4,
|
|
97
|
+
"objectTypeId": 8,
|
|
98
|
+
"pluginId": 9,
|
|
99
|
+
"subtypeId": 8
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"attributeId": 6,
|
|
103
|
+
"descriptionExpression": "string",
|
|
104
|
+
"deviceGroup": 1,
|
|
105
|
+
"deviceType": 2,
|
|
106
|
+
"groupId": 10,
|
|
107
|
+
"id": 1,
|
|
108
|
+
"metadataValueExpression": "string",
|
|
109
|
+
"nameExpression": "string",
|
|
110
|
+
"namespaceId": 5,
|
|
111
|
+
"objectTypeId": 1,
|
|
112
|
+
"pluginId": 3,
|
|
113
|
+
"subtypeId": 9
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"attributeId": 6,
|
|
117
|
+
"descriptionExpression": "string",
|
|
118
|
+
"deviceGroup": 3,
|
|
119
|
+
"deviceType": 4,
|
|
120
|
+
"groupId": 2,
|
|
121
|
+
"id": 8,
|
|
122
|
+
"metadataValueExpression": "string",
|
|
123
|
+
"nameExpression": "string",
|
|
124
|
+
"namespaceId": 4,
|
|
125
|
+
"objectTypeId": 1,
|
|
126
|
+
"pluginId": 1,
|
|
127
|
+
"subtypeId": 8
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"attributeId": 10,
|
|
131
|
+
"descriptionExpression": "string",
|
|
132
|
+
"deviceGroup": 10,
|
|
133
|
+
"deviceType": 3,
|
|
134
|
+
"groupId": 6,
|
|
135
|
+
"id": 4,
|
|
136
|
+
"metadataValueExpression": "string",
|
|
137
|
+
"nameExpression": "string",
|
|
138
|
+
"namespaceId": 1,
|
|
139
|
+
"objectTypeId": 5,
|
|
140
|
+
"pluginId": 3,
|
|
141
|
+
"subtypeId": 6
|
|
142
|
+
}
|
|
143
|
+
],
|
|
144
|
+
"pageNumber": 3,
|
|
145
|
+
"pageSize": 1,
|
|
146
|
+
"totalElements": 5,
|
|
147
|
+
"totalPages": 1
|
|
148
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"content": [
|
|
3
|
+
{
|
|
4
|
+
"attributeId": 10,
|
|
5
|
+
"descriptionExpression": "string",
|
|
6
|
+
"deviceGroup": 5,
|
|
7
|
+
"deviceType": 1,
|
|
8
|
+
"groupId": 4,
|
|
9
|
+
"id": 10,
|
|
10
|
+
"metadataValueExpression": "string",
|
|
11
|
+
"nameExpression": "string",
|
|
12
|
+
"namespaceId": 2,
|
|
13
|
+
"objectTypeId": 5,
|
|
14
|
+
"pluginId": 4,
|
|
15
|
+
"subtypeId": 2
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"attributeId": 2,
|
|
19
|
+
"descriptionExpression": "string",
|
|
20
|
+
"deviceGroup": 8,
|
|
21
|
+
"deviceType": 3,
|
|
22
|
+
"groupId": 4,
|
|
23
|
+
"id": 4,
|
|
24
|
+
"metadataValueExpression": "string",
|
|
25
|
+
"nameExpression": "string",
|
|
26
|
+
"namespaceId": 8,
|
|
27
|
+
"objectTypeId": 8,
|
|
28
|
+
"pluginId": 2,
|
|
29
|
+
"subtypeId": 9
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"pageNumber": 6,
|
|
33
|
+
"pageSize": 6,
|
|
34
|
+
"totalElements": 2,
|
|
35
|
+
"totalPages": 4
|
|
36
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"attributeId": 7,
|
|
3
|
+
"descriptionExpression": "string",
|
|
4
|
+
"deviceGroup": 6,
|
|
5
|
+
"deviceType": 10,
|
|
6
|
+
"groupId": 6,
|
|
7
|
+
"id": 8,
|
|
8
|
+
"metadataValueExpression": "string",
|
|
9
|
+
"nameExpression": "string",
|
|
10
|
+
"namespaceId": 5,
|
|
11
|
+
"objectTypeId": 4,
|
|
12
|
+
"pluginId": 7,
|
|
13
|
+
"subtypeId": 3
|
|
14
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
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": "",
|
|
12
|
+
"enum": [
|
|
13
|
+
"getObjectGroupsRules",
|
|
14
|
+
"createObjectGroupRule",
|
|
15
|
+
"getObjectGroupRule",
|
|
16
|
+
"updateObjectGroupRule",
|
|
17
|
+
"deleteObjectGroupRule",
|
|
18
|
+
"getObjectGroupRules",
|
|
19
|
+
"applyObjectGroupRules"
|
|
20
|
+
],
|
|
21
|
+
"external_name": "ph_request_type"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"definitions": {}
|
|
25
|
+
}
|