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