catocli 2.0.5__py3-none-any.whl → 2.1.1__py3-none-any.whl

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.

Potentially problematic release.


This version of catocli might be problematic. Click here for more details.

Files changed (365) hide show
  1. catocli/Utils/clidriver.py +32 -4
  2. catocli/Utils/version_checker.py +1 -1
  3. catocli/__init__.py +1 -1
  4. catocli/parsers/custom/export_sites/export_sites.py +18 -1
  5. catocli/parsers/custom/import_rules_to_tf/import_rules_to_tf.py +13 -2
  6. catocli/parsers/custom/import_sites_to_tf/__init__.py +3 -1
  7. catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +79 -6
  8. catocli/parsers/custom_private/__init__.py +134 -0
  9. catocli/parsers/mutation_accountManagement/__init__.py +13 -0
  10. catocli/parsers/mutation_accountManagement_disableAccount/README.md +16 -0
  11. catocli/parsers/mutation_groups/README.md +7 -0
  12. catocli/parsers/mutation_groups/__init__.py +48 -0
  13. catocli/parsers/mutation_groups_createGroup/README.md +18 -0
  14. catocli/parsers/mutation_groups_deleteGroup/README.md +18 -0
  15. catocli/parsers/mutation_groups_updateGroup/README.md +18 -0
  16. catocli/parsers/mutation_site/__init__.py +104 -0
  17. catocli/parsers/mutation_site_assignSiteBwLicense/README.md +17 -0
  18. catocli/parsers/mutation_site_removeSecondaryAwsVSocket/README.md +17 -0
  19. catocli/parsers/mutation_site_removeSecondaryAzureVSocket/README.md +17 -0
  20. catocli/parsers/mutation_site_removeSiteBwLicense/README.md +17 -0
  21. catocli/parsers/mutation_site_replaceSiteBwLicense/README.md +17 -0
  22. catocli/parsers/mutation_site_updateSecondaryAwsVSocket/README.md +17 -0
  23. catocli/parsers/mutation_site_updateSecondaryAzureVSocket/README.md +17 -0
  24. catocli/parsers/mutation_site_updateSiteBwLicense/README.md +17 -0
  25. catocli/parsers/mutation_site_updateSiteGeneralDetails/README.md +1 -1
  26. catocli/parsers/mutation_sites/__init__.py +104 -0
  27. catocli/parsers/mutation_sites_assignSiteBwLicense/README.md +17 -0
  28. catocli/parsers/mutation_sites_removeSecondaryAwsVSocket/README.md +17 -0
  29. catocli/parsers/mutation_sites_removeSecondaryAzureVSocket/README.md +17 -0
  30. catocli/parsers/mutation_sites_removeSiteBwLicense/README.md +17 -0
  31. catocli/parsers/mutation_sites_replaceSiteBwLicense/README.md +17 -0
  32. catocli/parsers/mutation_sites_updateSecondaryAwsVSocket/README.md +17 -0
  33. catocli/parsers/mutation_sites_updateSecondaryAzureVSocket/README.md +17 -0
  34. catocli/parsers/mutation_sites_updateSiteBwLicense/README.md +17 -0
  35. catocli/parsers/mutation_sites_updateSiteGeneralDetails/README.md +1 -1
  36. catocli/parsers/parserApiClient.py +444 -9
  37. catocli/parsers/query_eventsFeed/README.md +1 -1
  38. catocli/parsers/query_groups/README.md +7 -0
  39. catocli/parsers/query_groups/__init__.py +54 -0
  40. catocli/parsers/query_groups_group/README.md +7 -0
  41. catocli/parsers/query_groups_groupList/README.md +18 -0
  42. catocli/parsers/query_groups_group_members/README.md +18 -0
  43. catocli/parsers/query_groups_whereUsed/README.md +17 -0
  44. catocli/parsers/query_popLocations/README.md +17 -0
  45. catocli/parsers/query_popLocations/__init__.py +16 -0
  46. catocli/parsers/query_site/__init__.py +26 -0
  47. catocli/parsers/query_site_secondaryAwsVSocket/README.md +17 -0
  48. catocli/parsers/query_site_secondaryAzureVSocket/README.md +17 -0
  49. catocli/parsers/query_socketPortMetrics/README.md +23 -0
  50. catocli/parsers/query_socketPortMetrics/__init__.py +16 -0
  51. catocli/parsers/query_socketPortMetricsTimeSeries/README.md +24 -0
  52. catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py +16 -0
  53. {catocli-2.0.5.dist-info → catocli-2.1.1.dist-info}/METADATA +3 -2
  54. {catocli-2.0.5.dist-info → catocli-2.1.1.dist-info}/RECORD +253 -300
  55. {catocli-2.0.5.dist-info → catocli-2.1.1.dist-info}/WHEEL +1 -1
  56. {catocli-2.0.5.dist-info → catocli-2.1.1.dist-info}/top_level.txt +0 -2
  57. graphql_client/api/call_api.py +20 -2
  58. models/mutation.accountManagement.addAccount.json +97 -0
  59. models/mutation.accountManagement.disableAccount.json +545 -0
  60. models/mutation.accountManagement.removeAccount.json +102 -3
  61. models/mutation.accountManagement.updateAccount.json +97 -0
  62. models/mutation.admin.addAdmin.json +6 -9
  63. models/mutation.container.delete.json +2 -2
  64. models/mutation.container.fqdn.addValues.json +3 -3
  65. models/mutation.container.fqdn.createFromFile.json +3 -3
  66. models/mutation.container.fqdn.removeValues.json +3 -3
  67. models/mutation.container.fqdn.updateFromFile.json +3 -3
  68. models/mutation.container.ipAddressRange.addValues.json +3 -3
  69. models/mutation.container.ipAddressRange.createFromFile.json +3 -3
  70. models/mutation.container.ipAddressRange.removeValues.json +3 -3
  71. models/mutation.container.ipAddressRange.updateFromFile.json +3 -3
  72. models/mutation.groups.createGroup.json +3178 -0
  73. models/mutation.groups.deleteGroup.json +2758 -0
  74. models/mutation.groups.updateGroup.json +4429 -0
  75. models/mutation.hardware.updateHardwareShipping.json +30 -10
  76. models/mutation.policy.appTenantRestriction.addRule.json +33 -33
  77. models/mutation.policy.appTenantRestriction.addSection.json +4 -4
  78. models/mutation.policy.appTenantRestriction.createPolicyRevision.json +33 -33
  79. models/mutation.policy.appTenantRestriction.discardPolicyRevision.json +33 -33
  80. models/mutation.policy.appTenantRestriction.moveRule.json +27 -27
  81. models/mutation.policy.appTenantRestriction.moveSection.json +4 -4
  82. models/mutation.policy.appTenantRestriction.publishPolicyRevision.json +33 -33
  83. models/mutation.policy.appTenantRestriction.removeRule.json +27 -27
  84. models/mutation.policy.appTenantRestriction.removeSection.json +4 -4
  85. models/mutation.policy.appTenantRestriction.updatePolicy.json +33 -33
  86. models/mutation.policy.appTenantRestriction.updateRule.json +33 -33
  87. models/mutation.policy.appTenantRestriction.updateSection.json +4 -4
  88. models/mutation.policy.dynamicIpAllocation.addRule.json +12 -12
  89. models/mutation.policy.dynamicIpAllocation.addSection.json +4 -4
  90. models/mutation.policy.dynamicIpAllocation.createPolicyRevision.json +18 -18
  91. models/mutation.policy.dynamicIpAllocation.discardPolicyRevision.json +18 -18
  92. models/mutation.policy.dynamicIpAllocation.moveRule.json +12 -12
  93. models/mutation.policy.dynamicIpAllocation.moveSection.json +4 -4
  94. models/mutation.policy.dynamicIpAllocation.publishPolicyRevision.json +18 -18
  95. models/mutation.policy.dynamicIpAllocation.removeRule.json +12 -12
  96. models/mutation.policy.dynamicIpAllocation.removeSection.json +4 -4
  97. models/mutation.policy.dynamicIpAllocation.updatePolicy.json +18 -18
  98. models/mutation.policy.dynamicIpAllocation.updateRule.json +12 -12
  99. models/mutation.policy.dynamicIpAllocation.updateSection.json +4 -4
  100. models/mutation.policy.internetFirewall.addRule.json +141 -141
  101. models/mutation.policy.internetFirewall.addSection.json +4 -4
  102. models/mutation.policy.internetFirewall.createPolicyRevision.json +102 -102
  103. models/mutation.policy.internetFirewall.discardPolicyRevision.json +102 -102
  104. models/mutation.policy.internetFirewall.moveRule.json +96 -96
  105. models/mutation.policy.internetFirewall.moveSection.json +4 -4
  106. models/mutation.policy.internetFirewall.publishPolicyRevision.json +102 -102
  107. models/mutation.policy.internetFirewall.removeRule.json +96 -96
  108. models/mutation.policy.internetFirewall.removeSection.json +4 -4
  109. models/mutation.policy.internetFirewall.updatePolicy.json +102 -102
  110. models/mutation.policy.internetFirewall.updateRule.json +141 -141
  111. models/mutation.policy.internetFirewall.updateSection.json +4 -4
  112. models/mutation.policy.remotePortFwd.addRule.json +21 -21
  113. models/mutation.policy.remotePortFwd.addSection.json +4 -4
  114. models/mutation.policy.remotePortFwd.createPolicyRevision.json +24 -24
  115. models/mutation.policy.remotePortFwd.discardPolicyRevision.json +24 -24
  116. models/mutation.policy.remotePortFwd.moveRule.json +18 -18
  117. models/mutation.policy.remotePortFwd.moveSection.json +4 -4
  118. models/mutation.policy.remotePortFwd.publishPolicyRevision.json +24 -24
  119. models/mutation.policy.remotePortFwd.removeRule.json +18 -18
  120. models/mutation.policy.remotePortFwd.removeSection.json +4 -4
  121. models/mutation.policy.remotePortFwd.updatePolicy.json +24 -24
  122. models/mutation.policy.remotePortFwd.updateRule.json +21 -21
  123. models/mutation.policy.remotePortFwd.updateSection.json +4 -4
  124. models/mutation.policy.socketLan.addRule.json +97 -97
  125. models/mutation.policy.socketLan.addSection.json +4 -4
  126. models/mutation.policy.socketLan.createPolicyRevision.json +91 -91
  127. models/mutation.policy.socketLan.discardPolicyRevision.json +91 -91
  128. models/mutation.policy.socketLan.moveRule.json +85 -85
  129. models/mutation.policy.socketLan.moveSection.json +4 -4
  130. models/mutation.policy.socketLan.publishPolicyRevision.json +91 -91
  131. models/mutation.policy.socketLan.removeRule.json +85 -85
  132. models/mutation.policy.socketLan.removeSection.json +4 -4
  133. models/mutation.policy.socketLan.updatePolicy.json +91 -91
  134. models/mutation.policy.socketLan.updateRule.json +97 -97
  135. models/mutation.policy.socketLan.updateSection.json +4 -4
  136. models/mutation.policy.terminalServer.addRule.json +7 -7
  137. models/mutation.policy.terminalServer.addSection.json +4 -4
  138. models/mutation.policy.terminalServer.createPolicyRevision.json +13 -13
  139. models/mutation.policy.terminalServer.discardPolicyRevision.json +13 -13
  140. models/mutation.policy.terminalServer.moveRule.json +7 -7
  141. models/mutation.policy.terminalServer.moveSection.json +4 -4
  142. models/mutation.policy.terminalServer.publishPolicyRevision.json +13 -13
  143. models/mutation.policy.terminalServer.removeRule.json +7 -7
  144. models/mutation.policy.terminalServer.removeSection.json +4 -4
  145. models/mutation.policy.terminalServer.updatePolicy.json +13 -13
  146. models/mutation.policy.terminalServer.updateRule.json +7 -7
  147. models/mutation.policy.terminalServer.updateSection.json +4 -4
  148. models/mutation.policy.wanFirewall.addRule.json +157 -157
  149. models/mutation.policy.wanFirewall.addSection.json +4 -4
  150. models/mutation.policy.wanFirewall.createPolicyRevision.json +121 -121
  151. models/mutation.policy.wanFirewall.discardPolicyRevision.json +121 -121
  152. models/mutation.policy.wanFirewall.moveRule.json +115 -115
  153. models/mutation.policy.wanFirewall.moveSection.json +4 -4
  154. models/mutation.policy.wanFirewall.publishPolicyRevision.json +121 -121
  155. models/mutation.policy.wanFirewall.removeRule.json +115 -115
  156. models/mutation.policy.wanFirewall.removeSection.json +4 -4
  157. models/mutation.policy.wanFirewall.updatePolicy.json +121 -121
  158. models/mutation.policy.wanFirewall.updateRule.json +157 -157
  159. models/mutation.policy.wanFirewall.updateSection.json +4 -4
  160. models/mutation.policy.wanNetwork.addRule.json +103 -103
  161. models/mutation.policy.wanNetwork.addSection.json +4 -4
  162. models/mutation.policy.wanNetwork.createPolicyRevision.json +97 -97
  163. models/mutation.policy.wanNetwork.discardPolicyRevision.json +97 -97
  164. models/mutation.policy.wanNetwork.moveRule.json +91 -91
  165. models/mutation.policy.wanNetwork.moveSection.json +4 -4
  166. models/mutation.policy.wanNetwork.publishPolicyRevision.json +97 -97
  167. models/mutation.policy.wanNetwork.removeRule.json +91 -91
  168. models/mutation.policy.wanNetwork.removeSection.json +4 -4
  169. models/mutation.policy.wanNetwork.updatePolicy.json +97 -97
  170. models/mutation.policy.wanNetwork.updateRule.json +103 -103
  171. models/mutation.policy.wanNetwork.updateSection.json +4 -4
  172. models/mutation.site.addBgpPeer.json +10 -10
  173. models/mutation.site.addIpsecIkeV2SiteTunnels.json +2 -2
  174. models/mutation.site.addSocketAddOnCard.json +2 -2
  175. models/mutation.site.assignSiteBwLicense.json +12879 -0
  176. models/mutation.site.removeBgpPeer.json +10 -10
  177. models/mutation.site.removeIpsecIkeV2SiteTunnels.json +2 -2
  178. models/mutation.site.removeSecondaryAwsVSocket.json +375 -0
  179. models/mutation.site.removeSecondaryAzureVSocket.json +354 -0
  180. models/mutation.site.removeSiteBwLicense.json +12822 -0
  181. models/mutation.site.removeSocketAddOnCard.json +2 -2
  182. models/mutation.site.replaceSiteBwLicense.json +12939 -0
  183. models/mutation.site.startSiteUpgrade.json +36 -15
  184. models/mutation.site.updateBgpPeer.json +10 -10
  185. models/mutation.site.updateIpsecIkeV2SiteTunnels.json +2 -2
  186. models/mutation.site.updateSecondaryAwsVSocket.json +643 -0
  187. models/mutation.site.updateSecondaryAzureVSocket.json +565 -0
  188. models/mutation.site.updateSiteBwLicense.json +12882 -0
  189. models/mutation.site.updateSiteGeneralDetails.json +724 -1
  190. models/mutation.sites.addBgpPeer.json +10 -10
  191. models/mutation.sites.addIpsecIkeV2SiteTunnels.json +2 -2
  192. models/mutation.sites.addSocketAddOnCard.json +2 -2
  193. models/mutation.sites.assignSiteBwLicense.json +12879 -0
  194. models/mutation.sites.removeBgpPeer.json +10 -10
  195. models/mutation.sites.removeIpsecIkeV2SiteTunnels.json +2 -2
  196. models/mutation.sites.removeSecondaryAwsVSocket.json +375 -0
  197. models/mutation.sites.removeSecondaryAzureVSocket.json +354 -0
  198. models/mutation.sites.removeSiteBwLicense.json +12822 -0
  199. models/mutation.sites.removeSocketAddOnCard.json +2 -2
  200. models/mutation.sites.replaceSiteBwLicense.json +12939 -0
  201. models/mutation.sites.startSiteUpgrade.json +36 -15
  202. models/mutation.sites.updateBgpPeer.json +10 -10
  203. models/mutation.sites.updateIpsecIkeV2SiteTunnels.json +2 -2
  204. models/mutation.sites.updateSecondaryAwsVSocket.json +643 -0
  205. models/mutation.sites.updateSecondaryAzureVSocket.json +565 -0
  206. models/mutation.sites.updateSiteBwLicense.json +12882 -0
  207. models/mutation.sites.updateSiteGeneralDetails.json +724 -1
  208. models/mutation.xdr.addStoryComment.json +1 -1
  209. models/mutation.xdr.analystFeedback.json +84 -84
  210. models/mutation.xdr.deleteStoryComment.json +1 -1
  211. models/query.accountManagement.json +97 -0
  212. models/query.accountMetrics.json +45 -45
  213. models/query.accountSnapshot.json +30 -30
  214. models/query.admin.json +6 -6
  215. models/query.admins.json +13 -13
  216. models/query.appStats.json +915 -867
  217. models/query.appStatsTimeSeries.json +692 -656
  218. models/query.auditFeed.json +6 -6
  219. models/query.catalogs.json +52 -52
  220. models/query.container.json +16 -16
  221. models/query.devices.json +20 -93
  222. models/query.entityLookup.json +2 -2
  223. models/query.events.json +288 -384
  224. models/query.eventsFeed.json +73 -97
  225. models/query.eventsTimeSeries.json +219 -291
  226. models/query.groups.group.members.json +3058 -0
  227. models/query.groups.groupList.json +6474 -0
  228. models/query.groups.whereUsed.json +697 -0
  229. models/query.hardware.json +27 -7
  230. models/query.hardwareManagement.json +8 -8
  231. models/query.licensing.json +3487 -1324
  232. models/query.policy.appTenantRestriction.policy.json +32 -32
  233. models/query.policy.dynamicIpAllocation.policy.json +18 -18
  234. models/query.policy.internetFirewall.policy.json +93 -93
  235. models/query.policy.remotePortFwd.policy.json +23 -23
  236. models/query.policy.socketLan.policy.json +88 -88
  237. models/query.policy.terminalServer.policy.json +13 -13
  238. models/query.policy.wanFirewall.policy.json +111 -111
  239. models/query.policy.wanNetwork.policy.json +97 -97
  240. models/query.popLocations.json +2878 -0
  241. models/query.sandbox.json +5 -5
  242. models/query.site.bgpPeer.json +4 -4
  243. models/query.site.bgpPeerList.json +10 -10
  244. models/query.site.secondaryAwsVSocket.json +340 -0
  245. models/query.site.secondaryAzureVSocket.json +319 -0
  246. models/query.site.siteBgpStatus.json +2 -2
  247. models/query.socketPortMetrics.json +2410 -0
  248. models/query.socketPortMetricsTimeSeries.json +2361 -0
  249. models/query.xdr.stories.json +104 -104
  250. models/query.xdr.story.json +93 -93
  251. schema/catolib.py +43 -16
  252. build/lib/catocli/Utils/clidriver.py +0 -268
  253. build/lib/catocli/Utils/profile_manager.py +0 -188
  254. build/lib/catocli/Utils/version_checker.py +0 -192
  255. build/lib/catocli/__init__.py +0 -2
  256. build/lib/catocli/__main__.py +0 -12
  257. build/lib/catocli/parsers/configure/__init__.py +0 -115
  258. build/lib/catocli/parsers/configure/configure.py +0 -307
  259. build/lib/catocli/parsers/custom/__init__.py +0 -57
  260. build/lib/catocli/parsers/custom/customLib.py +0 -561
  261. build/lib/catocli/parsers/custom/export_rules/__init__.py +0 -42
  262. build/lib/catocli/parsers/custom/export_rules/export_rules.py +0 -234
  263. build/lib/catocli/parsers/custom/export_sites/__init__.py +0 -21
  264. build/lib/catocli/parsers/custom/export_sites/export_sites.py +0 -372
  265. build/lib/catocli/parsers/custom/import_rules_to_tf/__init__.py +0 -58
  266. build/lib/catocli/parsers/custom/import_rules_to_tf/import_rules_to_tf.py +0 -451
  267. build/lib/catocli/parsers/custom/import_sites_to_tf/__init__.py +0 -45
  268. build/lib/catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +0 -891
  269. build/lib/catocli/parsers/mutation_accountManagement/__init__.py +0 -48
  270. build/lib/catocli/parsers/mutation_admin/__init__.py +0 -48
  271. build/lib/catocli/parsers/mutation_container/__init__.py +0 -138
  272. build/lib/catocli/parsers/mutation_hardware/__init__.py +0 -22
  273. build/lib/catocli/parsers/mutation_policy/__init__.py +0 -1305
  274. build/lib/catocli/parsers/mutation_sandbox/__init__.py +0 -35
  275. build/lib/catocli/parsers/mutation_site/__init__.py +0 -373
  276. build/lib/catocli/parsers/mutation_sites/__init__.py +0 -373
  277. build/lib/catocli/parsers/mutation_xdr/__init__.py +0 -48
  278. build/lib/catocli/parsers/parserApiClient.py +0 -513
  279. build/lib/catocli/parsers/query_accountBySubdomain/__init__.py +0 -16
  280. build/lib/catocli/parsers/query_accountManagement/__init__.py +0 -16
  281. build/lib/catocli/parsers/query_accountMetrics/__init__.py +0 -16
  282. build/lib/catocli/parsers/query_accountRoles/__init__.py +0 -16
  283. build/lib/catocli/parsers/query_accountSnapshot/__init__.py +0 -16
  284. build/lib/catocli/parsers/query_admin/__init__.py +0 -16
  285. build/lib/catocli/parsers/query_admins/__init__.py +0 -16
  286. build/lib/catocli/parsers/query_appStats/__init__.py +0 -16
  287. build/lib/catocli/parsers/query_appStatsTimeSeries/__init__.py +0 -16
  288. build/lib/catocli/parsers/query_auditFeed/__init__.py +0 -16
  289. build/lib/catocli/parsers/query_catalogs/__init__.py +0 -16
  290. build/lib/catocli/parsers/query_container/__init__.py +0 -16
  291. build/lib/catocli/parsers/query_devices/__init__.py +0 -16
  292. build/lib/catocli/parsers/query_entityLookup/__init__.py +0 -16
  293. build/lib/catocli/parsers/query_events/__init__.py +0 -16
  294. build/lib/catocli/parsers/query_eventsFeed/__init__.py +0 -16
  295. build/lib/catocli/parsers/query_eventsTimeSeries/__init__.py +0 -16
  296. build/lib/catocli/parsers/query_hardware/__init__.py +0 -16
  297. build/lib/catocli/parsers/query_hardwareManagement/__init__.py +0 -16
  298. build/lib/catocli/parsers/query_licensing/__init__.py +0 -16
  299. build/lib/catocli/parsers/query_policy/__init__.py +0 -161
  300. build/lib/catocli/parsers/query_sandbox/__init__.py +0 -16
  301. build/lib/catocli/parsers/query_site/__init__.py +0 -100
  302. build/lib/catocli/parsers/query_siteLocation/__init__.py +0 -13
  303. build/lib/catocli/parsers/query_subDomains/__init__.py +0 -16
  304. build/lib/catocli/parsers/query_xdr/__init__.py +0 -35
  305. build/lib/catocli/parsers/raw/__init__.py +0 -12
  306. build/lib/graphql_client/__init__.py +0 -11
  307. build/lib/graphql_client/api/__init__.py +0 -3
  308. build/lib/graphql_client/api/call_api.py +0 -84
  309. build/lib/graphql_client/api_client.py +0 -192
  310. build/lib/graphql_client/api_client_types.py +0 -409
  311. build/lib/graphql_client/configuration.py +0 -232
  312. build/lib/graphql_client/models/__init__.py +0 -13
  313. build/lib/graphql_client/models/no_schema.py +0 -71
  314. build/lib/schema/catolib.py +0 -1141
  315. build/lib/schema/importSchema.py +0 -60
  316. build/lib/schema/remove_policyid.py +0 -89
  317. build/lib/schema/remove_policyid_mutations.py +0 -89
  318. build/lib/scripts/catolib.py +0 -62
  319. build/lib/scripts/export_if_rules_to_json.py +0 -188
  320. build/lib/scripts/export_wf_rules_to_json.py +0 -111
  321. build/lib/scripts/import_wf_rules_to_tfstate.py +0 -331
  322. build/lib/vendor/certifi/__init__.py +0 -4
  323. build/lib/vendor/certifi/__main__.py +0 -12
  324. build/lib/vendor/certifi/core.py +0 -114
  325. build/lib/vendor/certifi/py.typed +0 -0
  326. build/lib/vendor/six.py +0 -998
  327. build/lib/vendor/urllib3/__init__.py +0 -211
  328. build/lib/vendor/urllib3/_base_connection.py +0 -172
  329. build/lib/vendor/urllib3/_collections.py +0 -483
  330. build/lib/vendor/urllib3/_request_methods.py +0 -278
  331. build/lib/vendor/urllib3/_version.py +0 -16
  332. build/lib/vendor/urllib3/connection.py +0 -1033
  333. build/lib/vendor/urllib3/connectionpool.py +0 -1182
  334. build/lib/vendor/urllib3/contrib/__init__.py +0 -0
  335. build/lib/vendor/urllib3/contrib/emscripten/__init__.py +0 -18
  336. build/lib/vendor/urllib3/contrib/emscripten/connection.py +0 -254
  337. build/lib/vendor/urllib3/contrib/emscripten/fetch.py +0 -418
  338. build/lib/vendor/urllib3/contrib/emscripten/request.py +0 -22
  339. build/lib/vendor/urllib3/contrib/emscripten/response.py +0 -285
  340. build/lib/vendor/urllib3/contrib/pyopenssl.py +0 -552
  341. build/lib/vendor/urllib3/contrib/socks.py +0 -228
  342. build/lib/vendor/urllib3/exceptions.py +0 -321
  343. build/lib/vendor/urllib3/fields.py +0 -341
  344. build/lib/vendor/urllib3/filepost.py +0 -89
  345. build/lib/vendor/urllib3/http2/__init__.py +0 -53
  346. build/lib/vendor/urllib3/http2/connection.py +0 -356
  347. build/lib/vendor/urllib3/http2/probe.py +0 -87
  348. build/lib/vendor/urllib3/poolmanager.py +0 -637
  349. build/lib/vendor/urllib3/py.typed +0 -2
  350. build/lib/vendor/urllib3/response.py +0 -1265
  351. build/lib/vendor/urllib3/util/__init__.py +0 -42
  352. build/lib/vendor/urllib3/util/connection.py +0 -137
  353. build/lib/vendor/urllib3/util/proxy.py +0 -43
  354. build/lib/vendor/urllib3/util/request.py +0 -256
  355. build/lib/vendor/urllib3/util/response.py +0 -101
  356. build/lib/vendor/urllib3/util/retry.py +0 -533
  357. build/lib/vendor/urllib3/util/ssl_.py +0 -513
  358. build/lib/vendor/urllib3/util/ssl_match_hostname.py +0 -159
  359. build/lib/vendor/urllib3/util/ssltransport.py +0 -276
  360. build/lib/vendor/urllib3/util/timeout.py +0 -275
  361. build/lib/vendor/urllib3/util/url.py +0 -471
  362. build/lib/vendor/urllib3/util/util.py +0 -42
  363. build/lib/vendor/urllib3/util/wait.py +0 -124
  364. {catocli-2.0.5.dist-info → catocli-2.1.1.dist-info}/entry_points.txt +0 -0
  365. {catocli-2.0.5.dist-info → catocli-2.1.1.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1,2410 @@
1
+ {
2
+ "args": {
3
+ "accountID": {
4
+ "defaultValue": null,
5
+ "description": "Account ID",
6
+ "id_str": "accountID",
7
+ "name": "accountID",
8
+ "path": "accountID",
9
+ "requestStr": "$accountID:ID! ",
10
+ "required": true,
11
+ "responseStr": "accountID:$accountID ",
12
+ "type": {
13
+ "kind": [
14
+ "NON_NULL",
15
+ "SCALAR"
16
+ ],
17
+ "name": "ID",
18
+ "non_null": false
19
+ },
20
+ "varName": "accountID"
21
+ },
22
+ "dimensions": {
23
+ "defaultValue": null,
24
+ "description": null,
25
+ "id_str": "dimensions",
26
+ "name": "dimensions",
27
+ "path": "dimensions",
28
+ "requestStr": "$socketPortMetricsDimension:[SocketPortMetricsDimension] ",
29
+ "required": false,
30
+ "responseStr": "dimensions:$socketPortMetricsDimension ",
31
+ "type": {
32
+ "definition": {
33
+ "description": null,
34
+ "enumValues": null,
35
+ "fields": null,
36
+ "inputFields": {
37
+ "fieldName": {
38
+ "defaultValue": null,
39
+ "description": null,
40
+ "id_str": "dimensions___fieldName",
41
+ "name": "fieldName",
42
+ "path": "dimensions.fieldName",
43
+ "requestStr": "$fieldName:SocketPortMetricsFieldName! ",
44
+ "required": true,
45
+ "responseStr": "fieldName:$fieldName ",
46
+ "type": {
47
+ "definition": {
48
+ "description": null,
49
+ "enumValues": [
50
+ {
51
+ "deprecationReason": null,
52
+ "description": "Unique identifier of the account that owns the site.",
53
+ "isDeprecated": false,
54
+ "name": "account_id"
55
+ },
56
+ {
57
+ "deprecationReason": null,
58
+ "description": "Unique identifier of the site where the socket is deployed.",
59
+ "isDeprecated": false,
60
+ "name": "site_id"
61
+ },
62
+ {
63
+ "deprecationReason": null,
64
+ "description": "Unique identifier of the Socket (Cato edge device).",
65
+ "isDeprecated": false,
66
+ "name": "device_id"
67
+ },
68
+ {
69
+ "deprecationReason": null,
70
+ "description": "The name or ID of the physical or logical interface on the Socket device (e.g., eth0, cell1).",
71
+ "isDeprecated": false,
72
+ "name": "socket_interface"
73
+ },
74
+ {
75
+ "deprecationReason": null,
76
+ "description": "Describes the interface role such as primary, backup, cellular, or none.",
77
+ "isDeprecated": false,
78
+ "name": "socket_interface_role"
79
+ },
80
+ {
81
+ "deprecationReason": null,
82
+ "description": "Indicates the high-availability (HA) role of the device (e.g., active, standby).",
83
+ "isDeprecated": false,
84
+ "name": "ha_role"
85
+ },
86
+ {
87
+ "deprecationReason": null,
88
+ "description": "Type of physical interface (e.g., ethernet, cellular).",
89
+ "isDeprecated": false,
90
+ "name": "physical_interface_type"
91
+ },
92
+ {
93
+ "deprecationReason": null,
94
+ "description": "Type of transport used by the interface (e.g., wired, lte, 5g, wifi).",
95
+ "isDeprecated": false,
96
+ "name": "transport_type"
97
+ },
98
+ {
99
+ "deprecationReason": null,
100
+ "description": "SIM card number (for cellular interfaces).",
101
+ "isDeprecated": false,
102
+ "name": "sim_num"
103
+ },
104
+ {
105
+ "deprecationReason": null,
106
+ "description": "Total bytes sent upstream (from the device to the network).",
107
+ "isDeprecated": false,
108
+ "name": "bytes_upstream"
109
+ },
110
+ {
111
+ "deprecationReason": null,
112
+ "description": "Total bytes received downstream (from the network to the device).",
113
+ "isDeprecated": false,
114
+ "name": "bytes_downstream"
115
+ },
116
+ {
117
+ "deprecationReason": null,
118
+ "description": "Combined total of upstream and downstream bytes.",
119
+ "isDeprecated": false,
120
+ "name": "bytes_total"
121
+ },
122
+ {
123
+ "deprecationReason": null,
124
+ "description": "Current upload throughput in Mbps.",
125
+ "isDeprecated": false,
126
+ "name": "throughput_upstream"
127
+ },
128
+ {
129
+ "deprecationReason": null,
130
+ "description": "Current download throughput in Mbps.",
131
+ "isDeprecated": false,
132
+ "name": "throughput_downstream"
133
+ },
134
+ {
135
+ "deprecationReason": null,
136
+ "description": "Human-readable name of the site.",
137
+ "isDeprecated": false,
138
+ "name": "site_name"
139
+ },
140
+ {
141
+ "deprecationReason": null,
142
+ "description": "Generic signal strength indicator (often maps to bars or percentage).",
143
+ "isDeprecated": false,
144
+ "name": "cellular_signal_strength"
145
+ },
146
+ {
147
+ "deprecationReason": null,
148
+ "description": "Reference Signal Received Quality \u2013 a key LTE/5G metric for link quality (dB).",
149
+ "isDeprecated": false,
150
+ "name": "cellular_rsrq"
151
+ },
152
+ {
153
+ "deprecationReason": null,
154
+ "description": "Reference Signal Received Power \u2013 measures LTE/5G signal strength (dBm).",
155
+ "isDeprecated": false,
156
+ "name": "cellular_rsrp"
157
+ },
158
+ {
159
+ "deprecationReason": null,
160
+ "description": "Received Signal Strength Indicator \u2013 legacy strength metric (dBm).",
161
+ "isDeprecated": false,
162
+ "name": "cellular_rssi"
163
+ },
164
+ {
165
+ "deprecationReason": null,
166
+ "description": "Signal to Interference + Noise Ratio \u2013 LTE/5G metric for signal clarity (dB).",
167
+ "isDeprecated": false,
168
+ "name": "cellular_sinr"
169
+ }
170
+ ],
171
+ "fields": null,
172
+ "inputFields": null,
173
+ "interfaces": null,
174
+ "kind": "ENUM",
175
+ "name": "SocketPortMetricsFieldName",
176
+ "possibleTypes": null
177
+ },
178
+ "indexType": "enum",
179
+ "kind": [
180
+ "NON_NULL",
181
+ "ENUM"
182
+ ],
183
+ "name": "SocketPortMetricsFieldName",
184
+ "non_null": false
185
+ },
186
+ "varName": "fieldName"
187
+ }
188
+ },
189
+ "interfaces": null,
190
+ "kind": "INPUT_OBJECT",
191
+ "name": "SocketPortMetricsDimension",
192
+ "possibleTypes": null
193
+ },
194
+ "indexType": "input_object",
195
+ "kind": [
196
+ "LIST",
197
+ "INPUT_OBJECT"
198
+ ],
199
+ "name": "SocketPortMetricsDimension",
200
+ "non_null": false
201
+ },
202
+ "varName": "socketPortMetricsDimension"
203
+ },
204
+ "filters": {
205
+ "defaultValue": null,
206
+ "description": null,
207
+ "id_str": "filters",
208
+ "name": "filters",
209
+ "path": "filters",
210
+ "requestStr": "$socketPortMetricsFilter:[SocketPortMetricsFilter!] ",
211
+ "required": false,
212
+ "responseStr": "filters:$socketPortMetricsFilter ",
213
+ "type": {
214
+ "definition": {
215
+ "description": null,
216
+ "enumValues": null,
217
+ "fields": null,
218
+ "inputFields": {
219
+ "fieldName": {
220
+ "defaultValue": null,
221
+ "description": null,
222
+ "id_str": "filters___fieldName",
223
+ "name": "fieldName",
224
+ "path": "filters.fieldName",
225
+ "requestStr": "$fieldName:SocketPortMetricsFieldName! ",
226
+ "required": true,
227
+ "responseStr": "fieldName:$fieldName ",
228
+ "type": {
229
+ "definition": {
230
+ "description": null,
231
+ "enumValues": [
232
+ {
233
+ "deprecationReason": null,
234
+ "description": "Unique identifier of the account that owns the site.",
235
+ "isDeprecated": false,
236
+ "name": "account_id"
237
+ },
238
+ {
239
+ "deprecationReason": null,
240
+ "description": "Unique identifier of the site where the socket is deployed.",
241
+ "isDeprecated": false,
242
+ "name": "site_id"
243
+ },
244
+ {
245
+ "deprecationReason": null,
246
+ "description": "Unique identifier of the Socket (Cato edge device).",
247
+ "isDeprecated": false,
248
+ "name": "device_id"
249
+ },
250
+ {
251
+ "deprecationReason": null,
252
+ "description": "The name or ID of the physical or logical interface on the Socket device (e.g., eth0, cell1).",
253
+ "isDeprecated": false,
254
+ "name": "socket_interface"
255
+ },
256
+ {
257
+ "deprecationReason": null,
258
+ "description": "Describes the interface role such as primary, backup, cellular, or none.",
259
+ "isDeprecated": false,
260
+ "name": "socket_interface_role"
261
+ },
262
+ {
263
+ "deprecationReason": null,
264
+ "description": "Indicates the high-availability (HA) role of the device (e.g., active, standby).",
265
+ "isDeprecated": false,
266
+ "name": "ha_role"
267
+ },
268
+ {
269
+ "deprecationReason": null,
270
+ "description": "Type of physical interface (e.g., ethernet, cellular).",
271
+ "isDeprecated": false,
272
+ "name": "physical_interface_type"
273
+ },
274
+ {
275
+ "deprecationReason": null,
276
+ "description": "Type of transport used by the interface (e.g., wired, lte, 5g, wifi).",
277
+ "isDeprecated": false,
278
+ "name": "transport_type"
279
+ },
280
+ {
281
+ "deprecationReason": null,
282
+ "description": "SIM card number (for cellular interfaces).",
283
+ "isDeprecated": false,
284
+ "name": "sim_num"
285
+ },
286
+ {
287
+ "deprecationReason": null,
288
+ "description": "Total bytes sent upstream (from the device to the network).",
289
+ "isDeprecated": false,
290
+ "name": "bytes_upstream"
291
+ },
292
+ {
293
+ "deprecationReason": null,
294
+ "description": "Total bytes received downstream (from the network to the device).",
295
+ "isDeprecated": false,
296
+ "name": "bytes_downstream"
297
+ },
298
+ {
299
+ "deprecationReason": null,
300
+ "description": "Combined total of upstream and downstream bytes.",
301
+ "isDeprecated": false,
302
+ "name": "bytes_total"
303
+ },
304
+ {
305
+ "deprecationReason": null,
306
+ "description": "Current upload throughput in Mbps.",
307
+ "isDeprecated": false,
308
+ "name": "throughput_upstream"
309
+ },
310
+ {
311
+ "deprecationReason": null,
312
+ "description": "Current download throughput in Mbps.",
313
+ "isDeprecated": false,
314
+ "name": "throughput_downstream"
315
+ },
316
+ {
317
+ "deprecationReason": null,
318
+ "description": "Human-readable name of the site.",
319
+ "isDeprecated": false,
320
+ "name": "site_name"
321
+ },
322
+ {
323
+ "deprecationReason": null,
324
+ "description": "Generic signal strength indicator (often maps to bars or percentage).",
325
+ "isDeprecated": false,
326
+ "name": "cellular_signal_strength"
327
+ },
328
+ {
329
+ "deprecationReason": null,
330
+ "description": "Reference Signal Received Quality \u2013 a key LTE/5G metric for link quality (dB).",
331
+ "isDeprecated": false,
332
+ "name": "cellular_rsrq"
333
+ },
334
+ {
335
+ "deprecationReason": null,
336
+ "description": "Reference Signal Received Power \u2013 measures LTE/5G signal strength (dBm).",
337
+ "isDeprecated": false,
338
+ "name": "cellular_rsrp"
339
+ },
340
+ {
341
+ "deprecationReason": null,
342
+ "description": "Received Signal Strength Indicator \u2013 legacy strength metric (dBm).",
343
+ "isDeprecated": false,
344
+ "name": "cellular_rssi"
345
+ },
346
+ {
347
+ "deprecationReason": null,
348
+ "description": "Signal to Interference + Noise Ratio \u2013 LTE/5G metric for signal clarity (dB).",
349
+ "isDeprecated": false,
350
+ "name": "cellular_sinr"
351
+ }
352
+ ],
353
+ "fields": null,
354
+ "inputFields": null,
355
+ "interfaces": null,
356
+ "kind": "ENUM",
357
+ "name": "SocketPortMetricsFieldName",
358
+ "possibleTypes": null
359
+ },
360
+ "indexType": "enum",
361
+ "kind": [
362
+ "NON_NULL",
363
+ "ENUM"
364
+ ],
365
+ "name": "SocketPortMetricsFieldName",
366
+ "non_null": false
367
+ },
368
+ "varName": "fieldName"
369
+ },
370
+ "operator": {
371
+ "defaultValue": null,
372
+ "description": null,
373
+ "id_str": "filters___operator",
374
+ "name": "operator",
375
+ "path": "filters.operator",
376
+ "requestStr": "$operator:FilterOperator! ",
377
+ "required": true,
378
+ "responseStr": "operator:$operator ",
379
+ "type": {
380
+ "definition": {
381
+ "description": null,
382
+ "enumValues": [
383
+ {
384
+ "deprecationReason": null,
385
+ "description": null,
386
+ "isDeprecated": false,
387
+ "name": "is"
388
+ },
389
+ {
390
+ "deprecationReason": null,
391
+ "description": null,
392
+ "isDeprecated": false,
393
+ "name": "is_not"
394
+ },
395
+ {
396
+ "deprecationReason": null,
397
+ "description": null,
398
+ "isDeprecated": false,
399
+ "name": "in"
400
+ },
401
+ {
402
+ "deprecationReason": null,
403
+ "description": null,
404
+ "isDeprecated": false,
405
+ "name": "not_in"
406
+ },
407
+ {
408
+ "deprecationReason": null,
409
+ "description": null,
410
+ "isDeprecated": false,
411
+ "name": "exists"
412
+ },
413
+ {
414
+ "deprecationReason": null,
415
+ "description": null,
416
+ "isDeprecated": false,
417
+ "name": "not_exists"
418
+ },
419
+ {
420
+ "deprecationReason": null,
421
+ "description": null,
422
+ "isDeprecated": false,
423
+ "name": "between"
424
+ },
425
+ {
426
+ "deprecationReason": null,
427
+ "description": null,
428
+ "isDeprecated": false,
429
+ "name": "not_between"
430
+ },
431
+ {
432
+ "deprecationReason": null,
433
+ "description": null,
434
+ "isDeprecated": false,
435
+ "name": "gt"
436
+ },
437
+ {
438
+ "deprecationReason": null,
439
+ "description": null,
440
+ "isDeprecated": false,
441
+ "name": "gte"
442
+ },
443
+ {
444
+ "deprecationReason": null,
445
+ "description": null,
446
+ "isDeprecated": false,
447
+ "name": "lt"
448
+ },
449
+ {
450
+ "deprecationReason": null,
451
+ "description": null,
452
+ "isDeprecated": false,
453
+ "name": "lte"
454
+ }
455
+ ],
456
+ "fields": null,
457
+ "inputFields": null,
458
+ "interfaces": null,
459
+ "kind": "ENUM",
460
+ "name": "FilterOperator",
461
+ "possibleTypes": null
462
+ },
463
+ "indexType": "enum",
464
+ "kind": [
465
+ "NON_NULL",
466
+ "ENUM"
467
+ ],
468
+ "name": "FilterOperator",
469
+ "non_null": false
470
+ },
471
+ "varName": "operator"
472
+ },
473
+ "values": {
474
+ "defaultValue": null,
475
+ "description": null,
476
+ "id_str": "filters___values",
477
+ "name": "values",
478
+ "path": "filters.values",
479
+ "requestStr": "$values:[String]! ",
480
+ "required": true,
481
+ "responseStr": "values:$values ",
482
+ "type": {
483
+ "kind": [
484
+ "NON_NULL",
485
+ "LIST",
486
+ "NON_NULL",
487
+ "SCALAR"
488
+ ],
489
+ "name": "String",
490
+ "non_null": false
491
+ },
492
+ "varName": "values"
493
+ }
494
+ },
495
+ "interfaces": null,
496
+ "kind": "INPUT_OBJECT",
497
+ "name": "SocketPortMetricsFilter",
498
+ "possibleTypes": null
499
+ },
500
+ "indexType": "input_object",
501
+ "kind": [
502
+ "LIST",
503
+ "NON_NULL",
504
+ "INPUT_OBJECT"
505
+ ],
506
+ "name": "SocketPortMetricsFilter",
507
+ "non_null": false
508
+ },
509
+ "varName": "socketPortMetricsFilter"
510
+ },
511
+ "measures": {
512
+ "defaultValue": null,
513
+ "description": null,
514
+ "id_str": "measures",
515
+ "name": "measures",
516
+ "path": "measures",
517
+ "requestStr": "$socketPortMetricsMeasure:[SocketPortMetricsMeasure] ",
518
+ "required": false,
519
+ "responseStr": "measures:$socketPortMetricsMeasure ",
520
+ "type": {
521
+ "definition": {
522
+ "description": null,
523
+ "enumValues": null,
524
+ "fields": null,
525
+ "inputFields": {
526
+ "aggType": {
527
+ "defaultValue": null,
528
+ "description": null,
529
+ "id_str": "measures___aggType",
530
+ "name": "aggType",
531
+ "path": "measures.aggType",
532
+ "requestStr": "$aggType:AggregationType! ",
533
+ "required": true,
534
+ "responseStr": "aggType:$aggType ",
535
+ "type": {
536
+ "definition": {
537
+ "description": null,
538
+ "enumValues": [
539
+ {
540
+ "deprecationReason": null,
541
+ "description": null,
542
+ "isDeprecated": false,
543
+ "name": "sum"
544
+ },
545
+ {
546
+ "deprecationReason": null,
547
+ "description": null,
548
+ "isDeprecated": false,
549
+ "name": "count"
550
+ },
551
+ {
552
+ "deprecationReason": null,
553
+ "description": null,
554
+ "isDeprecated": false,
555
+ "name": "count_distinct"
556
+ },
557
+ {
558
+ "deprecationReason": null,
559
+ "description": null,
560
+ "isDeprecated": false,
561
+ "name": "distinct"
562
+ },
563
+ {
564
+ "deprecationReason": null,
565
+ "description": null,
566
+ "isDeprecated": false,
567
+ "name": "avg"
568
+ },
569
+ {
570
+ "deprecationReason": null,
571
+ "description": null,
572
+ "isDeprecated": false,
573
+ "name": "max"
574
+ },
575
+ {
576
+ "deprecationReason": null,
577
+ "description": null,
578
+ "isDeprecated": false,
579
+ "name": "min"
580
+ },
581
+ {
582
+ "deprecationReason": null,
583
+ "description": null,
584
+ "isDeprecated": false,
585
+ "name": "any"
586
+ },
587
+ {
588
+ "deprecationReason": null,
589
+ "description": null,
590
+ "isDeprecated": false,
591
+ "name": "changes"
592
+ },
593
+ {
594
+ "deprecationReason": null,
595
+ "description": null,
596
+ "isDeprecated": false,
597
+ "name": "uniq_set"
598
+ }
599
+ ],
600
+ "fields": null,
601
+ "inputFields": null,
602
+ "interfaces": null,
603
+ "kind": "ENUM",
604
+ "name": "AggregationType",
605
+ "possibleTypes": null
606
+ },
607
+ "indexType": "enum",
608
+ "kind": [
609
+ "NON_NULL",
610
+ "ENUM"
611
+ ],
612
+ "name": "AggregationType",
613
+ "non_null": false
614
+ },
615
+ "varName": "aggType"
616
+ },
617
+ "fieldName": {
618
+ "defaultValue": null,
619
+ "description": null,
620
+ "id_str": "measures___fieldName",
621
+ "name": "fieldName",
622
+ "path": "measures.fieldName",
623
+ "requestStr": "$fieldName:SocketPortMetricsFieldName! ",
624
+ "required": true,
625
+ "responseStr": "fieldName:$fieldName ",
626
+ "type": {
627
+ "definition": {
628
+ "description": null,
629
+ "enumValues": [
630
+ {
631
+ "deprecationReason": null,
632
+ "description": "Unique identifier of the account that owns the site.",
633
+ "isDeprecated": false,
634
+ "name": "account_id"
635
+ },
636
+ {
637
+ "deprecationReason": null,
638
+ "description": "Unique identifier of the site where the socket is deployed.",
639
+ "isDeprecated": false,
640
+ "name": "site_id"
641
+ },
642
+ {
643
+ "deprecationReason": null,
644
+ "description": "Unique identifier of the Socket (Cato edge device).",
645
+ "isDeprecated": false,
646
+ "name": "device_id"
647
+ },
648
+ {
649
+ "deprecationReason": null,
650
+ "description": "The name or ID of the physical or logical interface on the Socket device (e.g., eth0, cell1).",
651
+ "isDeprecated": false,
652
+ "name": "socket_interface"
653
+ },
654
+ {
655
+ "deprecationReason": null,
656
+ "description": "Describes the interface role such as primary, backup, cellular, or none.",
657
+ "isDeprecated": false,
658
+ "name": "socket_interface_role"
659
+ },
660
+ {
661
+ "deprecationReason": null,
662
+ "description": "Indicates the high-availability (HA) role of the device (e.g., active, standby).",
663
+ "isDeprecated": false,
664
+ "name": "ha_role"
665
+ },
666
+ {
667
+ "deprecationReason": null,
668
+ "description": "Type of physical interface (e.g., ethernet, cellular).",
669
+ "isDeprecated": false,
670
+ "name": "physical_interface_type"
671
+ },
672
+ {
673
+ "deprecationReason": null,
674
+ "description": "Type of transport used by the interface (e.g., wired, lte, 5g, wifi).",
675
+ "isDeprecated": false,
676
+ "name": "transport_type"
677
+ },
678
+ {
679
+ "deprecationReason": null,
680
+ "description": "SIM card number (for cellular interfaces).",
681
+ "isDeprecated": false,
682
+ "name": "sim_num"
683
+ },
684
+ {
685
+ "deprecationReason": null,
686
+ "description": "Total bytes sent upstream (from the device to the network).",
687
+ "isDeprecated": false,
688
+ "name": "bytes_upstream"
689
+ },
690
+ {
691
+ "deprecationReason": null,
692
+ "description": "Total bytes received downstream (from the network to the device).",
693
+ "isDeprecated": false,
694
+ "name": "bytes_downstream"
695
+ },
696
+ {
697
+ "deprecationReason": null,
698
+ "description": "Combined total of upstream and downstream bytes.",
699
+ "isDeprecated": false,
700
+ "name": "bytes_total"
701
+ },
702
+ {
703
+ "deprecationReason": null,
704
+ "description": "Current upload throughput in Mbps.",
705
+ "isDeprecated": false,
706
+ "name": "throughput_upstream"
707
+ },
708
+ {
709
+ "deprecationReason": null,
710
+ "description": "Current download throughput in Mbps.",
711
+ "isDeprecated": false,
712
+ "name": "throughput_downstream"
713
+ },
714
+ {
715
+ "deprecationReason": null,
716
+ "description": "Human-readable name of the site.",
717
+ "isDeprecated": false,
718
+ "name": "site_name"
719
+ },
720
+ {
721
+ "deprecationReason": null,
722
+ "description": "Generic signal strength indicator (often maps to bars or percentage).",
723
+ "isDeprecated": false,
724
+ "name": "cellular_signal_strength"
725
+ },
726
+ {
727
+ "deprecationReason": null,
728
+ "description": "Reference Signal Received Quality \u2013 a key LTE/5G metric for link quality (dB).",
729
+ "isDeprecated": false,
730
+ "name": "cellular_rsrq"
731
+ },
732
+ {
733
+ "deprecationReason": null,
734
+ "description": "Reference Signal Received Power \u2013 measures LTE/5G signal strength (dBm).",
735
+ "isDeprecated": false,
736
+ "name": "cellular_rsrp"
737
+ },
738
+ {
739
+ "deprecationReason": null,
740
+ "description": "Received Signal Strength Indicator \u2013 legacy strength metric (dBm).",
741
+ "isDeprecated": false,
742
+ "name": "cellular_rssi"
743
+ },
744
+ {
745
+ "deprecationReason": null,
746
+ "description": "Signal to Interference + Noise Ratio \u2013 LTE/5G metric for signal clarity (dB).",
747
+ "isDeprecated": false,
748
+ "name": "cellular_sinr"
749
+ }
750
+ ],
751
+ "fields": null,
752
+ "inputFields": null,
753
+ "interfaces": null,
754
+ "kind": "ENUM",
755
+ "name": "SocketPortMetricsFieldName",
756
+ "possibleTypes": null
757
+ },
758
+ "indexType": "enum",
759
+ "kind": [
760
+ "NON_NULL",
761
+ "ENUM"
762
+ ],
763
+ "name": "SocketPortMetricsFieldName",
764
+ "non_null": false
765
+ },
766
+ "varName": "fieldName"
767
+ },
768
+ "trend": {
769
+ "defaultValue": null,
770
+ "description": null,
771
+ "id_str": "measures___trend",
772
+ "name": "trend",
773
+ "path": "measures.trend",
774
+ "requestStr": "$trend:Boolean ",
775
+ "required": false,
776
+ "responseStr": "trend:$trend ",
777
+ "type": {
778
+ "kind": [
779
+ "SCALAR"
780
+ ],
781
+ "name": "Boolean",
782
+ "non_null": false
783
+ },
784
+ "varName": "trend"
785
+ }
786
+ },
787
+ "interfaces": null,
788
+ "kind": "INPUT_OBJECT",
789
+ "name": "SocketPortMetricsMeasure",
790
+ "possibleTypes": null
791
+ },
792
+ "indexType": "input_object",
793
+ "kind": [
794
+ "LIST",
795
+ "INPUT_OBJECT"
796
+ ],
797
+ "name": "SocketPortMetricsMeasure",
798
+ "non_null": false
799
+ },
800
+ "varName": "socketPortMetricsMeasure"
801
+ },
802
+ "sort": {
803
+ "defaultValue": null,
804
+ "description": null,
805
+ "id_str": "sort",
806
+ "name": "sort",
807
+ "path": "sort",
808
+ "requestStr": "$socketPortMetricsSort:[SocketPortMetricsSort!] ",
809
+ "required": false,
810
+ "responseStr": "sort:$socketPortMetricsSort ",
811
+ "type": {
812
+ "definition": {
813
+ "description": null,
814
+ "enumValues": null,
815
+ "fields": null,
816
+ "inputFields": {
817
+ "fieldName": {
818
+ "defaultValue": null,
819
+ "description": null,
820
+ "id_str": "sort___fieldName",
821
+ "name": "fieldName",
822
+ "path": "sort.fieldName",
823
+ "requestStr": "$fieldName:SocketPortMetricsFieldName! ",
824
+ "required": true,
825
+ "responseStr": "fieldName:$fieldName ",
826
+ "type": {
827
+ "definition": {
828
+ "description": null,
829
+ "enumValues": [
830
+ {
831
+ "deprecationReason": null,
832
+ "description": "Unique identifier of the account that owns the site.",
833
+ "isDeprecated": false,
834
+ "name": "account_id"
835
+ },
836
+ {
837
+ "deprecationReason": null,
838
+ "description": "Unique identifier of the site where the socket is deployed.",
839
+ "isDeprecated": false,
840
+ "name": "site_id"
841
+ },
842
+ {
843
+ "deprecationReason": null,
844
+ "description": "Unique identifier of the Socket (Cato edge device).",
845
+ "isDeprecated": false,
846
+ "name": "device_id"
847
+ },
848
+ {
849
+ "deprecationReason": null,
850
+ "description": "The name or ID of the physical or logical interface on the Socket device (e.g., eth0, cell1).",
851
+ "isDeprecated": false,
852
+ "name": "socket_interface"
853
+ },
854
+ {
855
+ "deprecationReason": null,
856
+ "description": "Describes the interface role such as primary, backup, cellular, or none.",
857
+ "isDeprecated": false,
858
+ "name": "socket_interface_role"
859
+ },
860
+ {
861
+ "deprecationReason": null,
862
+ "description": "Indicates the high-availability (HA) role of the device (e.g., active, standby).",
863
+ "isDeprecated": false,
864
+ "name": "ha_role"
865
+ },
866
+ {
867
+ "deprecationReason": null,
868
+ "description": "Type of physical interface (e.g., ethernet, cellular).",
869
+ "isDeprecated": false,
870
+ "name": "physical_interface_type"
871
+ },
872
+ {
873
+ "deprecationReason": null,
874
+ "description": "Type of transport used by the interface (e.g., wired, lte, 5g, wifi).",
875
+ "isDeprecated": false,
876
+ "name": "transport_type"
877
+ },
878
+ {
879
+ "deprecationReason": null,
880
+ "description": "SIM card number (for cellular interfaces).",
881
+ "isDeprecated": false,
882
+ "name": "sim_num"
883
+ },
884
+ {
885
+ "deprecationReason": null,
886
+ "description": "Total bytes sent upstream (from the device to the network).",
887
+ "isDeprecated": false,
888
+ "name": "bytes_upstream"
889
+ },
890
+ {
891
+ "deprecationReason": null,
892
+ "description": "Total bytes received downstream (from the network to the device).",
893
+ "isDeprecated": false,
894
+ "name": "bytes_downstream"
895
+ },
896
+ {
897
+ "deprecationReason": null,
898
+ "description": "Combined total of upstream and downstream bytes.",
899
+ "isDeprecated": false,
900
+ "name": "bytes_total"
901
+ },
902
+ {
903
+ "deprecationReason": null,
904
+ "description": "Current upload throughput in Mbps.",
905
+ "isDeprecated": false,
906
+ "name": "throughput_upstream"
907
+ },
908
+ {
909
+ "deprecationReason": null,
910
+ "description": "Current download throughput in Mbps.",
911
+ "isDeprecated": false,
912
+ "name": "throughput_downstream"
913
+ },
914
+ {
915
+ "deprecationReason": null,
916
+ "description": "Human-readable name of the site.",
917
+ "isDeprecated": false,
918
+ "name": "site_name"
919
+ },
920
+ {
921
+ "deprecationReason": null,
922
+ "description": "Generic signal strength indicator (often maps to bars or percentage).",
923
+ "isDeprecated": false,
924
+ "name": "cellular_signal_strength"
925
+ },
926
+ {
927
+ "deprecationReason": null,
928
+ "description": "Reference Signal Received Quality \u2013 a key LTE/5G metric for link quality (dB).",
929
+ "isDeprecated": false,
930
+ "name": "cellular_rsrq"
931
+ },
932
+ {
933
+ "deprecationReason": null,
934
+ "description": "Reference Signal Received Power \u2013 measures LTE/5G signal strength (dBm).",
935
+ "isDeprecated": false,
936
+ "name": "cellular_rsrp"
937
+ },
938
+ {
939
+ "deprecationReason": null,
940
+ "description": "Received Signal Strength Indicator \u2013 legacy strength metric (dBm).",
941
+ "isDeprecated": false,
942
+ "name": "cellular_rssi"
943
+ },
944
+ {
945
+ "deprecationReason": null,
946
+ "description": "Signal to Interference + Noise Ratio \u2013 LTE/5G metric for signal clarity (dB).",
947
+ "isDeprecated": false,
948
+ "name": "cellular_sinr"
949
+ }
950
+ ],
951
+ "fields": null,
952
+ "inputFields": null,
953
+ "interfaces": null,
954
+ "kind": "ENUM",
955
+ "name": "SocketPortMetricsFieldName",
956
+ "possibleTypes": null
957
+ },
958
+ "indexType": "enum",
959
+ "kind": [
960
+ "NON_NULL",
961
+ "ENUM"
962
+ ],
963
+ "name": "SocketPortMetricsFieldName",
964
+ "non_null": false
965
+ },
966
+ "varName": "fieldName"
967
+ },
968
+ "order": {
969
+ "defaultValue": null,
970
+ "description": null,
971
+ "id_str": "sort___order",
972
+ "name": "order",
973
+ "path": "sort.order",
974
+ "requestStr": "$order:DirectionEnum! ",
975
+ "required": true,
976
+ "responseStr": "order:$order ",
977
+ "type": {
978
+ "definition": {
979
+ "description": null,
980
+ "enumValues": [
981
+ {
982
+ "deprecationReason": null,
983
+ "description": null,
984
+ "isDeprecated": false,
985
+ "name": "asc"
986
+ },
987
+ {
988
+ "deprecationReason": null,
989
+ "description": null,
990
+ "isDeprecated": false,
991
+ "name": "desc"
992
+ }
993
+ ],
994
+ "fields": null,
995
+ "inputFields": null,
996
+ "interfaces": null,
997
+ "kind": "ENUM",
998
+ "name": "DirectionEnum",
999
+ "possibleTypes": null
1000
+ },
1001
+ "indexType": "enum",
1002
+ "kind": [
1003
+ "NON_NULL",
1004
+ "ENUM"
1005
+ ],
1006
+ "name": "DirectionEnum",
1007
+ "non_null": false
1008
+ },
1009
+ "varName": "order"
1010
+ }
1011
+ },
1012
+ "interfaces": null,
1013
+ "kind": "INPUT_OBJECT",
1014
+ "name": "SocketPortMetricsSort",
1015
+ "possibleTypes": null
1016
+ },
1017
+ "indexType": "input_object",
1018
+ "kind": [
1019
+ "LIST",
1020
+ "NON_NULL",
1021
+ "INPUT_OBJECT"
1022
+ ],
1023
+ "name": "SocketPortMetricsSort",
1024
+ "non_null": false
1025
+ },
1026
+ "varName": "socketPortMetricsSort"
1027
+ },
1028
+ "timeFrame": {
1029
+ "defaultValue": null,
1030
+ "description": null,
1031
+ "id_str": "timeFrame",
1032
+ "name": "timeFrame",
1033
+ "path": "timeFrame",
1034
+ "requestStr": "$timeFrame:TimeFrame! ",
1035
+ "required": true,
1036
+ "responseStr": "timeFrame:$timeFrame ",
1037
+ "type": {
1038
+ "kind": [
1039
+ "NON_NULL",
1040
+ "SCALAR"
1041
+ ],
1042
+ "name": "TimeFrame",
1043
+ "non_null": false
1044
+ },
1045
+ "varName": "timeFrame"
1046
+ }
1047
+ },
1048
+ "deprecationReason": null,
1049
+ "description": "Provides historical metrics for physical and logical interfaces on Cato Sockets.\nThis API enables detailed monitoring of LAN, WAN, Tunnel, Bypass, and Off-Cloud traffic, including throughput, bandwidth usage, and cellular signal quality.",
1050
+ "fieldTypes": {
1051
+ "SocketPortMetricsRecord": true
1052
+ },
1053
+ "isDeprecated": false,
1054
+ "name": "socketPortMetrics",
1055
+ "operationArgs": {
1056
+ "accountID": {
1057
+ "defaultValue": null,
1058
+ "description": "Account ID",
1059
+ "id_str": "accountID",
1060
+ "name": "accountID",
1061
+ "path": "accountID",
1062
+ "requestStr": "$accountID:ID! ",
1063
+ "required": true,
1064
+ "responseStr": "accountID:$accountID ",
1065
+ "type": {
1066
+ "kind": [
1067
+ "NON_NULL",
1068
+ "SCALAR"
1069
+ ],
1070
+ "name": "ID",
1071
+ "non_null": false
1072
+ },
1073
+ "varName": "accountID"
1074
+ },
1075
+ "from": {
1076
+ "defaultValue": null,
1077
+ "description": null,
1078
+ "id_str": "records___from",
1079
+ "name": "from",
1080
+ "path": "records.from",
1081
+ "requestStr": "$from:Int ",
1082
+ "required": false,
1083
+ "responseStr": "from:$from ",
1084
+ "type": {
1085
+ "kind": [
1086
+ "SCALAR"
1087
+ ],
1088
+ "name": "Int",
1089
+ "non_null": false
1090
+ },
1091
+ "varName": "from"
1092
+ },
1093
+ "limit": {
1094
+ "defaultValue": null,
1095
+ "description": null,
1096
+ "id_str": "records___limit",
1097
+ "name": "limit",
1098
+ "path": "records.limit",
1099
+ "requestStr": "$limit:Int ",
1100
+ "required": false,
1101
+ "responseStr": "limit:$limit ",
1102
+ "type": {
1103
+ "kind": [
1104
+ "SCALAR"
1105
+ ],
1106
+ "name": "Int",
1107
+ "non_null": false
1108
+ },
1109
+ "varName": "limit"
1110
+ },
1111
+ "socketPortMetricsDimension": {
1112
+ "defaultValue": null,
1113
+ "description": null,
1114
+ "id_str": "dimensions",
1115
+ "name": "dimensions",
1116
+ "path": "dimensions",
1117
+ "requestStr": "$socketPortMetricsDimension:[SocketPortMetricsDimension] ",
1118
+ "required": false,
1119
+ "responseStr": "dimensions:$socketPortMetricsDimension ",
1120
+ "type": {
1121
+ "definition": {
1122
+ "description": null,
1123
+ "enumValues": null,
1124
+ "fields": null,
1125
+ "inputFields": {
1126
+ "fieldName": {
1127
+ "defaultValue": null,
1128
+ "description": null,
1129
+ "id_str": "dimensions___fieldName",
1130
+ "name": "fieldName",
1131
+ "path": "dimensions.fieldName",
1132
+ "requestStr": "$fieldName:SocketPortMetricsFieldName! ",
1133
+ "required": true,
1134
+ "responseStr": "fieldName:$fieldName ",
1135
+ "type": {
1136
+ "definition": {
1137
+ "description": null,
1138
+ "enumValues": [
1139
+ {
1140
+ "deprecationReason": null,
1141
+ "description": "Unique identifier of the account that owns the site.",
1142
+ "isDeprecated": false,
1143
+ "name": "account_id"
1144
+ },
1145
+ {
1146
+ "deprecationReason": null,
1147
+ "description": "Unique identifier of the site where the socket is deployed.",
1148
+ "isDeprecated": false,
1149
+ "name": "site_id"
1150
+ },
1151
+ {
1152
+ "deprecationReason": null,
1153
+ "description": "Unique identifier of the Socket (Cato edge device).",
1154
+ "isDeprecated": false,
1155
+ "name": "device_id"
1156
+ },
1157
+ {
1158
+ "deprecationReason": null,
1159
+ "description": "The name or ID of the physical or logical interface on the Socket device (e.g., eth0, cell1).",
1160
+ "isDeprecated": false,
1161
+ "name": "socket_interface"
1162
+ },
1163
+ {
1164
+ "deprecationReason": null,
1165
+ "description": "Describes the interface role such as primary, backup, cellular, or none.",
1166
+ "isDeprecated": false,
1167
+ "name": "socket_interface_role"
1168
+ },
1169
+ {
1170
+ "deprecationReason": null,
1171
+ "description": "Indicates the high-availability (HA) role of the device (e.g., active, standby).",
1172
+ "isDeprecated": false,
1173
+ "name": "ha_role"
1174
+ },
1175
+ {
1176
+ "deprecationReason": null,
1177
+ "description": "Type of physical interface (e.g., ethernet, cellular).",
1178
+ "isDeprecated": false,
1179
+ "name": "physical_interface_type"
1180
+ },
1181
+ {
1182
+ "deprecationReason": null,
1183
+ "description": "Type of transport used by the interface (e.g., wired, lte, 5g, wifi).",
1184
+ "isDeprecated": false,
1185
+ "name": "transport_type"
1186
+ },
1187
+ {
1188
+ "deprecationReason": null,
1189
+ "description": "SIM card number (for cellular interfaces).",
1190
+ "isDeprecated": false,
1191
+ "name": "sim_num"
1192
+ },
1193
+ {
1194
+ "deprecationReason": null,
1195
+ "description": "Total bytes sent upstream (from the device to the network).",
1196
+ "isDeprecated": false,
1197
+ "name": "bytes_upstream"
1198
+ },
1199
+ {
1200
+ "deprecationReason": null,
1201
+ "description": "Total bytes received downstream (from the network to the device).",
1202
+ "isDeprecated": false,
1203
+ "name": "bytes_downstream"
1204
+ },
1205
+ {
1206
+ "deprecationReason": null,
1207
+ "description": "Combined total of upstream and downstream bytes.",
1208
+ "isDeprecated": false,
1209
+ "name": "bytes_total"
1210
+ },
1211
+ {
1212
+ "deprecationReason": null,
1213
+ "description": "Current upload throughput in Mbps.",
1214
+ "isDeprecated": false,
1215
+ "name": "throughput_upstream"
1216
+ },
1217
+ {
1218
+ "deprecationReason": null,
1219
+ "description": "Current download throughput in Mbps.",
1220
+ "isDeprecated": false,
1221
+ "name": "throughput_downstream"
1222
+ },
1223
+ {
1224
+ "deprecationReason": null,
1225
+ "description": "Human-readable name of the site.",
1226
+ "isDeprecated": false,
1227
+ "name": "site_name"
1228
+ },
1229
+ {
1230
+ "deprecationReason": null,
1231
+ "description": "Generic signal strength indicator (often maps to bars or percentage).",
1232
+ "isDeprecated": false,
1233
+ "name": "cellular_signal_strength"
1234
+ },
1235
+ {
1236
+ "deprecationReason": null,
1237
+ "description": "Reference Signal Received Quality \u2013 a key LTE/5G metric for link quality (dB).",
1238
+ "isDeprecated": false,
1239
+ "name": "cellular_rsrq"
1240
+ },
1241
+ {
1242
+ "deprecationReason": null,
1243
+ "description": "Reference Signal Received Power \u2013 measures LTE/5G signal strength (dBm).",
1244
+ "isDeprecated": false,
1245
+ "name": "cellular_rsrp"
1246
+ },
1247
+ {
1248
+ "deprecationReason": null,
1249
+ "description": "Received Signal Strength Indicator \u2013 legacy strength metric (dBm).",
1250
+ "isDeprecated": false,
1251
+ "name": "cellular_rssi"
1252
+ },
1253
+ {
1254
+ "deprecationReason": null,
1255
+ "description": "Signal to Interference + Noise Ratio \u2013 LTE/5G metric for signal clarity (dB).",
1256
+ "isDeprecated": false,
1257
+ "name": "cellular_sinr"
1258
+ }
1259
+ ],
1260
+ "fields": null,
1261
+ "inputFields": null,
1262
+ "interfaces": null,
1263
+ "kind": "ENUM",
1264
+ "name": "SocketPortMetricsFieldName",
1265
+ "possibleTypes": null
1266
+ },
1267
+ "indexType": "enum",
1268
+ "kind": [
1269
+ "NON_NULL",
1270
+ "ENUM"
1271
+ ],
1272
+ "name": "SocketPortMetricsFieldName",
1273
+ "non_null": false
1274
+ },
1275
+ "varName": "fieldName"
1276
+ }
1277
+ },
1278
+ "interfaces": null,
1279
+ "kind": "INPUT_OBJECT",
1280
+ "name": "SocketPortMetricsDimension",
1281
+ "possibleTypes": null
1282
+ },
1283
+ "indexType": "input_object",
1284
+ "kind": [
1285
+ "LIST",
1286
+ "INPUT_OBJECT"
1287
+ ],
1288
+ "name": "SocketPortMetricsDimension",
1289
+ "non_null": false
1290
+ },
1291
+ "varName": "socketPortMetricsDimension"
1292
+ },
1293
+ "socketPortMetricsFilter": {
1294
+ "defaultValue": null,
1295
+ "description": null,
1296
+ "id_str": "filters",
1297
+ "name": "filters",
1298
+ "path": "filters",
1299
+ "requestStr": "$socketPortMetricsFilter:[SocketPortMetricsFilter!] ",
1300
+ "required": false,
1301
+ "responseStr": "filters:$socketPortMetricsFilter ",
1302
+ "type": {
1303
+ "definition": {
1304
+ "description": null,
1305
+ "enumValues": null,
1306
+ "fields": null,
1307
+ "inputFields": {
1308
+ "fieldName": {
1309
+ "defaultValue": null,
1310
+ "description": null,
1311
+ "id_str": "filters___fieldName",
1312
+ "name": "fieldName",
1313
+ "path": "filters.fieldName",
1314
+ "requestStr": "$fieldName:SocketPortMetricsFieldName! ",
1315
+ "required": true,
1316
+ "responseStr": "fieldName:$fieldName ",
1317
+ "type": {
1318
+ "definition": {
1319
+ "description": null,
1320
+ "enumValues": [
1321
+ {
1322
+ "deprecationReason": null,
1323
+ "description": "Unique identifier of the account that owns the site.",
1324
+ "isDeprecated": false,
1325
+ "name": "account_id"
1326
+ },
1327
+ {
1328
+ "deprecationReason": null,
1329
+ "description": "Unique identifier of the site where the socket is deployed.",
1330
+ "isDeprecated": false,
1331
+ "name": "site_id"
1332
+ },
1333
+ {
1334
+ "deprecationReason": null,
1335
+ "description": "Unique identifier of the Socket (Cato edge device).",
1336
+ "isDeprecated": false,
1337
+ "name": "device_id"
1338
+ },
1339
+ {
1340
+ "deprecationReason": null,
1341
+ "description": "The name or ID of the physical or logical interface on the Socket device (e.g., eth0, cell1).",
1342
+ "isDeprecated": false,
1343
+ "name": "socket_interface"
1344
+ },
1345
+ {
1346
+ "deprecationReason": null,
1347
+ "description": "Describes the interface role such as primary, backup, cellular, or none.",
1348
+ "isDeprecated": false,
1349
+ "name": "socket_interface_role"
1350
+ },
1351
+ {
1352
+ "deprecationReason": null,
1353
+ "description": "Indicates the high-availability (HA) role of the device (e.g., active, standby).",
1354
+ "isDeprecated": false,
1355
+ "name": "ha_role"
1356
+ },
1357
+ {
1358
+ "deprecationReason": null,
1359
+ "description": "Type of physical interface (e.g., ethernet, cellular).",
1360
+ "isDeprecated": false,
1361
+ "name": "physical_interface_type"
1362
+ },
1363
+ {
1364
+ "deprecationReason": null,
1365
+ "description": "Type of transport used by the interface (e.g., wired, lte, 5g, wifi).",
1366
+ "isDeprecated": false,
1367
+ "name": "transport_type"
1368
+ },
1369
+ {
1370
+ "deprecationReason": null,
1371
+ "description": "SIM card number (for cellular interfaces).",
1372
+ "isDeprecated": false,
1373
+ "name": "sim_num"
1374
+ },
1375
+ {
1376
+ "deprecationReason": null,
1377
+ "description": "Total bytes sent upstream (from the device to the network).",
1378
+ "isDeprecated": false,
1379
+ "name": "bytes_upstream"
1380
+ },
1381
+ {
1382
+ "deprecationReason": null,
1383
+ "description": "Total bytes received downstream (from the network to the device).",
1384
+ "isDeprecated": false,
1385
+ "name": "bytes_downstream"
1386
+ },
1387
+ {
1388
+ "deprecationReason": null,
1389
+ "description": "Combined total of upstream and downstream bytes.",
1390
+ "isDeprecated": false,
1391
+ "name": "bytes_total"
1392
+ },
1393
+ {
1394
+ "deprecationReason": null,
1395
+ "description": "Current upload throughput in Mbps.",
1396
+ "isDeprecated": false,
1397
+ "name": "throughput_upstream"
1398
+ },
1399
+ {
1400
+ "deprecationReason": null,
1401
+ "description": "Current download throughput in Mbps.",
1402
+ "isDeprecated": false,
1403
+ "name": "throughput_downstream"
1404
+ },
1405
+ {
1406
+ "deprecationReason": null,
1407
+ "description": "Human-readable name of the site.",
1408
+ "isDeprecated": false,
1409
+ "name": "site_name"
1410
+ },
1411
+ {
1412
+ "deprecationReason": null,
1413
+ "description": "Generic signal strength indicator (often maps to bars or percentage).",
1414
+ "isDeprecated": false,
1415
+ "name": "cellular_signal_strength"
1416
+ },
1417
+ {
1418
+ "deprecationReason": null,
1419
+ "description": "Reference Signal Received Quality \u2013 a key LTE/5G metric for link quality (dB).",
1420
+ "isDeprecated": false,
1421
+ "name": "cellular_rsrq"
1422
+ },
1423
+ {
1424
+ "deprecationReason": null,
1425
+ "description": "Reference Signal Received Power \u2013 measures LTE/5G signal strength (dBm).",
1426
+ "isDeprecated": false,
1427
+ "name": "cellular_rsrp"
1428
+ },
1429
+ {
1430
+ "deprecationReason": null,
1431
+ "description": "Received Signal Strength Indicator \u2013 legacy strength metric (dBm).",
1432
+ "isDeprecated": false,
1433
+ "name": "cellular_rssi"
1434
+ },
1435
+ {
1436
+ "deprecationReason": null,
1437
+ "description": "Signal to Interference + Noise Ratio \u2013 LTE/5G metric for signal clarity (dB).",
1438
+ "isDeprecated": false,
1439
+ "name": "cellular_sinr"
1440
+ }
1441
+ ],
1442
+ "fields": null,
1443
+ "inputFields": null,
1444
+ "interfaces": null,
1445
+ "kind": "ENUM",
1446
+ "name": "SocketPortMetricsFieldName",
1447
+ "possibleTypes": null
1448
+ },
1449
+ "indexType": "enum",
1450
+ "kind": [
1451
+ "NON_NULL",
1452
+ "ENUM"
1453
+ ],
1454
+ "name": "SocketPortMetricsFieldName",
1455
+ "non_null": false
1456
+ },
1457
+ "varName": "fieldName"
1458
+ },
1459
+ "operator": {
1460
+ "defaultValue": null,
1461
+ "description": null,
1462
+ "id_str": "filters___operator",
1463
+ "name": "operator",
1464
+ "path": "filters.operator",
1465
+ "requestStr": "$operator:FilterOperator! ",
1466
+ "required": true,
1467
+ "responseStr": "operator:$operator ",
1468
+ "type": {
1469
+ "definition": {
1470
+ "description": null,
1471
+ "enumValues": [
1472
+ {
1473
+ "deprecationReason": null,
1474
+ "description": null,
1475
+ "isDeprecated": false,
1476
+ "name": "is"
1477
+ },
1478
+ {
1479
+ "deprecationReason": null,
1480
+ "description": null,
1481
+ "isDeprecated": false,
1482
+ "name": "is_not"
1483
+ },
1484
+ {
1485
+ "deprecationReason": null,
1486
+ "description": null,
1487
+ "isDeprecated": false,
1488
+ "name": "in"
1489
+ },
1490
+ {
1491
+ "deprecationReason": null,
1492
+ "description": null,
1493
+ "isDeprecated": false,
1494
+ "name": "not_in"
1495
+ },
1496
+ {
1497
+ "deprecationReason": null,
1498
+ "description": null,
1499
+ "isDeprecated": false,
1500
+ "name": "exists"
1501
+ },
1502
+ {
1503
+ "deprecationReason": null,
1504
+ "description": null,
1505
+ "isDeprecated": false,
1506
+ "name": "not_exists"
1507
+ },
1508
+ {
1509
+ "deprecationReason": null,
1510
+ "description": null,
1511
+ "isDeprecated": false,
1512
+ "name": "between"
1513
+ },
1514
+ {
1515
+ "deprecationReason": null,
1516
+ "description": null,
1517
+ "isDeprecated": false,
1518
+ "name": "not_between"
1519
+ },
1520
+ {
1521
+ "deprecationReason": null,
1522
+ "description": null,
1523
+ "isDeprecated": false,
1524
+ "name": "gt"
1525
+ },
1526
+ {
1527
+ "deprecationReason": null,
1528
+ "description": null,
1529
+ "isDeprecated": false,
1530
+ "name": "gte"
1531
+ },
1532
+ {
1533
+ "deprecationReason": null,
1534
+ "description": null,
1535
+ "isDeprecated": false,
1536
+ "name": "lt"
1537
+ },
1538
+ {
1539
+ "deprecationReason": null,
1540
+ "description": null,
1541
+ "isDeprecated": false,
1542
+ "name": "lte"
1543
+ }
1544
+ ],
1545
+ "fields": null,
1546
+ "inputFields": null,
1547
+ "interfaces": null,
1548
+ "kind": "ENUM",
1549
+ "name": "FilterOperator",
1550
+ "possibleTypes": null
1551
+ },
1552
+ "indexType": "enum",
1553
+ "kind": [
1554
+ "NON_NULL",
1555
+ "ENUM"
1556
+ ],
1557
+ "name": "FilterOperator",
1558
+ "non_null": false
1559
+ },
1560
+ "varName": "operator"
1561
+ },
1562
+ "values": {
1563
+ "defaultValue": null,
1564
+ "description": null,
1565
+ "id_str": "filters___values",
1566
+ "name": "values",
1567
+ "path": "filters.values",
1568
+ "requestStr": "$values:[String]! ",
1569
+ "required": true,
1570
+ "responseStr": "values:$values ",
1571
+ "type": {
1572
+ "kind": [
1573
+ "NON_NULL",
1574
+ "LIST",
1575
+ "NON_NULL",
1576
+ "SCALAR"
1577
+ ],
1578
+ "name": "String",
1579
+ "non_null": false
1580
+ },
1581
+ "varName": "values"
1582
+ }
1583
+ },
1584
+ "interfaces": null,
1585
+ "kind": "INPUT_OBJECT",
1586
+ "name": "SocketPortMetricsFilter",
1587
+ "possibleTypes": null
1588
+ },
1589
+ "indexType": "input_object",
1590
+ "kind": [
1591
+ "LIST",
1592
+ "NON_NULL",
1593
+ "INPUT_OBJECT"
1594
+ ],
1595
+ "name": "SocketPortMetricsFilter",
1596
+ "non_null": false
1597
+ },
1598
+ "varName": "socketPortMetricsFilter"
1599
+ },
1600
+ "socketPortMetricsMeasure": {
1601
+ "defaultValue": null,
1602
+ "description": null,
1603
+ "id_str": "measures",
1604
+ "name": "measures",
1605
+ "path": "measures",
1606
+ "requestStr": "$socketPortMetricsMeasure:[SocketPortMetricsMeasure] ",
1607
+ "required": false,
1608
+ "responseStr": "measures:$socketPortMetricsMeasure ",
1609
+ "type": {
1610
+ "definition": {
1611
+ "description": null,
1612
+ "enumValues": null,
1613
+ "fields": null,
1614
+ "inputFields": {
1615
+ "aggType": {
1616
+ "defaultValue": null,
1617
+ "description": null,
1618
+ "id_str": "measures___aggType",
1619
+ "name": "aggType",
1620
+ "path": "measures.aggType",
1621
+ "requestStr": "$aggType:AggregationType! ",
1622
+ "required": true,
1623
+ "responseStr": "aggType:$aggType ",
1624
+ "type": {
1625
+ "definition": {
1626
+ "description": null,
1627
+ "enumValues": [
1628
+ {
1629
+ "deprecationReason": null,
1630
+ "description": null,
1631
+ "isDeprecated": false,
1632
+ "name": "sum"
1633
+ },
1634
+ {
1635
+ "deprecationReason": null,
1636
+ "description": null,
1637
+ "isDeprecated": false,
1638
+ "name": "count"
1639
+ },
1640
+ {
1641
+ "deprecationReason": null,
1642
+ "description": null,
1643
+ "isDeprecated": false,
1644
+ "name": "count_distinct"
1645
+ },
1646
+ {
1647
+ "deprecationReason": null,
1648
+ "description": null,
1649
+ "isDeprecated": false,
1650
+ "name": "distinct"
1651
+ },
1652
+ {
1653
+ "deprecationReason": null,
1654
+ "description": null,
1655
+ "isDeprecated": false,
1656
+ "name": "avg"
1657
+ },
1658
+ {
1659
+ "deprecationReason": null,
1660
+ "description": null,
1661
+ "isDeprecated": false,
1662
+ "name": "max"
1663
+ },
1664
+ {
1665
+ "deprecationReason": null,
1666
+ "description": null,
1667
+ "isDeprecated": false,
1668
+ "name": "min"
1669
+ },
1670
+ {
1671
+ "deprecationReason": null,
1672
+ "description": null,
1673
+ "isDeprecated": false,
1674
+ "name": "any"
1675
+ },
1676
+ {
1677
+ "deprecationReason": null,
1678
+ "description": null,
1679
+ "isDeprecated": false,
1680
+ "name": "changes"
1681
+ },
1682
+ {
1683
+ "deprecationReason": null,
1684
+ "description": null,
1685
+ "isDeprecated": false,
1686
+ "name": "uniq_set"
1687
+ }
1688
+ ],
1689
+ "fields": null,
1690
+ "inputFields": null,
1691
+ "interfaces": null,
1692
+ "kind": "ENUM",
1693
+ "name": "AggregationType",
1694
+ "possibleTypes": null
1695
+ },
1696
+ "indexType": "enum",
1697
+ "kind": [
1698
+ "NON_NULL",
1699
+ "ENUM"
1700
+ ],
1701
+ "name": "AggregationType",
1702
+ "non_null": false
1703
+ },
1704
+ "varName": "aggType"
1705
+ },
1706
+ "fieldName": {
1707
+ "defaultValue": null,
1708
+ "description": null,
1709
+ "id_str": "measures___fieldName",
1710
+ "name": "fieldName",
1711
+ "path": "measures.fieldName",
1712
+ "requestStr": "$fieldName:SocketPortMetricsFieldName! ",
1713
+ "required": true,
1714
+ "responseStr": "fieldName:$fieldName ",
1715
+ "type": {
1716
+ "definition": {
1717
+ "description": null,
1718
+ "enumValues": [
1719
+ {
1720
+ "deprecationReason": null,
1721
+ "description": "Unique identifier of the account that owns the site.",
1722
+ "isDeprecated": false,
1723
+ "name": "account_id"
1724
+ },
1725
+ {
1726
+ "deprecationReason": null,
1727
+ "description": "Unique identifier of the site where the socket is deployed.",
1728
+ "isDeprecated": false,
1729
+ "name": "site_id"
1730
+ },
1731
+ {
1732
+ "deprecationReason": null,
1733
+ "description": "Unique identifier of the Socket (Cato edge device).",
1734
+ "isDeprecated": false,
1735
+ "name": "device_id"
1736
+ },
1737
+ {
1738
+ "deprecationReason": null,
1739
+ "description": "The name or ID of the physical or logical interface on the Socket device (e.g., eth0, cell1).",
1740
+ "isDeprecated": false,
1741
+ "name": "socket_interface"
1742
+ },
1743
+ {
1744
+ "deprecationReason": null,
1745
+ "description": "Describes the interface role such as primary, backup, cellular, or none.",
1746
+ "isDeprecated": false,
1747
+ "name": "socket_interface_role"
1748
+ },
1749
+ {
1750
+ "deprecationReason": null,
1751
+ "description": "Indicates the high-availability (HA) role of the device (e.g., active, standby).",
1752
+ "isDeprecated": false,
1753
+ "name": "ha_role"
1754
+ },
1755
+ {
1756
+ "deprecationReason": null,
1757
+ "description": "Type of physical interface (e.g., ethernet, cellular).",
1758
+ "isDeprecated": false,
1759
+ "name": "physical_interface_type"
1760
+ },
1761
+ {
1762
+ "deprecationReason": null,
1763
+ "description": "Type of transport used by the interface (e.g., wired, lte, 5g, wifi).",
1764
+ "isDeprecated": false,
1765
+ "name": "transport_type"
1766
+ },
1767
+ {
1768
+ "deprecationReason": null,
1769
+ "description": "SIM card number (for cellular interfaces).",
1770
+ "isDeprecated": false,
1771
+ "name": "sim_num"
1772
+ },
1773
+ {
1774
+ "deprecationReason": null,
1775
+ "description": "Total bytes sent upstream (from the device to the network).",
1776
+ "isDeprecated": false,
1777
+ "name": "bytes_upstream"
1778
+ },
1779
+ {
1780
+ "deprecationReason": null,
1781
+ "description": "Total bytes received downstream (from the network to the device).",
1782
+ "isDeprecated": false,
1783
+ "name": "bytes_downstream"
1784
+ },
1785
+ {
1786
+ "deprecationReason": null,
1787
+ "description": "Combined total of upstream and downstream bytes.",
1788
+ "isDeprecated": false,
1789
+ "name": "bytes_total"
1790
+ },
1791
+ {
1792
+ "deprecationReason": null,
1793
+ "description": "Current upload throughput in Mbps.",
1794
+ "isDeprecated": false,
1795
+ "name": "throughput_upstream"
1796
+ },
1797
+ {
1798
+ "deprecationReason": null,
1799
+ "description": "Current download throughput in Mbps.",
1800
+ "isDeprecated": false,
1801
+ "name": "throughput_downstream"
1802
+ },
1803
+ {
1804
+ "deprecationReason": null,
1805
+ "description": "Human-readable name of the site.",
1806
+ "isDeprecated": false,
1807
+ "name": "site_name"
1808
+ },
1809
+ {
1810
+ "deprecationReason": null,
1811
+ "description": "Generic signal strength indicator (often maps to bars or percentage).",
1812
+ "isDeprecated": false,
1813
+ "name": "cellular_signal_strength"
1814
+ },
1815
+ {
1816
+ "deprecationReason": null,
1817
+ "description": "Reference Signal Received Quality \u2013 a key LTE/5G metric for link quality (dB).",
1818
+ "isDeprecated": false,
1819
+ "name": "cellular_rsrq"
1820
+ },
1821
+ {
1822
+ "deprecationReason": null,
1823
+ "description": "Reference Signal Received Power \u2013 measures LTE/5G signal strength (dBm).",
1824
+ "isDeprecated": false,
1825
+ "name": "cellular_rsrp"
1826
+ },
1827
+ {
1828
+ "deprecationReason": null,
1829
+ "description": "Received Signal Strength Indicator \u2013 legacy strength metric (dBm).",
1830
+ "isDeprecated": false,
1831
+ "name": "cellular_rssi"
1832
+ },
1833
+ {
1834
+ "deprecationReason": null,
1835
+ "description": "Signal to Interference + Noise Ratio \u2013 LTE/5G metric for signal clarity (dB).",
1836
+ "isDeprecated": false,
1837
+ "name": "cellular_sinr"
1838
+ }
1839
+ ],
1840
+ "fields": null,
1841
+ "inputFields": null,
1842
+ "interfaces": null,
1843
+ "kind": "ENUM",
1844
+ "name": "SocketPortMetricsFieldName",
1845
+ "possibleTypes": null
1846
+ },
1847
+ "indexType": "enum",
1848
+ "kind": [
1849
+ "NON_NULL",
1850
+ "ENUM"
1851
+ ],
1852
+ "name": "SocketPortMetricsFieldName",
1853
+ "non_null": false
1854
+ },
1855
+ "varName": "fieldName"
1856
+ },
1857
+ "trend": {
1858
+ "defaultValue": null,
1859
+ "description": null,
1860
+ "id_str": "measures___trend",
1861
+ "name": "trend",
1862
+ "path": "measures.trend",
1863
+ "requestStr": "$trend:Boolean ",
1864
+ "required": false,
1865
+ "responseStr": "trend:$trend ",
1866
+ "type": {
1867
+ "kind": [
1868
+ "SCALAR"
1869
+ ],
1870
+ "name": "Boolean",
1871
+ "non_null": false
1872
+ },
1873
+ "varName": "trend"
1874
+ }
1875
+ },
1876
+ "interfaces": null,
1877
+ "kind": "INPUT_OBJECT",
1878
+ "name": "SocketPortMetricsMeasure",
1879
+ "possibleTypes": null
1880
+ },
1881
+ "indexType": "input_object",
1882
+ "kind": [
1883
+ "LIST",
1884
+ "INPUT_OBJECT"
1885
+ ],
1886
+ "name": "SocketPortMetricsMeasure",
1887
+ "non_null": false
1888
+ },
1889
+ "varName": "socketPortMetricsMeasure"
1890
+ },
1891
+ "socketPortMetricsSort": {
1892
+ "defaultValue": null,
1893
+ "description": null,
1894
+ "id_str": "sort",
1895
+ "name": "sort",
1896
+ "path": "sort",
1897
+ "requestStr": "$socketPortMetricsSort:[SocketPortMetricsSort!] ",
1898
+ "required": false,
1899
+ "responseStr": "sort:$socketPortMetricsSort ",
1900
+ "type": {
1901
+ "definition": {
1902
+ "description": null,
1903
+ "enumValues": null,
1904
+ "fields": null,
1905
+ "inputFields": {
1906
+ "fieldName": {
1907
+ "defaultValue": null,
1908
+ "description": null,
1909
+ "id_str": "sort___fieldName",
1910
+ "name": "fieldName",
1911
+ "path": "sort.fieldName",
1912
+ "requestStr": "$fieldName:SocketPortMetricsFieldName! ",
1913
+ "required": true,
1914
+ "responseStr": "fieldName:$fieldName ",
1915
+ "type": {
1916
+ "definition": {
1917
+ "description": null,
1918
+ "enumValues": [
1919
+ {
1920
+ "deprecationReason": null,
1921
+ "description": "Unique identifier of the account that owns the site.",
1922
+ "isDeprecated": false,
1923
+ "name": "account_id"
1924
+ },
1925
+ {
1926
+ "deprecationReason": null,
1927
+ "description": "Unique identifier of the site where the socket is deployed.",
1928
+ "isDeprecated": false,
1929
+ "name": "site_id"
1930
+ },
1931
+ {
1932
+ "deprecationReason": null,
1933
+ "description": "Unique identifier of the Socket (Cato edge device).",
1934
+ "isDeprecated": false,
1935
+ "name": "device_id"
1936
+ },
1937
+ {
1938
+ "deprecationReason": null,
1939
+ "description": "The name or ID of the physical or logical interface on the Socket device (e.g., eth0, cell1).",
1940
+ "isDeprecated": false,
1941
+ "name": "socket_interface"
1942
+ },
1943
+ {
1944
+ "deprecationReason": null,
1945
+ "description": "Describes the interface role such as primary, backup, cellular, or none.",
1946
+ "isDeprecated": false,
1947
+ "name": "socket_interface_role"
1948
+ },
1949
+ {
1950
+ "deprecationReason": null,
1951
+ "description": "Indicates the high-availability (HA) role of the device (e.g., active, standby).",
1952
+ "isDeprecated": false,
1953
+ "name": "ha_role"
1954
+ },
1955
+ {
1956
+ "deprecationReason": null,
1957
+ "description": "Type of physical interface (e.g., ethernet, cellular).",
1958
+ "isDeprecated": false,
1959
+ "name": "physical_interface_type"
1960
+ },
1961
+ {
1962
+ "deprecationReason": null,
1963
+ "description": "Type of transport used by the interface (e.g., wired, lte, 5g, wifi).",
1964
+ "isDeprecated": false,
1965
+ "name": "transport_type"
1966
+ },
1967
+ {
1968
+ "deprecationReason": null,
1969
+ "description": "SIM card number (for cellular interfaces).",
1970
+ "isDeprecated": false,
1971
+ "name": "sim_num"
1972
+ },
1973
+ {
1974
+ "deprecationReason": null,
1975
+ "description": "Total bytes sent upstream (from the device to the network).",
1976
+ "isDeprecated": false,
1977
+ "name": "bytes_upstream"
1978
+ },
1979
+ {
1980
+ "deprecationReason": null,
1981
+ "description": "Total bytes received downstream (from the network to the device).",
1982
+ "isDeprecated": false,
1983
+ "name": "bytes_downstream"
1984
+ },
1985
+ {
1986
+ "deprecationReason": null,
1987
+ "description": "Combined total of upstream and downstream bytes.",
1988
+ "isDeprecated": false,
1989
+ "name": "bytes_total"
1990
+ },
1991
+ {
1992
+ "deprecationReason": null,
1993
+ "description": "Current upload throughput in Mbps.",
1994
+ "isDeprecated": false,
1995
+ "name": "throughput_upstream"
1996
+ },
1997
+ {
1998
+ "deprecationReason": null,
1999
+ "description": "Current download throughput in Mbps.",
2000
+ "isDeprecated": false,
2001
+ "name": "throughput_downstream"
2002
+ },
2003
+ {
2004
+ "deprecationReason": null,
2005
+ "description": "Human-readable name of the site.",
2006
+ "isDeprecated": false,
2007
+ "name": "site_name"
2008
+ },
2009
+ {
2010
+ "deprecationReason": null,
2011
+ "description": "Generic signal strength indicator (often maps to bars or percentage).",
2012
+ "isDeprecated": false,
2013
+ "name": "cellular_signal_strength"
2014
+ },
2015
+ {
2016
+ "deprecationReason": null,
2017
+ "description": "Reference Signal Received Quality \u2013 a key LTE/5G metric for link quality (dB).",
2018
+ "isDeprecated": false,
2019
+ "name": "cellular_rsrq"
2020
+ },
2021
+ {
2022
+ "deprecationReason": null,
2023
+ "description": "Reference Signal Received Power \u2013 measures LTE/5G signal strength (dBm).",
2024
+ "isDeprecated": false,
2025
+ "name": "cellular_rsrp"
2026
+ },
2027
+ {
2028
+ "deprecationReason": null,
2029
+ "description": "Received Signal Strength Indicator \u2013 legacy strength metric (dBm).",
2030
+ "isDeprecated": false,
2031
+ "name": "cellular_rssi"
2032
+ },
2033
+ {
2034
+ "deprecationReason": null,
2035
+ "description": "Signal to Interference + Noise Ratio \u2013 LTE/5G metric for signal clarity (dB).",
2036
+ "isDeprecated": false,
2037
+ "name": "cellular_sinr"
2038
+ }
2039
+ ],
2040
+ "fields": null,
2041
+ "inputFields": null,
2042
+ "interfaces": null,
2043
+ "kind": "ENUM",
2044
+ "name": "SocketPortMetricsFieldName",
2045
+ "possibleTypes": null
2046
+ },
2047
+ "indexType": "enum",
2048
+ "kind": [
2049
+ "NON_NULL",
2050
+ "ENUM"
2051
+ ],
2052
+ "name": "SocketPortMetricsFieldName",
2053
+ "non_null": false
2054
+ },
2055
+ "varName": "fieldName"
2056
+ },
2057
+ "order": {
2058
+ "defaultValue": null,
2059
+ "description": null,
2060
+ "id_str": "sort___order",
2061
+ "name": "order",
2062
+ "path": "sort.order",
2063
+ "requestStr": "$order:DirectionEnum! ",
2064
+ "required": true,
2065
+ "responseStr": "order:$order ",
2066
+ "type": {
2067
+ "definition": {
2068
+ "description": null,
2069
+ "enumValues": [
2070
+ {
2071
+ "deprecationReason": null,
2072
+ "description": null,
2073
+ "isDeprecated": false,
2074
+ "name": "asc"
2075
+ },
2076
+ {
2077
+ "deprecationReason": null,
2078
+ "description": null,
2079
+ "isDeprecated": false,
2080
+ "name": "desc"
2081
+ }
2082
+ ],
2083
+ "fields": null,
2084
+ "inputFields": null,
2085
+ "interfaces": null,
2086
+ "kind": "ENUM",
2087
+ "name": "DirectionEnum",
2088
+ "possibleTypes": null
2089
+ },
2090
+ "indexType": "enum",
2091
+ "kind": [
2092
+ "NON_NULL",
2093
+ "ENUM"
2094
+ ],
2095
+ "name": "DirectionEnum",
2096
+ "non_null": false
2097
+ },
2098
+ "varName": "order"
2099
+ }
2100
+ },
2101
+ "interfaces": null,
2102
+ "kind": "INPUT_OBJECT",
2103
+ "name": "SocketPortMetricsSort",
2104
+ "possibleTypes": null
2105
+ },
2106
+ "indexType": "input_object",
2107
+ "kind": [
2108
+ "LIST",
2109
+ "NON_NULL",
2110
+ "INPUT_OBJECT"
2111
+ ],
2112
+ "name": "SocketPortMetricsSort",
2113
+ "non_null": false
2114
+ },
2115
+ "varName": "socketPortMetricsSort"
2116
+ },
2117
+ "timeFrame": {
2118
+ "defaultValue": null,
2119
+ "description": null,
2120
+ "id_str": "timeFrame",
2121
+ "name": "timeFrame",
2122
+ "path": "timeFrame",
2123
+ "requestStr": "$timeFrame:TimeFrame! ",
2124
+ "required": true,
2125
+ "responseStr": "timeFrame:$timeFrame ",
2126
+ "type": {
2127
+ "kind": [
2128
+ "NON_NULL",
2129
+ "SCALAR"
2130
+ ],
2131
+ "name": "TimeFrame",
2132
+ "non_null": false
2133
+ },
2134
+ "varName": "timeFrame"
2135
+ }
2136
+ },
2137
+ "path": "query.socketPortMetrics",
2138
+ "type": {
2139
+ "definition": {
2140
+ "description": null,
2141
+ "enumValues": null,
2142
+ "fields": {
2143
+ "from": {
2144
+ "args": {},
2145
+ "deprecationReason": null,
2146
+ "description": null,
2147
+ "id_str": "from",
2148
+ "isDeprecated": false,
2149
+ "name": "from",
2150
+ "path": "from",
2151
+ "requestStr": "$from:DateTime ",
2152
+ "required": false,
2153
+ "responseStr": "from:$from ",
2154
+ "type": {
2155
+ "kind": [
2156
+ "SCALAR"
2157
+ ],
2158
+ "name": "DateTime",
2159
+ "non_null": false
2160
+ },
2161
+ "varName": "from"
2162
+ },
2163
+ "id": {
2164
+ "args": {},
2165
+ "deprecationReason": null,
2166
+ "description": null,
2167
+ "id_str": "id",
2168
+ "isDeprecated": false,
2169
+ "name": "id",
2170
+ "path": "id",
2171
+ "requestStr": "$id:ID ",
2172
+ "required": false,
2173
+ "responseStr": "id:$id ",
2174
+ "type": {
2175
+ "kind": [
2176
+ "SCALAR"
2177
+ ],
2178
+ "name": "ID",
2179
+ "non_null": false
2180
+ },
2181
+ "varName": "id"
2182
+ },
2183
+ "records": {
2184
+ "args": {
2185
+ "records___from": {
2186
+ "defaultValue": null,
2187
+ "description": null,
2188
+ "id_str": "records___from",
2189
+ "name": "from",
2190
+ "path": "records.from",
2191
+ "requestStr": "$from:Int ",
2192
+ "required": false,
2193
+ "responseStr": "from:$from ",
2194
+ "type": {
2195
+ "kind": [
2196
+ "SCALAR"
2197
+ ],
2198
+ "name": "Int",
2199
+ "non_null": false
2200
+ },
2201
+ "varName": "from"
2202
+ },
2203
+ "records___limit": {
2204
+ "defaultValue": null,
2205
+ "description": null,
2206
+ "id_str": "records___limit",
2207
+ "name": "limit",
2208
+ "path": "records.limit",
2209
+ "requestStr": "$limit:Int ",
2210
+ "required": false,
2211
+ "responseStr": "limit:$limit ",
2212
+ "type": {
2213
+ "kind": [
2214
+ "SCALAR"
2215
+ ],
2216
+ "name": "Int",
2217
+ "non_null": false
2218
+ },
2219
+ "varName": "limit"
2220
+ }
2221
+ },
2222
+ "deprecationReason": null,
2223
+ "description": null,
2224
+ "id_str": "records",
2225
+ "isDeprecated": false,
2226
+ "name": "records",
2227
+ "path": "records",
2228
+ "requestStr": "$socketPortMetricsRecord:[SocketPortMetricsRecord] ",
2229
+ "required": false,
2230
+ "responseStr": "records:$socketPortMetricsRecord ",
2231
+ "type": {
2232
+ "definition": {
2233
+ "description": null,
2234
+ "enumValues": null,
2235
+ "fields": {
2236
+ "prevTimeFrame": {
2237
+ "args": {},
2238
+ "deprecationReason": null,
2239
+ "description": null,
2240
+ "id_str": "records___prevTimeFrame",
2241
+ "isDeprecated": false,
2242
+ "name": "prevTimeFrame",
2243
+ "path": "records.prevTimeFrame",
2244
+ "requestStr": "$prevTimeFrame:Map ",
2245
+ "required": false,
2246
+ "responseStr": "prevTimeFrame:$prevTimeFrame ",
2247
+ "type": {
2248
+ "kind": [
2249
+ "SCALAR"
2250
+ ],
2251
+ "name": "Map",
2252
+ "non_null": false
2253
+ },
2254
+ "varName": "prevTimeFrame"
2255
+ },
2256
+ "trends": {
2257
+ "args": {},
2258
+ "deprecationReason": null,
2259
+ "description": null,
2260
+ "id_str": "records___trends",
2261
+ "isDeprecated": false,
2262
+ "name": "trends",
2263
+ "path": "records.trends",
2264
+ "requestStr": "$trends:Map ",
2265
+ "required": false,
2266
+ "responseStr": "trends:$trends ",
2267
+ "type": {
2268
+ "kind": [
2269
+ "SCALAR"
2270
+ ],
2271
+ "name": "Map",
2272
+ "non_null": false
2273
+ },
2274
+ "varName": "trends"
2275
+ }
2276
+ },
2277
+ "inputFields": null,
2278
+ "interfaces": {},
2279
+ "kind": "OBJECT",
2280
+ "name": "SocketPortMetricsRecord",
2281
+ "possibleTypes": null
2282
+ },
2283
+ "indexType": "object",
2284
+ "kind": [
2285
+ "LIST",
2286
+ "NON_NULL",
2287
+ "OBJECT"
2288
+ ],
2289
+ "name": "SocketPortMetricsRecord",
2290
+ "non_null": false
2291
+ },
2292
+ "varName": "socketPortMetricsRecord"
2293
+ },
2294
+ "to": {
2295
+ "args": {},
2296
+ "deprecationReason": null,
2297
+ "description": null,
2298
+ "id_str": "to",
2299
+ "isDeprecated": false,
2300
+ "name": "to",
2301
+ "path": "to",
2302
+ "requestStr": "$to:DateTime ",
2303
+ "required": false,
2304
+ "responseStr": "to:$to ",
2305
+ "type": {
2306
+ "kind": [
2307
+ "SCALAR"
2308
+ ],
2309
+ "name": "DateTime",
2310
+ "non_null": false
2311
+ },
2312
+ "varName": "to"
2313
+ },
2314
+ "total": {
2315
+ "args": {},
2316
+ "deprecationReason": null,
2317
+ "description": null,
2318
+ "id_str": "total",
2319
+ "isDeprecated": false,
2320
+ "name": "total",
2321
+ "path": "total",
2322
+ "requestStr": "$total:Int ",
2323
+ "required": false,
2324
+ "responseStr": "total:$total ",
2325
+ "type": {
2326
+ "kind": [
2327
+ "SCALAR"
2328
+ ],
2329
+ "name": "Int",
2330
+ "non_null": false
2331
+ },
2332
+ "varName": "total"
2333
+ },
2334
+ "totals": {
2335
+ "args": {},
2336
+ "deprecationReason": null,
2337
+ "description": null,
2338
+ "id_str": "totals",
2339
+ "isDeprecated": false,
2340
+ "name": "totals",
2341
+ "path": "totals",
2342
+ "requestStr": "$totals:Map ",
2343
+ "required": false,
2344
+ "responseStr": "totals:$totals ",
2345
+ "type": {
2346
+ "kind": [
2347
+ "SCALAR"
2348
+ ],
2349
+ "name": "Map",
2350
+ "non_null": false
2351
+ },
2352
+ "varName": "totals"
2353
+ }
2354
+ },
2355
+ "inputFields": null,
2356
+ "interfaces": [],
2357
+ "kind": "OBJECT",
2358
+ "name": "SocketPortMetrics",
2359
+ "possibleTypes": null
2360
+ },
2361
+ "indexType": "object",
2362
+ "kind": [
2363
+ "OBJECT"
2364
+ ],
2365
+ "name": "SocketPortMetrics",
2366
+ "non_null": false
2367
+ },
2368
+ "variablesPayload": {
2369
+ "from": "Int",
2370
+ "limit": "Int",
2371
+ "socketPortMetricsDimension": {
2372
+ "fieldName": {
2373
+ "fieldName": "enum(SocketPortMetricsFieldName)"
2374
+ }
2375
+ },
2376
+ "socketPortMetricsFilter": {
2377
+ "fieldName": {
2378
+ "fieldName": "enum(SocketPortMetricsFieldName)"
2379
+ },
2380
+ "operator": {
2381
+ "operator": "enum(FilterOperator)"
2382
+ },
2383
+ "values": {
2384
+ "values": [
2385
+ "String"
2386
+ ]
2387
+ }
2388
+ },
2389
+ "socketPortMetricsMeasure": {
2390
+ "aggType": {
2391
+ "aggType": "enum(AggregationType)"
2392
+ },
2393
+ "fieldName": {
2394
+ "fieldName": "enum(SocketPortMetricsFieldName)"
2395
+ },
2396
+ "trend": {
2397
+ "trend": "Boolean"
2398
+ }
2399
+ },
2400
+ "socketPortMetricsSort": {
2401
+ "fieldName": {
2402
+ "fieldName": "enum(SocketPortMetricsFieldName)"
2403
+ },
2404
+ "order": {
2405
+ "order": "enum(DirectionEnum)"
2406
+ }
2407
+ },
2408
+ "timeFrame": "TimeFrame"
2409
+ }
2410
+ }