@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,32 @@
|
|
|
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
|
+
"getAllPlugins",
|
|
14
|
+
"getDevicePluginInfoSchema",
|
|
15
|
+
"getIndicatorExtendedInfoSchema",
|
|
16
|
+
"getAllPluginIndicatorTypes",
|
|
17
|
+
"createPluginIndicatorType",
|
|
18
|
+
"filterPluginIndicatorTypes",
|
|
19
|
+
"getSchemaForAllPluginIndicatorTypes",
|
|
20
|
+
"updatePluginIndicatorType",
|
|
21
|
+
"getObjectExtendedInfoSchema",
|
|
22
|
+
"getAllPluginObjectTypes",
|
|
23
|
+
"createPluginObjectType",
|
|
24
|
+
"filterPluginObjectTypes",
|
|
25
|
+
"getSchemaForAllPluginObjectTypes",
|
|
26
|
+
"updatePluginObjectType"
|
|
27
|
+
],
|
|
28
|
+
"external_name": "ph_request_type"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"definitions": {}
|
|
32
|
+
}
|
|
@@ -0,0 +1,370 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": [
|
|
3
|
+
{
|
|
4
|
+
"name": "getPolicies",
|
|
5
|
+
"protocol": "REST",
|
|
6
|
+
"method": "GET",
|
|
7
|
+
"entitypath": "{base_path}/{version}/api/v1/policies?{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/getPolicies-default.json"
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "createPolicy",
|
|
26
|
+
"protocol": "REST",
|
|
27
|
+
"method": "POST",
|
|
28
|
+
"entitypath": "{base_path}/{version}/api/v1/policies?{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/createPolicy-default.json"
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "filterPolicies",
|
|
46
|
+
"protocol": "REST",
|
|
47
|
+
"method": "POST",
|
|
48
|
+
"entitypath": "{base_path}/{version}/api/v1/policies/filter?{query}",
|
|
49
|
+
"requestSchema": "schema.json",
|
|
50
|
+
"responseSchema": "schema.json",
|
|
51
|
+
"timeout": 0,
|
|
52
|
+
"sendEmpty": false,
|
|
53
|
+
"requestDatatype": "JSON",
|
|
54
|
+
"responseDatatype": "JSON",
|
|
55
|
+
"headers": {},
|
|
56
|
+
"responseObjects": [
|
|
57
|
+
{
|
|
58
|
+
"type": "default",
|
|
59
|
+
"key": "",
|
|
60
|
+
"mockFile": "mockdatafiles/filterPolicies-default.json"
|
|
61
|
+
}
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "getPolicyFolders",
|
|
66
|
+
"protocol": "REST",
|
|
67
|
+
"method": "GET",
|
|
68
|
+
"entitypath": "{base_path}/{version}/api/v1/policies/folders?{query}",
|
|
69
|
+
"requestSchema": "schema.json",
|
|
70
|
+
"responseSchema": "schema.json",
|
|
71
|
+
"timeout": 0,
|
|
72
|
+
"sendEmpty": false,
|
|
73
|
+
"sendGetBody": false,
|
|
74
|
+
"requestDatatype": "JSON",
|
|
75
|
+
"responseDatatype": "JSON",
|
|
76
|
+
"headers": {},
|
|
77
|
+
"responseObjects": [
|
|
78
|
+
{
|
|
79
|
+
"type": "default",
|
|
80
|
+
"key": "",
|
|
81
|
+
"mockFile": "mockdatafiles/getPolicyFolders-default.json"
|
|
82
|
+
}
|
|
83
|
+
]
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "createPolicyFolder",
|
|
87
|
+
"protocol": "REST",
|
|
88
|
+
"method": "POST",
|
|
89
|
+
"entitypath": "{base_path}/{version}/api/v1/policies/folders?{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/createPolicyFolder-default.json"
|
|
102
|
+
}
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "updatePolicyFolder",
|
|
107
|
+
"protocol": "REST",
|
|
108
|
+
"method": "PUT",
|
|
109
|
+
"entitypath": "{base_path}/{version}/api/v1/policies/folders/{pathv1}?{query}",
|
|
110
|
+
"requestSchema": "schema.json",
|
|
111
|
+
"responseSchema": "schema.json",
|
|
112
|
+
"timeout": 0,
|
|
113
|
+
"sendEmpty": false,
|
|
114
|
+
"requestDatatype": "JSON",
|
|
115
|
+
"responseDatatype": "JSON",
|
|
116
|
+
"headers": {},
|
|
117
|
+
"responseObjects": [
|
|
118
|
+
{
|
|
119
|
+
"type": "default",
|
|
120
|
+
"key": "",
|
|
121
|
+
"mockFile": "mockdatafiles/updatePolicyFolder-default.json"
|
|
122
|
+
}
|
|
123
|
+
]
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"name": "deletePolicyFolderById",
|
|
127
|
+
"protocol": "REST",
|
|
128
|
+
"method": "DELETE",
|
|
129
|
+
"entitypath": "{base_path}/{version}/api/v1/policies/folders/{pathv1}?{query}",
|
|
130
|
+
"requestSchema": "schema.json",
|
|
131
|
+
"responseSchema": "schema.json",
|
|
132
|
+
"timeout": 0,
|
|
133
|
+
"sendEmpty": false,
|
|
134
|
+
"requestDatatype": "JSON",
|
|
135
|
+
"responseDatatype": "JSON",
|
|
136
|
+
"headers": {},
|
|
137
|
+
"responseObjects": [
|
|
138
|
+
{
|
|
139
|
+
"type": "default",
|
|
140
|
+
"key": "",
|
|
141
|
+
"mockFile": "mockdatafiles/deletePolicyFolderById-default.json"
|
|
142
|
+
}
|
|
143
|
+
]
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"name": "getPolicy",
|
|
147
|
+
"protocol": "REST",
|
|
148
|
+
"method": "GET",
|
|
149
|
+
"entitypath": "{base_path}/{version}/api/v1/policies/{pathv1}?{query}",
|
|
150
|
+
"requestSchema": "schema.json",
|
|
151
|
+
"responseSchema": "schema.json",
|
|
152
|
+
"timeout": 0,
|
|
153
|
+
"sendEmpty": false,
|
|
154
|
+
"sendGetBody": false,
|
|
155
|
+
"requestDatatype": "JSON",
|
|
156
|
+
"responseDatatype": "JSON",
|
|
157
|
+
"headers": {},
|
|
158
|
+
"responseObjects": [
|
|
159
|
+
{
|
|
160
|
+
"type": "default",
|
|
161
|
+
"key": "",
|
|
162
|
+
"mockFile": "mockdatafiles/getPolicy-default.json"
|
|
163
|
+
}
|
|
164
|
+
]
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"name": "updatePolicy",
|
|
168
|
+
"protocol": "REST",
|
|
169
|
+
"method": "PUT",
|
|
170
|
+
"entitypath": "{base_path}/{version}/api/v1/policies/{pathv1}?{query}",
|
|
171
|
+
"requestSchema": "schema.json",
|
|
172
|
+
"responseSchema": "schema.json",
|
|
173
|
+
"timeout": 0,
|
|
174
|
+
"sendEmpty": false,
|
|
175
|
+
"requestDatatype": "JSON",
|
|
176
|
+
"responseDatatype": "JSON",
|
|
177
|
+
"headers": {},
|
|
178
|
+
"responseObjects": [
|
|
179
|
+
{
|
|
180
|
+
"type": "default",
|
|
181
|
+
"key": "",
|
|
182
|
+
"mockFile": "mockdatafiles/updatePolicy-default.json"
|
|
183
|
+
}
|
|
184
|
+
]
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"name": "deletePolicyById",
|
|
188
|
+
"protocol": "REST",
|
|
189
|
+
"method": "DELETE",
|
|
190
|
+
"entitypath": "{base_path}/{version}/api/v1/policies/{pathv1}?{query}",
|
|
191
|
+
"requestSchema": "schema.json",
|
|
192
|
+
"responseSchema": "schema.json",
|
|
193
|
+
"timeout": 0,
|
|
194
|
+
"sendEmpty": false,
|
|
195
|
+
"requestDatatype": "JSON",
|
|
196
|
+
"responseDatatype": "JSON",
|
|
197
|
+
"headers": {},
|
|
198
|
+
"responseObjects": [
|
|
199
|
+
{
|
|
200
|
+
"type": "default",
|
|
201
|
+
"key": "",
|
|
202
|
+
"mockFile": "mockdatafiles/deletePolicyById-default.json"
|
|
203
|
+
}
|
|
204
|
+
]
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"name": "getActionsUsingGET",
|
|
208
|
+
"protocol": "REST",
|
|
209
|
+
"method": "GET",
|
|
210
|
+
"entitypath": "{base_path}/{version}/api/v1/policies/{pathv1}/actions?{query}",
|
|
211
|
+
"requestSchema": "schema.json",
|
|
212
|
+
"responseSchema": "schema.json",
|
|
213
|
+
"timeout": 0,
|
|
214
|
+
"sendEmpty": false,
|
|
215
|
+
"sendGetBody": false,
|
|
216
|
+
"requestDatatype": "JSON",
|
|
217
|
+
"responseDatatype": "JSON",
|
|
218
|
+
"headers": {},
|
|
219
|
+
"responseObjects": [
|
|
220
|
+
{
|
|
221
|
+
"type": "default",
|
|
222
|
+
"key": "",
|
|
223
|
+
"mockFile": "mockdatafiles/getActionsUsingGET-default.json"
|
|
224
|
+
}
|
|
225
|
+
]
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"name": "updatePolicyAction",
|
|
229
|
+
"protocol": "REST",
|
|
230
|
+
"method": "PUT",
|
|
231
|
+
"entitypath": "{base_path}/{version}/api/v1/policies/{pathv1}/actions?{query}",
|
|
232
|
+
"requestSchema": "schema.json",
|
|
233
|
+
"responseSchema": "schema.json",
|
|
234
|
+
"timeout": 0,
|
|
235
|
+
"sendEmpty": false,
|
|
236
|
+
"requestDatatype": "JSON",
|
|
237
|
+
"responseDatatype": "JSON",
|
|
238
|
+
"headers": {},
|
|
239
|
+
"responseObjects": [
|
|
240
|
+
{
|
|
241
|
+
"type": "default",
|
|
242
|
+
"key": "",
|
|
243
|
+
"mockFile": "mockdatafiles/updatePolicyAction-default.json"
|
|
244
|
+
}
|
|
245
|
+
]
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"name": "deletePolicyActionById",
|
|
249
|
+
"protocol": "REST",
|
|
250
|
+
"method": "DELETE",
|
|
251
|
+
"entitypath": "{base_path}/{version}/api/v1/policies/{pathv1}/actions?{query}",
|
|
252
|
+
"requestSchema": "schema.json",
|
|
253
|
+
"responseSchema": "schema.json",
|
|
254
|
+
"timeout": 0,
|
|
255
|
+
"sendEmpty": false,
|
|
256
|
+
"requestDatatype": "JSON",
|
|
257
|
+
"responseDatatype": "JSON",
|
|
258
|
+
"headers": {},
|
|
259
|
+
"responseObjects": [
|
|
260
|
+
{
|
|
261
|
+
"type": "default",
|
|
262
|
+
"key": "",
|
|
263
|
+
"mockFile": "mockdatafiles/deletePolicyActionById-default.json"
|
|
264
|
+
}
|
|
265
|
+
]
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"name": "findAllUsingGET",
|
|
269
|
+
"protocol": "REST",
|
|
270
|
+
"method": "GET",
|
|
271
|
+
"entitypath": "{base_path}/{version}/api/v1/policies/{pathv1}/conditions?{query}",
|
|
272
|
+
"requestSchema": "schema.json",
|
|
273
|
+
"responseSchema": "schema.json",
|
|
274
|
+
"timeout": 0,
|
|
275
|
+
"sendEmpty": false,
|
|
276
|
+
"sendGetBody": false,
|
|
277
|
+
"requestDatatype": "JSON",
|
|
278
|
+
"responseDatatype": "JSON",
|
|
279
|
+
"headers": {},
|
|
280
|
+
"responseObjects": [
|
|
281
|
+
{
|
|
282
|
+
"type": "default",
|
|
283
|
+
"key": "",
|
|
284
|
+
"mockFile": "mockdatafiles/findAllUsingGET-default.json"
|
|
285
|
+
}
|
|
286
|
+
]
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"name": "createPolicyCondition",
|
|
290
|
+
"protocol": "REST",
|
|
291
|
+
"method": "POST",
|
|
292
|
+
"entitypath": "{base_path}/{version}/api/v1/policies/{pathv1}/conditions?{query}",
|
|
293
|
+
"requestSchema": "schema.json",
|
|
294
|
+
"responseSchema": "schema.json",
|
|
295
|
+
"timeout": 0,
|
|
296
|
+
"sendEmpty": false,
|
|
297
|
+
"requestDatatype": "JSON",
|
|
298
|
+
"responseDatatype": "JSON",
|
|
299
|
+
"headers": {},
|
|
300
|
+
"responseObjects": [
|
|
301
|
+
{
|
|
302
|
+
"type": "default",
|
|
303
|
+
"key": "",
|
|
304
|
+
"mockFile": "mockdatafiles/createPolicyCondition-default.json"
|
|
305
|
+
}
|
|
306
|
+
]
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"name": "getPolicyConditionById",
|
|
310
|
+
"protocol": "REST",
|
|
311
|
+
"method": "GET",
|
|
312
|
+
"entitypath": "{base_path}/{version}/api/v1/policies/{pathv1}/conditions/{pathv2}?{query}",
|
|
313
|
+
"requestSchema": "schema.json",
|
|
314
|
+
"responseSchema": "schema.json",
|
|
315
|
+
"timeout": 0,
|
|
316
|
+
"sendEmpty": false,
|
|
317
|
+
"sendGetBody": false,
|
|
318
|
+
"requestDatatype": "JSON",
|
|
319
|
+
"responseDatatype": "JSON",
|
|
320
|
+
"headers": {},
|
|
321
|
+
"responseObjects": [
|
|
322
|
+
{
|
|
323
|
+
"type": "default",
|
|
324
|
+
"key": "",
|
|
325
|
+
"mockFile": "mockdatafiles/getPolicyConditionById-default.json"
|
|
326
|
+
}
|
|
327
|
+
]
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"name": "updatePolicyCondition",
|
|
331
|
+
"protocol": "REST",
|
|
332
|
+
"method": "PUT",
|
|
333
|
+
"entitypath": "{base_path}/{version}/api/v1/policies/{pathv1}/conditions/{pathv2}?{query}",
|
|
334
|
+
"requestSchema": "schema.json",
|
|
335
|
+
"responseSchema": "schema.json",
|
|
336
|
+
"timeout": 0,
|
|
337
|
+
"sendEmpty": false,
|
|
338
|
+
"requestDatatype": "JSON",
|
|
339
|
+
"responseDatatype": "JSON",
|
|
340
|
+
"headers": {},
|
|
341
|
+
"responseObjects": [
|
|
342
|
+
{
|
|
343
|
+
"type": "default",
|
|
344
|
+
"key": "",
|
|
345
|
+
"mockFile": "mockdatafiles/updatePolicyCondition-default.json"
|
|
346
|
+
}
|
|
347
|
+
]
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"name": "deletePolicyConditionById",
|
|
351
|
+
"protocol": "REST",
|
|
352
|
+
"method": "DELETE",
|
|
353
|
+
"entitypath": "{base_path}/{version}/api/v1/policies/{pathv1}/conditions/{pathv2}?{query}",
|
|
354
|
+
"requestSchema": "schema.json",
|
|
355
|
+
"responseSchema": "schema.json",
|
|
356
|
+
"timeout": 0,
|
|
357
|
+
"sendEmpty": false,
|
|
358
|
+
"requestDatatype": "JSON",
|
|
359
|
+
"responseDatatype": "JSON",
|
|
360
|
+
"headers": {},
|
|
361
|
+
"responseObjects": [
|
|
362
|
+
{
|
|
363
|
+
"type": "default",
|
|
364
|
+
"key": "",
|
|
365
|
+
"mockFile": "mockdatafiles/deletePolicyConditionById-default.json"
|
|
366
|
+
}
|
|
367
|
+
]
|
|
368
|
+
}
|
|
369
|
+
]
|
|
370
|
+
}
|
|
@@ -0,0 +1,298 @@
|
|
|
1
|
+
{
|
|
2
|
+
"appendConditionMessages": true,
|
|
3
|
+
"clearConditions": [
|
|
4
|
+
{
|
|
5
|
+
"aggregation": 9,
|
|
6
|
+
"comparison": 7,
|
|
7
|
+
"duration": 9,
|
|
8
|
+
"id": 8,
|
|
9
|
+
"indicatorTypeId": 10,
|
|
10
|
+
"isTrigger": false,
|
|
11
|
+
"message": "string",
|
|
12
|
+
"policyId": 6,
|
|
13
|
+
"sigmaDirection": 5,
|
|
14
|
+
"type": 9,
|
|
15
|
+
"unit": "string",
|
|
16
|
+
"value": 3
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"aggregation": 7,
|
|
20
|
+
"comparison": 4,
|
|
21
|
+
"duration": 4,
|
|
22
|
+
"id": 2,
|
|
23
|
+
"indicatorTypeId": 2,
|
|
24
|
+
"isTrigger": true,
|
|
25
|
+
"message": "string",
|
|
26
|
+
"policyId": 2,
|
|
27
|
+
"sigmaDirection": 7,
|
|
28
|
+
"type": 7,
|
|
29
|
+
"unit": "string",
|
|
30
|
+
"value": 6
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"aggregation": 8,
|
|
34
|
+
"comparison": 8,
|
|
35
|
+
"duration": 4,
|
|
36
|
+
"id": 8,
|
|
37
|
+
"indicatorTypeId": 10,
|
|
38
|
+
"isTrigger": true,
|
|
39
|
+
"message": "string",
|
|
40
|
+
"policyId": 9,
|
|
41
|
+
"sigmaDirection": 10,
|
|
42
|
+
"type": 6,
|
|
43
|
+
"unit": "string",
|
|
44
|
+
"value": 5
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"aggregation": 7,
|
|
48
|
+
"comparison": 7,
|
|
49
|
+
"duration": 1,
|
|
50
|
+
"id": 8,
|
|
51
|
+
"indicatorTypeId": 6,
|
|
52
|
+
"isTrigger": true,
|
|
53
|
+
"message": "string",
|
|
54
|
+
"policyId": 9,
|
|
55
|
+
"sigmaDirection": 2,
|
|
56
|
+
"type": 1,
|
|
57
|
+
"unit": "string",
|
|
58
|
+
"value": 5
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"aggregation": 9,
|
|
62
|
+
"comparison": 7,
|
|
63
|
+
"duration": 6,
|
|
64
|
+
"id": 3,
|
|
65
|
+
"indicatorTypeId": 6,
|
|
66
|
+
"isTrigger": true,
|
|
67
|
+
"message": "string",
|
|
68
|
+
"policyId": 2,
|
|
69
|
+
"sigmaDirection": 5,
|
|
70
|
+
"type": 10,
|
|
71
|
+
"unit": "string",
|
|
72
|
+
"value": 6
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"aggregation": 10,
|
|
76
|
+
"comparison": 5,
|
|
77
|
+
"duration": 1,
|
|
78
|
+
"id": 3,
|
|
79
|
+
"indicatorTypeId": 5,
|
|
80
|
+
"isTrigger": false,
|
|
81
|
+
"message": "string",
|
|
82
|
+
"policyId": 6,
|
|
83
|
+
"sigmaDirection": 6,
|
|
84
|
+
"type": 7,
|
|
85
|
+
"unit": "string",
|
|
86
|
+
"value": 2
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"aggregation": 10,
|
|
90
|
+
"comparison": 7,
|
|
91
|
+
"duration": 8,
|
|
92
|
+
"id": 6,
|
|
93
|
+
"indicatorTypeId": 3,
|
|
94
|
+
"isTrigger": false,
|
|
95
|
+
"message": "string",
|
|
96
|
+
"policyId": 6,
|
|
97
|
+
"sigmaDirection": 1,
|
|
98
|
+
"type": 7,
|
|
99
|
+
"unit": "string",
|
|
100
|
+
"value": 7
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"aggregation": 9,
|
|
104
|
+
"comparison": 8,
|
|
105
|
+
"duration": 6,
|
|
106
|
+
"id": 6,
|
|
107
|
+
"indicatorTypeId": 7,
|
|
108
|
+
"isTrigger": false,
|
|
109
|
+
"message": "string",
|
|
110
|
+
"policyId": 2,
|
|
111
|
+
"sigmaDirection": 10,
|
|
112
|
+
"type": 3,
|
|
113
|
+
"unit": "string",
|
|
114
|
+
"value": 9
|
|
115
|
+
}
|
|
116
|
+
],
|
|
117
|
+
"clearExpression": "string",
|
|
118
|
+
"clearMessage": "string",
|
|
119
|
+
"description": "string",
|
|
120
|
+
"flow": {
|
|
121
|
+
"direction": 9,
|
|
122
|
+
"filterId": 4,
|
|
123
|
+
"id": 9,
|
|
124
|
+
"viewId": 6
|
|
125
|
+
},
|
|
126
|
+
"folderId": 7,
|
|
127
|
+
"groupId": 1,
|
|
128
|
+
"groupIdList": [
|
|
129
|
+
4,
|
|
130
|
+
7,
|
|
131
|
+
5,
|
|
132
|
+
2,
|
|
133
|
+
2,
|
|
134
|
+
8,
|
|
135
|
+
4
|
|
136
|
+
],
|
|
137
|
+
"id": 7,
|
|
138
|
+
"isDeviceGroup": true,
|
|
139
|
+
"isMemberOfAny": false,
|
|
140
|
+
"lastUpdated": 1,
|
|
141
|
+
"mailOnce": false,
|
|
142
|
+
"mailPeriod": 7,
|
|
143
|
+
"mailTo": "string",
|
|
144
|
+
"name": "string",
|
|
145
|
+
"objectSubTypeId": 2,
|
|
146
|
+
"objectTypeId": 5,
|
|
147
|
+
"pluginId": 8,
|
|
148
|
+
"severity": 5,
|
|
149
|
+
"triggerConditions": [
|
|
150
|
+
{
|
|
151
|
+
"aggregation": 2,
|
|
152
|
+
"comparison": 3,
|
|
153
|
+
"duration": 9,
|
|
154
|
+
"id": 7,
|
|
155
|
+
"indicatorTypeId": 8,
|
|
156
|
+
"isTrigger": false,
|
|
157
|
+
"message": "string",
|
|
158
|
+
"policyId": 6,
|
|
159
|
+
"sigmaDirection": 9,
|
|
160
|
+
"type": 4,
|
|
161
|
+
"unit": "string",
|
|
162
|
+
"value": 6
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"aggregation": 9,
|
|
166
|
+
"comparison": 4,
|
|
167
|
+
"duration": 3,
|
|
168
|
+
"id": 8,
|
|
169
|
+
"indicatorTypeId": 4,
|
|
170
|
+
"isTrigger": true,
|
|
171
|
+
"message": "string",
|
|
172
|
+
"policyId": 7,
|
|
173
|
+
"sigmaDirection": 8,
|
|
174
|
+
"type": 3,
|
|
175
|
+
"unit": "string",
|
|
176
|
+
"value": 2
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"aggregation": 3,
|
|
180
|
+
"comparison": 3,
|
|
181
|
+
"duration": 3,
|
|
182
|
+
"id": 8,
|
|
183
|
+
"indicatorTypeId": 8,
|
|
184
|
+
"isTrigger": false,
|
|
185
|
+
"message": "string",
|
|
186
|
+
"policyId": 10,
|
|
187
|
+
"sigmaDirection": 10,
|
|
188
|
+
"type": 9,
|
|
189
|
+
"unit": "string",
|
|
190
|
+
"value": 9
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"aggregation": 8,
|
|
194
|
+
"comparison": 6,
|
|
195
|
+
"duration": 5,
|
|
196
|
+
"id": 7,
|
|
197
|
+
"indicatorTypeId": 8,
|
|
198
|
+
"isTrigger": false,
|
|
199
|
+
"message": "string",
|
|
200
|
+
"policyId": 7,
|
|
201
|
+
"sigmaDirection": 2,
|
|
202
|
+
"type": 5,
|
|
203
|
+
"unit": "string",
|
|
204
|
+
"value": 2
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"aggregation": 8,
|
|
208
|
+
"comparison": 5,
|
|
209
|
+
"duration": 2,
|
|
210
|
+
"id": 7,
|
|
211
|
+
"indicatorTypeId": 2,
|
|
212
|
+
"isTrigger": true,
|
|
213
|
+
"message": "string",
|
|
214
|
+
"policyId": 1,
|
|
215
|
+
"sigmaDirection": 9,
|
|
216
|
+
"type": 2,
|
|
217
|
+
"unit": "string",
|
|
218
|
+
"value": 7
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"aggregation": 1,
|
|
222
|
+
"comparison": 3,
|
|
223
|
+
"duration": 2,
|
|
224
|
+
"id": 2,
|
|
225
|
+
"indicatorTypeId": 7,
|
|
226
|
+
"isTrigger": true,
|
|
227
|
+
"message": "string",
|
|
228
|
+
"policyId": 6,
|
|
229
|
+
"sigmaDirection": 6,
|
|
230
|
+
"type": 2,
|
|
231
|
+
"unit": "string",
|
|
232
|
+
"value": 4
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"aggregation": 4,
|
|
236
|
+
"comparison": 7,
|
|
237
|
+
"duration": 3,
|
|
238
|
+
"id": 3,
|
|
239
|
+
"indicatorTypeId": 5,
|
|
240
|
+
"isTrigger": false,
|
|
241
|
+
"message": "string",
|
|
242
|
+
"policyId": 9,
|
|
243
|
+
"sigmaDirection": 9,
|
|
244
|
+
"type": 4,
|
|
245
|
+
"unit": "string",
|
|
246
|
+
"value": 4
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"aggregation": 6,
|
|
250
|
+
"comparison": 5,
|
|
251
|
+
"duration": 10,
|
|
252
|
+
"id": 5,
|
|
253
|
+
"indicatorTypeId": 3,
|
|
254
|
+
"isTrigger": false,
|
|
255
|
+
"message": "string",
|
|
256
|
+
"policyId": 6,
|
|
257
|
+
"sigmaDirection": 9,
|
|
258
|
+
"type": 2,
|
|
259
|
+
"unit": "string",
|
|
260
|
+
"value": 6
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"aggregation": 6,
|
|
264
|
+
"comparison": 10,
|
|
265
|
+
"duration": 3,
|
|
266
|
+
"id": 7,
|
|
267
|
+
"indicatorTypeId": 4,
|
|
268
|
+
"isTrigger": false,
|
|
269
|
+
"message": "string",
|
|
270
|
+
"policyId": 2,
|
|
271
|
+
"sigmaDirection": 7,
|
|
272
|
+
"type": 5,
|
|
273
|
+
"unit": "string",
|
|
274
|
+
"value": 8
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"aggregation": 3,
|
|
278
|
+
"comparison": 10,
|
|
279
|
+
"duration": 3,
|
|
280
|
+
"id": 8,
|
|
281
|
+
"indicatorTypeId": 3,
|
|
282
|
+
"isTrigger": false,
|
|
283
|
+
"message": "string",
|
|
284
|
+
"policyId": 6,
|
|
285
|
+
"sigmaDirection": 5,
|
|
286
|
+
"type": 2,
|
|
287
|
+
"unit": "string",
|
|
288
|
+
"value": 3
|
|
289
|
+
}
|
|
290
|
+
],
|
|
291
|
+
"triggerExpression": "string",
|
|
292
|
+
"triggerMessage": "string",
|
|
293
|
+
"type": "flow",
|
|
294
|
+
"useCustomTraps": true,
|
|
295
|
+
"useDefaultTraps": true,
|
|
296
|
+
"useDeviceTraps": false,
|
|
297
|
+
"userEnabled": 9
|
|
298
|
+
}
|