@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,92 @@
1
+ {
2
+ "rawDataSetting": {
3
+ "dataAggregationSetting": {
4
+ "aggregationType": "autoBar",
5
+ "aggregationUnits": "week",
6
+ "aggregationValue": 3,
7
+ "useAggregation": false
8
+ },
9
+ "rawDataSetting": {
10
+ "fitTimeSpanTo": "days",
11
+ "percentiles": 4,
12
+ "projectionTime": 4,
13
+ "reduceData": false,
14
+ "standardDeviation": 3,
15
+ "timeOverTimeOnly": false,
16
+ "timeOverTimeType": "minimum",
17
+ "timeOverTimeUnits": "seconds",
18
+ "timeOverTimeValue": 3,
19
+ "trend": "projected",
20
+ "trendType": "exponential",
21
+ "useBaseline": false,
22
+ "usePercentiles": "string",
23
+ "useTimeOverTime": false
24
+ },
25
+ "unitsSetting": {
26
+ "percentage": true,
27
+ "preferredUnits": "bits"
28
+ },
29
+ "workHoursSetting": {
30
+ "customWorkhours": [
31
+ {
32
+ "days": {},
33
+ "startHour": {},
34
+ "startMin": {},
35
+ "endHour": {},
36
+ "endMin": {}
37
+ },
38
+ {
39
+ "days": {},
40
+ "startHour": {},
41
+ "startMin": {},
42
+ "endHour": {},
43
+ "endMin": {}
44
+ },
45
+ {
46
+ "days": {},
47
+ "startHour": {},
48
+ "startMin": {},
49
+ "endHour": {},
50
+ "endMin": {}
51
+ }
52
+ ],
53
+ "type": "system",
54
+ "workHoursGroupId": 6
55
+ }
56
+ },
57
+ "sourceFields": {
58
+ "fields": [
59
+ "string",
60
+ "string",
61
+ "string",
62
+ "string",
63
+ "string",
64
+ "string",
65
+ "string",
66
+ "string"
67
+ ],
68
+ "sort": [
69
+ [
70
+ "string",
71
+ "string",
72
+ "string",
73
+ "string",
74
+ "string",
75
+ "string",
76
+ "string",
77
+ "string"
78
+ ],
79
+ [
80
+ "string",
81
+ "string",
82
+ "string",
83
+ "string",
84
+ "string",
85
+ "string",
86
+ "string",
87
+ "string",
88
+ "string"
89
+ ]
90
+ ]
91
+ }
92
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "ranges": {
3
+ "end": "string",
4
+ "start": "string",
5
+ "type": "CustomWeek"
6
+ },
7
+ "timezone": "string"
8
+ }
@@ -0,0 +1,124 @@
1
+ {
2
+ "bar": {
3
+ "drawGraphOutline": false,
4
+ "prettyXAxis": false,
5
+ "prettyYAxis": true,
6
+ "scaleToMinimumValue": true,
7
+ "scaled": true,
8
+ "showAggregation": true,
9
+ "showAverage": false,
10
+ "showFrequency": false,
11
+ "showLast": true,
12
+ "showLegend": false,
13
+ "showPeak": false,
14
+ "showTimespan": true,
15
+ "showTitle": false,
16
+ "showValley": true
17
+ },
18
+ "line": {
19
+ "drawGraphOutline": false,
20
+ "dualYAxes": true,
21
+ "logScale": true,
22
+ "prettyXAxis": false,
23
+ "prettyYAxis": true,
24
+ "scaleToMinimumValue": true,
25
+ "scaled": false,
26
+ "showAggregation": true,
27
+ "showAverage": true,
28
+ "showFrequency": true,
29
+ "showLast": false,
30
+ "showLegend": true,
31
+ "showPeak": true,
32
+ "showTimespan": false,
33
+ "showTitle": false,
34
+ "showValley": false
35
+ },
36
+ "pie": {
37
+ "showAggregation": true,
38
+ "showAverage": true,
39
+ "showFrequency": true,
40
+ "showLast": false,
41
+ "showLegend": true,
42
+ "showPeak": false,
43
+ "showTimespan": true,
44
+ "showTitle": false,
45
+ "showValley": false
46
+ },
47
+ "radial": {
48
+ "drawGraphOutline": false,
49
+ "scaled": true,
50
+ "showAggregation": false,
51
+ "showAverage": false,
52
+ "showFrequency": false,
53
+ "showLast": false,
54
+ "showLegend": true,
55
+ "showPeak": true,
56
+ "showTimespan": true,
57
+ "showTitle": true,
58
+ "showValley": false
59
+ },
60
+ "stackedBar": {
61
+ "drawGraphOutline": true,
62
+ "prettyXAxis": false,
63
+ "prettyYAxis": false,
64
+ "scaled": true,
65
+ "showAggregation": false,
66
+ "showAverage": true,
67
+ "showFrequency": false,
68
+ "showLast": false,
69
+ "showLegend": false,
70
+ "showPeak": false,
71
+ "showTimespan": true,
72
+ "showTitle": true,
73
+ "showValley": false
74
+ },
75
+ "stackedLine": {
76
+ "drawGraphOutline": false,
77
+ "prettyXAxis": true,
78
+ "prettyYAxis": false,
79
+ "scaleToMinimumValue": false,
80
+ "scaled": false,
81
+ "sendGraphCSV": false,
82
+ "showAggregation": false,
83
+ "showAverage": false,
84
+ "showFrequency": true,
85
+ "showLast": false,
86
+ "showLegend": false,
87
+ "showPeak": true,
88
+ "showTimespan": false,
89
+ "showTitle": false,
90
+ "showValley": true
91
+ },
92
+ "table": {
93
+ "columnSetting": {
94
+ "exclude": [
95
+ "string",
96
+ "string",
97
+ "string",
98
+ "string",
99
+ "string",
100
+ "string",
101
+ "string",
102
+ "string"
103
+ ],
104
+ "include": [
105
+ "string",
106
+ "string",
107
+ "string"
108
+ ]
109
+ },
110
+ "csvSetting": {
111
+ "expandTimeseries": true,
112
+ "formatTimestamp": false
113
+ },
114
+ "dataPresentationSetting": {
115
+ "formatNumbers": false,
116
+ "precision": 2
117
+ },
118
+ "tableSetting": {
119
+ "blockVis": true,
120
+ "hideHeaders": false,
121
+ "wrapCells": true
122
+ }
123
+ }
124
+ }
@@ -0,0 +1,81 @@
1
+ {
2
+ "rawDataSetting": {
3
+ "dataAggregationSetting": {
4
+ "aggregationType": "total",
5
+ "aggregationUnits": "sixhours",
6
+ "aggregationValue": 7,
7
+ "useAggregation": false
8
+ },
9
+ "rawDataSetting": {
10
+ "fitTimeSpanTo": "second",
11
+ "percentiles": 6,
12
+ "projectionTime": 4,
13
+ "reduceData": false,
14
+ "standardDeviation": 8,
15
+ "timeOverTimeOnly": false,
16
+ "timeOverTimeType": "maximum",
17
+ "timeOverTimeUnits": "hours",
18
+ "timeOverTimeValue": 8,
19
+ "trend": "none",
20
+ "trendType": "exponential",
21
+ "useBaseline": false,
22
+ "usePercentiles": "string",
23
+ "useTimeOverTime": false
24
+ },
25
+ "unitsSetting": {
26
+ "percentage": false,
27
+ "preferredUnits": "bytes"
28
+ },
29
+ "workHoursSetting": {
30
+ "customWorkhours": [
31
+ {
32
+ "days": {},
33
+ "startHour": {},
34
+ "startMin": {},
35
+ "endHour": {},
36
+ "endMin": {}
37
+ },
38
+ {
39
+ "days": {},
40
+ "startHour": {},
41
+ "startMin": {},
42
+ "endHour": {},
43
+ "endMin": {}
44
+ },
45
+ {
46
+ "days": {},
47
+ "startHour": {},
48
+ "startMin": {},
49
+ "endHour": {},
50
+ "endMin": {}
51
+ },
52
+ {
53
+ "days": {},
54
+ "startHour": {},
55
+ "startMin": {},
56
+ "endHour": {},
57
+ "endMin": {}
58
+ }
59
+ ],
60
+ "type": "system",
61
+ "workHoursGroupId": 10
62
+ }
63
+ },
64
+ "sourceFields": {
65
+ "fields": [
66
+ "string",
67
+ "string"
68
+ ],
69
+ "sort": [
70
+ [
71
+ "string",
72
+ "string",
73
+ "string",
74
+ "string",
75
+ "string",
76
+ "string",
77
+ "string"
78
+ ]
79
+ ]
80
+ }
81
+ }
@@ -0,0 +1,126 @@
1
+ {
2
+ "bar": {
3
+ "drawGraphOutline": true,
4
+ "prettyXAxis": true,
5
+ "prettyYAxis": true,
6
+ "scaleToMinimumValue": true,
7
+ "scaled": false,
8
+ "showAggregation": false,
9
+ "showAverage": true,
10
+ "showFrequency": false,
11
+ "showLast": true,
12
+ "showLegend": false,
13
+ "showPeak": true,
14
+ "showTimespan": true,
15
+ "showTitle": true,
16
+ "showValley": false
17
+ },
18
+ "line": {
19
+ "drawGraphOutline": false,
20
+ "dualYAxes": false,
21
+ "logScale": false,
22
+ "prettyXAxis": true,
23
+ "prettyYAxis": false,
24
+ "scaleToMinimumValue": false,
25
+ "scaled": true,
26
+ "showAggregation": false,
27
+ "showAverage": true,
28
+ "showFrequency": false,
29
+ "showLast": true,
30
+ "showLegend": false,
31
+ "showPeak": true,
32
+ "showTimespan": false,
33
+ "showTitle": false,
34
+ "showValley": true
35
+ },
36
+ "pie": {
37
+ "showAggregation": false,
38
+ "showAverage": true,
39
+ "showFrequency": false,
40
+ "showLast": false,
41
+ "showLegend": false,
42
+ "showPeak": false,
43
+ "showTimespan": false,
44
+ "showTitle": true,
45
+ "showValley": true
46
+ },
47
+ "radial": {
48
+ "drawGraphOutline": true,
49
+ "scaled": false,
50
+ "showAggregation": true,
51
+ "showAverage": true,
52
+ "showFrequency": true,
53
+ "showLast": false,
54
+ "showLegend": false,
55
+ "showPeak": true,
56
+ "showTimespan": true,
57
+ "showTitle": false,
58
+ "showValley": true
59
+ },
60
+ "stackedBar": {
61
+ "drawGraphOutline": true,
62
+ "prettyXAxis": true,
63
+ "prettyYAxis": true,
64
+ "scaled": false,
65
+ "showAggregation": true,
66
+ "showAverage": true,
67
+ "showFrequency": false,
68
+ "showLast": false,
69
+ "showLegend": true,
70
+ "showPeak": false,
71
+ "showTimespan": false,
72
+ "showTitle": true,
73
+ "showValley": false
74
+ },
75
+ "stackedLine": {
76
+ "drawGraphOutline": true,
77
+ "prettyXAxis": true,
78
+ "prettyYAxis": true,
79
+ "scaleToMinimumValue": true,
80
+ "scaled": true,
81
+ "sendGraphCSV": false,
82
+ "showAggregation": true,
83
+ "showAverage": false,
84
+ "showFrequency": true,
85
+ "showLast": true,
86
+ "showLegend": true,
87
+ "showPeak": false,
88
+ "showTimespan": true,
89
+ "showTitle": false,
90
+ "showValley": false
91
+ },
92
+ "table": {
93
+ "columnSetting": {
94
+ "exclude": [
95
+ "string",
96
+ "string",
97
+ "string"
98
+ ],
99
+ "include": [
100
+ "string",
101
+ "string",
102
+ "string",
103
+ "string",
104
+ "string",
105
+ "string",
106
+ "string",
107
+ "string",
108
+ "string",
109
+ "string"
110
+ ]
111
+ },
112
+ "csvSetting": {
113
+ "expandTimeseries": false,
114
+ "formatTimestamp": true
115
+ },
116
+ "dataPresentationSetting": {
117
+ "formatNumbers": true,
118
+ "precision": 1
119
+ },
120
+ "tableSetting": {
121
+ "blockVis": true,
122
+ "hideHeaders": true,
123
+ "wrapCells": true
124
+ }
125
+ }
126
+ }
@@ -0,0 +1,46 @@
1
+ {
2
+ "group": {
3
+ "id": 6,
4
+ "indicatorTypes": {
5
+ "ids": [
6
+ 7,
7
+ 7,
8
+ 10,
9
+ 9
10
+ ],
11
+ "objectTypeId": 2,
12
+ "pluginId": 1
13
+ },
14
+ "type": "DeviceGroup"
15
+ },
16
+ "indicators": [
17
+ {
18
+ "deviceId": 1,
19
+ "ids": [
20
+ 5,
21
+ 10,
22
+ 2,
23
+ 4,
24
+ 10,
25
+ 10,
26
+ 5,
27
+ 3
28
+ ],
29
+ "objectId": 10,
30
+ "pluginId": 3
31
+ },
32
+ {
33
+ "deviceId": 7,
34
+ "ids": [
35
+ 8,
36
+ 5,
37
+ 9,
38
+ 5,
39
+ 5,
40
+ 7
41
+ ],
42
+ "objectId": 2,
43
+ "pluginId": 10
44
+ }
45
+ ]
46
+ }
@@ -0,0 +1,139 @@
1
+ {
2
+ "rawDataSetting": {
3
+ "dataAggregationSetting": {
4
+ "aggregationType": "autoStackedBar",
5
+ "aggregationUnits": "seconds",
6
+ "aggregationValue": 9,
7
+ "useAggregation": true
8
+ },
9
+ "rawDataSetting": {
10
+ "fitTimeSpanTo": "months",
11
+ "percentiles": 7,
12
+ "projectionTime": 2,
13
+ "reduceData": false,
14
+ "standardDeviation": 3,
15
+ "timeOverTimeOnly": true,
16
+ "timeOverTimeType": "none",
17
+ "timeOverTimeUnits": "sixhour",
18
+ "timeOverTimeValue": 10,
19
+ "trend": "projected",
20
+ "trendType": "linear",
21
+ "useBaseline": false,
22
+ "usePercentiles": "string",
23
+ "useTimeOverTime": true
24
+ },
25
+ "unitsSetting": {
26
+ "percentage": true,
27
+ "preferredUnits": "bytes"
28
+ },
29
+ "workHoursSetting": {
30
+ "customWorkhours": [
31
+ {
32
+ "days": {},
33
+ "startHour": {},
34
+ "startMin": {},
35
+ "endHour": {},
36
+ "endMin": {}
37
+ },
38
+ {
39
+ "days": {},
40
+ "startHour": {},
41
+ "startMin": {},
42
+ "endHour": {},
43
+ "endMin": {}
44
+ },
45
+ {
46
+ "days": {},
47
+ "startHour": {},
48
+ "startMin": {},
49
+ "endHour": {},
50
+ "endMin": {}
51
+ },
52
+ {
53
+ "days": {},
54
+ "startHour": {},
55
+ "startMin": {},
56
+ "endHour": {},
57
+ "endMin": {}
58
+ }
59
+ ],
60
+ "type": "group",
61
+ "workHoursGroupId": 10
62
+ }
63
+ },
64
+ "sourceFields": {
65
+ "fields": [
66
+ "string",
67
+ "string",
68
+ "string",
69
+ "string",
70
+ "string",
71
+ "string",
72
+ "string",
73
+ "string",
74
+ "string"
75
+ ],
76
+ "sort": [
77
+ [
78
+ "string",
79
+ "string",
80
+ "string",
81
+ "string",
82
+ "string",
83
+ "string",
84
+ "string",
85
+ "string",
86
+ "string"
87
+ ],
88
+ [
89
+ "string",
90
+ "string",
91
+ "string",
92
+ "string",
93
+ "string"
94
+ ],
95
+ [
96
+ "string"
97
+ ],
98
+ [
99
+ "string",
100
+ "string",
101
+ "string",
102
+ "string",
103
+ "string",
104
+ "string",
105
+ "string",
106
+ "string"
107
+ ],
108
+ [
109
+ "string",
110
+ "string",
111
+ "string",
112
+ "string",
113
+ "string",
114
+ "string",
115
+ "string"
116
+ ],
117
+ [
118
+ "string",
119
+ "string",
120
+ "string",
121
+ "string",
122
+ "string",
123
+ "string",
124
+ "string"
125
+ ],
126
+ [
127
+ "string",
128
+ "string",
129
+ "string",
130
+ "string",
131
+ "string",
132
+ "string",
133
+ "string",
134
+ "string",
135
+ "string"
136
+ ]
137
+ ]
138
+ }
139
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "ranges": {
3
+ "end": "string",
4
+ "start": "string",
5
+ "type": "RelativePeriod"
6
+ },
7
+ "timezone": "string"
8
+ }