@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.
Files changed (311) hide show
  1. package/AUTH.md +39 -0
  2. package/BROKER.md +199 -0
  3. package/CALLS.md +169 -0
  4. package/CHANGELOG.md +59 -89
  5. package/CODE_OF_CONDUCT.md +12 -17
  6. package/CONTRIBUTING.md +88 -74
  7. package/ENHANCE.md +69 -0
  8. package/PROPERTIES.md +641 -0
  9. package/README.md +225 -502
  10. package/SUMMARY.md +9 -0
  11. package/SYSTEMINFO.md +11 -0
  12. package/TROUBLESHOOT.md +47 -0
  13. package/adapter.js +18786 -55
  14. package/adapterBase.js +1021 -245
  15. package/entities/.generic/action.json +110 -5
  16. package/entities/.generic/schema.json +6 -1
  17. package/entities/ApiKeys/action.json +206 -0
  18. package/entities/ApiKeys/mockdatafiles/createApiKey-default.json +7 -0
  19. package/entities/ApiKeys/mockdatafiles/createApiKeyForUser-default.json +7 -0
  20. package/entities/ApiKeys/mockdatafiles/getApiKeys-default.json +9 -0
  21. package/entities/ApiKeys/mockdatafiles/getApiKeysForUser-default.json +23 -0
  22. package/entities/ApiKeys/mockdatafiles/updateApiKey-default.json +7 -0
  23. package/entities/ApiKeys/mockdatafiles/updateApiKeyForUser-default.json +7 -0
  24. package/entities/ApiKeys/schema.json +28 -0
  25. package/entities/Application/action.json +66 -0
  26. package/entities/Application/mockdatafiles/getVersion-default.json +6 -0
  27. package/entities/Application/mockdatafiles/postLoggingLevel-default.json +5 -0
  28. package/entities/Application/schema.json +21 -0
  29. package/entities/Authentication/action.json +126 -0
  30. package/entities/Authentication/mockdatafiles/getActiveSessions-default.json +26 -0
  31. package/entities/Authentication/mockdatafiles/signIn-default.json +3 -0
  32. package/entities/Authentication/schema.json +24 -0
  33. package/entities/CountriesAndTimezones/action.json +25 -0
  34. package/entities/CountriesAndTimezones/mockdatafiles/getTimezonesByCountries-default.json +30 -0
  35. package/entities/CountriesAndTimezones/schema.json +19 -0
  36. package/entities/DeviceComponent/action.json +24 -0
  37. package/entities/DeviceComponent/mockdatafiles/partiallyUpdateObjectById-default.json +193 -0
  38. package/entities/DeviceComponent/schema.json +19 -0
  39. package/entities/DeviceComponentGroup/action.json +24 -0
  40. package/entities/DeviceComponentGroup/mockdatafiles/partiallyUpdateObjectGroupById-default.json +1227 -0
  41. package/entities/DeviceComponentGroup/schema.json +19 -0
  42. package/entities/DeviceGroup/action.json +45 -0
  43. package/entities/DeviceGroup/mockdatafiles/getDeviceTagsById-default.json +5 -0
  44. package/entities/DeviceGroup/mockdatafiles/partiallyUpdateDeviceGroupById-default.json +1352 -0
  45. package/entities/DeviceGroup/schema.json +20 -0
  46. package/entities/DeviceGroupRules/action.json +127 -0
  47. package/entities/DeviceGroupRules/mockdatafiles/createDeviceGroupRule-default.json +16 -0
  48. package/entities/DeviceGroupRules/mockdatafiles/deleteDeviceGroupRule-default.json +5 -0
  49. package/entities/DeviceGroupRules/mockdatafiles/getDeviceGroupRule-default.json +16 -0
  50. package/entities/DeviceGroupRules/mockdatafiles/getDeviceGroupRules-default.json +88 -0
  51. package/entities/DeviceGroupRules/mockdatafiles/getDeviceGroupsRules-default.json +168 -0
  52. package/entities/DeviceGroupRules/mockdatafiles/updateDeviceGroupRule-default.json +16 -0
  53. package/entities/DeviceGroupRules/schema.json +24 -0
  54. package/entities/DeviceTypes/action.json +147 -0
  55. package/entities/DeviceTypes/mockdatafiles/createDeviceType-default.json +446 -0
  56. package/entities/DeviceTypes/mockdatafiles/deleteDeviceTypeById-default.json +5 -0
  57. package/entities/DeviceTypes/mockdatafiles/deleteDeviceTypeMemberById-default.json +5 -0
  58. package/entities/DeviceTypes/mockdatafiles/getDeviceTypeById-default.json +1350 -0
  59. package/entities/DeviceTypes/mockdatafiles/getDeviceTypeForDeviceById-default.json +22 -0
  60. package/entities/DeviceTypes/mockdatafiles/getDeviceTypes-default.json +4274 -0
  61. package/entities/DeviceTypes/schema.json +25 -0
  62. package/entities/Discovery/action.json +86 -0
  63. package/entities/Discovery/mockdatafiles/filterDevicesInDiscovery-default.json +442 -0
  64. package/entities/Discovery/mockdatafiles/getDeviceStatusById-default.json +224 -0
  65. package/entities/Discovery/mockdatafiles/getDevicesInDiscovery-default.json +1826 -0
  66. package/entities/Discovery/mockdatafiles/updateDevicePriority-default.json +100 -0
  67. package/entities/Discovery/schema.json +22 -0
  68. package/entities/DynamicPlugin/action.json +44 -0
  69. package/entities/DynamicPlugin/mockdatafiles/registerDynamicPlugin-default.json +42 -0
  70. package/entities/DynamicPlugin/mockdatafiles/registerDynamicPluginManager-default.json +6 -0
  71. package/entities/DynamicPlugin/schema.json +20 -0
  72. package/entities/ObjectGroupRules/action.json +147 -0
  73. package/entities/ObjectGroupRules/mockdatafiles/applyObjectGroupRules-default.json +5 -0
  74. package/entities/ObjectGroupRules/mockdatafiles/createObjectGroupRule-default.json +14 -0
  75. package/entities/ObjectGroupRules/mockdatafiles/deleteObjectGroupRule-default.json +5 -0
  76. package/entities/ObjectGroupRules/mockdatafiles/getObjectGroupRule-default.json +14 -0
  77. package/entities/ObjectGroupRules/mockdatafiles/getObjectGroupRules-default.json +148 -0
  78. package/entities/ObjectGroupRules/mockdatafiles/getObjectGroupsRules-default.json +36 -0
  79. package/entities/ObjectGroupRules/mockdatafiles/updateObjectGroupRule-default.json +14 -0
  80. package/entities/ObjectGroupRules/schema.json +25 -0
  81. package/entities/Peers/action.json +150 -0
  82. package/entities/Peers/mockdatafiles/editIncorporateModeUsingPATCH-default.json +5 -0
  83. package/entities/Peers/mockdatafiles/getCurrentPeerUsingGET-default.json +27 -0
  84. package/entities/Peers/mockdatafiles/getIncorporateModeUsingGET-default.json +5 -0
  85. package/entities/Peers/mockdatafiles/getPeerUsingGET-default.json +27 -0
  86. package/entities/Peers/mockdatafiles/getPeersUsingGET-default.json +197 -0
  87. package/entities/Peers/schema.json +25 -0
  88. package/entities/Plugins/action.json +292 -0
  89. package/entities/Plugins/mockdatafiles/createPluginIndicatorType-default.json +16 -0
  90. package/entities/Plugins/mockdatafiles/createPluginObjectType-default.json +9 -0
  91. package/entities/Plugins/mockdatafiles/filterPluginIndicatorTypes-default.json +88 -0
  92. package/entities/Plugins/mockdatafiles/filterPluginObjectTypes-default.json +98 -0
  93. package/entities/Plugins/mockdatafiles/getAllPluginIndicatorTypes-default.json +72 -0
  94. package/entities/Plugins/mockdatafiles/getAllPluginObjectTypes-default.json +35 -0
  95. package/entities/Plugins/mockdatafiles/getAllPlugins-default.json +29 -0
  96. package/entities/Plugins/mockdatafiles/updatePluginIndicatorType-default.json +16 -0
  97. package/entities/Plugins/mockdatafiles/updatePluginObjectType-default.json +9 -0
  98. package/entities/Plugins/schema.json +32 -0
  99. package/entities/Policies/action.json +370 -0
  100. package/entities/Policies/mockdatafiles/createPolicy-default.json +298 -0
  101. package/entities/Policies/mockdatafiles/createPolicyCondition-default.json +14 -0
  102. package/entities/Policies/mockdatafiles/createPolicyFolder-default.json +5 -0
  103. package/entities/Policies/mockdatafiles/deletePolicyActionById-default.json +5 -0
  104. package/entities/Policies/mockdatafiles/deletePolicyById-default.json +5 -0
  105. package/entities/Policies/mockdatafiles/deletePolicyConditionById-default.json +5 -0
  106. package/entities/Policies/mockdatafiles/deletePolicyFolderById-default.json +5 -0
  107. package/entities/Policies/mockdatafiles/filterPolicies-default.json +1709 -0
  108. package/entities/Policies/mockdatafiles/findAllUsingGET-default.json +106 -0
  109. package/entities/Policies/mockdatafiles/getActionsUsingGET-default.json +53 -0
  110. package/entities/Policies/mockdatafiles/getPolicies-default.json +1318 -0
  111. package/entities/Policies/mockdatafiles/getPolicy-default.json +73 -0
  112. package/entities/Policies/mockdatafiles/getPolicyConditionById-default.json +14 -0
  113. package/entities/Policies/mockdatafiles/getPolicyFolders-default.json +13 -0
  114. package/entities/Policies/mockdatafiles/updatePolicy-default.json +97 -0
  115. package/entities/Policies/mockdatafiles/updatePolicyAction-default.json +41 -0
  116. package/entities/Policies/mockdatafiles/updatePolicyCondition-default.json +14 -0
  117. package/entities/Policies/mockdatafiles/updatePolicyFolder-default.json +5 -0
  118. package/entities/Policies/schema.json +36 -0
  119. package/entities/ReportAttachments/action.json +107 -0
  120. package/entities/ReportAttachments/mockdatafiles/deleteReportAttachment-default.json +5 -0
  121. package/entities/ReportAttachments/mockdatafiles/getAllReportAttachments-default.json +26 -0
  122. package/entities/ReportAttachments/mockdatafiles/getReportAttachment-default.json +3 -0
  123. package/entities/ReportAttachments/mockdatafiles/updateReportAttachmentById-default.json +3 -0
  124. package/entities/ReportAttachments/schema.json +23 -0
  125. package/entities/ReportAttachmentsAlerts/action.json +311 -0
  126. package/entities/ReportAttachmentsAlerts/mockdatafiles/createAlertAttachment-default.json +122 -0
  127. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentAggregation-default.json +3 -0
  128. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentFilterSchema-default.json +218 -0
  129. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentFilters-default.json +17 -0
  130. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentResource-default.json +15 -0
  131. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentSettings-default.json +67 -0
  132. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentTimeSettings-default.json +8 -0
  133. package/entities/ReportAttachmentsAlerts/mockdatafiles/getAlertAttachmentVisualizationSettings-default.json +59 -0
  134. package/entities/ReportAttachmentsAlerts/mockdatafiles/partiallyUpdateAlertAttachmentVisualizationSettings-default.json +65 -0
  135. package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentAggregation-default.json +3 -0
  136. package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentFilters-default.json +102 -0
  137. package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentResource-default.json +10 -0
  138. package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentSettings-default.json +52 -0
  139. package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentTimeSettings-default.json +8 -0
  140. package/entities/ReportAttachmentsAlerts/mockdatafiles/updateAlertAttachmentVisualizationSettings-default.json +65 -0
  141. package/entities/ReportAttachmentsAlerts/schema.json +33 -0
  142. package/entities/ReportAttachmentsDeviceGroups/action.json +106 -0
  143. package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/createDeviceGroupsAttachment-default.json +46 -0
  144. package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/getDeviceGroupsAttachment-default.json +12 -0
  145. package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/getDeviceGroupsAttachmentVisualization-default.json +28 -0
  146. package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/updateDeviceGroupsAttachment-default.json +9 -0
  147. package/entities/ReportAttachmentsDeviceGroups/mockdatafiles/updateDeviceGroupsAttachmentVisualization-default.json +38 -0
  148. package/entities/ReportAttachmentsDeviceGroups/schema.json +23 -0
  149. package/entities/ReportAttachmentsDevices/action.json +209 -0
  150. package/entities/ReportAttachmentsDevices/mockdatafiles/createDeviceAttachment-default.json +81 -0
  151. package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachment-default.json +12 -0
  152. package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachmentFilterSchema-default.json +4 -0
  153. package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachmentFilters-default.json +90 -0
  154. package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachmentSettings-default.json +72 -0
  155. package/entities/ReportAttachmentsDevices/mockdatafiles/getDeviceAttachmentVisualization-default.json +36 -0
  156. package/entities/ReportAttachmentsDevices/mockdatafiles/updateDeviceAttachment-default.json +6 -0
  157. package/entities/ReportAttachmentsDevices/mockdatafiles/updateDeviceAttachmentFilters-default.json +36 -0
  158. package/entities/ReportAttachmentsDevices/mockdatafiles/updateDeviceAttachmentSettings-default.json +56 -0
  159. package/entities/ReportAttachmentsDevices/mockdatafiles/updateDeviceAttachmentVisualization-default.json +39 -0
  160. package/entities/ReportAttachmentsDevices/schema.json +28 -0
  161. package/entities/ReportAttachmentsFlowFalcon/action.json +290 -0
  162. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/createFlowFalconAttachment-default.json +243 -0
  163. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentFilterSchema-default.json +4 -0
  164. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentFilters-default.json +138 -0
  165. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentResources-default.json +64 -0
  166. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentSettings-default.json +80 -0
  167. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentTimeSettings-default.json +8 -0
  168. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/getFlowFalconAttachmentVisualizationSettings-default.json +71 -0
  169. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/partiallyUpdateFlowFalconAttachmentSettings-default.json +48 -0
  170. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/partiallyUpdateFlowFalconAttachmentVisualizationSettings-default.json +67 -0
  171. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentFilters-default.json +58 -0
  172. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentResources-default.json +52 -0
  173. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentSettings-default.json +71 -0
  174. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentTimeSettings-default.json +8 -0
  175. package/entities/ReportAttachmentsFlowFalcon/mockdatafiles/updateFlowFalconAttachmentVisualizationSettings-default.json +56 -0
  176. package/entities/ReportAttachmentsFlowFalcon/schema.json +32 -0
  177. package/entities/ReportAttachmentsGroupMetrics/action.json +188 -0
  178. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/createGroupMetricsAttachment-default.json +208 -0
  179. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/getGroupMetricsAttachment-default.json +172 -0
  180. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/getGroupMetricsAttachmentSettings-default.json +47 -0
  181. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/getGroupMetricsAttachmentTimeSettings-default.json +8 -0
  182. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/getGroupMetricsAttachmentVisualization-default.json +34 -0
  183. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/updateGroupMetricsAttachment-default.json +207 -0
  184. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/updateGroupMetricsAttachmentSettings-default.json +62 -0
  185. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/updateGroupMetricsAttachmentTimeSettings-default.json +8 -0
  186. package/entities/ReportAttachmentsGroupMetrics/mockdatafiles/updateGroupMetricsAttachmentVisualization-default.json +30 -0
  187. package/entities/ReportAttachmentsGroupMetrics/schema.json +27 -0
  188. package/entities/ReportAttachmentsMetadata/action.json +126 -0
  189. package/entities/ReportAttachmentsMetadata/mockdatafiles/createMetadataAttachment-default.json +41 -0
  190. package/entities/ReportAttachmentsMetadata/mockdatafiles/getMetadataAttachmentResources-default.json +12 -0
  191. package/entities/ReportAttachmentsMetadata/mockdatafiles/getMetadataAttachmentVisualizationSettings-default.json +33 -0
  192. package/entities/ReportAttachmentsMetadata/mockdatafiles/partiallyUpdateMetadataAttachmentVisualizationSettings-default.json +27 -0
  193. package/entities/ReportAttachmentsMetadata/mockdatafiles/updateMetadataAttachmentResources-default.json +9 -0
  194. package/entities/ReportAttachmentsMetadata/mockdatafiles/updateMetadataAttachmentVisualizationSettings-default.json +33 -0
  195. package/entities/ReportAttachmentsMetadata/schema.json +24 -0
  196. package/entities/ReportAttachmentsObjectGroups/action.json +126 -0
  197. package/entities/ReportAttachmentsObjectGroups/mockdatafiles/createObjectGroupAttachment-default.json +54 -0
  198. package/entities/ReportAttachmentsObjectGroups/mockdatafiles/getObjectGroupAttachmentResources-default.json +11 -0
  199. package/entities/ReportAttachmentsObjectGroups/mockdatafiles/getObjectGroupAttachmentVisualizationSettings-default.json +41 -0
  200. package/entities/ReportAttachmentsObjectGroups/mockdatafiles/partiallyUpdateObjectGroupAttachmentVisualizationSettings-default.json +35 -0
  201. package/entities/ReportAttachmentsObjectGroups/mockdatafiles/updateObjectGroupAttachmentResources-default.json +16 -0
  202. package/entities/ReportAttachmentsObjectGroups/mockdatafiles/updateObjectGroupAttachmentVisualizationSettings-default.json +36 -0
  203. package/entities/ReportAttachmentsObjectGroups/schema.json +24 -0
  204. package/entities/ReportAttachmentsObjects/action.json +167 -0
  205. package/entities/ReportAttachmentsObjects/mockdatafiles/createObjectAttachment-default.json +51 -0
  206. package/entities/ReportAttachmentsObjects/mockdatafiles/getObjectAttachmentResources-default.json +10 -0
  207. package/entities/ReportAttachmentsObjects/mockdatafiles/getObjectAttachmentSettings-default.json +5 -0
  208. package/entities/ReportAttachmentsObjects/mockdatafiles/getObjectAttachmentVisualizationSettings-default.json +32 -0
  209. package/entities/ReportAttachmentsObjects/mockdatafiles/partiallyUpdateObjectAttachmentVisualizationSettings-default.json +31 -0
  210. package/entities/ReportAttachmentsObjects/mockdatafiles/updateObjectAttachmentResources-default.json +10 -0
  211. package/entities/ReportAttachmentsObjects/mockdatafiles/updateObjectAttachmentSettings-default.json +5 -0
  212. package/entities/ReportAttachmentsObjects/mockdatafiles/updateObjectAttachmentVisualizationSettings-default.json +35 -0
  213. package/entities/ReportAttachmentsObjects/schema.json +26 -0
  214. package/entities/ReportAttachmentsPerformanceMetrics/action.json +228 -0
  215. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/createPerformanceMetricsAttachment-default.json +275 -0
  216. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/getPerformanceMetricsAttachmentResources-default.json +53 -0
  217. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/getPerformanceMetricsAttachmentSettings-default.json +92 -0
  218. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/getPerformanceMetricsAttachmentTimeSettings-default.json +8 -0
  219. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/getPerformanceMetricsAttachmentVisualizationSettings-default.json +124 -0
  220. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/partiallyUpdatePerformanceMetricsAttachmentSettings-default.json +81 -0
  221. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/partiallyUpdatePerformanceMetricsAttachmentVisualizationSettings-default.json +126 -0
  222. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/updatePerformanceMetricsAttachmentResources-default.json +46 -0
  223. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/updatePerformanceMetricsAttachmentSettings-default.json +139 -0
  224. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/updatePerformanceMetricsAttachmentTimeSettings-default.json +8 -0
  225. package/entities/ReportAttachmentsPerformanceMetrics/mockdatafiles/updatePerformanceMetricsAttachmentVisualizationSettings-default.json +122 -0
  226. package/entities/ReportAttachmentsPerformanceMetrics/schema.json +29 -0
  227. package/entities/ReportAttachmentsStatusMap/action.json +65 -0
  228. package/entities/ReportAttachmentsStatusMap/mockdatafiles/createStatusMapAttachment-default.json +9 -0
  229. package/entities/ReportAttachmentsStatusMap/mockdatafiles/getStatusMapAttachmentResources-default.json +3 -0
  230. package/entities/ReportAttachmentsStatusMap/mockdatafiles/updateStatusMapAttachmentResources-default.json +3 -0
  231. package/entities/ReportAttachmentsStatusMap/schema.json +21 -0
  232. package/entities/ReportAttachmentsTelephony/action.json +188 -0
  233. package/entities/ReportAttachmentsTelephony/mockdatafiles/createTelephonyAttachment-default.json +57 -0
  234. package/entities/ReportAttachmentsTelephony/mockdatafiles/getTelephonyAttachmentAggregation-default.json +3 -0
  235. package/entities/ReportAttachmentsTelephony/mockdatafiles/getTelephonyAttachmentSettings-default.json +9 -0
  236. package/entities/ReportAttachmentsTelephony/mockdatafiles/getTelephonyAttachmentTimeSettings-default.json +8 -0
  237. package/entities/ReportAttachmentsTelephony/mockdatafiles/getTelephonyAttachmentVisualizationSettings-default.json +35 -0
  238. package/entities/ReportAttachmentsTelephony/mockdatafiles/updateTelephonyAttachmentAggregation-default.json +3 -0
  239. package/entities/ReportAttachmentsTelephony/mockdatafiles/updateTelephonyAttachmentSettings-default.json +9 -0
  240. package/entities/ReportAttachmentsTelephony/mockdatafiles/updateTelephonyAttachmentTimeSettings-default.json +8 -0
  241. package/entities/ReportAttachmentsTelephony/mockdatafiles/updateTelephonyAttachmentVisualizationSettings-default.json +33 -0
  242. package/entities/ReportAttachmentsTelephony/schema.json +27 -0
  243. package/entities/ReportAttachmentsTopN/action.json +228 -0
  244. package/entities/ReportAttachmentsTopN/mockdatafiles/createTopNAttachment-default.json +111 -0
  245. package/entities/ReportAttachmentsTopN/mockdatafiles/getTopNAttachmentResources-default.json +8 -0
  246. package/entities/ReportAttachmentsTopN/mockdatafiles/getTopNAttachmentSettings-default.json +129 -0
  247. package/entities/ReportAttachmentsTopN/mockdatafiles/getTopNAttachmentTimeSettings-default.json +8 -0
  248. package/entities/ReportAttachmentsTopN/mockdatafiles/getTopNAttachmentVisualizationSettings-default.json +44 -0
  249. package/entities/ReportAttachmentsTopN/mockdatafiles/partiallyUpdateTopNAttachmentSettings-default.json +140 -0
  250. package/entities/ReportAttachmentsTopN/mockdatafiles/partiallyUpdateTopNAttachmentVisualizationSettings-default.json +47 -0
  251. package/entities/ReportAttachmentsTopN/mockdatafiles/updateTopNAttachmentResources-default.json +13 -0
  252. package/entities/ReportAttachmentsTopN/mockdatafiles/updateTopNAttachmentSettings-default.json +39 -0
  253. package/entities/ReportAttachmentsTopN/mockdatafiles/updateTopNAttachmentTimeSettings-default.json +8 -0
  254. package/entities/ReportAttachmentsTopN/mockdatafiles/updateTopNAttachmentVisualizationSettings-default.json +51 -0
  255. package/entities/ReportAttachmentsTopN/schema.json +29 -0
  256. package/entities/Reports/action.json +187 -0
  257. package/entities/Reports/mockdatafiles/createReport-default.json +24 -0
  258. package/entities/Reports/mockdatafiles/createReportFolder-default.json +5 -0
  259. package/entities/Reports/mockdatafiles/deleteReportById-default.json +5 -0
  260. package/entities/Reports/mockdatafiles/deleteReportFolderById-default.json +5 -0
  261. package/entities/Reports/mockdatafiles/getAllReportFolders-default.json +48 -0
  262. package/entities/Reports/mockdatafiles/getAllReports-default.json +32 -0
  263. package/entities/Reports/mockdatafiles/getReport-default.json +24 -0
  264. package/entities/Reports/mockdatafiles/updateReportById-default.json +24 -0
  265. package/entities/Reports/mockdatafiles/updateReportFolderById-default.json +5 -0
  266. package/entities/Reports/schema.json +27 -0
  267. package/entities/StatusMapImages/action.json +46 -0
  268. package/entities/StatusMapImages/mockdatafiles/getMapImages-default.json +14 -0
  269. package/entities/StatusMapImages/schema.json +20 -0
  270. package/entities/Users/action.json +25 -0
  271. package/entities/Users/mockdatafiles/getCurrentUser-default.json +26 -0
  272. package/entities/Users/schema.json +19 -0
  273. package/entities/alert/action.json +81 -0
  274. package/entities/alert/mockdatafiles/createAlertForced-default.json +27 -0
  275. package/entities/alert/mockdatafiles/getFlowFalconDeviceAlerts-default.json +48 -0
  276. package/entities/alert/mockdatafiles/getMaxSeverityAlertForObjects-default.json +14 -0
  277. package/entities/alert/mockdatafiles/patchAlert-default.json +36 -0
  278. package/entities/alert/schema.json +8 -2
  279. package/entities/device/action.json +20 -0
  280. package/entities/device/mockdatafiles/getdeviceerror.json +1 -58
  281. package/entities/device/mockdatafiles/partiallyUpdateDeviceById-default.json +103 -0
  282. package/entities/device/schema.json +2 -1
  283. package/entities/map/action.json +20 -0
  284. package/entities/map/mockdatafiles/partiallyUpdateStatusMapById-default.json +534 -0
  285. package/entities/map/schema.json +2 -1
  286. package/error.json +12 -0
  287. package/package.json +20 -13
  288. package/pronghorn.json +34868 -2005
  289. package/propertiesDecorators.json +14 -0
  290. package/propertiesSchema.json +436 -0
  291. package/refs?service=git-upload-pack +0 -0
  292. package/report/adapterInfo.json +10 -0
  293. package/report/updateReport1653680202971.json +120 -0
  294. package/sampleProperties.json +94 -2
  295. package/test/integration/adapterTestBasicGet.js +2 -2
  296. package/test/integration/adapterTestIntegration.js +8011 -105
  297. package/test/unit/adapterBaseTestUnit.js +35 -27
  298. package/test/unit/adapterTestUnit.js +7948 -145
  299. package/utils/adapterInfo.js +206 -0
  300. package/utils/addAuth.js +94 -0
  301. package/utils/basicGet.js +1 -14
  302. package/utils/entitiesToDB.js +179 -0
  303. package/utils/modify.js +1 -1
  304. package/utils/packModificationScript.js +1 -1
  305. package/utils/patches2bundledDeps.js +90 -0
  306. package/utils/pre-commit.sh +3 -0
  307. package/utils/removeHooks.js +20 -0
  308. package/utils/tbScript.js +43 -22
  309. package/utils/tbUtils.js +126 -29
  310. package/utils/testRunner.js +16 -16
  311. package/utils/troubleshootingAdapter.js +2 -26
@@ -0,0 +1,1318 @@
1
+ {
2
+ "content": [
3
+ {
4
+ "appendConditionMessages": true,
5
+ "clearConditions": [
6
+ {
7
+ "aggregation": {},
8
+ "comparison": {},
9
+ "duration": {},
10
+ "id": {},
11
+ "indicatorTypeId": {},
12
+ "isTrigger": {},
13
+ "message": {},
14
+ "policyId": {},
15
+ "sigmaDirection": {},
16
+ "type": {},
17
+ "unit": {},
18
+ "value": {}
19
+ },
20
+ {
21
+ "aggregation": {},
22
+ "comparison": {},
23
+ "duration": {},
24
+ "id": {},
25
+ "indicatorTypeId": {},
26
+ "isTrigger": {},
27
+ "message": {},
28
+ "policyId": {},
29
+ "sigmaDirection": {},
30
+ "type": {},
31
+ "unit": {},
32
+ "value": {}
33
+ }
34
+ ],
35
+ "clearExpression": "string",
36
+ "clearMessage": "string",
37
+ "description": "string",
38
+ "flow": {
39
+ "direction": 10,
40
+ "filterId": 7,
41
+ "id": 7,
42
+ "viewId": 2
43
+ },
44
+ "folderId": 2,
45
+ "groupId": 6,
46
+ "groupIdList": [
47
+ 7,
48
+ 8,
49
+ 4,
50
+ 3,
51
+ 7,
52
+ 9
53
+ ],
54
+ "id": 1,
55
+ "isDeviceGroup": true,
56
+ "isMemberOfAny": true,
57
+ "lastUpdated": 5,
58
+ "mailOnce": true,
59
+ "mailPeriod": 9,
60
+ "mailTo": "string",
61
+ "name": "string",
62
+ "objectSubTypeId": 9,
63
+ "objectTypeId": 7,
64
+ "pluginId": 6,
65
+ "severity": 3,
66
+ "triggerConditions": [
67
+ {
68
+ "aggregation": {},
69
+ "comparison": {},
70
+ "duration": {},
71
+ "id": {},
72
+ "indicatorTypeId": {},
73
+ "isTrigger": {},
74
+ "message": {},
75
+ "policyId": {},
76
+ "sigmaDirection": {},
77
+ "type": {},
78
+ "unit": {},
79
+ "value": {}
80
+ },
81
+ {
82
+ "aggregation": {},
83
+ "comparison": {},
84
+ "duration": {},
85
+ "id": {},
86
+ "indicatorTypeId": {},
87
+ "isTrigger": {},
88
+ "message": {},
89
+ "policyId": {},
90
+ "sigmaDirection": {},
91
+ "type": {},
92
+ "unit": {},
93
+ "value": {}
94
+ },
95
+ {
96
+ "aggregation": {},
97
+ "comparison": {},
98
+ "duration": {},
99
+ "id": {},
100
+ "indicatorTypeId": {},
101
+ "isTrigger": {},
102
+ "message": {},
103
+ "policyId": {},
104
+ "sigmaDirection": {},
105
+ "type": {},
106
+ "unit": {},
107
+ "value": {}
108
+ }
109
+ ],
110
+ "triggerExpression": "string",
111
+ "triggerMessage": "string",
112
+ "type": "flow",
113
+ "useCustomTraps": false,
114
+ "useDefaultTraps": true,
115
+ "useDeviceTraps": false,
116
+ "userEnabled": 1
117
+ },
118
+ {
119
+ "appendConditionMessages": false,
120
+ "clearConditions": [
121
+ {
122
+ "aggregation": {},
123
+ "comparison": {},
124
+ "duration": {},
125
+ "id": {},
126
+ "indicatorTypeId": {},
127
+ "isTrigger": {},
128
+ "message": {},
129
+ "policyId": {},
130
+ "sigmaDirection": {},
131
+ "type": {},
132
+ "unit": {},
133
+ "value": {}
134
+ },
135
+ {
136
+ "aggregation": {},
137
+ "comparison": {},
138
+ "duration": {},
139
+ "id": {},
140
+ "indicatorTypeId": {},
141
+ "isTrigger": {},
142
+ "message": {},
143
+ "policyId": {},
144
+ "sigmaDirection": {},
145
+ "type": {},
146
+ "unit": {},
147
+ "value": {}
148
+ },
149
+ {
150
+ "aggregation": {},
151
+ "comparison": {},
152
+ "duration": {},
153
+ "id": {},
154
+ "indicatorTypeId": {},
155
+ "isTrigger": {},
156
+ "message": {},
157
+ "policyId": {},
158
+ "sigmaDirection": {},
159
+ "type": {},
160
+ "unit": {},
161
+ "value": {}
162
+ },
163
+ {
164
+ "aggregation": {},
165
+ "comparison": {},
166
+ "duration": {},
167
+ "id": {},
168
+ "indicatorTypeId": {},
169
+ "isTrigger": {},
170
+ "message": {},
171
+ "policyId": {},
172
+ "sigmaDirection": {},
173
+ "type": {},
174
+ "unit": {},
175
+ "value": {}
176
+ },
177
+ {
178
+ "aggregation": {},
179
+ "comparison": {},
180
+ "duration": {},
181
+ "id": {},
182
+ "indicatorTypeId": {},
183
+ "isTrigger": {},
184
+ "message": {},
185
+ "policyId": {},
186
+ "sigmaDirection": {},
187
+ "type": {},
188
+ "unit": {},
189
+ "value": {}
190
+ },
191
+ {
192
+ "aggregation": {},
193
+ "comparison": {},
194
+ "duration": {},
195
+ "id": {},
196
+ "indicatorTypeId": {},
197
+ "isTrigger": {},
198
+ "message": {},
199
+ "policyId": {},
200
+ "sigmaDirection": {},
201
+ "type": {},
202
+ "unit": {},
203
+ "value": {}
204
+ },
205
+ {
206
+ "aggregation": {},
207
+ "comparison": {},
208
+ "duration": {},
209
+ "id": {},
210
+ "indicatorTypeId": {},
211
+ "isTrigger": {},
212
+ "message": {},
213
+ "policyId": {},
214
+ "sigmaDirection": {},
215
+ "type": {},
216
+ "unit": {},
217
+ "value": {}
218
+ },
219
+ {
220
+ "aggregation": {},
221
+ "comparison": {},
222
+ "duration": {},
223
+ "id": {},
224
+ "indicatorTypeId": {},
225
+ "isTrigger": {},
226
+ "message": {},
227
+ "policyId": {},
228
+ "sigmaDirection": {},
229
+ "type": {},
230
+ "unit": {},
231
+ "value": {}
232
+ }
233
+ ],
234
+ "clearExpression": "string",
235
+ "clearMessage": "string",
236
+ "description": "string",
237
+ "flow": {
238
+ "direction": 4,
239
+ "filterId": 6,
240
+ "id": 3,
241
+ "viewId": 8
242
+ },
243
+ "folderId": 8,
244
+ "groupId": 1,
245
+ "groupIdList": [
246
+ 3,
247
+ 9,
248
+ 6,
249
+ 7,
250
+ 6,
251
+ 4
252
+ ],
253
+ "id": 5,
254
+ "isDeviceGroup": false,
255
+ "isMemberOfAny": false,
256
+ "lastUpdated": 9,
257
+ "mailOnce": true,
258
+ "mailPeriod": 9,
259
+ "mailTo": "string",
260
+ "name": "string",
261
+ "objectSubTypeId": 7,
262
+ "objectTypeId": 10,
263
+ "pluginId": 9,
264
+ "severity": 7,
265
+ "triggerConditions": [
266
+ {
267
+ "aggregation": {},
268
+ "comparison": {},
269
+ "duration": {},
270
+ "id": {},
271
+ "indicatorTypeId": {},
272
+ "isTrigger": {},
273
+ "message": {},
274
+ "policyId": {},
275
+ "sigmaDirection": {},
276
+ "type": {},
277
+ "unit": {},
278
+ "value": {}
279
+ },
280
+ {
281
+ "aggregation": {},
282
+ "comparison": {},
283
+ "duration": {},
284
+ "id": {},
285
+ "indicatorTypeId": {},
286
+ "isTrigger": {},
287
+ "message": {},
288
+ "policyId": {},
289
+ "sigmaDirection": {},
290
+ "type": {},
291
+ "unit": {},
292
+ "value": {}
293
+ },
294
+ {
295
+ "aggregation": {},
296
+ "comparison": {},
297
+ "duration": {},
298
+ "id": {},
299
+ "indicatorTypeId": {},
300
+ "isTrigger": {},
301
+ "message": {},
302
+ "policyId": {},
303
+ "sigmaDirection": {},
304
+ "type": {},
305
+ "unit": {},
306
+ "value": {}
307
+ },
308
+ {
309
+ "aggregation": {},
310
+ "comparison": {},
311
+ "duration": {},
312
+ "id": {},
313
+ "indicatorTypeId": {},
314
+ "isTrigger": {},
315
+ "message": {},
316
+ "policyId": {},
317
+ "sigmaDirection": {},
318
+ "type": {},
319
+ "unit": {},
320
+ "value": {}
321
+ },
322
+ {
323
+ "aggregation": {},
324
+ "comparison": {},
325
+ "duration": {},
326
+ "id": {},
327
+ "indicatorTypeId": {},
328
+ "isTrigger": {},
329
+ "message": {},
330
+ "policyId": {},
331
+ "sigmaDirection": {},
332
+ "type": {},
333
+ "unit": {},
334
+ "value": {}
335
+ },
336
+ {
337
+ "aggregation": {},
338
+ "comparison": {},
339
+ "duration": {},
340
+ "id": {},
341
+ "indicatorTypeId": {},
342
+ "isTrigger": {},
343
+ "message": {},
344
+ "policyId": {},
345
+ "sigmaDirection": {},
346
+ "type": {},
347
+ "unit": {},
348
+ "value": {}
349
+ },
350
+ {
351
+ "aggregation": {},
352
+ "comparison": {},
353
+ "duration": {},
354
+ "id": {},
355
+ "indicatorTypeId": {},
356
+ "isTrigger": {},
357
+ "message": {},
358
+ "policyId": {},
359
+ "sigmaDirection": {},
360
+ "type": {},
361
+ "unit": {},
362
+ "value": {}
363
+ },
364
+ {
365
+ "aggregation": {},
366
+ "comparison": {},
367
+ "duration": {},
368
+ "id": {},
369
+ "indicatorTypeId": {},
370
+ "isTrigger": {},
371
+ "message": {},
372
+ "policyId": {},
373
+ "sigmaDirection": {},
374
+ "type": {},
375
+ "unit": {},
376
+ "value": {}
377
+ }
378
+ ],
379
+ "triggerExpression": "string",
380
+ "triggerMessage": "string",
381
+ "type": "other",
382
+ "useCustomTraps": true,
383
+ "useDefaultTraps": true,
384
+ "useDeviceTraps": false,
385
+ "userEnabled": 7
386
+ },
387
+ {
388
+ "appendConditionMessages": true,
389
+ "clearConditions": [
390
+ {
391
+ "aggregation": {},
392
+ "comparison": {},
393
+ "duration": {},
394
+ "id": {},
395
+ "indicatorTypeId": {},
396
+ "isTrigger": {},
397
+ "message": {},
398
+ "policyId": {},
399
+ "sigmaDirection": {},
400
+ "type": {},
401
+ "unit": {},
402
+ "value": {}
403
+ },
404
+ {
405
+ "aggregation": {},
406
+ "comparison": {},
407
+ "duration": {},
408
+ "id": {},
409
+ "indicatorTypeId": {},
410
+ "isTrigger": {},
411
+ "message": {},
412
+ "policyId": {},
413
+ "sigmaDirection": {},
414
+ "type": {},
415
+ "unit": {},
416
+ "value": {}
417
+ }
418
+ ],
419
+ "clearExpression": "string",
420
+ "clearMessage": "string",
421
+ "description": "string",
422
+ "flow": {
423
+ "direction": 8,
424
+ "filterId": 6,
425
+ "id": 4,
426
+ "viewId": 2
427
+ },
428
+ "folderId": 4,
429
+ "groupId": 2,
430
+ "groupIdList": [
431
+ 3,
432
+ 1,
433
+ 5
434
+ ],
435
+ "id": 6,
436
+ "isDeviceGroup": false,
437
+ "isMemberOfAny": false,
438
+ "lastUpdated": 10,
439
+ "mailOnce": false,
440
+ "mailPeriod": 7,
441
+ "mailTo": "string",
442
+ "name": "string",
443
+ "objectSubTypeId": 5,
444
+ "objectTypeId": 1,
445
+ "pluginId": 4,
446
+ "severity": 10,
447
+ "triggerConditions": [
448
+ {
449
+ "aggregation": {},
450
+ "comparison": {},
451
+ "duration": {},
452
+ "id": {},
453
+ "indicatorTypeId": {},
454
+ "isTrigger": {},
455
+ "message": {},
456
+ "policyId": {},
457
+ "sigmaDirection": {},
458
+ "type": {},
459
+ "unit": {},
460
+ "value": {}
461
+ },
462
+ {
463
+ "aggregation": {},
464
+ "comparison": {},
465
+ "duration": {},
466
+ "id": {},
467
+ "indicatorTypeId": {},
468
+ "isTrigger": {},
469
+ "message": {},
470
+ "policyId": {},
471
+ "sigmaDirection": {},
472
+ "type": {},
473
+ "unit": {},
474
+ "value": {}
475
+ },
476
+ {
477
+ "aggregation": {},
478
+ "comparison": {},
479
+ "duration": {},
480
+ "id": {},
481
+ "indicatorTypeId": {},
482
+ "isTrigger": {},
483
+ "message": {},
484
+ "policyId": {},
485
+ "sigmaDirection": {},
486
+ "type": {},
487
+ "unit": {},
488
+ "value": {}
489
+ },
490
+ {
491
+ "aggregation": {},
492
+ "comparison": {},
493
+ "duration": {},
494
+ "id": {},
495
+ "indicatorTypeId": {},
496
+ "isTrigger": {},
497
+ "message": {},
498
+ "policyId": {},
499
+ "sigmaDirection": {},
500
+ "type": {},
501
+ "unit": {},
502
+ "value": {}
503
+ },
504
+ {
505
+ "aggregation": {},
506
+ "comparison": {},
507
+ "duration": {},
508
+ "id": {},
509
+ "indicatorTypeId": {},
510
+ "isTrigger": {},
511
+ "message": {},
512
+ "policyId": {},
513
+ "sigmaDirection": {},
514
+ "type": {},
515
+ "unit": {},
516
+ "value": {}
517
+ }
518
+ ],
519
+ "triggerExpression": "string",
520
+ "triggerMessage": "string",
521
+ "type": "other",
522
+ "useCustomTraps": true,
523
+ "useDefaultTraps": true,
524
+ "useDeviceTraps": true,
525
+ "userEnabled": 6
526
+ },
527
+ {
528
+ "appendConditionMessages": true,
529
+ "clearConditions": [
530
+ {
531
+ "aggregation": {},
532
+ "comparison": {},
533
+ "duration": {},
534
+ "id": {},
535
+ "indicatorTypeId": {},
536
+ "isTrigger": {},
537
+ "message": {},
538
+ "policyId": {},
539
+ "sigmaDirection": {},
540
+ "type": {},
541
+ "unit": {},
542
+ "value": {}
543
+ },
544
+ {
545
+ "aggregation": {},
546
+ "comparison": {},
547
+ "duration": {},
548
+ "id": {},
549
+ "indicatorTypeId": {},
550
+ "isTrigger": {},
551
+ "message": {},
552
+ "policyId": {},
553
+ "sigmaDirection": {},
554
+ "type": {},
555
+ "unit": {},
556
+ "value": {}
557
+ },
558
+ {
559
+ "aggregation": {},
560
+ "comparison": {},
561
+ "duration": {},
562
+ "id": {},
563
+ "indicatorTypeId": {},
564
+ "isTrigger": {},
565
+ "message": {},
566
+ "policyId": {},
567
+ "sigmaDirection": {},
568
+ "type": {},
569
+ "unit": {},
570
+ "value": {}
571
+ }
572
+ ],
573
+ "clearExpression": "string",
574
+ "clearMessage": "string",
575
+ "description": "string",
576
+ "flow": {
577
+ "direction": 5,
578
+ "filterId": 4,
579
+ "id": 3,
580
+ "viewId": 6
581
+ },
582
+ "folderId": 4,
583
+ "groupId": 4,
584
+ "groupIdList": [
585
+ 4,
586
+ 4,
587
+ 2,
588
+ 8,
589
+ 10,
590
+ 1,
591
+ 1,
592
+ 7,
593
+ 4
594
+ ],
595
+ "id": 4,
596
+ "isDeviceGroup": true,
597
+ "isMemberOfAny": true,
598
+ "lastUpdated": 5,
599
+ "mailOnce": false,
600
+ "mailPeriod": 4,
601
+ "mailTo": "string",
602
+ "name": "string",
603
+ "objectSubTypeId": 7,
604
+ "objectTypeId": 7,
605
+ "pluginId": 1,
606
+ "severity": 5,
607
+ "triggerConditions": [
608
+ {
609
+ "aggregation": {},
610
+ "comparison": {},
611
+ "duration": {},
612
+ "id": {},
613
+ "indicatorTypeId": {},
614
+ "isTrigger": {},
615
+ "message": {},
616
+ "policyId": {},
617
+ "sigmaDirection": {},
618
+ "type": {},
619
+ "unit": {},
620
+ "value": {}
621
+ },
622
+ {
623
+ "aggregation": {},
624
+ "comparison": {},
625
+ "duration": {},
626
+ "id": {},
627
+ "indicatorTypeId": {},
628
+ "isTrigger": {},
629
+ "message": {},
630
+ "policyId": {},
631
+ "sigmaDirection": {},
632
+ "type": {},
633
+ "unit": {},
634
+ "value": {}
635
+ },
636
+ {
637
+ "aggregation": {},
638
+ "comparison": {},
639
+ "duration": {},
640
+ "id": {},
641
+ "indicatorTypeId": {},
642
+ "isTrigger": {},
643
+ "message": {},
644
+ "policyId": {},
645
+ "sigmaDirection": {},
646
+ "type": {},
647
+ "unit": {},
648
+ "value": {}
649
+ },
650
+ {
651
+ "aggregation": {},
652
+ "comparison": {},
653
+ "duration": {},
654
+ "id": {},
655
+ "indicatorTypeId": {},
656
+ "isTrigger": {},
657
+ "message": {},
658
+ "policyId": {},
659
+ "sigmaDirection": {},
660
+ "type": {},
661
+ "unit": {},
662
+ "value": {}
663
+ }
664
+ ],
665
+ "triggerExpression": "string",
666
+ "triggerMessage": "string",
667
+ "type": "flow",
668
+ "useCustomTraps": true,
669
+ "useDefaultTraps": true,
670
+ "useDeviceTraps": true,
671
+ "userEnabled": 5
672
+ },
673
+ {
674
+ "appendConditionMessages": false,
675
+ "clearConditions": [
676
+ {
677
+ "aggregation": {},
678
+ "comparison": {},
679
+ "duration": {},
680
+ "id": {},
681
+ "indicatorTypeId": {},
682
+ "isTrigger": {},
683
+ "message": {},
684
+ "policyId": {},
685
+ "sigmaDirection": {},
686
+ "type": {},
687
+ "unit": {},
688
+ "value": {}
689
+ },
690
+ {
691
+ "aggregation": {},
692
+ "comparison": {},
693
+ "duration": {},
694
+ "id": {},
695
+ "indicatorTypeId": {},
696
+ "isTrigger": {},
697
+ "message": {},
698
+ "policyId": {},
699
+ "sigmaDirection": {},
700
+ "type": {},
701
+ "unit": {},
702
+ "value": {}
703
+ }
704
+ ],
705
+ "clearExpression": "string",
706
+ "clearMessage": "string",
707
+ "description": "string",
708
+ "flow": {
709
+ "direction": 4,
710
+ "filterId": 1,
711
+ "id": 9,
712
+ "viewId": 2
713
+ },
714
+ "folderId": 9,
715
+ "groupId": 1,
716
+ "groupIdList": [
717
+ 10,
718
+ 7,
719
+ 4,
720
+ 2,
721
+ 4
722
+ ],
723
+ "id": 1,
724
+ "isDeviceGroup": true,
725
+ "isMemberOfAny": false,
726
+ "lastUpdated": 6,
727
+ "mailOnce": false,
728
+ "mailPeriod": 3,
729
+ "mailTo": "string",
730
+ "name": "string",
731
+ "objectSubTypeId": 10,
732
+ "objectTypeId": 1,
733
+ "pluginId": 10,
734
+ "severity": 9,
735
+ "triggerConditions": [
736
+ {
737
+ "aggregation": {},
738
+ "comparison": {},
739
+ "duration": {},
740
+ "id": {},
741
+ "indicatorTypeId": {},
742
+ "isTrigger": {},
743
+ "message": {},
744
+ "policyId": {},
745
+ "sigmaDirection": {},
746
+ "type": {},
747
+ "unit": {},
748
+ "value": {}
749
+ },
750
+ {
751
+ "aggregation": {},
752
+ "comparison": {},
753
+ "duration": {},
754
+ "id": {},
755
+ "indicatorTypeId": {},
756
+ "isTrigger": {},
757
+ "message": {},
758
+ "policyId": {},
759
+ "sigmaDirection": {},
760
+ "type": {},
761
+ "unit": {},
762
+ "value": {}
763
+ },
764
+ {
765
+ "aggregation": {},
766
+ "comparison": {},
767
+ "duration": {},
768
+ "id": {},
769
+ "indicatorTypeId": {},
770
+ "isTrigger": {},
771
+ "message": {},
772
+ "policyId": {},
773
+ "sigmaDirection": {},
774
+ "type": {},
775
+ "unit": {},
776
+ "value": {}
777
+ },
778
+ {
779
+ "aggregation": {},
780
+ "comparison": {},
781
+ "duration": {},
782
+ "id": {},
783
+ "indicatorTypeId": {},
784
+ "isTrigger": {},
785
+ "message": {},
786
+ "policyId": {},
787
+ "sigmaDirection": {},
788
+ "type": {},
789
+ "unit": {},
790
+ "value": {}
791
+ },
792
+ {
793
+ "aggregation": {},
794
+ "comparison": {},
795
+ "duration": {},
796
+ "id": {},
797
+ "indicatorTypeId": {},
798
+ "isTrigger": {},
799
+ "message": {},
800
+ "policyId": {},
801
+ "sigmaDirection": {},
802
+ "type": {},
803
+ "unit": {},
804
+ "value": {}
805
+ },
806
+ {
807
+ "aggregation": {},
808
+ "comparison": {},
809
+ "duration": {},
810
+ "id": {},
811
+ "indicatorTypeId": {},
812
+ "isTrigger": {},
813
+ "message": {},
814
+ "policyId": {},
815
+ "sigmaDirection": {},
816
+ "type": {},
817
+ "unit": {},
818
+ "value": {}
819
+ },
820
+ {
821
+ "aggregation": {},
822
+ "comparison": {},
823
+ "duration": {},
824
+ "id": {},
825
+ "indicatorTypeId": {},
826
+ "isTrigger": {},
827
+ "message": {},
828
+ "policyId": {},
829
+ "sigmaDirection": {},
830
+ "type": {},
831
+ "unit": {},
832
+ "value": {}
833
+ },
834
+ {
835
+ "aggregation": {},
836
+ "comparison": {},
837
+ "duration": {},
838
+ "id": {},
839
+ "indicatorTypeId": {},
840
+ "isTrigger": {},
841
+ "message": {},
842
+ "policyId": {},
843
+ "sigmaDirection": {},
844
+ "type": {},
845
+ "unit": {},
846
+ "value": {}
847
+ }
848
+ ],
849
+ "triggerExpression": "string",
850
+ "triggerMessage": "string",
851
+ "type": "flow",
852
+ "useCustomTraps": false,
853
+ "useDefaultTraps": false,
854
+ "useDeviceTraps": false,
855
+ "userEnabled": 2
856
+ },
857
+ {
858
+ "appendConditionMessages": false,
859
+ "clearConditions": [
860
+ {
861
+ "aggregation": {},
862
+ "comparison": {},
863
+ "duration": {},
864
+ "id": {},
865
+ "indicatorTypeId": {},
866
+ "isTrigger": {},
867
+ "message": {},
868
+ "policyId": {},
869
+ "sigmaDirection": {},
870
+ "type": {},
871
+ "unit": {},
872
+ "value": {}
873
+ },
874
+ {
875
+ "aggregation": {},
876
+ "comparison": {},
877
+ "duration": {},
878
+ "id": {},
879
+ "indicatorTypeId": {},
880
+ "isTrigger": {},
881
+ "message": {},
882
+ "policyId": {},
883
+ "sigmaDirection": {},
884
+ "type": {},
885
+ "unit": {},
886
+ "value": {}
887
+ },
888
+ {
889
+ "aggregation": {},
890
+ "comparison": {},
891
+ "duration": {},
892
+ "id": {},
893
+ "indicatorTypeId": {},
894
+ "isTrigger": {},
895
+ "message": {},
896
+ "policyId": {},
897
+ "sigmaDirection": {},
898
+ "type": {},
899
+ "unit": {},
900
+ "value": {}
901
+ },
902
+ {
903
+ "aggregation": {},
904
+ "comparison": {},
905
+ "duration": {},
906
+ "id": {},
907
+ "indicatorTypeId": {},
908
+ "isTrigger": {},
909
+ "message": {},
910
+ "policyId": {},
911
+ "sigmaDirection": {},
912
+ "type": {},
913
+ "unit": {},
914
+ "value": {}
915
+ },
916
+ {
917
+ "aggregation": {},
918
+ "comparison": {},
919
+ "duration": {},
920
+ "id": {},
921
+ "indicatorTypeId": {},
922
+ "isTrigger": {},
923
+ "message": {},
924
+ "policyId": {},
925
+ "sigmaDirection": {},
926
+ "type": {},
927
+ "unit": {},
928
+ "value": {}
929
+ },
930
+ {
931
+ "aggregation": {},
932
+ "comparison": {},
933
+ "duration": {},
934
+ "id": {},
935
+ "indicatorTypeId": {},
936
+ "isTrigger": {},
937
+ "message": {},
938
+ "policyId": {},
939
+ "sigmaDirection": {},
940
+ "type": {},
941
+ "unit": {},
942
+ "value": {}
943
+ },
944
+ {
945
+ "aggregation": {},
946
+ "comparison": {},
947
+ "duration": {},
948
+ "id": {},
949
+ "indicatorTypeId": {},
950
+ "isTrigger": {},
951
+ "message": {},
952
+ "policyId": {},
953
+ "sigmaDirection": {},
954
+ "type": {},
955
+ "unit": {},
956
+ "value": {}
957
+ }
958
+ ],
959
+ "clearExpression": "string",
960
+ "clearMessage": "string",
961
+ "description": "string",
962
+ "flow": {
963
+ "direction": 8,
964
+ "filterId": 4,
965
+ "id": 10,
966
+ "viewId": 3
967
+ },
968
+ "folderId": 3,
969
+ "groupId": 7,
970
+ "groupIdList": [
971
+ 10,
972
+ 1,
973
+ 8,
974
+ 3,
975
+ 2,
976
+ 9,
977
+ 8,
978
+ 5
979
+ ],
980
+ "id": 2,
981
+ "isDeviceGroup": false,
982
+ "isMemberOfAny": true,
983
+ "lastUpdated": 9,
984
+ "mailOnce": false,
985
+ "mailPeriod": 4,
986
+ "mailTo": "string",
987
+ "name": "string",
988
+ "objectSubTypeId": 6,
989
+ "objectTypeId": 1,
990
+ "pluginId": 10,
991
+ "severity": 2,
992
+ "triggerConditions": [
993
+ {
994
+ "aggregation": {},
995
+ "comparison": {},
996
+ "duration": {},
997
+ "id": {},
998
+ "indicatorTypeId": {},
999
+ "isTrigger": {},
1000
+ "message": {},
1001
+ "policyId": {},
1002
+ "sigmaDirection": {},
1003
+ "type": {},
1004
+ "unit": {},
1005
+ "value": {}
1006
+ },
1007
+ {
1008
+ "aggregation": {},
1009
+ "comparison": {},
1010
+ "duration": {},
1011
+ "id": {},
1012
+ "indicatorTypeId": {},
1013
+ "isTrigger": {},
1014
+ "message": {},
1015
+ "policyId": {},
1016
+ "sigmaDirection": {},
1017
+ "type": {},
1018
+ "unit": {},
1019
+ "value": {}
1020
+ },
1021
+ {
1022
+ "aggregation": {},
1023
+ "comparison": {},
1024
+ "duration": {},
1025
+ "id": {},
1026
+ "indicatorTypeId": {},
1027
+ "isTrigger": {},
1028
+ "message": {},
1029
+ "policyId": {},
1030
+ "sigmaDirection": {},
1031
+ "type": {},
1032
+ "unit": {},
1033
+ "value": {}
1034
+ }
1035
+ ],
1036
+ "triggerExpression": "string",
1037
+ "triggerMessage": "string",
1038
+ "type": "other",
1039
+ "useCustomTraps": true,
1040
+ "useDefaultTraps": false,
1041
+ "useDeviceTraps": false,
1042
+ "userEnabled": 7
1043
+ },
1044
+ {
1045
+ "appendConditionMessages": true,
1046
+ "clearConditions": [
1047
+ {
1048
+ "aggregation": {},
1049
+ "comparison": {},
1050
+ "duration": {},
1051
+ "id": {},
1052
+ "indicatorTypeId": {},
1053
+ "isTrigger": {},
1054
+ "message": {},
1055
+ "policyId": {},
1056
+ "sigmaDirection": {},
1057
+ "type": {},
1058
+ "unit": {},
1059
+ "value": {}
1060
+ },
1061
+ {
1062
+ "aggregation": {},
1063
+ "comparison": {},
1064
+ "duration": {},
1065
+ "id": {},
1066
+ "indicatorTypeId": {},
1067
+ "isTrigger": {},
1068
+ "message": {},
1069
+ "policyId": {},
1070
+ "sigmaDirection": {},
1071
+ "type": {},
1072
+ "unit": {},
1073
+ "value": {}
1074
+ },
1075
+ {
1076
+ "aggregation": {},
1077
+ "comparison": {},
1078
+ "duration": {},
1079
+ "id": {},
1080
+ "indicatorTypeId": {},
1081
+ "isTrigger": {},
1082
+ "message": {},
1083
+ "policyId": {},
1084
+ "sigmaDirection": {},
1085
+ "type": {},
1086
+ "unit": {},
1087
+ "value": {}
1088
+ },
1089
+ {
1090
+ "aggregation": {},
1091
+ "comparison": {},
1092
+ "duration": {},
1093
+ "id": {},
1094
+ "indicatorTypeId": {},
1095
+ "isTrigger": {},
1096
+ "message": {},
1097
+ "policyId": {},
1098
+ "sigmaDirection": {},
1099
+ "type": {},
1100
+ "unit": {},
1101
+ "value": {}
1102
+ },
1103
+ {
1104
+ "aggregation": {},
1105
+ "comparison": {},
1106
+ "duration": {},
1107
+ "id": {},
1108
+ "indicatorTypeId": {},
1109
+ "isTrigger": {},
1110
+ "message": {},
1111
+ "policyId": {},
1112
+ "sigmaDirection": {},
1113
+ "type": {},
1114
+ "unit": {},
1115
+ "value": {}
1116
+ },
1117
+ {
1118
+ "aggregation": {},
1119
+ "comparison": {},
1120
+ "duration": {},
1121
+ "id": {},
1122
+ "indicatorTypeId": {},
1123
+ "isTrigger": {},
1124
+ "message": {},
1125
+ "policyId": {},
1126
+ "sigmaDirection": {},
1127
+ "type": {},
1128
+ "unit": {},
1129
+ "value": {}
1130
+ }
1131
+ ],
1132
+ "clearExpression": "string",
1133
+ "clearMessage": "string",
1134
+ "description": "string",
1135
+ "flow": {
1136
+ "direction": 2,
1137
+ "filterId": 4,
1138
+ "id": 3,
1139
+ "viewId": 10
1140
+ },
1141
+ "folderId": 1,
1142
+ "groupId": 6,
1143
+ "groupIdList": [
1144
+ 1,
1145
+ 8,
1146
+ 3,
1147
+ 1,
1148
+ 2,
1149
+ 10
1150
+ ],
1151
+ "id": 9,
1152
+ "isDeviceGroup": false,
1153
+ "isMemberOfAny": false,
1154
+ "lastUpdated": 4,
1155
+ "mailOnce": true,
1156
+ "mailPeriod": 4,
1157
+ "mailTo": "string",
1158
+ "name": "string",
1159
+ "objectSubTypeId": 7,
1160
+ "objectTypeId": 5,
1161
+ "pluginId": 8,
1162
+ "severity": 1,
1163
+ "triggerConditions": [
1164
+ {
1165
+ "aggregation": {},
1166
+ "comparison": {},
1167
+ "duration": {},
1168
+ "id": {},
1169
+ "indicatorTypeId": {},
1170
+ "isTrigger": {},
1171
+ "message": {},
1172
+ "policyId": {},
1173
+ "sigmaDirection": {},
1174
+ "type": {},
1175
+ "unit": {},
1176
+ "value": {}
1177
+ },
1178
+ {
1179
+ "aggregation": {},
1180
+ "comparison": {},
1181
+ "duration": {},
1182
+ "id": {},
1183
+ "indicatorTypeId": {},
1184
+ "isTrigger": {},
1185
+ "message": {},
1186
+ "policyId": {},
1187
+ "sigmaDirection": {},
1188
+ "type": {},
1189
+ "unit": {},
1190
+ "value": {}
1191
+ },
1192
+ {
1193
+ "aggregation": {},
1194
+ "comparison": {},
1195
+ "duration": {},
1196
+ "id": {},
1197
+ "indicatorTypeId": {},
1198
+ "isTrigger": {},
1199
+ "message": {},
1200
+ "policyId": {},
1201
+ "sigmaDirection": {},
1202
+ "type": {},
1203
+ "unit": {},
1204
+ "value": {}
1205
+ },
1206
+ {
1207
+ "aggregation": {},
1208
+ "comparison": {},
1209
+ "duration": {},
1210
+ "id": {},
1211
+ "indicatorTypeId": {},
1212
+ "isTrigger": {},
1213
+ "message": {},
1214
+ "policyId": {},
1215
+ "sigmaDirection": {},
1216
+ "type": {},
1217
+ "unit": {},
1218
+ "value": {}
1219
+ },
1220
+ {
1221
+ "aggregation": {},
1222
+ "comparison": {},
1223
+ "duration": {},
1224
+ "id": {},
1225
+ "indicatorTypeId": {},
1226
+ "isTrigger": {},
1227
+ "message": {},
1228
+ "policyId": {},
1229
+ "sigmaDirection": {},
1230
+ "type": {},
1231
+ "unit": {},
1232
+ "value": {}
1233
+ },
1234
+ {
1235
+ "aggregation": {},
1236
+ "comparison": {},
1237
+ "duration": {},
1238
+ "id": {},
1239
+ "indicatorTypeId": {},
1240
+ "isTrigger": {},
1241
+ "message": {},
1242
+ "policyId": {},
1243
+ "sigmaDirection": {},
1244
+ "type": {},
1245
+ "unit": {},
1246
+ "value": {}
1247
+ },
1248
+ {
1249
+ "aggregation": {},
1250
+ "comparison": {},
1251
+ "duration": {},
1252
+ "id": {},
1253
+ "indicatorTypeId": {},
1254
+ "isTrigger": {},
1255
+ "message": {},
1256
+ "policyId": {},
1257
+ "sigmaDirection": {},
1258
+ "type": {},
1259
+ "unit": {},
1260
+ "value": {}
1261
+ },
1262
+ {
1263
+ "aggregation": {},
1264
+ "comparison": {},
1265
+ "duration": {},
1266
+ "id": {},
1267
+ "indicatorTypeId": {},
1268
+ "isTrigger": {},
1269
+ "message": {},
1270
+ "policyId": {},
1271
+ "sigmaDirection": {},
1272
+ "type": {},
1273
+ "unit": {},
1274
+ "value": {}
1275
+ },
1276
+ {
1277
+ "aggregation": {},
1278
+ "comparison": {},
1279
+ "duration": {},
1280
+ "id": {},
1281
+ "indicatorTypeId": {},
1282
+ "isTrigger": {},
1283
+ "message": {},
1284
+ "policyId": {},
1285
+ "sigmaDirection": {},
1286
+ "type": {},
1287
+ "unit": {},
1288
+ "value": {}
1289
+ },
1290
+ {
1291
+ "aggregation": {},
1292
+ "comparison": {},
1293
+ "duration": {},
1294
+ "id": {},
1295
+ "indicatorTypeId": {},
1296
+ "isTrigger": {},
1297
+ "message": {},
1298
+ "policyId": {},
1299
+ "sigmaDirection": {},
1300
+ "type": {},
1301
+ "unit": {},
1302
+ "value": {}
1303
+ }
1304
+ ],
1305
+ "triggerExpression": "string",
1306
+ "triggerMessage": "string",
1307
+ "type": "other",
1308
+ "useCustomTraps": false,
1309
+ "useDefaultTraps": false,
1310
+ "useDeviceTraps": false,
1311
+ "userEnabled": 3
1312
+ }
1313
+ ],
1314
+ "pageNumber": 5,
1315
+ "pageSize": 2,
1316
+ "totalElements": 6,
1317
+ "totalPages": 1
1318
+ }