catocli 2.0.4__py3-none-any.whl → 2.1.0__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 (300) hide show
  1. catocli/Utils/clidriver.py +11 -4
  2. catocli/__init__.py +1 -1
  3. catocli/parsers/custom/export_sites/export_sites.py +20 -3
  4. catocli/parsers/custom/import_sites_to_tf/__init__.py +3 -1
  5. catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +71 -5
  6. catocli/parsers/mutation_accountManagement/__init__.py +13 -0
  7. catocli/parsers/mutation_accountManagement_disableAccount/README.md +16 -0
  8. catocli/parsers/mutation_container/__init__.py +116 -0
  9. catocli/parsers/mutation_container_fqdn/README.md +7 -0
  10. catocli/parsers/mutation_container_fqdn_addValues/README.md +17 -0
  11. catocli/parsers/mutation_container_fqdn_createFromFile/README.md +17 -0
  12. catocli/parsers/mutation_container_fqdn_removeValues/README.md +17 -0
  13. catocli/parsers/mutation_container_fqdn_updateFromFile/README.md +17 -0
  14. catocli/parsers/mutation_container_ipAddressRange/README.md +7 -0
  15. catocli/parsers/mutation_container_ipAddressRange_addValues/README.md +17 -0
  16. catocli/parsers/mutation_container_ipAddressRange_createFromFile/README.md +17 -0
  17. catocli/parsers/mutation_container_ipAddressRange_removeValues/README.md +17 -0
  18. catocli/parsers/mutation_container_ipAddressRange_updateFromFile/README.md +17 -0
  19. catocli/parsers/mutation_groups/README.md +7 -0
  20. catocli/parsers/mutation_groups/__init__.py +48 -0
  21. catocli/parsers/mutation_groups_createGroup/README.md +18 -0
  22. catocli/parsers/mutation_groups_deleteGroup/README.md +18 -0
  23. catocli/parsers/mutation_groups_updateGroup/README.md +18 -0
  24. catocli/parsers/mutation_policy_internetFirewall_addRule/README.md +1 -1
  25. catocli/parsers/mutation_policy_internetFirewall_updateRule/README.md +1 -1
  26. catocli/parsers/mutation_policy_wanFirewall_addRule/README.md +1 -1
  27. catocli/parsers/mutation_policy_wanFirewall_updateRule/README.md +1 -1
  28. catocli/parsers/mutation_site/__init__.py +104 -0
  29. catocli/parsers/mutation_site_assignSiteBwLicense/README.md +17 -0
  30. catocli/parsers/mutation_site_removeSecondaryAwsVSocket/README.md +17 -0
  31. catocli/parsers/mutation_site_removeSecondaryAzureVSocket/README.md +17 -0
  32. catocli/parsers/mutation_site_removeSiteBwLicense/README.md +17 -0
  33. catocli/parsers/mutation_site_replaceSiteBwLicense/README.md +17 -0
  34. catocli/parsers/mutation_site_updateSecondaryAwsVSocket/README.md +17 -0
  35. catocli/parsers/mutation_site_updateSecondaryAzureVSocket/README.md +17 -0
  36. catocli/parsers/mutation_site_updateSiteBwLicense/README.md +17 -0
  37. catocli/parsers/mutation_site_updateSiteGeneralDetails/README.md +1 -1
  38. catocli/parsers/mutation_sites/__init__.py +104 -0
  39. catocli/parsers/mutation_sites_assignSiteBwLicense/README.md +17 -0
  40. catocli/parsers/mutation_sites_removeSecondaryAwsVSocket/README.md +17 -0
  41. catocli/parsers/mutation_sites_removeSecondaryAzureVSocket/README.md +17 -0
  42. catocli/parsers/mutation_sites_removeSiteBwLicense/README.md +17 -0
  43. catocli/parsers/mutation_sites_replaceSiteBwLicense/README.md +17 -0
  44. catocli/parsers/mutation_sites_updateSecondaryAwsVSocket/README.md +17 -0
  45. catocli/parsers/mutation_sites_updateSecondaryAzureVSocket/README.md +17 -0
  46. catocli/parsers/mutation_sites_updateSiteBwLicense/README.md +17 -0
  47. catocli/parsers/mutation_sites_updateSiteGeneralDetails/README.md +1 -1
  48. catocli/parsers/parserApiClient.py +42 -19
  49. catocli/parsers/query_eventsFeed/README.md +1 -1
  50. catocli/parsers/query_groups/README.md +7 -0
  51. catocli/parsers/query_groups/__init__.py +54 -0
  52. catocli/parsers/query_groups_group/README.md +7 -0
  53. catocli/parsers/query_groups_groupList/README.md +18 -0
  54. catocli/parsers/query_groups_group_members/README.md +18 -0
  55. catocli/parsers/query_groups_whereUsed/README.md +17 -0
  56. catocli/parsers/query_policy/README.md +0 -17
  57. catocli/parsers/query_policy/__init__.py +153 -8
  58. catocli/parsers/query_policy_appTenantRestriction/README.md +7 -0
  59. catocli/parsers/query_policy_appTenantRestriction_policy/README.md +17 -0
  60. catocli/parsers/query_policy_dynamicIpAllocation/README.md +7 -0
  61. catocli/parsers/query_policy_dynamicIpAllocation_policy/README.md +17 -0
  62. catocli/parsers/query_policy_internetFirewall/README.md +7 -0
  63. catocli/parsers/query_policy_internetFirewall_policy/README.md +17 -0
  64. catocli/parsers/query_policy_remotePortFwd/README.md +7 -0
  65. catocli/parsers/query_policy_remotePortFwd_policy/README.md +17 -0
  66. catocli/parsers/query_policy_socketLan/README.md +7 -0
  67. catocli/parsers/query_policy_socketLan_policy/README.md +17 -0
  68. catocli/parsers/query_policy_terminalServer/README.md +7 -0
  69. catocli/parsers/query_policy_terminalServer_policy/README.md +17 -0
  70. catocli/parsers/query_policy_wanFirewall/README.md +7 -0
  71. catocli/parsers/query_policy_wanFirewall_policy/README.md +17 -0
  72. catocli/parsers/query_policy_wanNetwork/README.md +7 -0
  73. catocli/parsers/query_policy_wanNetwork_policy/README.md +17 -0
  74. catocli/parsers/query_popLocations/README.md +17 -0
  75. catocli/parsers/query_popLocations/__init__.py +16 -0
  76. catocli/parsers/query_site/README.md +0 -16
  77. catocli/parsers/query_site/__init__.py +118 -8
  78. catocli/parsers/query_site_availableVersionList/README.md +17 -0
  79. catocli/parsers/query_site_bgpPeer/README.md +17 -0
  80. catocli/parsers/query_site_bgpPeerList/README.md +17 -0
  81. catocli/parsers/query_site_cloudInterconnectConnectionConnectivity/README.md +17 -0
  82. catocli/parsers/query_site_cloudInterconnectPhysicalConnection/README.md +17 -0
  83. catocli/parsers/query_site_cloudInterconnectPhysicalConnectionId/README.md +17 -0
  84. catocli/parsers/query_site_secondaryAwsVSocket/README.md +17 -0
  85. catocli/parsers/query_site_secondaryAzureVSocket/README.md +17 -0
  86. catocli/parsers/query_site_siteBgpStatus/README.md +17 -0
  87. catocli/parsers/query_socketPortMetrics/README.md +23 -0
  88. catocli/parsers/query_socketPortMetrics/__init__.py +16 -0
  89. catocli/parsers/query_socketPortMetricsTimeSeries/README.md +24 -0
  90. catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py +16 -0
  91. catocli/parsers/raw/README.md +0 -14
  92. catocli/parsers/raw/__init__.py +0 -2
  93. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/METADATA +3 -2
  94. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/RECORD +300 -178
  95. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/WHEEL +1 -1
  96. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/top_level.txt +0 -1
  97. graphql_client/api/call_api.py +4 -3
  98. models/mutation.accountManagement.addAccount.json +97 -0
  99. models/mutation.accountManagement.disableAccount.json +545 -0
  100. models/mutation.accountManagement.removeAccount.json +102 -3
  101. models/mutation.accountManagement.updateAccount.json +97 -0
  102. models/mutation.admin.addAdmin.json +6 -9
  103. models/mutation.container.delete.json +2 -2
  104. models/mutation.container.fqdn.addValues.json +866 -0
  105. models/mutation.container.fqdn.createFromFile.json +819 -0
  106. models/mutation.container.fqdn.removeValues.json +866 -0
  107. models/mutation.container.fqdn.updateFromFile.json +1045 -0
  108. models/mutation.container.ipAddressRange.addValues.json +1020 -0
  109. models/mutation.container.ipAddressRange.createFromFile.json +819 -0
  110. models/mutation.container.ipAddressRange.removeValues.json +1020 -0
  111. models/mutation.container.ipAddressRange.updateFromFile.json +1045 -0
  112. models/mutation.groups.createGroup.json +3178 -0
  113. models/mutation.groups.deleteGroup.json +2758 -0
  114. models/mutation.groups.updateGroup.json +4429 -0
  115. models/mutation.hardware.updateHardwareShipping.json +30 -10
  116. models/mutation.policy.appTenantRestriction.addRule.json +25 -25
  117. models/mutation.policy.appTenantRestriction.addSection.json +3 -3
  118. models/mutation.policy.appTenantRestriction.createPolicyRevision.json +31 -31
  119. models/mutation.policy.appTenantRestriction.discardPolicyRevision.json +31 -31
  120. models/mutation.policy.appTenantRestriction.moveRule.json +25 -25
  121. models/mutation.policy.appTenantRestriction.moveSection.json +3 -3
  122. models/mutation.policy.appTenantRestriction.publishPolicyRevision.json +31 -31
  123. models/mutation.policy.appTenantRestriction.removeRule.json +25 -25
  124. models/mutation.policy.appTenantRestriction.removeSection.json +3 -3
  125. models/mutation.policy.appTenantRestriction.updatePolicy.json +31 -31
  126. models/mutation.policy.appTenantRestriction.updateRule.json +25 -25
  127. models/mutation.policy.appTenantRestriction.updateSection.json +3 -3
  128. models/mutation.policy.dynamicIpAllocation.addRule.json +11 -11
  129. models/mutation.policy.dynamicIpAllocation.addSection.json +3 -3
  130. models/mutation.policy.dynamicIpAllocation.createPolicyRevision.json +17 -17
  131. models/mutation.policy.dynamicIpAllocation.discardPolicyRevision.json +17 -17
  132. models/mutation.policy.dynamicIpAllocation.moveRule.json +11 -11
  133. models/mutation.policy.dynamicIpAllocation.moveSection.json +3 -3
  134. models/mutation.policy.dynamicIpAllocation.publishPolicyRevision.json +17 -17
  135. models/mutation.policy.dynamicIpAllocation.removeRule.json +11 -11
  136. models/mutation.policy.dynamicIpAllocation.removeSection.json +3 -3
  137. models/mutation.policy.dynamicIpAllocation.updatePolicy.json +17 -17
  138. models/mutation.policy.dynamicIpAllocation.updateRule.json +11 -11
  139. models/mutation.policy.dynamicIpAllocation.updateSection.json +3 -3
  140. models/mutation.policy.internetFirewall.addRule.json +532 -85
  141. models/mutation.policy.internetFirewall.addSection.json +3 -3
  142. models/mutation.policy.internetFirewall.createPolicyRevision.json +208 -91
  143. models/mutation.policy.internetFirewall.discardPolicyRevision.json +208 -91
  144. models/mutation.policy.internetFirewall.moveRule.json +202 -85
  145. models/mutation.policy.internetFirewall.moveSection.json +3 -3
  146. models/mutation.policy.internetFirewall.publishPolicyRevision.json +208 -91
  147. models/mutation.policy.internetFirewall.removeRule.json +202 -85
  148. models/mutation.policy.internetFirewall.removeSection.json +3 -3
  149. models/mutation.policy.internetFirewall.updatePolicy.json +208 -91
  150. models/mutation.policy.internetFirewall.updateRule.json +523 -85
  151. models/mutation.policy.internetFirewall.updateSection.json +3 -3
  152. models/mutation.policy.remotePortFwd.addRule.json +16 -16
  153. models/mutation.policy.remotePortFwd.addSection.json +3 -3
  154. models/mutation.policy.remotePortFwd.createPolicyRevision.json +22 -22
  155. models/mutation.policy.remotePortFwd.discardPolicyRevision.json +22 -22
  156. models/mutation.policy.remotePortFwd.moveRule.json +16 -16
  157. models/mutation.policy.remotePortFwd.moveSection.json +3 -3
  158. models/mutation.policy.remotePortFwd.publishPolicyRevision.json +22 -22
  159. models/mutation.policy.remotePortFwd.removeRule.json +16 -16
  160. models/mutation.policy.remotePortFwd.removeSection.json +3 -3
  161. models/mutation.policy.remotePortFwd.updatePolicy.json +22 -22
  162. models/mutation.policy.remotePortFwd.updateRule.json +16 -16
  163. models/mutation.policy.remotePortFwd.updateSection.json +3 -3
  164. models/mutation.policy.socketLan.addRule.json +81 -81
  165. models/mutation.policy.socketLan.addSection.json +3 -3
  166. models/mutation.policy.socketLan.createPolicyRevision.json +87 -87
  167. models/mutation.policy.socketLan.discardPolicyRevision.json +87 -87
  168. models/mutation.policy.socketLan.moveRule.json +81 -81
  169. models/mutation.policy.socketLan.moveSection.json +3 -3
  170. models/mutation.policy.socketLan.publishPolicyRevision.json +87 -87
  171. models/mutation.policy.socketLan.removeRule.json +81 -81
  172. models/mutation.policy.socketLan.removeSection.json +3 -3
  173. models/mutation.policy.socketLan.updatePolicy.json +87 -87
  174. models/mutation.policy.socketLan.updateRule.json +81 -81
  175. models/mutation.policy.socketLan.updateSection.json +3 -3
  176. models/mutation.policy.terminalServer.addRule.json +6 -6
  177. models/mutation.policy.terminalServer.addSection.json +3 -3
  178. models/mutation.policy.terminalServer.createPolicyRevision.json +12 -12
  179. models/mutation.policy.terminalServer.discardPolicyRevision.json +12 -12
  180. models/mutation.policy.terminalServer.moveRule.json +6 -6
  181. models/mutation.policy.terminalServer.moveSection.json +3 -3
  182. models/mutation.policy.terminalServer.publishPolicyRevision.json +12 -12
  183. models/mutation.policy.terminalServer.removeRule.json +6 -6
  184. models/mutation.policy.terminalServer.removeSection.json +3 -3
  185. models/mutation.policy.terminalServer.updatePolicy.json +12 -12
  186. models/mutation.policy.terminalServer.updateRule.json +6 -6
  187. models/mutation.policy.terminalServer.updateSection.json +3 -3
  188. models/mutation.policy.wanFirewall.addRule.json +550 -103
  189. models/mutation.policy.wanFirewall.addSection.json +3 -3
  190. models/mutation.policy.wanFirewall.createPolicyRevision.json +226 -109
  191. models/mutation.policy.wanFirewall.discardPolicyRevision.json +226 -109
  192. models/mutation.policy.wanFirewall.moveRule.json +220 -103
  193. models/mutation.policy.wanFirewall.moveSection.json +3 -3
  194. models/mutation.policy.wanFirewall.publishPolicyRevision.json +226 -109
  195. models/mutation.policy.wanFirewall.removeRule.json +220 -103
  196. models/mutation.policy.wanFirewall.removeSection.json +3 -3
  197. models/mutation.policy.wanFirewall.updatePolicy.json +226 -109
  198. models/mutation.policy.wanFirewall.updateRule.json +541 -103
  199. models/mutation.policy.wanFirewall.updateSection.json +3 -3
  200. models/mutation.policy.wanNetwork.addRule.json +90 -90
  201. models/mutation.policy.wanNetwork.addSection.json +3 -3
  202. models/mutation.policy.wanNetwork.createPolicyRevision.json +96 -96
  203. models/mutation.policy.wanNetwork.discardPolicyRevision.json +96 -96
  204. models/mutation.policy.wanNetwork.moveRule.json +90 -90
  205. models/mutation.policy.wanNetwork.moveSection.json +3 -3
  206. models/mutation.policy.wanNetwork.publishPolicyRevision.json +96 -96
  207. models/mutation.policy.wanNetwork.removeRule.json +90 -90
  208. models/mutation.policy.wanNetwork.removeSection.json +3 -3
  209. models/mutation.policy.wanNetwork.updatePolicy.json +96 -96
  210. models/mutation.policy.wanNetwork.updateRule.json +90 -90
  211. models/mutation.policy.wanNetwork.updateSection.json +3 -3
  212. models/mutation.site.addBgpPeer.json +10 -10
  213. models/mutation.site.addIpsecIkeV2SiteTunnels.json +2 -2
  214. models/mutation.site.addSocketAddOnCard.json +2 -2
  215. models/mutation.site.assignSiteBwLicense.json +12879 -0
  216. models/mutation.site.removeBgpPeer.json +10 -10
  217. models/mutation.site.removeIpsecIkeV2SiteTunnels.json +2 -2
  218. models/mutation.site.removeSecondaryAwsVSocket.json +375 -0
  219. models/mutation.site.removeSecondaryAzureVSocket.json +354 -0
  220. models/mutation.site.removeSiteBwLicense.json +12822 -0
  221. models/mutation.site.removeSocketAddOnCard.json +2 -2
  222. models/mutation.site.replaceSiteBwLicense.json +12939 -0
  223. models/mutation.site.startSiteUpgrade.json +36 -15
  224. models/mutation.site.updateBgpPeer.json +10 -10
  225. models/mutation.site.updateIpsecIkeV2SiteTunnels.json +2 -2
  226. models/mutation.site.updateSecondaryAwsVSocket.json +643 -0
  227. models/mutation.site.updateSecondaryAzureVSocket.json +565 -0
  228. models/mutation.site.updateSiteBwLicense.json +12882 -0
  229. models/mutation.site.updateSiteGeneralDetails.json +724 -1
  230. models/mutation.sites.addBgpPeer.json +10 -10
  231. models/mutation.sites.addIpsecIkeV2SiteTunnels.json +2 -2
  232. models/mutation.sites.addSocketAddOnCard.json +2 -2
  233. models/mutation.sites.assignSiteBwLicense.json +12879 -0
  234. models/mutation.sites.removeBgpPeer.json +10 -10
  235. models/mutation.sites.removeIpsecIkeV2SiteTunnels.json +2 -2
  236. models/mutation.sites.removeSecondaryAwsVSocket.json +375 -0
  237. models/mutation.sites.removeSecondaryAzureVSocket.json +354 -0
  238. models/mutation.sites.removeSiteBwLicense.json +12822 -0
  239. models/mutation.sites.removeSocketAddOnCard.json +2 -2
  240. models/mutation.sites.replaceSiteBwLicense.json +12939 -0
  241. models/mutation.sites.startSiteUpgrade.json +36 -15
  242. models/mutation.sites.updateBgpPeer.json +10 -10
  243. models/mutation.sites.updateIpsecIkeV2SiteTunnels.json +2 -2
  244. models/mutation.sites.updateSecondaryAwsVSocket.json +643 -0
  245. models/mutation.sites.updateSecondaryAzureVSocket.json +565 -0
  246. models/mutation.sites.updateSiteBwLicense.json +12882 -0
  247. models/mutation.sites.updateSiteGeneralDetails.json +724 -1
  248. models/mutation.xdr.addStoryComment.json +1 -1
  249. models/mutation.xdr.analystFeedback.json +84 -84
  250. models/mutation.xdr.deleteStoryComment.json +1 -1
  251. models/query.accountManagement.json +97 -0
  252. models/query.accountMetrics.json +45 -45
  253. models/query.accountSnapshot.json +30 -30
  254. models/query.admin.json +6 -6
  255. models/query.admins.json +13 -13
  256. models/query.appStats.json +915 -867
  257. models/query.appStatsTimeSeries.json +692 -656
  258. models/query.auditFeed.json +6 -6
  259. models/query.catalogs.json +52 -52
  260. models/query.container.json +16 -16
  261. models/query.devices.json +20 -93
  262. models/query.entityLookup.json +2 -2
  263. models/query.events.json +288 -384
  264. models/query.eventsFeed.json +73 -97
  265. models/query.eventsTimeSeries.json +219 -291
  266. models/query.groups.group.members.json +3058 -0
  267. models/query.groups.groupList.json +6474 -0
  268. models/query.groups.whereUsed.json +697 -0
  269. models/query.hardware.json +27 -7
  270. models/query.hardwareManagement.json +8 -8
  271. models/query.licensing.json +3487 -1324
  272. models/query.policy.appTenantRestriction.policy.json +3086 -0
  273. models/query.policy.dynamicIpAllocation.policy.json +1934 -0
  274. models/query.policy.internetFirewall.policy.json +7833 -0
  275. models/query.policy.json +233 -0
  276. models/query.policy.remotePortFwd.policy.json +2387 -0
  277. models/query.policy.socketLan.policy.json +7140 -0
  278. models/query.policy.terminalServer.policy.json +1632 -0
  279. models/query.policy.wanFirewall.policy.json +9212 -0
  280. models/query.policy.wanNetwork.policy.json +8010 -0
  281. models/query.popLocations.json +2878 -0
  282. models/query.sandbox.json +5 -5
  283. models/query.site.availableVersionList.json +365 -0
  284. models/query.site.bgpPeer.json +1917 -0
  285. models/query.site.bgpPeerList.json +2076 -0
  286. models/query.site.cloudInterconnectConnectionConnectivity.json +298 -0
  287. models/query.site.cloudInterconnectPhysicalConnection.json +728 -0
  288. models/query.site.cloudInterconnectPhysicalConnectionId.json +660 -0
  289. models/query.site.secondaryAwsVSocket.json +340 -0
  290. models/query.site.secondaryAzureVSocket.json +319 -0
  291. models/query.site.siteBgpStatus.json +869 -0
  292. models/query.socketPortMetrics.json +2410 -0
  293. models/query.socketPortMetricsTimeSeries.json +2361 -0
  294. models/query.xdr.stories.json +104 -104
  295. models/query.xdr.story.json +93 -93
  296. schema/catolib.py +34 -18
  297. schema/remove_policyid.py +89 -0
  298. schema/remove_policyid_mutations.py +89 -0
  299. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/entry_points.txt +0 -0
  300. {catocli-2.0.4.dist-info → catocli-2.1.0.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
+ }