@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,1709 @@
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": 1,
40
+ "filterId": 8,
41
+ "id": 5,
42
+ "viewId": 1
43
+ },
44
+ "folderId": 3,
45
+ "groupId": 2,
46
+ "groupIdList": [
47
+ 7
48
+ ],
49
+ "id": 8,
50
+ "isDeviceGroup": false,
51
+ "isMemberOfAny": false,
52
+ "lastUpdated": 1,
53
+ "mailOnce": true,
54
+ "mailPeriod": 3,
55
+ "mailTo": "string",
56
+ "name": "string",
57
+ "objectSubTypeId": 4,
58
+ "objectTypeId": 10,
59
+ "pluginId": 6,
60
+ "severity": 6,
61
+ "triggerConditions": [
62
+ {
63
+ "aggregation": {},
64
+ "comparison": {},
65
+ "duration": {},
66
+ "id": {},
67
+ "indicatorTypeId": {},
68
+ "isTrigger": {},
69
+ "message": {},
70
+ "policyId": {},
71
+ "sigmaDirection": {},
72
+ "type": {},
73
+ "unit": {},
74
+ "value": {}
75
+ },
76
+ {
77
+ "aggregation": {},
78
+ "comparison": {},
79
+ "duration": {},
80
+ "id": {},
81
+ "indicatorTypeId": {},
82
+ "isTrigger": {},
83
+ "message": {},
84
+ "policyId": {},
85
+ "sigmaDirection": {},
86
+ "type": {},
87
+ "unit": {},
88
+ "value": {}
89
+ },
90
+ {
91
+ "aggregation": {},
92
+ "comparison": {},
93
+ "duration": {},
94
+ "id": {},
95
+ "indicatorTypeId": {},
96
+ "isTrigger": {},
97
+ "message": {},
98
+ "policyId": {},
99
+ "sigmaDirection": {},
100
+ "type": {},
101
+ "unit": {},
102
+ "value": {}
103
+ },
104
+ {
105
+ "aggregation": {},
106
+ "comparison": {},
107
+ "duration": {},
108
+ "id": {},
109
+ "indicatorTypeId": {},
110
+ "isTrigger": {},
111
+ "message": {},
112
+ "policyId": {},
113
+ "sigmaDirection": {},
114
+ "type": {},
115
+ "unit": {},
116
+ "value": {}
117
+ },
118
+ {
119
+ "aggregation": {},
120
+ "comparison": {},
121
+ "duration": {},
122
+ "id": {},
123
+ "indicatorTypeId": {},
124
+ "isTrigger": {},
125
+ "message": {},
126
+ "policyId": {},
127
+ "sigmaDirection": {},
128
+ "type": {},
129
+ "unit": {},
130
+ "value": {}
131
+ },
132
+ {
133
+ "aggregation": {},
134
+ "comparison": {},
135
+ "duration": {},
136
+ "id": {},
137
+ "indicatorTypeId": {},
138
+ "isTrigger": {},
139
+ "message": {},
140
+ "policyId": {},
141
+ "sigmaDirection": {},
142
+ "type": {},
143
+ "unit": {},
144
+ "value": {}
145
+ },
146
+ {
147
+ "aggregation": {},
148
+ "comparison": {},
149
+ "duration": {},
150
+ "id": {},
151
+ "indicatorTypeId": {},
152
+ "isTrigger": {},
153
+ "message": {},
154
+ "policyId": {},
155
+ "sigmaDirection": {},
156
+ "type": {},
157
+ "unit": {},
158
+ "value": {}
159
+ },
160
+ {
161
+ "aggregation": {},
162
+ "comparison": {},
163
+ "duration": {},
164
+ "id": {},
165
+ "indicatorTypeId": {},
166
+ "isTrigger": {},
167
+ "message": {},
168
+ "policyId": {},
169
+ "sigmaDirection": {},
170
+ "type": {},
171
+ "unit": {},
172
+ "value": {}
173
+ },
174
+ {
175
+ "aggregation": {},
176
+ "comparison": {},
177
+ "duration": {},
178
+ "id": {},
179
+ "indicatorTypeId": {},
180
+ "isTrigger": {},
181
+ "message": {},
182
+ "policyId": {},
183
+ "sigmaDirection": {},
184
+ "type": {},
185
+ "unit": {},
186
+ "value": {}
187
+ },
188
+ {
189
+ "aggregation": {},
190
+ "comparison": {},
191
+ "duration": {},
192
+ "id": {},
193
+ "indicatorTypeId": {},
194
+ "isTrigger": {},
195
+ "message": {},
196
+ "policyId": {},
197
+ "sigmaDirection": {},
198
+ "type": {},
199
+ "unit": {},
200
+ "value": {}
201
+ }
202
+ ],
203
+ "triggerExpression": "string",
204
+ "triggerMessage": "string",
205
+ "type": "other",
206
+ "useCustomTraps": true,
207
+ "useDefaultTraps": false,
208
+ "useDeviceTraps": false,
209
+ "userEnabled": 3
210
+ },
211
+ {
212
+ "appendConditionMessages": false,
213
+ "clearConditions": [
214
+ {
215
+ "aggregation": {},
216
+ "comparison": {},
217
+ "duration": {},
218
+ "id": {},
219
+ "indicatorTypeId": {},
220
+ "isTrigger": {},
221
+ "message": {},
222
+ "policyId": {},
223
+ "sigmaDirection": {},
224
+ "type": {},
225
+ "unit": {},
226
+ "value": {}
227
+ },
228
+ {
229
+ "aggregation": {},
230
+ "comparison": {},
231
+ "duration": {},
232
+ "id": {},
233
+ "indicatorTypeId": {},
234
+ "isTrigger": {},
235
+ "message": {},
236
+ "policyId": {},
237
+ "sigmaDirection": {},
238
+ "type": {},
239
+ "unit": {},
240
+ "value": {}
241
+ },
242
+ {
243
+ "aggregation": {},
244
+ "comparison": {},
245
+ "duration": {},
246
+ "id": {},
247
+ "indicatorTypeId": {},
248
+ "isTrigger": {},
249
+ "message": {},
250
+ "policyId": {},
251
+ "sigmaDirection": {},
252
+ "type": {},
253
+ "unit": {},
254
+ "value": {}
255
+ },
256
+ {
257
+ "aggregation": {},
258
+ "comparison": {},
259
+ "duration": {},
260
+ "id": {},
261
+ "indicatorTypeId": {},
262
+ "isTrigger": {},
263
+ "message": {},
264
+ "policyId": {},
265
+ "sigmaDirection": {},
266
+ "type": {},
267
+ "unit": {},
268
+ "value": {}
269
+ },
270
+ {
271
+ "aggregation": {},
272
+ "comparison": {},
273
+ "duration": {},
274
+ "id": {},
275
+ "indicatorTypeId": {},
276
+ "isTrigger": {},
277
+ "message": {},
278
+ "policyId": {},
279
+ "sigmaDirection": {},
280
+ "type": {},
281
+ "unit": {},
282
+ "value": {}
283
+ },
284
+ {
285
+ "aggregation": {},
286
+ "comparison": {},
287
+ "duration": {},
288
+ "id": {},
289
+ "indicatorTypeId": {},
290
+ "isTrigger": {},
291
+ "message": {},
292
+ "policyId": {},
293
+ "sigmaDirection": {},
294
+ "type": {},
295
+ "unit": {},
296
+ "value": {}
297
+ }
298
+ ],
299
+ "clearExpression": "string",
300
+ "clearMessage": "string",
301
+ "description": "string",
302
+ "flow": {
303
+ "direction": 8,
304
+ "filterId": 4,
305
+ "id": 2,
306
+ "viewId": 9
307
+ },
308
+ "folderId": 7,
309
+ "groupId": 4,
310
+ "groupIdList": [
311
+ 1,
312
+ 3,
313
+ 10,
314
+ 8,
315
+ 4,
316
+ 9,
317
+ 8,
318
+ 6,
319
+ 9,
320
+ 3
321
+ ],
322
+ "id": 7,
323
+ "isDeviceGroup": false,
324
+ "isMemberOfAny": false,
325
+ "lastUpdated": 6,
326
+ "mailOnce": false,
327
+ "mailPeriod": 7,
328
+ "mailTo": "string",
329
+ "name": "string",
330
+ "objectSubTypeId": 6,
331
+ "objectTypeId": 6,
332
+ "pluginId": 6,
333
+ "severity": 8,
334
+ "triggerConditions": [
335
+ {
336
+ "aggregation": {},
337
+ "comparison": {},
338
+ "duration": {},
339
+ "id": {},
340
+ "indicatorTypeId": {},
341
+ "isTrigger": {},
342
+ "message": {},
343
+ "policyId": {},
344
+ "sigmaDirection": {},
345
+ "type": {},
346
+ "unit": {},
347
+ "value": {}
348
+ },
349
+ {
350
+ "aggregation": {},
351
+ "comparison": {},
352
+ "duration": {},
353
+ "id": {},
354
+ "indicatorTypeId": {},
355
+ "isTrigger": {},
356
+ "message": {},
357
+ "policyId": {},
358
+ "sigmaDirection": {},
359
+ "type": {},
360
+ "unit": {},
361
+ "value": {}
362
+ },
363
+ {
364
+ "aggregation": {},
365
+ "comparison": {},
366
+ "duration": {},
367
+ "id": {},
368
+ "indicatorTypeId": {},
369
+ "isTrigger": {},
370
+ "message": {},
371
+ "policyId": {},
372
+ "sigmaDirection": {},
373
+ "type": {},
374
+ "unit": {},
375
+ "value": {}
376
+ }
377
+ ],
378
+ "triggerExpression": "string",
379
+ "triggerMessage": "string",
380
+ "type": "flow",
381
+ "useCustomTraps": true,
382
+ "useDefaultTraps": false,
383
+ "useDeviceTraps": true,
384
+ "userEnabled": 10
385
+ },
386
+ {
387
+ "appendConditionMessages": false,
388
+ "clearConditions": [
389
+ {
390
+ "aggregation": {},
391
+ "comparison": {},
392
+ "duration": {},
393
+ "id": {},
394
+ "indicatorTypeId": {},
395
+ "isTrigger": {},
396
+ "message": {},
397
+ "policyId": {},
398
+ "sigmaDirection": {},
399
+ "type": {},
400
+ "unit": {},
401
+ "value": {}
402
+ },
403
+ {
404
+ "aggregation": {},
405
+ "comparison": {},
406
+ "duration": {},
407
+ "id": {},
408
+ "indicatorTypeId": {},
409
+ "isTrigger": {},
410
+ "message": {},
411
+ "policyId": {},
412
+ "sigmaDirection": {},
413
+ "type": {},
414
+ "unit": {},
415
+ "value": {}
416
+ },
417
+ {
418
+ "aggregation": {},
419
+ "comparison": {},
420
+ "duration": {},
421
+ "id": {},
422
+ "indicatorTypeId": {},
423
+ "isTrigger": {},
424
+ "message": {},
425
+ "policyId": {},
426
+ "sigmaDirection": {},
427
+ "type": {},
428
+ "unit": {},
429
+ "value": {}
430
+ },
431
+ {
432
+ "aggregation": {},
433
+ "comparison": {},
434
+ "duration": {},
435
+ "id": {},
436
+ "indicatorTypeId": {},
437
+ "isTrigger": {},
438
+ "message": {},
439
+ "policyId": {},
440
+ "sigmaDirection": {},
441
+ "type": {},
442
+ "unit": {},
443
+ "value": {}
444
+ },
445
+ {
446
+ "aggregation": {},
447
+ "comparison": {},
448
+ "duration": {},
449
+ "id": {},
450
+ "indicatorTypeId": {},
451
+ "isTrigger": {},
452
+ "message": {},
453
+ "policyId": {},
454
+ "sigmaDirection": {},
455
+ "type": {},
456
+ "unit": {},
457
+ "value": {}
458
+ }
459
+ ],
460
+ "clearExpression": "string",
461
+ "clearMessage": "string",
462
+ "description": "string",
463
+ "flow": {
464
+ "direction": 5,
465
+ "filterId": 10,
466
+ "id": 1,
467
+ "viewId": 7
468
+ },
469
+ "folderId": 7,
470
+ "groupId": 9,
471
+ "groupIdList": [
472
+ 10,
473
+ 1
474
+ ],
475
+ "id": 3,
476
+ "isDeviceGroup": true,
477
+ "isMemberOfAny": false,
478
+ "lastUpdated": 5,
479
+ "mailOnce": true,
480
+ "mailPeriod": 9,
481
+ "mailTo": "string",
482
+ "name": "string",
483
+ "objectSubTypeId": 2,
484
+ "objectTypeId": 2,
485
+ "pluginId": 8,
486
+ "severity": 7,
487
+ "triggerConditions": [
488
+ {
489
+ "aggregation": {},
490
+ "comparison": {},
491
+ "duration": {},
492
+ "id": {},
493
+ "indicatorTypeId": {},
494
+ "isTrigger": {},
495
+ "message": {},
496
+ "policyId": {},
497
+ "sigmaDirection": {},
498
+ "type": {},
499
+ "unit": {},
500
+ "value": {}
501
+ },
502
+ {
503
+ "aggregation": {},
504
+ "comparison": {},
505
+ "duration": {},
506
+ "id": {},
507
+ "indicatorTypeId": {},
508
+ "isTrigger": {},
509
+ "message": {},
510
+ "policyId": {},
511
+ "sigmaDirection": {},
512
+ "type": {},
513
+ "unit": {},
514
+ "value": {}
515
+ },
516
+ {
517
+ "aggregation": {},
518
+ "comparison": {},
519
+ "duration": {},
520
+ "id": {},
521
+ "indicatorTypeId": {},
522
+ "isTrigger": {},
523
+ "message": {},
524
+ "policyId": {},
525
+ "sigmaDirection": {},
526
+ "type": {},
527
+ "unit": {},
528
+ "value": {}
529
+ }
530
+ ],
531
+ "triggerExpression": "string",
532
+ "triggerMessage": "string",
533
+ "type": "flow",
534
+ "useCustomTraps": false,
535
+ "useDefaultTraps": false,
536
+ "useDeviceTraps": true,
537
+ "userEnabled": 7
538
+ },
539
+ {
540
+ "appendConditionMessages": false,
541
+ "clearConditions": [
542
+ {
543
+ "aggregation": {},
544
+ "comparison": {},
545
+ "duration": {},
546
+ "id": {},
547
+ "indicatorTypeId": {},
548
+ "isTrigger": {},
549
+ "message": {},
550
+ "policyId": {},
551
+ "sigmaDirection": {},
552
+ "type": {},
553
+ "unit": {},
554
+ "value": {}
555
+ },
556
+ {
557
+ "aggregation": {},
558
+ "comparison": {},
559
+ "duration": {},
560
+ "id": {},
561
+ "indicatorTypeId": {},
562
+ "isTrigger": {},
563
+ "message": {},
564
+ "policyId": {},
565
+ "sigmaDirection": {},
566
+ "type": {},
567
+ "unit": {},
568
+ "value": {}
569
+ },
570
+ {
571
+ "aggregation": {},
572
+ "comparison": {},
573
+ "duration": {},
574
+ "id": {},
575
+ "indicatorTypeId": {},
576
+ "isTrigger": {},
577
+ "message": {},
578
+ "policyId": {},
579
+ "sigmaDirection": {},
580
+ "type": {},
581
+ "unit": {},
582
+ "value": {}
583
+ },
584
+ {
585
+ "aggregation": {},
586
+ "comparison": {},
587
+ "duration": {},
588
+ "id": {},
589
+ "indicatorTypeId": {},
590
+ "isTrigger": {},
591
+ "message": {},
592
+ "policyId": {},
593
+ "sigmaDirection": {},
594
+ "type": {},
595
+ "unit": {},
596
+ "value": {}
597
+ },
598
+ {
599
+ "aggregation": {},
600
+ "comparison": {},
601
+ "duration": {},
602
+ "id": {},
603
+ "indicatorTypeId": {},
604
+ "isTrigger": {},
605
+ "message": {},
606
+ "policyId": {},
607
+ "sigmaDirection": {},
608
+ "type": {},
609
+ "unit": {},
610
+ "value": {}
611
+ }
612
+ ],
613
+ "clearExpression": "string",
614
+ "clearMessage": "string",
615
+ "description": "string",
616
+ "flow": {
617
+ "direction": 2,
618
+ "filterId": 3,
619
+ "id": 6,
620
+ "viewId": 5
621
+ },
622
+ "folderId": 9,
623
+ "groupId": 8,
624
+ "groupIdList": [
625
+ 3,
626
+ 10,
627
+ 10,
628
+ 5,
629
+ 4,
630
+ 9,
631
+ 10
632
+ ],
633
+ "id": 1,
634
+ "isDeviceGroup": false,
635
+ "isMemberOfAny": false,
636
+ "lastUpdated": 9,
637
+ "mailOnce": true,
638
+ "mailPeriod": 6,
639
+ "mailTo": "string",
640
+ "name": "string",
641
+ "objectSubTypeId": 2,
642
+ "objectTypeId": 2,
643
+ "pluginId": 3,
644
+ "severity": 2,
645
+ "triggerConditions": [
646
+ {
647
+ "aggregation": {},
648
+ "comparison": {},
649
+ "duration": {},
650
+ "id": {},
651
+ "indicatorTypeId": {},
652
+ "isTrigger": {},
653
+ "message": {},
654
+ "policyId": {},
655
+ "sigmaDirection": {},
656
+ "type": {},
657
+ "unit": {},
658
+ "value": {}
659
+ },
660
+ {
661
+ "aggregation": {},
662
+ "comparison": {},
663
+ "duration": {},
664
+ "id": {},
665
+ "indicatorTypeId": {},
666
+ "isTrigger": {},
667
+ "message": {},
668
+ "policyId": {},
669
+ "sigmaDirection": {},
670
+ "type": {},
671
+ "unit": {},
672
+ "value": {}
673
+ }
674
+ ],
675
+ "triggerExpression": "string",
676
+ "triggerMessage": "string",
677
+ "type": "other",
678
+ "useCustomTraps": true,
679
+ "useDefaultTraps": true,
680
+ "useDeviceTraps": true,
681
+ "userEnabled": 7
682
+ },
683
+ {
684
+ "appendConditionMessages": true,
685
+ "clearConditions": [
686
+ {
687
+ "aggregation": {},
688
+ "comparison": {},
689
+ "duration": {},
690
+ "id": {},
691
+ "indicatorTypeId": {},
692
+ "isTrigger": {},
693
+ "message": {},
694
+ "policyId": {},
695
+ "sigmaDirection": {},
696
+ "type": {},
697
+ "unit": {},
698
+ "value": {}
699
+ },
700
+ {
701
+ "aggregation": {},
702
+ "comparison": {},
703
+ "duration": {},
704
+ "id": {},
705
+ "indicatorTypeId": {},
706
+ "isTrigger": {},
707
+ "message": {},
708
+ "policyId": {},
709
+ "sigmaDirection": {},
710
+ "type": {},
711
+ "unit": {},
712
+ "value": {}
713
+ },
714
+ {
715
+ "aggregation": {},
716
+ "comparison": {},
717
+ "duration": {},
718
+ "id": {},
719
+ "indicatorTypeId": {},
720
+ "isTrigger": {},
721
+ "message": {},
722
+ "policyId": {},
723
+ "sigmaDirection": {},
724
+ "type": {},
725
+ "unit": {},
726
+ "value": {}
727
+ },
728
+ {
729
+ "aggregation": {},
730
+ "comparison": {},
731
+ "duration": {},
732
+ "id": {},
733
+ "indicatorTypeId": {},
734
+ "isTrigger": {},
735
+ "message": {},
736
+ "policyId": {},
737
+ "sigmaDirection": {},
738
+ "type": {},
739
+ "unit": {},
740
+ "value": {}
741
+ },
742
+ {
743
+ "aggregation": {},
744
+ "comparison": {},
745
+ "duration": {},
746
+ "id": {},
747
+ "indicatorTypeId": {},
748
+ "isTrigger": {},
749
+ "message": {},
750
+ "policyId": {},
751
+ "sigmaDirection": {},
752
+ "type": {},
753
+ "unit": {},
754
+ "value": {}
755
+ },
756
+ {
757
+ "aggregation": {},
758
+ "comparison": {},
759
+ "duration": {},
760
+ "id": {},
761
+ "indicatorTypeId": {},
762
+ "isTrigger": {},
763
+ "message": {},
764
+ "policyId": {},
765
+ "sigmaDirection": {},
766
+ "type": {},
767
+ "unit": {},
768
+ "value": {}
769
+ },
770
+ {
771
+ "aggregation": {},
772
+ "comparison": {},
773
+ "duration": {},
774
+ "id": {},
775
+ "indicatorTypeId": {},
776
+ "isTrigger": {},
777
+ "message": {},
778
+ "policyId": {},
779
+ "sigmaDirection": {},
780
+ "type": {},
781
+ "unit": {},
782
+ "value": {}
783
+ },
784
+ {
785
+ "aggregation": {},
786
+ "comparison": {},
787
+ "duration": {},
788
+ "id": {},
789
+ "indicatorTypeId": {},
790
+ "isTrigger": {},
791
+ "message": {},
792
+ "policyId": {},
793
+ "sigmaDirection": {},
794
+ "type": {},
795
+ "unit": {},
796
+ "value": {}
797
+ }
798
+ ],
799
+ "clearExpression": "string",
800
+ "clearMessage": "string",
801
+ "description": "string",
802
+ "flow": {
803
+ "direction": 6,
804
+ "filterId": 4,
805
+ "id": 10,
806
+ "viewId": 5
807
+ },
808
+ "folderId": 7,
809
+ "groupId": 4,
810
+ "groupIdList": [
811
+ 10,
812
+ 3,
813
+ 9,
814
+ 3,
815
+ 3,
816
+ 3,
817
+ 8,
818
+ 1
819
+ ],
820
+ "id": 1,
821
+ "isDeviceGroup": false,
822
+ "isMemberOfAny": false,
823
+ "lastUpdated": 1,
824
+ "mailOnce": false,
825
+ "mailPeriod": 3,
826
+ "mailTo": "string",
827
+ "name": "string",
828
+ "objectSubTypeId": 9,
829
+ "objectTypeId": 5,
830
+ "pluginId": 3,
831
+ "severity": 5,
832
+ "triggerConditions": [
833
+ {
834
+ "aggregation": {},
835
+ "comparison": {},
836
+ "duration": {},
837
+ "id": {},
838
+ "indicatorTypeId": {},
839
+ "isTrigger": {},
840
+ "message": {},
841
+ "policyId": {},
842
+ "sigmaDirection": {},
843
+ "type": {},
844
+ "unit": {},
845
+ "value": {}
846
+ },
847
+ {
848
+ "aggregation": {},
849
+ "comparison": {},
850
+ "duration": {},
851
+ "id": {},
852
+ "indicatorTypeId": {},
853
+ "isTrigger": {},
854
+ "message": {},
855
+ "policyId": {},
856
+ "sigmaDirection": {},
857
+ "type": {},
858
+ "unit": {},
859
+ "value": {}
860
+ },
861
+ {
862
+ "aggregation": {},
863
+ "comparison": {},
864
+ "duration": {},
865
+ "id": {},
866
+ "indicatorTypeId": {},
867
+ "isTrigger": {},
868
+ "message": {},
869
+ "policyId": {},
870
+ "sigmaDirection": {},
871
+ "type": {},
872
+ "unit": {},
873
+ "value": {}
874
+ },
875
+ {
876
+ "aggregation": {},
877
+ "comparison": {},
878
+ "duration": {},
879
+ "id": {},
880
+ "indicatorTypeId": {},
881
+ "isTrigger": {},
882
+ "message": {},
883
+ "policyId": {},
884
+ "sigmaDirection": {},
885
+ "type": {},
886
+ "unit": {},
887
+ "value": {}
888
+ },
889
+ {
890
+ "aggregation": {},
891
+ "comparison": {},
892
+ "duration": {},
893
+ "id": {},
894
+ "indicatorTypeId": {},
895
+ "isTrigger": {},
896
+ "message": {},
897
+ "policyId": {},
898
+ "sigmaDirection": {},
899
+ "type": {},
900
+ "unit": {},
901
+ "value": {}
902
+ },
903
+ {
904
+ "aggregation": {},
905
+ "comparison": {},
906
+ "duration": {},
907
+ "id": {},
908
+ "indicatorTypeId": {},
909
+ "isTrigger": {},
910
+ "message": {},
911
+ "policyId": {},
912
+ "sigmaDirection": {},
913
+ "type": {},
914
+ "unit": {},
915
+ "value": {}
916
+ }
917
+ ],
918
+ "triggerExpression": "string",
919
+ "triggerMessage": "string",
920
+ "type": "other",
921
+ "useCustomTraps": true,
922
+ "useDefaultTraps": false,
923
+ "useDeviceTraps": true,
924
+ "userEnabled": 1
925
+ },
926
+ {
927
+ "appendConditionMessages": true,
928
+ "clearConditions": [
929
+ {
930
+ "aggregation": {},
931
+ "comparison": {},
932
+ "duration": {},
933
+ "id": {},
934
+ "indicatorTypeId": {},
935
+ "isTrigger": {},
936
+ "message": {},
937
+ "policyId": {},
938
+ "sigmaDirection": {},
939
+ "type": {},
940
+ "unit": {},
941
+ "value": {}
942
+ },
943
+ {
944
+ "aggregation": {},
945
+ "comparison": {},
946
+ "duration": {},
947
+ "id": {},
948
+ "indicatorTypeId": {},
949
+ "isTrigger": {},
950
+ "message": {},
951
+ "policyId": {},
952
+ "sigmaDirection": {},
953
+ "type": {},
954
+ "unit": {},
955
+ "value": {}
956
+ },
957
+ {
958
+ "aggregation": {},
959
+ "comparison": {},
960
+ "duration": {},
961
+ "id": {},
962
+ "indicatorTypeId": {},
963
+ "isTrigger": {},
964
+ "message": {},
965
+ "policyId": {},
966
+ "sigmaDirection": {},
967
+ "type": {},
968
+ "unit": {},
969
+ "value": {}
970
+ },
971
+ {
972
+ "aggregation": {},
973
+ "comparison": {},
974
+ "duration": {},
975
+ "id": {},
976
+ "indicatorTypeId": {},
977
+ "isTrigger": {},
978
+ "message": {},
979
+ "policyId": {},
980
+ "sigmaDirection": {},
981
+ "type": {},
982
+ "unit": {},
983
+ "value": {}
984
+ },
985
+ {
986
+ "aggregation": {},
987
+ "comparison": {},
988
+ "duration": {},
989
+ "id": {},
990
+ "indicatorTypeId": {},
991
+ "isTrigger": {},
992
+ "message": {},
993
+ "policyId": {},
994
+ "sigmaDirection": {},
995
+ "type": {},
996
+ "unit": {},
997
+ "value": {}
998
+ },
999
+ {
1000
+ "aggregation": {},
1001
+ "comparison": {},
1002
+ "duration": {},
1003
+ "id": {},
1004
+ "indicatorTypeId": {},
1005
+ "isTrigger": {},
1006
+ "message": {},
1007
+ "policyId": {},
1008
+ "sigmaDirection": {},
1009
+ "type": {},
1010
+ "unit": {},
1011
+ "value": {}
1012
+ },
1013
+ {
1014
+ "aggregation": {},
1015
+ "comparison": {},
1016
+ "duration": {},
1017
+ "id": {},
1018
+ "indicatorTypeId": {},
1019
+ "isTrigger": {},
1020
+ "message": {},
1021
+ "policyId": {},
1022
+ "sigmaDirection": {},
1023
+ "type": {},
1024
+ "unit": {},
1025
+ "value": {}
1026
+ },
1027
+ {
1028
+ "aggregation": {},
1029
+ "comparison": {},
1030
+ "duration": {},
1031
+ "id": {},
1032
+ "indicatorTypeId": {},
1033
+ "isTrigger": {},
1034
+ "message": {},
1035
+ "policyId": {},
1036
+ "sigmaDirection": {},
1037
+ "type": {},
1038
+ "unit": {},
1039
+ "value": {}
1040
+ },
1041
+ {
1042
+ "aggregation": {},
1043
+ "comparison": {},
1044
+ "duration": {},
1045
+ "id": {},
1046
+ "indicatorTypeId": {},
1047
+ "isTrigger": {},
1048
+ "message": {},
1049
+ "policyId": {},
1050
+ "sigmaDirection": {},
1051
+ "type": {},
1052
+ "unit": {},
1053
+ "value": {}
1054
+ },
1055
+ {
1056
+ "aggregation": {},
1057
+ "comparison": {},
1058
+ "duration": {},
1059
+ "id": {},
1060
+ "indicatorTypeId": {},
1061
+ "isTrigger": {},
1062
+ "message": {},
1063
+ "policyId": {},
1064
+ "sigmaDirection": {},
1065
+ "type": {},
1066
+ "unit": {},
1067
+ "value": {}
1068
+ }
1069
+ ],
1070
+ "clearExpression": "string",
1071
+ "clearMessage": "string",
1072
+ "description": "string",
1073
+ "flow": {
1074
+ "direction": 9,
1075
+ "filterId": 7,
1076
+ "id": 7,
1077
+ "viewId": 7
1078
+ },
1079
+ "folderId": 5,
1080
+ "groupId": 1,
1081
+ "groupIdList": [
1082
+ 9,
1083
+ 2,
1084
+ 10,
1085
+ 8
1086
+ ],
1087
+ "id": 3,
1088
+ "isDeviceGroup": false,
1089
+ "isMemberOfAny": false,
1090
+ "lastUpdated": 9,
1091
+ "mailOnce": false,
1092
+ "mailPeriod": 9,
1093
+ "mailTo": "string",
1094
+ "name": "string",
1095
+ "objectSubTypeId": 10,
1096
+ "objectTypeId": 9,
1097
+ "pluginId": 4,
1098
+ "severity": 3,
1099
+ "triggerConditions": [
1100
+ {
1101
+ "aggregation": {},
1102
+ "comparison": {},
1103
+ "duration": {},
1104
+ "id": {},
1105
+ "indicatorTypeId": {},
1106
+ "isTrigger": {},
1107
+ "message": {},
1108
+ "policyId": {},
1109
+ "sigmaDirection": {},
1110
+ "type": {},
1111
+ "unit": {},
1112
+ "value": {}
1113
+ }
1114
+ ],
1115
+ "triggerExpression": "string",
1116
+ "triggerMessage": "string",
1117
+ "type": "other",
1118
+ "useCustomTraps": false,
1119
+ "useDefaultTraps": false,
1120
+ "useDeviceTraps": false,
1121
+ "userEnabled": 3
1122
+ },
1123
+ {
1124
+ "appendConditionMessages": true,
1125
+ "clearConditions": [
1126
+ {
1127
+ "aggregation": {},
1128
+ "comparison": {},
1129
+ "duration": {},
1130
+ "id": {},
1131
+ "indicatorTypeId": {},
1132
+ "isTrigger": {},
1133
+ "message": {},
1134
+ "policyId": {},
1135
+ "sigmaDirection": {},
1136
+ "type": {},
1137
+ "unit": {},
1138
+ "value": {}
1139
+ },
1140
+ {
1141
+ "aggregation": {},
1142
+ "comparison": {},
1143
+ "duration": {},
1144
+ "id": {},
1145
+ "indicatorTypeId": {},
1146
+ "isTrigger": {},
1147
+ "message": {},
1148
+ "policyId": {},
1149
+ "sigmaDirection": {},
1150
+ "type": {},
1151
+ "unit": {},
1152
+ "value": {}
1153
+ },
1154
+ {
1155
+ "aggregation": {},
1156
+ "comparison": {},
1157
+ "duration": {},
1158
+ "id": {},
1159
+ "indicatorTypeId": {},
1160
+ "isTrigger": {},
1161
+ "message": {},
1162
+ "policyId": {},
1163
+ "sigmaDirection": {},
1164
+ "type": {},
1165
+ "unit": {},
1166
+ "value": {}
1167
+ },
1168
+ {
1169
+ "aggregation": {},
1170
+ "comparison": {},
1171
+ "duration": {},
1172
+ "id": {},
1173
+ "indicatorTypeId": {},
1174
+ "isTrigger": {},
1175
+ "message": {},
1176
+ "policyId": {},
1177
+ "sigmaDirection": {},
1178
+ "type": {},
1179
+ "unit": {},
1180
+ "value": {}
1181
+ },
1182
+ {
1183
+ "aggregation": {},
1184
+ "comparison": {},
1185
+ "duration": {},
1186
+ "id": {},
1187
+ "indicatorTypeId": {},
1188
+ "isTrigger": {},
1189
+ "message": {},
1190
+ "policyId": {},
1191
+ "sigmaDirection": {},
1192
+ "type": {},
1193
+ "unit": {},
1194
+ "value": {}
1195
+ },
1196
+ {
1197
+ "aggregation": {},
1198
+ "comparison": {},
1199
+ "duration": {},
1200
+ "id": {},
1201
+ "indicatorTypeId": {},
1202
+ "isTrigger": {},
1203
+ "message": {},
1204
+ "policyId": {},
1205
+ "sigmaDirection": {},
1206
+ "type": {},
1207
+ "unit": {},
1208
+ "value": {}
1209
+ },
1210
+ {
1211
+ "aggregation": {},
1212
+ "comparison": {},
1213
+ "duration": {},
1214
+ "id": {},
1215
+ "indicatorTypeId": {},
1216
+ "isTrigger": {},
1217
+ "message": {},
1218
+ "policyId": {},
1219
+ "sigmaDirection": {},
1220
+ "type": {},
1221
+ "unit": {},
1222
+ "value": {}
1223
+ },
1224
+ {
1225
+ "aggregation": {},
1226
+ "comparison": {},
1227
+ "duration": {},
1228
+ "id": {},
1229
+ "indicatorTypeId": {},
1230
+ "isTrigger": {},
1231
+ "message": {},
1232
+ "policyId": {},
1233
+ "sigmaDirection": {},
1234
+ "type": {},
1235
+ "unit": {},
1236
+ "value": {}
1237
+ }
1238
+ ],
1239
+ "clearExpression": "string",
1240
+ "clearMessage": "string",
1241
+ "description": "string",
1242
+ "flow": {
1243
+ "direction": 6,
1244
+ "filterId": 5,
1245
+ "id": 2,
1246
+ "viewId": 5
1247
+ },
1248
+ "folderId": 4,
1249
+ "groupId": 2,
1250
+ "groupIdList": [
1251
+ 5,
1252
+ 10,
1253
+ 8,
1254
+ 8,
1255
+ 9,
1256
+ 8,
1257
+ 1,
1258
+ 2,
1259
+ 6,
1260
+ 10
1261
+ ],
1262
+ "id": 9,
1263
+ "isDeviceGroup": false,
1264
+ "isMemberOfAny": false,
1265
+ "lastUpdated": 5,
1266
+ "mailOnce": true,
1267
+ "mailPeriod": 8,
1268
+ "mailTo": "string",
1269
+ "name": "string",
1270
+ "objectSubTypeId": 4,
1271
+ "objectTypeId": 6,
1272
+ "pluginId": 6,
1273
+ "severity": 1,
1274
+ "triggerConditions": [
1275
+ {
1276
+ "aggregation": {},
1277
+ "comparison": {},
1278
+ "duration": {},
1279
+ "id": {},
1280
+ "indicatorTypeId": {},
1281
+ "isTrigger": {},
1282
+ "message": {},
1283
+ "policyId": {},
1284
+ "sigmaDirection": {},
1285
+ "type": {},
1286
+ "unit": {},
1287
+ "value": {}
1288
+ },
1289
+ {
1290
+ "aggregation": {},
1291
+ "comparison": {},
1292
+ "duration": {},
1293
+ "id": {},
1294
+ "indicatorTypeId": {},
1295
+ "isTrigger": {},
1296
+ "message": {},
1297
+ "policyId": {},
1298
+ "sigmaDirection": {},
1299
+ "type": {},
1300
+ "unit": {},
1301
+ "value": {}
1302
+ },
1303
+ {
1304
+ "aggregation": {},
1305
+ "comparison": {},
1306
+ "duration": {},
1307
+ "id": {},
1308
+ "indicatorTypeId": {},
1309
+ "isTrigger": {},
1310
+ "message": {},
1311
+ "policyId": {},
1312
+ "sigmaDirection": {},
1313
+ "type": {},
1314
+ "unit": {},
1315
+ "value": {}
1316
+ },
1317
+ {
1318
+ "aggregation": {},
1319
+ "comparison": {},
1320
+ "duration": {},
1321
+ "id": {},
1322
+ "indicatorTypeId": {},
1323
+ "isTrigger": {},
1324
+ "message": {},
1325
+ "policyId": {},
1326
+ "sigmaDirection": {},
1327
+ "type": {},
1328
+ "unit": {},
1329
+ "value": {}
1330
+ },
1331
+ {
1332
+ "aggregation": {},
1333
+ "comparison": {},
1334
+ "duration": {},
1335
+ "id": {},
1336
+ "indicatorTypeId": {},
1337
+ "isTrigger": {},
1338
+ "message": {},
1339
+ "policyId": {},
1340
+ "sigmaDirection": {},
1341
+ "type": {},
1342
+ "unit": {},
1343
+ "value": {}
1344
+ },
1345
+ {
1346
+ "aggregation": {},
1347
+ "comparison": {},
1348
+ "duration": {},
1349
+ "id": {},
1350
+ "indicatorTypeId": {},
1351
+ "isTrigger": {},
1352
+ "message": {},
1353
+ "policyId": {},
1354
+ "sigmaDirection": {},
1355
+ "type": {},
1356
+ "unit": {},
1357
+ "value": {}
1358
+ },
1359
+ {
1360
+ "aggregation": {},
1361
+ "comparison": {},
1362
+ "duration": {},
1363
+ "id": {},
1364
+ "indicatorTypeId": {},
1365
+ "isTrigger": {},
1366
+ "message": {},
1367
+ "policyId": {},
1368
+ "sigmaDirection": {},
1369
+ "type": {},
1370
+ "unit": {},
1371
+ "value": {}
1372
+ },
1373
+ {
1374
+ "aggregation": {},
1375
+ "comparison": {},
1376
+ "duration": {},
1377
+ "id": {},
1378
+ "indicatorTypeId": {},
1379
+ "isTrigger": {},
1380
+ "message": {},
1381
+ "policyId": {},
1382
+ "sigmaDirection": {},
1383
+ "type": {},
1384
+ "unit": {},
1385
+ "value": {}
1386
+ }
1387
+ ],
1388
+ "triggerExpression": "string",
1389
+ "triggerMessage": "string",
1390
+ "type": "other",
1391
+ "useCustomTraps": true,
1392
+ "useDefaultTraps": false,
1393
+ "useDeviceTraps": true,
1394
+ "userEnabled": 8
1395
+ },
1396
+ {
1397
+ "appendConditionMessages": false,
1398
+ "clearConditions": [
1399
+ {
1400
+ "aggregation": {},
1401
+ "comparison": {},
1402
+ "duration": {},
1403
+ "id": {},
1404
+ "indicatorTypeId": {},
1405
+ "isTrigger": {},
1406
+ "message": {},
1407
+ "policyId": {},
1408
+ "sigmaDirection": {},
1409
+ "type": {},
1410
+ "unit": {},
1411
+ "value": {}
1412
+ },
1413
+ {
1414
+ "aggregation": {},
1415
+ "comparison": {},
1416
+ "duration": {},
1417
+ "id": {},
1418
+ "indicatorTypeId": {},
1419
+ "isTrigger": {},
1420
+ "message": {},
1421
+ "policyId": {},
1422
+ "sigmaDirection": {},
1423
+ "type": {},
1424
+ "unit": {},
1425
+ "value": {}
1426
+ },
1427
+ {
1428
+ "aggregation": {},
1429
+ "comparison": {},
1430
+ "duration": {},
1431
+ "id": {},
1432
+ "indicatorTypeId": {},
1433
+ "isTrigger": {},
1434
+ "message": {},
1435
+ "policyId": {},
1436
+ "sigmaDirection": {},
1437
+ "type": {},
1438
+ "unit": {},
1439
+ "value": {}
1440
+ },
1441
+ {
1442
+ "aggregation": {},
1443
+ "comparison": {},
1444
+ "duration": {},
1445
+ "id": {},
1446
+ "indicatorTypeId": {},
1447
+ "isTrigger": {},
1448
+ "message": {},
1449
+ "policyId": {},
1450
+ "sigmaDirection": {},
1451
+ "type": {},
1452
+ "unit": {},
1453
+ "value": {}
1454
+ },
1455
+ {
1456
+ "aggregation": {},
1457
+ "comparison": {},
1458
+ "duration": {},
1459
+ "id": {},
1460
+ "indicatorTypeId": {},
1461
+ "isTrigger": {},
1462
+ "message": {},
1463
+ "policyId": {},
1464
+ "sigmaDirection": {},
1465
+ "type": {},
1466
+ "unit": {},
1467
+ "value": {}
1468
+ },
1469
+ {
1470
+ "aggregation": {},
1471
+ "comparison": {},
1472
+ "duration": {},
1473
+ "id": {},
1474
+ "indicatorTypeId": {},
1475
+ "isTrigger": {},
1476
+ "message": {},
1477
+ "policyId": {},
1478
+ "sigmaDirection": {},
1479
+ "type": {},
1480
+ "unit": {},
1481
+ "value": {}
1482
+ },
1483
+ {
1484
+ "aggregation": {},
1485
+ "comparison": {},
1486
+ "duration": {},
1487
+ "id": {},
1488
+ "indicatorTypeId": {},
1489
+ "isTrigger": {},
1490
+ "message": {},
1491
+ "policyId": {},
1492
+ "sigmaDirection": {},
1493
+ "type": {},
1494
+ "unit": {},
1495
+ "value": {}
1496
+ },
1497
+ {
1498
+ "aggregation": {},
1499
+ "comparison": {},
1500
+ "duration": {},
1501
+ "id": {},
1502
+ "indicatorTypeId": {},
1503
+ "isTrigger": {},
1504
+ "message": {},
1505
+ "policyId": {},
1506
+ "sigmaDirection": {},
1507
+ "type": {},
1508
+ "unit": {},
1509
+ "value": {}
1510
+ },
1511
+ {
1512
+ "aggregation": {},
1513
+ "comparison": {},
1514
+ "duration": {},
1515
+ "id": {},
1516
+ "indicatorTypeId": {},
1517
+ "isTrigger": {},
1518
+ "message": {},
1519
+ "policyId": {},
1520
+ "sigmaDirection": {},
1521
+ "type": {},
1522
+ "unit": {},
1523
+ "value": {}
1524
+ }
1525
+ ],
1526
+ "clearExpression": "string",
1527
+ "clearMessage": "string",
1528
+ "description": "string",
1529
+ "flow": {
1530
+ "direction": 5,
1531
+ "filterId": 7,
1532
+ "id": 7,
1533
+ "viewId": 4
1534
+ },
1535
+ "folderId": 1,
1536
+ "groupId": 2,
1537
+ "groupIdList": [
1538
+ 5,
1539
+ 3,
1540
+ 8
1541
+ ],
1542
+ "id": 10,
1543
+ "isDeviceGroup": true,
1544
+ "isMemberOfAny": true,
1545
+ "lastUpdated": 2,
1546
+ "mailOnce": false,
1547
+ "mailPeriod": 9,
1548
+ "mailTo": "string",
1549
+ "name": "string",
1550
+ "objectSubTypeId": 9,
1551
+ "objectTypeId": 8,
1552
+ "pluginId": 3,
1553
+ "severity": 1,
1554
+ "triggerConditions": [
1555
+ {
1556
+ "aggregation": {},
1557
+ "comparison": {},
1558
+ "duration": {},
1559
+ "id": {},
1560
+ "indicatorTypeId": {},
1561
+ "isTrigger": {},
1562
+ "message": {},
1563
+ "policyId": {},
1564
+ "sigmaDirection": {},
1565
+ "type": {},
1566
+ "unit": {},
1567
+ "value": {}
1568
+ },
1569
+ {
1570
+ "aggregation": {},
1571
+ "comparison": {},
1572
+ "duration": {},
1573
+ "id": {},
1574
+ "indicatorTypeId": {},
1575
+ "isTrigger": {},
1576
+ "message": {},
1577
+ "policyId": {},
1578
+ "sigmaDirection": {},
1579
+ "type": {},
1580
+ "unit": {},
1581
+ "value": {}
1582
+ },
1583
+ {
1584
+ "aggregation": {},
1585
+ "comparison": {},
1586
+ "duration": {},
1587
+ "id": {},
1588
+ "indicatorTypeId": {},
1589
+ "isTrigger": {},
1590
+ "message": {},
1591
+ "policyId": {},
1592
+ "sigmaDirection": {},
1593
+ "type": {},
1594
+ "unit": {},
1595
+ "value": {}
1596
+ },
1597
+ {
1598
+ "aggregation": {},
1599
+ "comparison": {},
1600
+ "duration": {},
1601
+ "id": {},
1602
+ "indicatorTypeId": {},
1603
+ "isTrigger": {},
1604
+ "message": {},
1605
+ "policyId": {},
1606
+ "sigmaDirection": {},
1607
+ "type": {},
1608
+ "unit": {},
1609
+ "value": {}
1610
+ },
1611
+ {
1612
+ "aggregation": {},
1613
+ "comparison": {},
1614
+ "duration": {},
1615
+ "id": {},
1616
+ "indicatorTypeId": {},
1617
+ "isTrigger": {},
1618
+ "message": {},
1619
+ "policyId": {},
1620
+ "sigmaDirection": {},
1621
+ "type": {},
1622
+ "unit": {},
1623
+ "value": {}
1624
+ },
1625
+ {
1626
+ "aggregation": {},
1627
+ "comparison": {},
1628
+ "duration": {},
1629
+ "id": {},
1630
+ "indicatorTypeId": {},
1631
+ "isTrigger": {},
1632
+ "message": {},
1633
+ "policyId": {},
1634
+ "sigmaDirection": {},
1635
+ "type": {},
1636
+ "unit": {},
1637
+ "value": {}
1638
+ },
1639
+ {
1640
+ "aggregation": {},
1641
+ "comparison": {},
1642
+ "duration": {},
1643
+ "id": {},
1644
+ "indicatorTypeId": {},
1645
+ "isTrigger": {},
1646
+ "message": {},
1647
+ "policyId": {},
1648
+ "sigmaDirection": {},
1649
+ "type": {},
1650
+ "unit": {},
1651
+ "value": {}
1652
+ },
1653
+ {
1654
+ "aggregation": {},
1655
+ "comparison": {},
1656
+ "duration": {},
1657
+ "id": {},
1658
+ "indicatorTypeId": {},
1659
+ "isTrigger": {},
1660
+ "message": {},
1661
+ "policyId": {},
1662
+ "sigmaDirection": {},
1663
+ "type": {},
1664
+ "unit": {},
1665
+ "value": {}
1666
+ },
1667
+ {
1668
+ "aggregation": {},
1669
+ "comparison": {},
1670
+ "duration": {},
1671
+ "id": {},
1672
+ "indicatorTypeId": {},
1673
+ "isTrigger": {},
1674
+ "message": {},
1675
+ "policyId": {},
1676
+ "sigmaDirection": {},
1677
+ "type": {},
1678
+ "unit": {},
1679
+ "value": {}
1680
+ },
1681
+ {
1682
+ "aggregation": {},
1683
+ "comparison": {},
1684
+ "duration": {},
1685
+ "id": {},
1686
+ "indicatorTypeId": {},
1687
+ "isTrigger": {},
1688
+ "message": {},
1689
+ "policyId": {},
1690
+ "sigmaDirection": {},
1691
+ "type": {},
1692
+ "unit": {},
1693
+ "value": {}
1694
+ }
1695
+ ],
1696
+ "triggerExpression": "string",
1697
+ "triggerMessage": "string",
1698
+ "type": "other",
1699
+ "useCustomTraps": false,
1700
+ "useDefaultTraps": false,
1701
+ "useDeviceTraps": false,
1702
+ "userEnabled": 4
1703
+ }
1704
+ ],
1705
+ "pageNumber": 5,
1706
+ "pageSize": 9,
1707
+ "totalElements": 4,
1708
+ "totalPages": 9
1709
+ }