@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,1352 @@
1
+ {
2
+ "id": 4,
3
+ "name": "string",
4
+ "parentId": 1,
5
+ "devices": [
6
+ {
7
+ "allowDelete": false,
8
+ "alternateName": "string",
9
+ "dateAdded": 6,
10
+ "description": "string",
11
+ "disableConcurrentPolling": false,
12
+ "disablePolling": true,
13
+ "disableThresholding": true,
14
+ "id": 10,
15
+ "ipAddress": "string",
16
+ "isDeleted": true,
17
+ "isNew": false,
18
+ "lastDiscovery": 7,
19
+ "manualIP": false,
20
+ "name": "string",
21
+ "numElements": 6,
22
+ "objects": [
23
+ {
24
+ "alternateName": "string",
25
+ "dateAdded": 1,
26
+ "description": "string",
27
+ "deviceId": 5,
28
+ "enabled": {},
29
+ "extendedInfo": {},
30
+ "id": 9,
31
+ "indicators": [
32
+ {},
33
+ {},
34
+ {},
35
+ {},
36
+ {},
37
+ {},
38
+ {},
39
+ {}
40
+ ],
41
+ "isDeleted": true,
42
+ "isEnabled": true,
43
+ "isVisible": false,
44
+ "name": "string",
45
+ "pluginId": 7,
46
+ "pluginObjectTypeId": 9,
47
+ "subtypeId": 1
48
+ },
49
+ {
50
+ "alternateName": "string",
51
+ "dateAdded": 10,
52
+ "description": "string",
53
+ "deviceId": 4,
54
+ "enabled": {},
55
+ "extendedInfo": {},
56
+ "id": 6,
57
+ "indicators": [
58
+ {},
59
+ {},
60
+ {}
61
+ ],
62
+ "isDeleted": false,
63
+ "isEnabled": false,
64
+ "isVisible": true,
65
+ "name": "string",
66
+ "pluginId": 4,
67
+ "pluginObjectTypeId": 1,
68
+ "subtypeId": 3
69
+ },
70
+ {
71
+ "alternateName": "string",
72
+ "dateAdded": 9,
73
+ "description": "string",
74
+ "deviceId": 2,
75
+ "enabled": {},
76
+ "extendedInfo": {},
77
+ "id": 1,
78
+ "indicators": [
79
+ {},
80
+ {},
81
+ {},
82
+ {},
83
+ {},
84
+ {},
85
+ {},
86
+ {}
87
+ ],
88
+ "isDeleted": true,
89
+ "isEnabled": false,
90
+ "isVisible": false,
91
+ "name": "string",
92
+ "pluginId": 3,
93
+ "pluginObjectTypeId": 6,
94
+ "subtypeId": 6
95
+ },
96
+ {
97
+ "alternateName": "string",
98
+ "dateAdded": 5,
99
+ "description": "string",
100
+ "deviceId": 1,
101
+ "enabled": {},
102
+ "extendedInfo": {},
103
+ "id": 6,
104
+ "indicators": [
105
+ {},
106
+ {},
107
+ {},
108
+ {},
109
+ {},
110
+ {},
111
+ {},
112
+ {},
113
+ {}
114
+ ],
115
+ "isDeleted": false,
116
+ "isEnabled": true,
117
+ "isVisible": false,
118
+ "name": "string",
119
+ "pluginId": 2,
120
+ "pluginObjectTypeId": 1,
121
+ "subtypeId": 9
122
+ },
123
+ {
124
+ "alternateName": "string",
125
+ "dateAdded": 8,
126
+ "description": "string",
127
+ "deviceId": 4,
128
+ "enabled": {},
129
+ "extendedInfo": {},
130
+ "id": 9,
131
+ "indicators": [
132
+ {},
133
+ {},
134
+ {},
135
+ {}
136
+ ],
137
+ "isDeleted": true,
138
+ "isEnabled": false,
139
+ "isVisible": true,
140
+ "name": "string",
141
+ "pluginId": 9,
142
+ "pluginObjectTypeId": 5,
143
+ "subtypeId": 1
144
+ },
145
+ {
146
+ "alternateName": "string",
147
+ "dateAdded": 9,
148
+ "description": "string",
149
+ "deviceId": 2,
150
+ "enabled": {},
151
+ "extendedInfo": {},
152
+ "id": 2,
153
+ "indicators": [
154
+ {},
155
+ {},
156
+ {},
157
+ {},
158
+ {},
159
+ {},
160
+ {},
161
+ {}
162
+ ],
163
+ "isDeleted": true,
164
+ "isEnabled": true,
165
+ "isVisible": true,
166
+ "name": "string",
167
+ "pluginId": 4,
168
+ "pluginObjectTypeId": 8,
169
+ "subtypeId": 10
170
+ },
171
+ {
172
+ "alternateName": "string",
173
+ "dateAdded": 6,
174
+ "description": "string",
175
+ "deviceId": 9,
176
+ "enabled": {},
177
+ "extendedInfo": {},
178
+ "id": 3,
179
+ "indicators": [
180
+ {},
181
+ {},
182
+ {},
183
+ {}
184
+ ],
185
+ "isDeleted": false,
186
+ "isEnabled": false,
187
+ "isVisible": false,
188
+ "name": "string",
189
+ "pluginId": 1,
190
+ "pluginObjectTypeId": 10,
191
+ "subtypeId": 6
192
+ }
193
+ ],
194
+ "peerId": 6,
195
+ "pluginInfo": {},
196
+ "pluginManagerId": 3,
197
+ "pollFrequency": 10,
198
+ "timezone": "string",
199
+ "workhoursGroupId": 1
200
+ },
201
+ {
202
+ "allowDelete": false,
203
+ "alternateName": "string",
204
+ "dateAdded": 7,
205
+ "description": "string",
206
+ "disableConcurrentPolling": false,
207
+ "disablePolling": true,
208
+ "disableThresholding": false,
209
+ "id": 7,
210
+ "ipAddress": "string",
211
+ "isDeleted": true,
212
+ "isNew": true,
213
+ "lastDiscovery": 10,
214
+ "manualIP": true,
215
+ "name": "string",
216
+ "numElements": 5,
217
+ "objects": [
218
+ {
219
+ "alternateName": "string",
220
+ "dateAdded": 3,
221
+ "description": "string",
222
+ "deviceId": 1,
223
+ "enabled": {},
224
+ "extendedInfo": {},
225
+ "id": 2,
226
+ "indicators": [
227
+ {},
228
+ {},
229
+ {},
230
+ {},
231
+ {},
232
+ {},
233
+ {},
234
+ {},
235
+ {},
236
+ {}
237
+ ],
238
+ "isDeleted": true,
239
+ "isEnabled": false,
240
+ "isVisible": true,
241
+ "name": "string",
242
+ "pluginId": 3,
243
+ "pluginObjectTypeId": 10,
244
+ "subtypeId": 6
245
+ },
246
+ {
247
+ "alternateName": "string",
248
+ "dateAdded": 6,
249
+ "description": "string",
250
+ "deviceId": 1,
251
+ "enabled": {},
252
+ "extendedInfo": {},
253
+ "id": 6,
254
+ "indicators": [
255
+ {}
256
+ ],
257
+ "isDeleted": false,
258
+ "isEnabled": true,
259
+ "isVisible": false,
260
+ "name": "string",
261
+ "pluginId": 1,
262
+ "pluginObjectTypeId": 10,
263
+ "subtypeId": 6
264
+ }
265
+ ],
266
+ "peerId": 1,
267
+ "pluginInfo": {},
268
+ "pluginManagerId": 10,
269
+ "pollFrequency": 3,
270
+ "timezone": "string",
271
+ "workhoursGroupId": 1
272
+ },
273
+ {
274
+ "allowDelete": true,
275
+ "alternateName": "string",
276
+ "dateAdded": 1,
277
+ "description": "string",
278
+ "disableConcurrentPolling": true,
279
+ "disablePolling": true,
280
+ "disableThresholding": false,
281
+ "id": 10,
282
+ "ipAddress": "string",
283
+ "isDeleted": false,
284
+ "isNew": false,
285
+ "lastDiscovery": 6,
286
+ "manualIP": false,
287
+ "name": "string",
288
+ "numElements": 10,
289
+ "objects": [
290
+ {
291
+ "alternateName": "string",
292
+ "dateAdded": 4,
293
+ "description": "string",
294
+ "deviceId": 4,
295
+ "enabled": {},
296
+ "extendedInfo": {},
297
+ "id": 5,
298
+ "indicators": [
299
+ {},
300
+ {},
301
+ {},
302
+ {},
303
+ {},
304
+ {},
305
+ {},
306
+ {}
307
+ ],
308
+ "isDeleted": false,
309
+ "isEnabled": false,
310
+ "isVisible": false,
311
+ "name": "string",
312
+ "pluginId": 1,
313
+ "pluginObjectTypeId": 2,
314
+ "subtypeId": 4
315
+ },
316
+ {
317
+ "alternateName": "string",
318
+ "dateAdded": 8,
319
+ "description": "string",
320
+ "deviceId": 1,
321
+ "enabled": {},
322
+ "extendedInfo": {},
323
+ "id": 3,
324
+ "indicators": [
325
+ {},
326
+ {},
327
+ {},
328
+ {},
329
+ {},
330
+ {},
331
+ {},
332
+ {},
333
+ {}
334
+ ],
335
+ "isDeleted": false,
336
+ "isEnabled": false,
337
+ "isVisible": true,
338
+ "name": "string",
339
+ "pluginId": 7,
340
+ "pluginObjectTypeId": 9,
341
+ "subtypeId": 1
342
+ },
343
+ {
344
+ "alternateName": "string",
345
+ "dateAdded": 7,
346
+ "description": "string",
347
+ "deviceId": 1,
348
+ "enabled": {},
349
+ "extendedInfo": {},
350
+ "id": 3,
351
+ "indicators": [
352
+ {},
353
+ {},
354
+ {}
355
+ ],
356
+ "isDeleted": true,
357
+ "isEnabled": false,
358
+ "isVisible": false,
359
+ "name": "string",
360
+ "pluginId": 1,
361
+ "pluginObjectTypeId": 5,
362
+ "subtypeId": 2
363
+ }
364
+ ],
365
+ "peerId": 3,
366
+ "pluginInfo": {},
367
+ "pluginManagerId": 3,
368
+ "pollFrequency": 5,
369
+ "timezone": "string",
370
+ "workhoursGroupId": 6
371
+ },
372
+ {
373
+ "allowDelete": false,
374
+ "alternateName": "string",
375
+ "dateAdded": 3,
376
+ "description": "string",
377
+ "disableConcurrentPolling": false,
378
+ "disablePolling": false,
379
+ "disableThresholding": false,
380
+ "id": 3,
381
+ "ipAddress": "string",
382
+ "isDeleted": false,
383
+ "isNew": true,
384
+ "lastDiscovery": 2,
385
+ "manualIP": true,
386
+ "name": "string",
387
+ "numElements": 1,
388
+ "objects": [
389
+ {
390
+ "alternateName": "string",
391
+ "dateAdded": 1,
392
+ "description": "string",
393
+ "deviceId": 6,
394
+ "enabled": {},
395
+ "extendedInfo": {},
396
+ "id": 9,
397
+ "indicators": [
398
+ {},
399
+ {},
400
+ {},
401
+ {},
402
+ {},
403
+ {},
404
+ {},
405
+ {}
406
+ ],
407
+ "isDeleted": false,
408
+ "isEnabled": false,
409
+ "isVisible": true,
410
+ "name": "string",
411
+ "pluginId": 4,
412
+ "pluginObjectTypeId": 3,
413
+ "subtypeId": 1
414
+ },
415
+ {
416
+ "alternateName": "string",
417
+ "dateAdded": 5,
418
+ "description": "string",
419
+ "deviceId": 1,
420
+ "enabled": {},
421
+ "extendedInfo": {},
422
+ "id": 7,
423
+ "indicators": [
424
+ {},
425
+ {},
426
+ {},
427
+ {},
428
+ {},
429
+ {},
430
+ {}
431
+ ],
432
+ "isDeleted": true,
433
+ "isEnabled": true,
434
+ "isVisible": false,
435
+ "name": "string",
436
+ "pluginId": 7,
437
+ "pluginObjectTypeId": 10,
438
+ "subtypeId": 7
439
+ },
440
+ {
441
+ "alternateName": "string",
442
+ "dateAdded": 10,
443
+ "description": "string",
444
+ "deviceId": 5,
445
+ "enabled": {},
446
+ "extendedInfo": {},
447
+ "id": 7,
448
+ "indicators": [
449
+ {}
450
+ ],
451
+ "isDeleted": true,
452
+ "isEnabled": true,
453
+ "isVisible": false,
454
+ "name": "string",
455
+ "pluginId": 8,
456
+ "pluginObjectTypeId": 2,
457
+ "subtypeId": 6
458
+ },
459
+ {
460
+ "alternateName": "string",
461
+ "dateAdded": 8,
462
+ "description": "string",
463
+ "deviceId": 10,
464
+ "enabled": {},
465
+ "extendedInfo": {},
466
+ "id": 10,
467
+ "indicators": [
468
+ {},
469
+ {},
470
+ {},
471
+ {}
472
+ ],
473
+ "isDeleted": false,
474
+ "isEnabled": false,
475
+ "isVisible": false,
476
+ "name": "string",
477
+ "pluginId": 6,
478
+ "pluginObjectTypeId": 5,
479
+ "subtypeId": 3
480
+ },
481
+ {
482
+ "alternateName": "string",
483
+ "dateAdded": 3,
484
+ "description": "string",
485
+ "deviceId": 5,
486
+ "enabled": {},
487
+ "extendedInfo": {},
488
+ "id": 7,
489
+ "indicators": [
490
+ {},
491
+ {}
492
+ ],
493
+ "isDeleted": false,
494
+ "isEnabled": true,
495
+ "isVisible": true,
496
+ "name": "string",
497
+ "pluginId": 6,
498
+ "pluginObjectTypeId": 3,
499
+ "subtypeId": 8
500
+ },
501
+ {
502
+ "alternateName": "string",
503
+ "dateAdded": 4,
504
+ "description": "string",
505
+ "deviceId": 8,
506
+ "enabled": {},
507
+ "extendedInfo": {},
508
+ "id": 5,
509
+ "indicators": [
510
+ {}
511
+ ],
512
+ "isDeleted": true,
513
+ "isEnabled": false,
514
+ "isVisible": false,
515
+ "name": "string",
516
+ "pluginId": 2,
517
+ "pluginObjectTypeId": 7,
518
+ "subtypeId": 7
519
+ },
520
+ {
521
+ "alternateName": "string",
522
+ "dateAdded": 10,
523
+ "description": "string",
524
+ "deviceId": 4,
525
+ "enabled": {},
526
+ "extendedInfo": {},
527
+ "id": 7,
528
+ "indicators": [
529
+ {},
530
+ {},
531
+ {},
532
+ {},
533
+ {},
534
+ {},
535
+ {},
536
+ {},
537
+ {},
538
+ {}
539
+ ],
540
+ "isDeleted": true,
541
+ "isEnabled": false,
542
+ "isVisible": true,
543
+ "name": "string",
544
+ "pluginId": 10,
545
+ "pluginObjectTypeId": 1,
546
+ "subtypeId": 10
547
+ }
548
+ ],
549
+ "peerId": 6,
550
+ "pluginInfo": {},
551
+ "pluginManagerId": 8,
552
+ "pollFrequency": 8,
553
+ "timezone": "string",
554
+ "workhoursGroupId": 10
555
+ },
556
+ {
557
+ "allowDelete": false,
558
+ "alternateName": "string",
559
+ "dateAdded": 9,
560
+ "description": "string",
561
+ "disableConcurrentPolling": false,
562
+ "disablePolling": false,
563
+ "disableThresholding": false,
564
+ "id": 4,
565
+ "ipAddress": "string",
566
+ "isDeleted": false,
567
+ "isNew": false,
568
+ "lastDiscovery": 2,
569
+ "manualIP": false,
570
+ "name": "string",
571
+ "numElements": 4,
572
+ "objects": [
573
+ {
574
+ "alternateName": "string",
575
+ "dateAdded": 10,
576
+ "description": "string",
577
+ "deviceId": 6,
578
+ "enabled": {},
579
+ "extendedInfo": {},
580
+ "id": 5,
581
+ "indicators": [
582
+ {},
583
+ {},
584
+ {},
585
+ {},
586
+ {},
587
+ {},
588
+ {},
589
+ {},
590
+ {}
591
+ ],
592
+ "isDeleted": true,
593
+ "isEnabled": true,
594
+ "isVisible": true,
595
+ "name": "string",
596
+ "pluginId": 8,
597
+ "pluginObjectTypeId": 1,
598
+ "subtypeId": 6
599
+ },
600
+ {
601
+ "alternateName": "string",
602
+ "dateAdded": 9,
603
+ "description": "string",
604
+ "deviceId": 1,
605
+ "enabled": {},
606
+ "extendedInfo": {},
607
+ "id": 10,
608
+ "indicators": [
609
+ {}
610
+ ],
611
+ "isDeleted": false,
612
+ "isEnabled": false,
613
+ "isVisible": false,
614
+ "name": "string",
615
+ "pluginId": 9,
616
+ "pluginObjectTypeId": 7,
617
+ "subtypeId": 4
618
+ },
619
+ {
620
+ "alternateName": "string",
621
+ "dateAdded": 9,
622
+ "description": "string",
623
+ "deviceId": 9,
624
+ "enabled": {},
625
+ "extendedInfo": {},
626
+ "id": 7,
627
+ "indicators": [
628
+ {},
629
+ {},
630
+ {}
631
+ ],
632
+ "isDeleted": true,
633
+ "isEnabled": true,
634
+ "isVisible": true,
635
+ "name": "string",
636
+ "pluginId": 7,
637
+ "pluginObjectTypeId": 4,
638
+ "subtypeId": 5
639
+ },
640
+ {
641
+ "alternateName": "string",
642
+ "dateAdded": 7,
643
+ "description": "string",
644
+ "deviceId": 8,
645
+ "enabled": {},
646
+ "extendedInfo": {},
647
+ "id": 5,
648
+ "indicators": [
649
+ {},
650
+ {},
651
+ {},
652
+ {},
653
+ {},
654
+ {},
655
+ {},
656
+ {},
657
+ {},
658
+ {}
659
+ ],
660
+ "isDeleted": true,
661
+ "isEnabled": false,
662
+ "isVisible": true,
663
+ "name": "string",
664
+ "pluginId": 5,
665
+ "pluginObjectTypeId": 7,
666
+ "subtypeId": 4
667
+ },
668
+ {
669
+ "alternateName": "string",
670
+ "dateAdded": 6,
671
+ "description": "string",
672
+ "deviceId": 6,
673
+ "enabled": {},
674
+ "extendedInfo": {},
675
+ "id": 10,
676
+ "indicators": [
677
+ {},
678
+ {},
679
+ {},
680
+ {},
681
+ {},
682
+ {},
683
+ {},
684
+ {},
685
+ {},
686
+ {}
687
+ ],
688
+ "isDeleted": false,
689
+ "isEnabled": false,
690
+ "isVisible": false,
691
+ "name": "string",
692
+ "pluginId": 5,
693
+ "pluginObjectTypeId": 9,
694
+ "subtypeId": 8
695
+ },
696
+ {
697
+ "alternateName": "string",
698
+ "dateAdded": 4,
699
+ "description": "string",
700
+ "deviceId": 2,
701
+ "enabled": {},
702
+ "extendedInfo": {},
703
+ "id": 1,
704
+ "indicators": [
705
+ {},
706
+ {},
707
+ {}
708
+ ],
709
+ "isDeleted": false,
710
+ "isEnabled": true,
711
+ "isVisible": true,
712
+ "name": "string",
713
+ "pluginId": 8,
714
+ "pluginObjectTypeId": 1,
715
+ "subtypeId": 5
716
+ },
717
+ {
718
+ "alternateName": "string",
719
+ "dateAdded": 9,
720
+ "description": "string",
721
+ "deviceId": 3,
722
+ "enabled": {},
723
+ "extendedInfo": {},
724
+ "id": 7,
725
+ "indicators": [
726
+ {},
727
+ {},
728
+ {}
729
+ ],
730
+ "isDeleted": true,
731
+ "isEnabled": true,
732
+ "isVisible": true,
733
+ "name": "string",
734
+ "pluginId": 7,
735
+ "pluginObjectTypeId": 3,
736
+ "subtypeId": 9
737
+ },
738
+ {
739
+ "alternateName": "string",
740
+ "dateAdded": 10,
741
+ "description": "string",
742
+ "deviceId": 8,
743
+ "enabled": {},
744
+ "extendedInfo": {},
745
+ "id": 10,
746
+ "indicators": [
747
+ {},
748
+ {}
749
+ ],
750
+ "isDeleted": false,
751
+ "isEnabled": false,
752
+ "isVisible": false,
753
+ "name": "string",
754
+ "pluginId": 2,
755
+ "pluginObjectTypeId": 10,
756
+ "subtypeId": 1
757
+ }
758
+ ],
759
+ "peerId": 5,
760
+ "pluginInfo": {},
761
+ "pluginManagerId": 4,
762
+ "pollFrequency": 4,
763
+ "timezone": "string",
764
+ "workhoursGroupId": 1
765
+ },
766
+ {
767
+ "allowDelete": false,
768
+ "alternateName": "string",
769
+ "dateAdded": 7,
770
+ "description": "string",
771
+ "disableConcurrentPolling": false,
772
+ "disablePolling": false,
773
+ "disableThresholding": false,
774
+ "id": 1,
775
+ "ipAddress": "string",
776
+ "isDeleted": true,
777
+ "isNew": false,
778
+ "lastDiscovery": 1,
779
+ "manualIP": false,
780
+ "name": "string",
781
+ "numElements": 6,
782
+ "objects": [
783
+ {
784
+ "alternateName": "string",
785
+ "dateAdded": 9,
786
+ "description": "string",
787
+ "deviceId": 10,
788
+ "enabled": {},
789
+ "extendedInfo": {},
790
+ "id": 4,
791
+ "indicators": [
792
+ {},
793
+ {},
794
+ {},
795
+ {},
796
+ {},
797
+ {},
798
+ {},
799
+ {},
800
+ {}
801
+ ],
802
+ "isDeleted": true,
803
+ "isEnabled": true,
804
+ "isVisible": true,
805
+ "name": "string",
806
+ "pluginId": 2,
807
+ "pluginObjectTypeId": 9,
808
+ "subtypeId": 2
809
+ },
810
+ {
811
+ "alternateName": "string",
812
+ "dateAdded": 9,
813
+ "description": "string",
814
+ "deviceId": 3,
815
+ "enabled": {},
816
+ "extendedInfo": {},
817
+ "id": 9,
818
+ "indicators": [
819
+ {}
820
+ ],
821
+ "isDeleted": true,
822
+ "isEnabled": true,
823
+ "isVisible": true,
824
+ "name": "string",
825
+ "pluginId": 4,
826
+ "pluginObjectTypeId": 8,
827
+ "subtypeId": 5
828
+ },
829
+ {
830
+ "alternateName": "string",
831
+ "dateAdded": 6,
832
+ "description": "string",
833
+ "deviceId": 10,
834
+ "enabled": {},
835
+ "extendedInfo": {},
836
+ "id": 5,
837
+ "indicators": [
838
+ {}
839
+ ],
840
+ "isDeleted": true,
841
+ "isEnabled": false,
842
+ "isVisible": false,
843
+ "name": "string",
844
+ "pluginId": 7,
845
+ "pluginObjectTypeId": 2,
846
+ "subtypeId": 4
847
+ },
848
+ {
849
+ "alternateName": "string",
850
+ "dateAdded": 10,
851
+ "description": "string",
852
+ "deviceId": 8,
853
+ "enabled": {},
854
+ "extendedInfo": {},
855
+ "id": 9,
856
+ "indicators": [
857
+ {},
858
+ {},
859
+ {},
860
+ {},
861
+ {},
862
+ {},
863
+ {},
864
+ {},
865
+ {}
866
+ ],
867
+ "isDeleted": true,
868
+ "isEnabled": true,
869
+ "isVisible": true,
870
+ "name": "string",
871
+ "pluginId": 5,
872
+ "pluginObjectTypeId": 4,
873
+ "subtypeId": 9
874
+ }
875
+ ],
876
+ "peerId": 5,
877
+ "pluginInfo": {},
878
+ "pluginManagerId": 2,
879
+ "pollFrequency": 6,
880
+ "timezone": "string",
881
+ "workhoursGroupId": 5
882
+ },
883
+ {
884
+ "allowDelete": true,
885
+ "alternateName": "string",
886
+ "dateAdded": 9,
887
+ "description": "string",
888
+ "disableConcurrentPolling": false,
889
+ "disablePolling": false,
890
+ "disableThresholding": true,
891
+ "id": 6,
892
+ "ipAddress": "string",
893
+ "isDeleted": true,
894
+ "isNew": true,
895
+ "lastDiscovery": 4,
896
+ "manualIP": false,
897
+ "name": "string",
898
+ "numElements": 6,
899
+ "objects": [
900
+ {
901
+ "alternateName": "string",
902
+ "dateAdded": 3,
903
+ "description": "string",
904
+ "deviceId": 10,
905
+ "enabled": {},
906
+ "extendedInfo": {},
907
+ "id": 2,
908
+ "indicators": [
909
+ {},
910
+ {},
911
+ {},
912
+ {},
913
+ {},
914
+ {},
915
+ {},
916
+ {}
917
+ ],
918
+ "isDeleted": false,
919
+ "isEnabled": true,
920
+ "isVisible": false,
921
+ "name": "string",
922
+ "pluginId": 9,
923
+ "pluginObjectTypeId": 7,
924
+ "subtypeId": 10
925
+ },
926
+ {
927
+ "alternateName": "string",
928
+ "dateAdded": 6,
929
+ "description": "string",
930
+ "deviceId": 9,
931
+ "enabled": {},
932
+ "extendedInfo": {},
933
+ "id": 1,
934
+ "indicators": [
935
+ {},
936
+ {},
937
+ {},
938
+ {},
939
+ {},
940
+ {},
941
+ {},
942
+ {}
943
+ ],
944
+ "isDeleted": false,
945
+ "isEnabled": false,
946
+ "isVisible": false,
947
+ "name": "string",
948
+ "pluginId": 10,
949
+ "pluginObjectTypeId": 7,
950
+ "subtypeId": 9
951
+ },
952
+ {
953
+ "alternateName": "string",
954
+ "dateAdded": 2,
955
+ "description": "string",
956
+ "deviceId": 6,
957
+ "enabled": {},
958
+ "extendedInfo": {},
959
+ "id": 5,
960
+ "indicators": [
961
+ {},
962
+ {}
963
+ ],
964
+ "isDeleted": true,
965
+ "isEnabled": false,
966
+ "isVisible": true,
967
+ "name": "string",
968
+ "pluginId": 2,
969
+ "pluginObjectTypeId": 4,
970
+ "subtypeId": 8
971
+ },
972
+ {
973
+ "alternateName": "string",
974
+ "dateAdded": 6,
975
+ "description": "string",
976
+ "deviceId": 1,
977
+ "enabled": {},
978
+ "extendedInfo": {},
979
+ "id": 4,
980
+ "indicators": [
981
+ {}
982
+ ],
983
+ "isDeleted": true,
984
+ "isEnabled": false,
985
+ "isVisible": true,
986
+ "name": "string",
987
+ "pluginId": 5,
988
+ "pluginObjectTypeId": 1,
989
+ "subtypeId": 3
990
+ },
991
+ {
992
+ "alternateName": "string",
993
+ "dateAdded": 8,
994
+ "description": "string",
995
+ "deviceId": 6,
996
+ "enabled": {},
997
+ "extendedInfo": {},
998
+ "id": 7,
999
+ "indicators": [
1000
+ {},
1001
+ {},
1002
+ {},
1003
+ {},
1004
+ {},
1005
+ {},
1006
+ {},
1007
+ {}
1008
+ ],
1009
+ "isDeleted": false,
1010
+ "isEnabled": true,
1011
+ "isVisible": true,
1012
+ "name": "string",
1013
+ "pluginId": 4,
1014
+ "pluginObjectTypeId": 5,
1015
+ "subtypeId": 2
1016
+ },
1017
+ {
1018
+ "alternateName": "string",
1019
+ "dateAdded": 2,
1020
+ "description": "string",
1021
+ "deviceId": 5,
1022
+ "enabled": {},
1023
+ "extendedInfo": {},
1024
+ "id": 1,
1025
+ "indicators": [
1026
+ {},
1027
+ {},
1028
+ {},
1029
+ {},
1030
+ {},
1031
+ {},
1032
+ {},
1033
+ {},
1034
+ {}
1035
+ ],
1036
+ "isDeleted": true,
1037
+ "isEnabled": false,
1038
+ "isVisible": false,
1039
+ "name": "string",
1040
+ "pluginId": 5,
1041
+ "pluginObjectTypeId": 10,
1042
+ "subtypeId": 7
1043
+ },
1044
+ {
1045
+ "alternateName": "string",
1046
+ "dateAdded": 6,
1047
+ "description": "string",
1048
+ "deviceId": 7,
1049
+ "enabled": {},
1050
+ "extendedInfo": {},
1051
+ "id": 10,
1052
+ "indicators": [
1053
+ {},
1054
+ {},
1055
+ {},
1056
+ {},
1057
+ {},
1058
+ {},
1059
+ {}
1060
+ ],
1061
+ "isDeleted": false,
1062
+ "isEnabled": false,
1063
+ "isVisible": true,
1064
+ "name": "string",
1065
+ "pluginId": 6,
1066
+ "pluginObjectTypeId": 3,
1067
+ "subtypeId": 6
1068
+ },
1069
+ {
1070
+ "alternateName": "string",
1071
+ "dateAdded": 8,
1072
+ "description": "string",
1073
+ "deviceId": 10,
1074
+ "enabled": {},
1075
+ "extendedInfo": {},
1076
+ "id": 3,
1077
+ "indicators": [
1078
+ {}
1079
+ ],
1080
+ "isDeleted": true,
1081
+ "isEnabled": true,
1082
+ "isVisible": false,
1083
+ "name": "string",
1084
+ "pluginId": 2,
1085
+ "pluginObjectTypeId": 4,
1086
+ "subtypeId": 7
1087
+ },
1088
+ {
1089
+ "alternateName": "string",
1090
+ "dateAdded": 4,
1091
+ "description": "string",
1092
+ "deviceId": 3,
1093
+ "enabled": {},
1094
+ "extendedInfo": {},
1095
+ "id": 1,
1096
+ "indicators": [
1097
+ {}
1098
+ ],
1099
+ "isDeleted": false,
1100
+ "isEnabled": true,
1101
+ "isVisible": false,
1102
+ "name": "string",
1103
+ "pluginId": 7,
1104
+ "pluginObjectTypeId": 5,
1105
+ "subtypeId": 8
1106
+ },
1107
+ {
1108
+ "alternateName": "string",
1109
+ "dateAdded": 8,
1110
+ "description": "string",
1111
+ "deviceId": 5,
1112
+ "enabled": {},
1113
+ "extendedInfo": {},
1114
+ "id": 2,
1115
+ "indicators": [
1116
+ {},
1117
+ {},
1118
+ {},
1119
+ {},
1120
+ {},
1121
+ {},
1122
+ {},
1123
+ {}
1124
+ ],
1125
+ "isDeleted": true,
1126
+ "isEnabled": false,
1127
+ "isVisible": false,
1128
+ "name": "string",
1129
+ "pluginId": 9,
1130
+ "pluginObjectTypeId": 2,
1131
+ "subtypeId": 3
1132
+ }
1133
+ ],
1134
+ "peerId": 3,
1135
+ "pluginInfo": {},
1136
+ "pluginManagerId": 8,
1137
+ "pollFrequency": 7,
1138
+ "timezone": "string",
1139
+ "workhoursGroupId": 4
1140
+ },
1141
+ {
1142
+ "allowDelete": false,
1143
+ "alternateName": "string",
1144
+ "dateAdded": 3,
1145
+ "description": "string",
1146
+ "disableConcurrentPolling": true,
1147
+ "disablePolling": false,
1148
+ "disableThresholding": true,
1149
+ "id": 9,
1150
+ "ipAddress": "string",
1151
+ "isDeleted": true,
1152
+ "isNew": false,
1153
+ "lastDiscovery": 1,
1154
+ "manualIP": true,
1155
+ "name": "string",
1156
+ "numElements": 3,
1157
+ "objects": [
1158
+ {
1159
+ "alternateName": "string",
1160
+ "dateAdded": 1,
1161
+ "description": "string",
1162
+ "deviceId": 5,
1163
+ "enabled": {},
1164
+ "extendedInfo": {},
1165
+ "id": 1,
1166
+ "indicators": [
1167
+ {},
1168
+ {},
1169
+ {},
1170
+ {},
1171
+ {},
1172
+ {},
1173
+ {},
1174
+ {},
1175
+ {}
1176
+ ],
1177
+ "isDeleted": true,
1178
+ "isEnabled": false,
1179
+ "isVisible": true,
1180
+ "name": "string",
1181
+ "pluginId": 5,
1182
+ "pluginObjectTypeId": 2,
1183
+ "subtypeId": 8
1184
+ },
1185
+ {
1186
+ "alternateName": "string",
1187
+ "dateAdded": 6,
1188
+ "description": "string",
1189
+ "deviceId": 8,
1190
+ "enabled": {},
1191
+ "extendedInfo": {},
1192
+ "id": 9,
1193
+ "indicators": [
1194
+ {},
1195
+ {}
1196
+ ],
1197
+ "isDeleted": true,
1198
+ "isEnabled": false,
1199
+ "isVisible": true,
1200
+ "name": "string",
1201
+ "pluginId": 10,
1202
+ "pluginObjectTypeId": 9,
1203
+ "subtypeId": 4
1204
+ },
1205
+ {
1206
+ "alternateName": "string",
1207
+ "dateAdded": 6,
1208
+ "description": "string",
1209
+ "deviceId": 9,
1210
+ "enabled": {},
1211
+ "extendedInfo": {},
1212
+ "id": 6,
1213
+ "indicators": [
1214
+ {},
1215
+ {},
1216
+ {}
1217
+ ],
1218
+ "isDeleted": true,
1219
+ "isEnabled": true,
1220
+ "isVisible": false,
1221
+ "name": "string",
1222
+ "pluginId": 10,
1223
+ "pluginObjectTypeId": 9,
1224
+ "subtypeId": 1
1225
+ },
1226
+ {
1227
+ "alternateName": "string",
1228
+ "dateAdded": 1,
1229
+ "description": "string",
1230
+ "deviceId": 7,
1231
+ "enabled": {},
1232
+ "extendedInfo": {},
1233
+ "id": 3,
1234
+ "indicators": [
1235
+ {},
1236
+ {},
1237
+ {},
1238
+ {},
1239
+ {},
1240
+ {},
1241
+ {}
1242
+ ],
1243
+ "isDeleted": true,
1244
+ "isEnabled": false,
1245
+ "isVisible": true,
1246
+ "name": "string",
1247
+ "pluginId": 1,
1248
+ "pluginObjectTypeId": 5,
1249
+ "subtypeId": 2
1250
+ },
1251
+ {
1252
+ "alternateName": "string",
1253
+ "dateAdded": 1,
1254
+ "description": "string",
1255
+ "deviceId": 9,
1256
+ "enabled": {},
1257
+ "extendedInfo": {},
1258
+ "id": 3,
1259
+ "indicators": [
1260
+ {},
1261
+ {},
1262
+ {},
1263
+ {},
1264
+ {}
1265
+ ],
1266
+ "isDeleted": true,
1267
+ "isEnabled": true,
1268
+ "isVisible": false,
1269
+ "name": "string",
1270
+ "pluginId": 7,
1271
+ "pluginObjectTypeId": 4,
1272
+ "subtypeId": 9
1273
+ },
1274
+ {
1275
+ "alternateName": "string",
1276
+ "dateAdded": 7,
1277
+ "description": "string",
1278
+ "deviceId": 4,
1279
+ "enabled": {},
1280
+ "extendedInfo": {},
1281
+ "id": 3,
1282
+ "indicators": [
1283
+ {},
1284
+ {},
1285
+ {},
1286
+ {},
1287
+ {},
1288
+ {}
1289
+ ],
1290
+ "isDeleted": false,
1291
+ "isEnabled": false,
1292
+ "isVisible": true,
1293
+ "name": "string",
1294
+ "pluginId": 9,
1295
+ "pluginObjectTypeId": 2,
1296
+ "subtypeId": 8
1297
+ },
1298
+ {
1299
+ "alternateName": "string",
1300
+ "dateAdded": 8,
1301
+ "description": "string",
1302
+ "deviceId": 1,
1303
+ "enabled": {},
1304
+ "extendedInfo": {},
1305
+ "id": 1,
1306
+ "indicators": [
1307
+ {}
1308
+ ],
1309
+ "isDeleted": true,
1310
+ "isEnabled": false,
1311
+ "isVisible": true,
1312
+ "name": "string",
1313
+ "pluginId": 9,
1314
+ "pluginObjectTypeId": 1,
1315
+ "subtypeId": 6
1316
+ },
1317
+ {
1318
+ "alternateName": "string",
1319
+ "dateAdded": 8,
1320
+ "description": "string",
1321
+ "deviceId": 1,
1322
+ "enabled": {},
1323
+ "extendedInfo": {},
1324
+ "id": 10,
1325
+ "indicators": [
1326
+ {},
1327
+ {},
1328
+ {},
1329
+ {},
1330
+ {},
1331
+ {},
1332
+ {},
1333
+ {}
1334
+ ],
1335
+ "isDeleted": false,
1336
+ "isEnabled": false,
1337
+ "isVisible": true,
1338
+ "name": "string",
1339
+ "pluginId": 3,
1340
+ "pluginObjectTypeId": 8,
1341
+ "subtypeId": 3
1342
+ }
1343
+ ],
1344
+ "peerId": 1,
1345
+ "pluginInfo": {},
1346
+ "pluginManagerId": 2,
1347
+ "pollFrequency": 1,
1348
+ "timezone": "string",
1349
+ "workhoursGroupId": 2
1350
+ }
1351
+ ]
1352
+ }