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
@@ -49,8 +49,14 @@
49
49
  "enumValues": [
50
50
  {
51
51
  "deprecationReason": null,
52
- "description": "The application identifier",
52
+ "description": "Active Directory name",
53
53
  "isDeprecated": false,
54
+ "name": "ad_name"
55
+ },
56
+ {
57
+ "deprecationReason": "use application_id instead",
58
+ "description": "The application identifier",
59
+ "isDeprecated": true,
54
60
  "name": "app"
55
61
  },
56
62
  {
@@ -61,8 +67,14 @@
61
67
  },
62
68
  {
63
69
  "deprecationReason": null,
64
- "description": "The application name",
70
+ "description": "Application description",
65
71
  "isDeprecated": false,
72
+ "name": "application_description"
73
+ },
74
+ {
75
+ "deprecationReason": "use application_name instead",
76
+ "description": "The application name",
77
+ "isDeprecated": true,
66
78
  "name": "application"
67
79
  },
68
80
  {
@@ -73,105 +85,105 @@
73
85
  },
74
86
  {
75
87
  "deprecationReason": null,
76
- "description": "new cloud application identifier",
88
+ "description": "",
77
89
  "isDeprecated": false,
78
- "name": "new_app"
90
+ "name": "application_risk_level"
79
91
  },
80
92
  {
81
93
  "deprecationReason": null,
82
- "description": "",
94
+ "description": "The application risk score assigned by Cato",
83
95
  "isDeprecated": false,
84
- "name": "discovered_app"
96
+ "name": "application_risk_score"
85
97
  },
86
98
  {
87
99
  "deprecationReason": null,
88
- "description": "the total sum of upstream and downstream data in bytes",
100
+ "description": "Cato system categories of the application",
89
101
  "isDeprecated": false,
90
- "name": "traffic"
102
+ "name": "categories"
91
103
  },
92
104
  {
93
- "deprecationReason": null,
94
- "description": "data uploaded to cloud applications",
95
- "isDeprecated": false,
96
- "name": "upstream"
105
+ "deprecationReason": "use categories instead",
106
+ "description": "Cato system category of the application",
107
+ "isDeprecated": true,
108
+ "name": "category"
97
109
  },
98
110
  {
99
111
  "deprecationReason": null,
100
- "description": "data downloaded from cloud applications",
112
+ "description": "For hosts configured with a static IP in the Cato Management Application, the host name",
101
113
  "isDeprecated": false,
102
- "name": "downstream"
114
+ "name": "configured_host_name"
103
115
  },
104
116
  {
105
- "deprecationReason": null,
106
- "description": "the application risk score assigned by Cato",
107
- "isDeprecated": false,
108
- "name": "risk_score"
117
+ "deprecationReason": "use application_description instead",
118
+ "description": "Application description",
119
+ "isDeprecated": true,
120
+ "name": "description"
109
121
  },
110
122
  {
111
123
  "deprecationReason": null,
112
- "description": "The application risk score assigned by Cato",
124
+ "description": "IP for destination host or Cato Client",
113
125
  "isDeprecated": false,
114
- "name": "application_risk_score"
126
+ "name": "dest_ip"
115
127
  },
116
128
  {
117
129
  "deprecationReason": null,
118
- "description": "",
130
+ "description": "Destination is site or remote user",
119
131
  "isDeprecated": false,
120
- "name": "risk_level"
132
+ "name": "dest_is_site_or_vpn"
121
133
  },
122
134
  {
123
135
  "deprecationReason": null,
124
- "description": "",
136
+ "description": "Destination site or remote user identifier",
125
137
  "isDeprecated": false,
126
- "name": "application_risk_level"
138
+ "name": "dest_site"
127
139
  },
128
140
  {
129
141
  "deprecationReason": null,
130
- "description": "Is the application defined as sanctioned?",
142
+ "description": "Destination Site or remote user identifier",
131
143
  "isDeprecated": false,
132
- "name": "sanctioned"
144
+ "name": "dest_site_id"
133
145
  },
134
146
  {
135
147
  "deprecationReason": null,
136
- "description": "Is the application defined as sanctioned?",
148
+ "description": "Destination Site or remote user name",
137
149
  "isDeprecated": false,
138
- "name": "is_sanctioned_app"
150
+ "name": "dest_site_name"
139
151
  },
140
152
  {
141
153
  "deprecationReason": null,
142
- "description": "the country in which the registered application headquarteres is located",
154
+ "description": "Name for device related to the traffic",
143
155
  "isDeprecated": false,
144
- "name": "hq_location"
156
+ "name": "device_name"
145
157
  },
146
158
  {
147
159
  "deprecationReason": null,
148
- "description": "indicates whether the application is considered cloud app/SaaS app",
160
+ "description": "",
149
161
  "isDeprecated": false,
150
- "name": "is_cloud_app"
162
+ "name": "discovered_app"
151
163
  },
152
164
  {
153
- "deprecationReason": null,
154
- "description": "Cato system category of the application",
155
- "isDeprecated": false,
156
- "name": "category"
165
+ "deprecationReason": "user tld instead",
166
+ "description": "",
167
+ "isDeprecated": true,
168
+ "name": "domain"
157
169
  },
158
170
  {
159
171
  "deprecationReason": null,
160
- "description": "Cato system categories of the application",
172
+ "description": "data downloaded from cloud applications",
161
173
  "isDeprecated": false,
162
- "name": "categories"
174
+ "name": "downstream"
163
175
  },
164
176
  {
165
177
  "deprecationReason": null,
166
- "description": "Application description",
178
+ "description": "",
167
179
  "isDeprecated": false,
168
- "name": "description"
180
+ "name": "flows_created"
169
181
  },
170
182
  {
171
183
  "deprecationReason": null,
172
- "description": "Application description",
184
+ "description": "the country in which the registered application headquarteres is located",
173
185
  "isDeprecated": false,
174
- "name": "application_description"
186
+ "name": "hq_location"
175
187
  },
176
188
  {
177
189
  "deprecationReason": null,
@@ -181,63 +193,69 @@
181
193
  },
182
194
  {
183
195
  "deprecationReason": null,
184
- "description": "Name of subnet as defined in Cato Management Application",
196
+ "description": "indicates whether the application is considered cloud app/SaaS app",
185
197
  "isDeprecated": false,
186
- "name": "subnet"
198
+ "name": "is_cloud_app"
187
199
  },
188
200
  {
189
201
  "deprecationReason": null,
190
- "description": "Name of subnet as defined in Cato Management Application",
202
+ "description": "Is the application defined as sanctioned?",
191
203
  "isDeprecated": false,
192
- "name": "subnet_name"
204
+ "name": "is_sanctioned_app"
193
205
  },
194
206
  {
195
207
  "deprecationReason": null,
196
- "description": "",
208
+ "description": "new cloud application identifier",
197
209
  "isDeprecated": false,
198
- "name": "domain"
210
+ "name": "new_app"
199
211
  },
200
212
  {
201
- "deprecationReason": null,
202
- "description": "IP for destination host or Cato Client",
203
- "isDeprecated": false,
204
- "name": "dest_ip"
213
+ "deprecationReason": "use application_risk_level instead",
214
+ "description": "",
215
+ "isDeprecated": true,
216
+ "name": "risk_level"
205
217
  },
206
218
  {
207
- "deprecationReason": null,
208
- "description": "Top level domain",
209
- "isDeprecated": false,
210
- "name": "tld"
219
+ "deprecationReason": "use application_risk_score instead",
220
+ "description": "the application risk score assigned by Cato",
221
+ "isDeprecated": true,
222
+ "name": "risk_score"
223
+ },
224
+ {
225
+ "deprecationReason": "use is_sanctioned_app instead",
226
+ "description": "Is the application defined as sanctioned?",
227
+ "isDeprecated": true,
228
+ "name": "sanctioned"
211
229
  },
212
230
  {
213
231
  "deprecationReason": null,
214
- "description": "User identifier",
232
+ "description": "Country in which the source host is located",
215
233
  "isDeprecated": false,
216
- "name": "user_id"
234
+ "name": "site_country"
217
235
  },
218
236
  {
219
237
  "deprecationReason": null,
220
- "description": "User name",
238
+ "description": "State in which the source host is located",
221
239
  "isDeprecated": false,
222
- "name": "user_name"
240
+ "name": "site_state"
223
241
  },
224
242
  {
225
243
  "deprecationReason": null,
226
- "description": "Source site or remote user identifier",
244
+ "description": "Name for Socket interface",
227
245
  "isDeprecated": false,
228
- "name": "src_site_id"
246
+ "name": "socket_interface"
229
247
  },
230
248
  {
231
249
  "deprecationReason": null,
232
- "description": "Source site or remote user name",
250
+ "description": "IP for source host or Cato Client",
233
251
  "isDeprecated": false,
234
- "name": "src_site_name"
252
+ "name": "src_ip"
235
253
  },
236
254
  {
237
255
  "deprecationReason": null,
238
- "description": "Country in which the source host is located",
256
+ "description": "Source is site or remote user",
239
257
  "isDeprecated": false,
240
- "name": "site_country"
258
+ "name": "src_is_site_or_vpn"
241
259
  },
242
260
  {
243
261
  "deprecationReason": null,
@@ -247,51 +265,45 @@
247
265
  },
248
266
  {
249
267
  "deprecationReason": null,
250
- "description": "State in which the source host is located",
268
+ "description": "Source site or remote user identifier",
251
269
  "isDeprecated": false,
252
- "name": "site_state"
270
+ "name": "src_site_id"
253
271
  },
254
272
  {
255
273
  "deprecationReason": null,
256
- "description": "Site state code",
274
+ "description": "Source site or remote user name",
257
275
  "isDeprecated": false,
258
- "name": "src_site_state"
259
- },
260
- {
261
- "deprecationReason": "use user_id instead",
262
- "description": "",
263
- "isDeprecated": true,
264
- "name": "vpn_user_id"
276
+ "name": "src_site_name"
265
277
  },
266
278
  {
267
279
  "deprecationReason": null,
268
- "description": "",
280
+ "description": "Site state code",
269
281
  "isDeprecated": false,
270
- "name": "flows_created"
282
+ "name": "src_site_state"
271
283
  },
272
284
  {
273
- "deprecationReason": null,
274
- "description": "Destination site or remote user identifier",
275
- "isDeprecated": false,
276
- "name": "dest_site"
285
+ "deprecationReason": "use subnet_name instead",
286
+ "description": "Name of subnet as defined in Cato Management Application",
287
+ "isDeprecated": true,
288
+ "name": "subnet"
277
289
  },
278
290
  {
279
291
  "deprecationReason": null,
280
- "description": "Destination is site or remote user",
292
+ "description": "Name of subnet as defined in Cato Management Application",
281
293
  "isDeprecated": false,
282
- "name": "dest_is_site_or_vpn"
294
+ "name": "subnet_name"
283
295
  },
284
296
  {
285
297
  "deprecationReason": null,
286
- "description": "Destination Site or remote user identifier",
298
+ "description": "Top level domain",
287
299
  "isDeprecated": false,
288
- "name": "dest_site_id"
300
+ "name": "tld"
289
301
  },
290
302
  {
291
- "deprecationReason": null,
292
- "description": "Destination Site or remote user name",
293
- "isDeprecated": false,
294
- "name": "dest_site_name"
303
+ "deprecationReason": "use traffic_direction instead",
304
+ "description": "the total sum of upstream and downstream data in bytes",
305
+ "isDeprecated": true,
306
+ "name": "traffic"
295
307
  },
296
308
  {
297
309
  "deprecationReason": null,
@@ -301,33 +313,27 @@
301
313
  },
302
314
  {
303
315
  "deprecationReason": null,
304
- "description": "Name for device related to the traffic",
305
- "isDeprecated": false,
306
- "name": "device_name"
307
- },
308
- {
309
- "deprecationReason": null,
310
- "description": "Active Directory name",
316
+ "description": "data uploaded to cloud applications",
311
317
  "isDeprecated": false,
312
- "name": "ad_name"
318
+ "name": "upstream"
313
319
  },
314
320
  {
315
321
  "deprecationReason": null,
316
- "description": "IP for source host or Cato Client",
322
+ "description": "User identifier",
317
323
  "isDeprecated": false,
318
- "name": "src_ip"
324
+ "name": "user_id"
319
325
  },
320
326
  {
321
327
  "deprecationReason": null,
322
- "description": "Name for Socket interface",
328
+ "description": "User name",
323
329
  "isDeprecated": false,
324
- "name": "socket_interface"
330
+ "name": "user_name"
325
331
  },
326
332
  {
327
- "deprecationReason": null,
328
- "description": "Source is site or remote user",
329
- "isDeprecated": false,
330
- "name": "src_is_site_or_vpn"
333
+ "deprecationReason": "use user_id instead",
334
+ "description": "",
335
+ "isDeprecated": true,
336
+ "name": "vpn_user_id"
331
337
  }
332
338
  ],
333
339
  "fields": null,
@@ -393,8 +399,14 @@
393
399
  "enumValues": [
394
400
  {
395
401
  "deprecationReason": null,
396
- "description": "The application identifier",
402
+ "description": "Active Directory name",
397
403
  "isDeprecated": false,
404
+ "name": "ad_name"
405
+ },
406
+ {
407
+ "deprecationReason": "use application_id instead",
408
+ "description": "The application identifier",
409
+ "isDeprecated": true,
398
410
  "name": "app"
399
411
  },
400
412
  {
@@ -405,8 +417,14 @@
405
417
  },
406
418
  {
407
419
  "deprecationReason": null,
408
- "description": "The application name",
420
+ "description": "Application description",
409
421
  "isDeprecated": false,
422
+ "name": "application_description"
423
+ },
424
+ {
425
+ "deprecationReason": "use application_name instead",
426
+ "description": "The application name",
427
+ "isDeprecated": true,
410
428
  "name": "application"
411
429
  },
412
430
  {
@@ -417,105 +435,105 @@
417
435
  },
418
436
  {
419
437
  "deprecationReason": null,
420
- "description": "new cloud application identifier",
438
+ "description": "",
421
439
  "isDeprecated": false,
422
- "name": "new_app"
440
+ "name": "application_risk_level"
423
441
  },
424
442
  {
425
443
  "deprecationReason": null,
426
- "description": "",
444
+ "description": "The application risk score assigned by Cato",
427
445
  "isDeprecated": false,
428
- "name": "discovered_app"
446
+ "name": "application_risk_score"
429
447
  },
430
448
  {
431
449
  "deprecationReason": null,
432
- "description": "the total sum of upstream and downstream data in bytes",
450
+ "description": "Cato system categories of the application",
433
451
  "isDeprecated": false,
434
- "name": "traffic"
452
+ "name": "categories"
435
453
  },
436
454
  {
437
- "deprecationReason": null,
438
- "description": "data uploaded to cloud applications",
439
- "isDeprecated": false,
440
- "name": "upstream"
455
+ "deprecationReason": "use categories instead",
456
+ "description": "Cato system category of the application",
457
+ "isDeprecated": true,
458
+ "name": "category"
441
459
  },
442
460
  {
443
461
  "deprecationReason": null,
444
- "description": "data downloaded from cloud applications",
462
+ "description": "For hosts configured with a static IP in the Cato Management Application, the host name",
445
463
  "isDeprecated": false,
446
- "name": "downstream"
464
+ "name": "configured_host_name"
447
465
  },
448
466
  {
449
- "deprecationReason": null,
450
- "description": "the application risk score assigned by Cato",
451
- "isDeprecated": false,
452
- "name": "risk_score"
467
+ "deprecationReason": "use application_description instead",
468
+ "description": "Application description",
469
+ "isDeprecated": true,
470
+ "name": "description"
453
471
  },
454
472
  {
455
473
  "deprecationReason": null,
456
- "description": "The application risk score assigned by Cato",
474
+ "description": "IP for destination host or Cato Client",
457
475
  "isDeprecated": false,
458
- "name": "application_risk_score"
476
+ "name": "dest_ip"
459
477
  },
460
478
  {
461
479
  "deprecationReason": null,
462
- "description": "",
480
+ "description": "Destination is site or remote user",
463
481
  "isDeprecated": false,
464
- "name": "risk_level"
482
+ "name": "dest_is_site_or_vpn"
465
483
  },
466
484
  {
467
485
  "deprecationReason": null,
468
- "description": "",
486
+ "description": "Destination site or remote user identifier",
469
487
  "isDeprecated": false,
470
- "name": "application_risk_level"
488
+ "name": "dest_site"
471
489
  },
472
490
  {
473
491
  "deprecationReason": null,
474
- "description": "Is the application defined as sanctioned?",
492
+ "description": "Destination Site or remote user identifier",
475
493
  "isDeprecated": false,
476
- "name": "sanctioned"
494
+ "name": "dest_site_id"
477
495
  },
478
496
  {
479
497
  "deprecationReason": null,
480
- "description": "Is the application defined as sanctioned?",
498
+ "description": "Destination Site or remote user name",
481
499
  "isDeprecated": false,
482
- "name": "is_sanctioned_app"
500
+ "name": "dest_site_name"
483
501
  },
484
502
  {
485
503
  "deprecationReason": null,
486
- "description": "the country in which the registered application headquarteres is located",
504
+ "description": "Name for device related to the traffic",
487
505
  "isDeprecated": false,
488
- "name": "hq_location"
506
+ "name": "device_name"
489
507
  },
490
508
  {
491
509
  "deprecationReason": null,
492
- "description": "indicates whether the application is considered cloud app/SaaS app",
510
+ "description": "",
493
511
  "isDeprecated": false,
494
- "name": "is_cloud_app"
512
+ "name": "discovered_app"
495
513
  },
496
514
  {
497
- "deprecationReason": null,
498
- "description": "Cato system category of the application",
499
- "isDeprecated": false,
500
- "name": "category"
515
+ "deprecationReason": "user tld instead",
516
+ "description": "",
517
+ "isDeprecated": true,
518
+ "name": "domain"
501
519
  },
502
520
  {
503
521
  "deprecationReason": null,
504
- "description": "Cato system categories of the application",
522
+ "description": "data downloaded from cloud applications",
505
523
  "isDeprecated": false,
506
- "name": "categories"
524
+ "name": "downstream"
507
525
  },
508
526
  {
509
527
  "deprecationReason": null,
510
- "description": "Application description",
528
+ "description": "",
511
529
  "isDeprecated": false,
512
- "name": "description"
530
+ "name": "flows_created"
513
531
  },
514
532
  {
515
533
  "deprecationReason": null,
516
- "description": "Application description",
534
+ "description": "the country in which the registered application headquarteres is located",
517
535
  "isDeprecated": false,
518
- "name": "application_description"
536
+ "name": "hq_location"
519
537
  },
520
538
  {
521
539
  "deprecationReason": null,
@@ -525,63 +543,69 @@
525
543
  },
526
544
  {
527
545
  "deprecationReason": null,
528
- "description": "Name of subnet as defined in Cato Management Application",
546
+ "description": "indicates whether the application is considered cloud app/SaaS app",
529
547
  "isDeprecated": false,
530
- "name": "subnet"
548
+ "name": "is_cloud_app"
531
549
  },
532
550
  {
533
551
  "deprecationReason": null,
534
- "description": "Name of subnet as defined in Cato Management Application",
552
+ "description": "Is the application defined as sanctioned?",
535
553
  "isDeprecated": false,
536
- "name": "subnet_name"
554
+ "name": "is_sanctioned_app"
537
555
  },
538
556
  {
539
557
  "deprecationReason": null,
540
- "description": "",
558
+ "description": "new cloud application identifier",
541
559
  "isDeprecated": false,
542
- "name": "domain"
560
+ "name": "new_app"
543
561
  },
544
562
  {
545
- "deprecationReason": null,
546
- "description": "IP for destination host or Cato Client",
547
- "isDeprecated": false,
548
- "name": "dest_ip"
563
+ "deprecationReason": "use application_risk_level instead",
564
+ "description": "",
565
+ "isDeprecated": true,
566
+ "name": "risk_level"
549
567
  },
550
568
  {
551
- "deprecationReason": null,
552
- "description": "Top level domain",
553
- "isDeprecated": false,
554
- "name": "tld"
569
+ "deprecationReason": "use application_risk_score instead",
570
+ "description": "the application risk score assigned by Cato",
571
+ "isDeprecated": true,
572
+ "name": "risk_score"
573
+ },
574
+ {
575
+ "deprecationReason": "use is_sanctioned_app instead",
576
+ "description": "Is the application defined as sanctioned?",
577
+ "isDeprecated": true,
578
+ "name": "sanctioned"
555
579
  },
556
580
  {
557
581
  "deprecationReason": null,
558
- "description": "User identifier",
582
+ "description": "Country in which the source host is located",
559
583
  "isDeprecated": false,
560
- "name": "user_id"
584
+ "name": "site_country"
561
585
  },
562
586
  {
563
587
  "deprecationReason": null,
564
- "description": "User name",
588
+ "description": "State in which the source host is located",
565
589
  "isDeprecated": false,
566
- "name": "user_name"
590
+ "name": "site_state"
567
591
  },
568
592
  {
569
593
  "deprecationReason": null,
570
- "description": "Source site or remote user identifier",
594
+ "description": "Name for Socket interface",
571
595
  "isDeprecated": false,
572
- "name": "src_site_id"
596
+ "name": "socket_interface"
573
597
  },
574
598
  {
575
599
  "deprecationReason": null,
576
- "description": "Source site or remote user name",
600
+ "description": "IP for source host or Cato Client",
577
601
  "isDeprecated": false,
578
- "name": "src_site_name"
602
+ "name": "src_ip"
579
603
  },
580
604
  {
581
605
  "deprecationReason": null,
582
- "description": "Country in which the source host is located",
606
+ "description": "Source is site or remote user",
583
607
  "isDeprecated": false,
584
- "name": "site_country"
608
+ "name": "src_is_site_or_vpn"
585
609
  },
586
610
  {
587
611
  "deprecationReason": null,
@@ -591,51 +615,45 @@
591
615
  },
592
616
  {
593
617
  "deprecationReason": null,
594
- "description": "State in which the source host is located",
618
+ "description": "Source site or remote user identifier",
595
619
  "isDeprecated": false,
596
- "name": "site_state"
620
+ "name": "src_site_id"
597
621
  },
598
622
  {
599
623
  "deprecationReason": null,
600
- "description": "Site state code",
624
+ "description": "Source site or remote user name",
601
625
  "isDeprecated": false,
602
- "name": "src_site_state"
603
- },
604
- {
605
- "deprecationReason": "use user_id instead",
606
- "description": "",
607
- "isDeprecated": true,
608
- "name": "vpn_user_id"
626
+ "name": "src_site_name"
609
627
  },
610
628
  {
611
629
  "deprecationReason": null,
612
- "description": "",
630
+ "description": "Site state code",
613
631
  "isDeprecated": false,
614
- "name": "flows_created"
632
+ "name": "src_site_state"
615
633
  },
616
634
  {
617
- "deprecationReason": null,
618
- "description": "Destination site or remote user identifier",
619
- "isDeprecated": false,
620
- "name": "dest_site"
635
+ "deprecationReason": "use subnet_name instead",
636
+ "description": "Name of subnet as defined in Cato Management Application",
637
+ "isDeprecated": true,
638
+ "name": "subnet"
621
639
  },
622
640
  {
623
641
  "deprecationReason": null,
624
- "description": "Destination is site or remote user",
642
+ "description": "Name of subnet as defined in Cato Management Application",
625
643
  "isDeprecated": false,
626
- "name": "dest_is_site_or_vpn"
644
+ "name": "subnet_name"
627
645
  },
628
646
  {
629
647
  "deprecationReason": null,
630
- "description": "Destination Site or remote user identifier",
648
+ "description": "Top level domain",
631
649
  "isDeprecated": false,
632
- "name": "dest_site_id"
650
+ "name": "tld"
633
651
  },
634
652
  {
635
- "deprecationReason": null,
636
- "description": "Destination Site or remote user name",
637
- "isDeprecated": false,
638
- "name": "dest_site_name"
653
+ "deprecationReason": "use traffic_direction instead",
654
+ "description": "the total sum of upstream and downstream data in bytes",
655
+ "isDeprecated": true,
656
+ "name": "traffic"
639
657
  },
640
658
  {
641
659
  "deprecationReason": null,
@@ -645,33 +663,27 @@
645
663
  },
646
664
  {
647
665
  "deprecationReason": null,
648
- "description": "Name for device related to the traffic",
649
- "isDeprecated": false,
650
- "name": "device_name"
651
- },
652
- {
653
- "deprecationReason": null,
654
- "description": "Active Directory name",
655
- "isDeprecated": false,
656
- "name": "ad_name"
657
- },
658
- {
659
- "deprecationReason": null,
660
- "description": "IP for source host or Cato Client",
666
+ "description": "data uploaded to cloud applications",
661
667
  "isDeprecated": false,
662
- "name": "src_ip"
668
+ "name": "upstream"
663
669
  },
664
670
  {
665
671
  "deprecationReason": null,
666
- "description": "Name for Socket interface",
672
+ "description": "User identifier",
667
673
  "isDeprecated": false,
668
- "name": "socket_interface"
674
+ "name": "user_id"
669
675
  },
670
676
  {
671
677
  "deprecationReason": null,
672
- "description": "Source is site or remote user",
678
+ "description": "User name",
673
679
  "isDeprecated": false,
674
- "name": "src_is_site_or_vpn"
680
+ "name": "user_name"
681
+ },
682
+ {
683
+ "deprecationReason": "use user_id instead",
684
+ "description": "",
685
+ "isDeprecated": true,
686
+ "name": "vpn_user_id"
675
687
  }
676
688
  ],
677
689
  "fields": null,
@@ -953,8 +965,14 @@
953
965
  "enumValues": [
954
966
  {
955
967
  "deprecationReason": null,
956
- "description": "The application identifier",
968
+ "description": "Active Directory name",
957
969
  "isDeprecated": false,
970
+ "name": "ad_name"
971
+ },
972
+ {
973
+ "deprecationReason": "use application_id instead",
974
+ "description": "The application identifier",
975
+ "isDeprecated": true,
958
976
  "name": "app"
959
977
  },
960
978
  {
@@ -965,8 +983,14 @@
965
983
  },
966
984
  {
967
985
  "deprecationReason": null,
968
- "description": "The application name",
986
+ "description": "Application description",
969
987
  "isDeprecated": false,
988
+ "name": "application_description"
989
+ },
990
+ {
991
+ "deprecationReason": "use application_name instead",
992
+ "description": "The application name",
993
+ "isDeprecated": true,
970
994
  "name": "application"
971
995
  },
972
996
  {
@@ -977,105 +1001,105 @@
977
1001
  },
978
1002
  {
979
1003
  "deprecationReason": null,
980
- "description": "new cloud application identifier",
1004
+ "description": "",
981
1005
  "isDeprecated": false,
982
- "name": "new_app"
1006
+ "name": "application_risk_level"
983
1007
  },
984
1008
  {
985
1009
  "deprecationReason": null,
986
- "description": "",
1010
+ "description": "The application risk score assigned by Cato",
987
1011
  "isDeprecated": false,
988
- "name": "discovered_app"
1012
+ "name": "application_risk_score"
989
1013
  },
990
1014
  {
991
1015
  "deprecationReason": null,
992
- "description": "the total sum of upstream and downstream data in bytes",
1016
+ "description": "Cato system categories of the application",
993
1017
  "isDeprecated": false,
994
- "name": "traffic"
1018
+ "name": "categories"
995
1019
  },
996
1020
  {
997
- "deprecationReason": null,
998
- "description": "data uploaded to cloud applications",
999
- "isDeprecated": false,
1000
- "name": "upstream"
1021
+ "deprecationReason": "use categories instead",
1022
+ "description": "Cato system category of the application",
1023
+ "isDeprecated": true,
1024
+ "name": "category"
1001
1025
  },
1002
1026
  {
1003
1027
  "deprecationReason": null,
1004
- "description": "data downloaded from cloud applications",
1028
+ "description": "For hosts configured with a static IP in the Cato Management Application, the host name",
1005
1029
  "isDeprecated": false,
1006
- "name": "downstream"
1030
+ "name": "configured_host_name"
1007
1031
  },
1008
1032
  {
1009
- "deprecationReason": null,
1010
- "description": "the application risk score assigned by Cato",
1011
- "isDeprecated": false,
1012
- "name": "risk_score"
1033
+ "deprecationReason": "use application_description instead",
1034
+ "description": "Application description",
1035
+ "isDeprecated": true,
1036
+ "name": "description"
1013
1037
  },
1014
1038
  {
1015
1039
  "deprecationReason": null,
1016
- "description": "The application risk score assigned by Cato",
1040
+ "description": "IP for destination host or Cato Client",
1017
1041
  "isDeprecated": false,
1018
- "name": "application_risk_score"
1042
+ "name": "dest_ip"
1019
1043
  },
1020
1044
  {
1021
1045
  "deprecationReason": null,
1022
- "description": "",
1046
+ "description": "Destination is site or remote user",
1023
1047
  "isDeprecated": false,
1024
- "name": "risk_level"
1048
+ "name": "dest_is_site_or_vpn"
1025
1049
  },
1026
1050
  {
1027
1051
  "deprecationReason": null,
1028
- "description": "",
1052
+ "description": "Destination site or remote user identifier",
1029
1053
  "isDeprecated": false,
1030
- "name": "application_risk_level"
1054
+ "name": "dest_site"
1031
1055
  },
1032
1056
  {
1033
1057
  "deprecationReason": null,
1034
- "description": "Is the application defined as sanctioned?",
1058
+ "description": "Destination Site or remote user identifier",
1035
1059
  "isDeprecated": false,
1036
- "name": "sanctioned"
1060
+ "name": "dest_site_id"
1037
1061
  },
1038
1062
  {
1039
1063
  "deprecationReason": null,
1040
- "description": "Is the application defined as sanctioned?",
1064
+ "description": "Destination Site or remote user name",
1041
1065
  "isDeprecated": false,
1042
- "name": "is_sanctioned_app"
1066
+ "name": "dest_site_name"
1043
1067
  },
1044
1068
  {
1045
1069
  "deprecationReason": null,
1046
- "description": "the country in which the registered application headquarteres is located",
1070
+ "description": "Name for device related to the traffic",
1047
1071
  "isDeprecated": false,
1048
- "name": "hq_location"
1072
+ "name": "device_name"
1049
1073
  },
1050
1074
  {
1051
1075
  "deprecationReason": null,
1052
- "description": "indicates whether the application is considered cloud app/SaaS app",
1076
+ "description": "",
1053
1077
  "isDeprecated": false,
1054
- "name": "is_cloud_app"
1078
+ "name": "discovered_app"
1055
1079
  },
1056
1080
  {
1057
- "deprecationReason": null,
1058
- "description": "Cato system category of the application",
1059
- "isDeprecated": false,
1060
- "name": "category"
1081
+ "deprecationReason": "user tld instead",
1082
+ "description": "",
1083
+ "isDeprecated": true,
1084
+ "name": "domain"
1061
1085
  },
1062
1086
  {
1063
1087
  "deprecationReason": null,
1064
- "description": "Cato system categories of the application",
1088
+ "description": "data downloaded from cloud applications",
1065
1089
  "isDeprecated": false,
1066
- "name": "categories"
1090
+ "name": "downstream"
1067
1091
  },
1068
1092
  {
1069
1093
  "deprecationReason": null,
1070
- "description": "Application description",
1094
+ "description": "",
1071
1095
  "isDeprecated": false,
1072
- "name": "description"
1096
+ "name": "flows_created"
1073
1097
  },
1074
1098
  {
1075
1099
  "deprecationReason": null,
1076
- "description": "Application description",
1100
+ "description": "the country in which the registered application headquarteres is located",
1077
1101
  "isDeprecated": false,
1078
- "name": "application_description"
1102
+ "name": "hq_location"
1079
1103
  },
1080
1104
  {
1081
1105
  "deprecationReason": null,
@@ -1085,63 +1109,69 @@
1085
1109
  },
1086
1110
  {
1087
1111
  "deprecationReason": null,
1088
- "description": "Name of subnet as defined in Cato Management Application",
1112
+ "description": "indicates whether the application is considered cloud app/SaaS app",
1089
1113
  "isDeprecated": false,
1090
- "name": "subnet"
1114
+ "name": "is_cloud_app"
1091
1115
  },
1092
1116
  {
1093
1117
  "deprecationReason": null,
1094
- "description": "Name of subnet as defined in Cato Management Application",
1118
+ "description": "Is the application defined as sanctioned?",
1095
1119
  "isDeprecated": false,
1096
- "name": "subnet_name"
1120
+ "name": "is_sanctioned_app"
1097
1121
  },
1098
1122
  {
1099
1123
  "deprecationReason": null,
1100
- "description": "",
1124
+ "description": "new cloud application identifier",
1101
1125
  "isDeprecated": false,
1102
- "name": "domain"
1126
+ "name": "new_app"
1103
1127
  },
1104
1128
  {
1105
- "deprecationReason": null,
1106
- "description": "IP for destination host or Cato Client",
1107
- "isDeprecated": false,
1108
- "name": "dest_ip"
1129
+ "deprecationReason": "use application_risk_level instead",
1130
+ "description": "",
1131
+ "isDeprecated": true,
1132
+ "name": "risk_level"
1109
1133
  },
1110
1134
  {
1111
- "deprecationReason": null,
1112
- "description": "Top level domain",
1113
- "isDeprecated": false,
1114
- "name": "tld"
1135
+ "deprecationReason": "use application_risk_score instead",
1136
+ "description": "the application risk score assigned by Cato",
1137
+ "isDeprecated": true,
1138
+ "name": "risk_score"
1139
+ },
1140
+ {
1141
+ "deprecationReason": "use is_sanctioned_app instead",
1142
+ "description": "Is the application defined as sanctioned?",
1143
+ "isDeprecated": true,
1144
+ "name": "sanctioned"
1115
1145
  },
1116
1146
  {
1117
1147
  "deprecationReason": null,
1118
- "description": "User identifier",
1148
+ "description": "Country in which the source host is located",
1119
1149
  "isDeprecated": false,
1120
- "name": "user_id"
1150
+ "name": "site_country"
1121
1151
  },
1122
1152
  {
1123
1153
  "deprecationReason": null,
1124
- "description": "User name",
1154
+ "description": "State in which the source host is located",
1125
1155
  "isDeprecated": false,
1126
- "name": "user_name"
1156
+ "name": "site_state"
1127
1157
  },
1128
1158
  {
1129
1159
  "deprecationReason": null,
1130
- "description": "Source site or remote user identifier",
1160
+ "description": "Name for Socket interface",
1131
1161
  "isDeprecated": false,
1132
- "name": "src_site_id"
1162
+ "name": "socket_interface"
1133
1163
  },
1134
1164
  {
1135
1165
  "deprecationReason": null,
1136
- "description": "Source site or remote user name",
1166
+ "description": "IP for source host or Cato Client",
1137
1167
  "isDeprecated": false,
1138
- "name": "src_site_name"
1168
+ "name": "src_ip"
1139
1169
  },
1140
1170
  {
1141
1171
  "deprecationReason": null,
1142
- "description": "Country in which the source host is located",
1172
+ "description": "Source is site or remote user",
1143
1173
  "isDeprecated": false,
1144
- "name": "site_country"
1174
+ "name": "src_is_site_or_vpn"
1145
1175
  },
1146
1176
  {
1147
1177
  "deprecationReason": null,
@@ -1151,51 +1181,45 @@
1151
1181
  },
1152
1182
  {
1153
1183
  "deprecationReason": null,
1154
- "description": "State in which the source host is located",
1184
+ "description": "Source site or remote user identifier",
1155
1185
  "isDeprecated": false,
1156
- "name": "site_state"
1186
+ "name": "src_site_id"
1157
1187
  },
1158
1188
  {
1159
1189
  "deprecationReason": null,
1160
- "description": "Site state code",
1190
+ "description": "Source site or remote user name",
1161
1191
  "isDeprecated": false,
1162
- "name": "src_site_state"
1163
- },
1164
- {
1165
- "deprecationReason": "use user_id instead",
1166
- "description": "",
1167
- "isDeprecated": true,
1168
- "name": "vpn_user_id"
1192
+ "name": "src_site_name"
1169
1193
  },
1170
1194
  {
1171
1195
  "deprecationReason": null,
1172
- "description": "",
1196
+ "description": "Site state code",
1173
1197
  "isDeprecated": false,
1174
- "name": "flows_created"
1198
+ "name": "src_site_state"
1175
1199
  },
1176
1200
  {
1177
- "deprecationReason": null,
1178
- "description": "Destination site or remote user identifier",
1179
- "isDeprecated": false,
1180
- "name": "dest_site"
1201
+ "deprecationReason": "use subnet_name instead",
1202
+ "description": "Name of subnet as defined in Cato Management Application",
1203
+ "isDeprecated": true,
1204
+ "name": "subnet"
1181
1205
  },
1182
1206
  {
1183
1207
  "deprecationReason": null,
1184
- "description": "Destination is site or remote user",
1208
+ "description": "Name of subnet as defined in Cato Management Application",
1185
1209
  "isDeprecated": false,
1186
- "name": "dest_is_site_or_vpn"
1210
+ "name": "subnet_name"
1187
1211
  },
1188
1212
  {
1189
1213
  "deprecationReason": null,
1190
- "description": "Destination Site or remote user identifier",
1214
+ "description": "Top level domain",
1191
1215
  "isDeprecated": false,
1192
- "name": "dest_site_id"
1216
+ "name": "tld"
1193
1217
  },
1194
1218
  {
1195
- "deprecationReason": null,
1196
- "description": "Destination Site or remote user name",
1197
- "isDeprecated": false,
1198
- "name": "dest_site_name"
1219
+ "deprecationReason": "use traffic_direction instead",
1220
+ "description": "the total sum of upstream and downstream data in bytes",
1221
+ "isDeprecated": true,
1222
+ "name": "traffic"
1199
1223
  },
1200
1224
  {
1201
1225
  "deprecationReason": null,
@@ -1205,33 +1229,27 @@
1205
1229
  },
1206
1230
  {
1207
1231
  "deprecationReason": null,
1208
- "description": "Name for device related to the traffic",
1209
- "isDeprecated": false,
1210
- "name": "device_name"
1211
- },
1212
- {
1213
- "deprecationReason": null,
1214
- "description": "Active Directory name",
1232
+ "description": "data uploaded to cloud applications",
1215
1233
  "isDeprecated": false,
1216
- "name": "ad_name"
1234
+ "name": "upstream"
1217
1235
  },
1218
1236
  {
1219
1237
  "deprecationReason": null,
1220
- "description": "IP for source host or Cato Client",
1238
+ "description": "User identifier",
1221
1239
  "isDeprecated": false,
1222
- "name": "src_ip"
1240
+ "name": "user_id"
1223
1241
  },
1224
1242
  {
1225
1243
  "deprecationReason": null,
1226
- "description": "Name for Socket interface",
1244
+ "description": "User name",
1227
1245
  "isDeprecated": false,
1228
- "name": "socket_interface"
1246
+ "name": "user_name"
1229
1247
  },
1230
1248
  {
1231
- "deprecationReason": null,
1232
- "description": "Source is site or remote user",
1233
- "isDeprecated": false,
1234
- "name": "src_is_site_or_vpn"
1249
+ "deprecationReason": "use user_id instead",
1250
+ "description": "",
1251
+ "isDeprecated": true,
1252
+ "name": "vpn_user_id"
1235
1253
  }
1236
1254
  ],
1237
1255
  "fields": null,
@@ -1315,8 +1333,14 @@
1315
1333
  "enumValues": [
1316
1334
  {
1317
1335
  "deprecationReason": null,
1318
- "description": "The application identifier",
1336
+ "description": "Active Directory name",
1319
1337
  "isDeprecated": false,
1338
+ "name": "ad_name"
1339
+ },
1340
+ {
1341
+ "deprecationReason": "use application_id instead",
1342
+ "description": "The application identifier",
1343
+ "isDeprecated": true,
1320
1344
  "name": "app"
1321
1345
  },
1322
1346
  {
@@ -1327,8 +1351,14 @@
1327
1351
  },
1328
1352
  {
1329
1353
  "deprecationReason": null,
1330
- "description": "The application name",
1354
+ "description": "Application description",
1331
1355
  "isDeprecated": false,
1356
+ "name": "application_description"
1357
+ },
1358
+ {
1359
+ "deprecationReason": "use application_name instead",
1360
+ "description": "The application name",
1361
+ "isDeprecated": true,
1332
1362
  "name": "application"
1333
1363
  },
1334
1364
  {
@@ -1339,105 +1369,105 @@
1339
1369
  },
1340
1370
  {
1341
1371
  "deprecationReason": null,
1342
- "description": "new cloud application identifier",
1372
+ "description": "",
1343
1373
  "isDeprecated": false,
1344
- "name": "new_app"
1374
+ "name": "application_risk_level"
1345
1375
  },
1346
1376
  {
1347
1377
  "deprecationReason": null,
1348
- "description": "",
1378
+ "description": "The application risk score assigned by Cato",
1349
1379
  "isDeprecated": false,
1350
- "name": "discovered_app"
1380
+ "name": "application_risk_score"
1351
1381
  },
1352
1382
  {
1353
1383
  "deprecationReason": null,
1354
- "description": "the total sum of upstream and downstream data in bytes",
1384
+ "description": "Cato system categories of the application",
1355
1385
  "isDeprecated": false,
1356
- "name": "traffic"
1386
+ "name": "categories"
1357
1387
  },
1358
1388
  {
1359
- "deprecationReason": null,
1360
- "description": "data uploaded to cloud applications",
1361
- "isDeprecated": false,
1362
- "name": "upstream"
1389
+ "deprecationReason": "use categories instead",
1390
+ "description": "Cato system category of the application",
1391
+ "isDeprecated": true,
1392
+ "name": "category"
1363
1393
  },
1364
1394
  {
1365
1395
  "deprecationReason": null,
1366
- "description": "data downloaded from cloud applications",
1396
+ "description": "For hosts configured with a static IP in the Cato Management Application, the host name",
1367
1397
  "isDeprecated": false,
1368
- "name": "downstream"
1398
+ "name": "configured_host_name"
1369
1399
  },
1370
1400
  {
1371
- "deprecationReason": null,
1372
- "description": "the application risk score assigned by Cato",
1373
- "isDeprecated": false,
1374
- "name": "risk_score"
1401
+ "deprecationReason": "use application_description instead",
1402
+ "description": "Application description",
1403
+ "isDeprecated": true,
1404
+ "name": "description"
1375
1405
  },
1376
1406
  {
1377
1407
  "deprecationReason": null,
1378
- "description": "The application risk score assigned by Cato",
1408
+ "description": "IP for destination host or Cato Client",
1379
1409
  "isDeprecated": false,
1380
- "name": "application_risk_score"
1410
+ "name": "dest_ip"
1381
1411
  },
1382
1412
  {
1383
1413
  "deprecationReason": null,
1384
- "description": "",
1414
+ "description": "Destination is site or remote user",
1385
1415
  "isDeprecated": false,
1386
- "name": "risk_level"
1416
+ "name": "dest_is_site_or_vpn"
1387
1417
  },
1388
1418
  {
1389
1419
  "deprecationReason": null,
1390
- "description": "",
1420
+ "description": "Destination site or remote user identifier",
1391
1421
  "isDeprecated": false,
1392
- "name": "application_risk_level"
1422
+ "name": "dest_site"
1393
1423
  },
1394
1424
  {
1395
1425
  "deprecationReason": null,
1396
- "description": "Is the application defined as sanctioned?",
1426
+ "description": "Destination Site or remote user identifier",
1397
1427
  "isDeprecated": false,
1398
- "name": "sanctioned"
1428
+ "name": "dest_site_id"
1399
1429
  },
1400
1430
  {
1401
1431
  "deprecationReason": null,
1402
- "description": "Is the application defined as sanctioned?",
1432
+ "description": "Destination Site or remote user name",
1403
1433
  "isDeprecated": false,
1404
- "name": "is_sanctioned_app"
1434
+ "name": "dest_site_name"
1405
1435
  },
1406
1436
  {
1407
1437
  "deprecationReason": null,
1408
- "description": "the country in which the registered application headquarteres is located",
1438
+ "description": "Name for device related to the traffic",
1409
1439
  "isDeprecated": false,
1410
- "name": "hq_location"
1440
+ "name": "device_name"
1411
1441
  },
1412
1442
  {
1413
1443
  "deprecationReason": null,
1414
- "description": "indicates whether the application is considered cloud app/SaaS app",
1444
+ "description": "",
1415
1445
  "isDeprecated": false,
1416
- "name": "is_cloud_app"
1446
+ "name": "discovered_app"
1417
1447
  },
1418
1448
  {
1419
- "deprecationReason": null,
1420
- "description": "Cato system category of the application",
1421
- "isDeprecated": false,
1422
- "name": "category"
1449
+ "deprecationReason": "user tld instead",
1450
+ "description": "",
1451
+ "isDeprecated": true,
1452
+ "name": "domain"
1423
1453
  },
1424
1454
  {
1425
1455
  "deprecationReason": null,
1426
- "description": "Cato system categories of the application",
1456
+ "description": "data downloaded from cloud applications",
1427
1457
  "isDeprecated": false,
1428
- "name": "categories"
1458
+ "name": "downstream"
1429
1459
  },
1430
1460
  {
1431
1461
  "deprecationReason": null,
1432
- "description": "Application description",
1462
+ "description": "",
1433
1463
  "isDeprecated": false,
1434
- "name": "description"
1464
+ "name": "flows_created"
1435
1465
  },
1436
1466
  {
1437
1467
  "deprecationReason": null,
1438
- "description": "Application description",
1468
+ "description": "the country in which the registered application headquarteres is located",
1439
1469
  "isDeprecated": false,
1440
- "name": "application_description"
1470
+ "name": "hq_location"
1441
1471
  },
1442
1472
  {
1443
1473
  "deprecationReason": null,
@@ -1447,63 +1477,69 @@
1447
1477
  },
1448
1478
  {
1449
1479
  "deprecationReason": null,
1450
- "description": "Name of subnet as defined in Cato Management Application",
1480
+ "description": "indicates whether the application is considered cloud app/SaaS app",
1451
1481
  "isDeprecated": false,
1452
- "name": "subnet"
1482
+ "name": "is_cloud_app"
1453
1483
  },
1454
1484
  {
1455
1485
  "deprecationReason": null,
1456
- "description": "Name of subnet as defined in Cato Management Application",
1486
+ "description": "Is the application defined as sanctioned?",
1457
1487
  "isDeprecated": false,
1458
- "name": "subnet_name"
1488
+ "name": "is_sanctioned_app"
1459
1489
  },
1460
1490
  {
1461
1491
  "deprecationReason": null,
1462
- "description": "",
1492
+ "description": "new cloud application identifier",
1463
1493
  "isDeprecated": false,
1464
- "name": "domain"
1494
+ "name": "new_app"
1465
1495
  },
1466
1496
  {
1467
- "deprecationReason": null,
1468
- "description": "IP for destination host or Cato Client",
1469
- "isDeprecated": false,
1470
- "name": "dest_ip"
1497
+ "deprecationReason": "use application_risk_level instead",
1498
+ "description": "",
1499
+ "isDeprecated": true,
1500
+ "name": "risk_level"
1471
1501
  },
1472
1502
  {
1473
- "deprecationReason": null,
1474
- "description": "Top level domain",
1475
- "isDeprecated": false,
1476
- "name": "tld"
1503
+ "deprecationReason": "use application_risk_score instead",
1504
+ "description": "the application risk score assigned by Cato",
1505
+ "isDeprecated": true,
1506
+ "name": "risk_score"
1507
+ },
1508
+ {
1509
+ "deprecationReason": "use is_sanctioned_app instead",
1510
+ "description": "Is the application defined as sanctioned?",
1511
+ "isDeprecated": true,
1512
+ "name": "sanctioned"
1477
1513
  },
1478
1514
  {
1479
1515
  "deprecationReason": null,
1480
- "description": "User identifier",
1516
+ "description": "Country in which the source host is located",
1481
1517
  "isDeprecated": false,
1482
- "name": "user_id"
1518
+ "name": "site_country"
1483
1519
  },
1484
1520
  {
1485
1521
  "deprecationReason": null,
1486
- "description": "User name",
1522
+ "description": "State in which the source host is located",
1487
1523
  "isDeprecated": false,
1488
- "name": "user_name"
1524
+ "name": "site_state"
1489
1525
  },
1490
1526
  {
1491
1527
  "deprecationReason": null,
1492
- "description": "Source site or remote user identifier",
1528
+ "description": "Name for Socket interface",
1493
1529
  "isDeprecated": false,
1494
- "name": "src_site_id"
1530
+ "name": "socket_interface"
1495
1531
  },
1496
1532
  {
1497
1533
  "deprecationReason": null,
1498
- "description": "Source site or remote user name",
1534
+ "description": "IP for source host or Cato Client",
1499
1535
  "isDeprecated": false,
1500
- "name": "src_site_name"
1536
+ "name": "src_ip"
1501
1537
  },
1502
1538
  {
1503
1539
  "deprecationReason": null,
1504
- "description": "Country in which the source host is located",
1540
+ "description": "Source is site or remote user",
1505
1541
  "isDeprecated": false,
1506
- "name": "site_country"
1542
+ "name": "src_is_site_or_vpn"
1507
1543
  },
1508
1544
  {
1509
1545
  "deprecationReason": null,
@@ -1513,51 +1549,45 @@
1513
1549
  },
1514
1550
  {
1515
1551
  "deprecationReason": null,
1516
- "description": "State in which the source host is located",
1552
+ "description": "Source site or remote user identifier",
1517
1553
  "isDeprecated": false,
1518
- "name": "site_state"
1554
+ "name": "src_site_id"
1519
1555
  },
1520
1556
  {
1521
1557
  "deprecationReason": null,
1522
- "description": "Site state code",
1558
+ "description": "Source site or remote user name",
1523
1559
  "isDeprecated": false,
1524
- "name": "src_site_state"
1525
- },
1526
- {
1527
- "deprecationReason": "use user_id instead",
1528
- "description": "",
1529
- "isDeprecated": true,
1530
- "name": "vpn_user_id"
1560
+ "name": "src_site_name"
1531
1561
  },
1532
1562
  {
1533
1563
  "deprecationReason": null,
1534
- "description": "",
1564
+ "description": "Site state code",
1535
1565
  "isDeprecated": false,
1536
- "name": "flows_created"
1566
+ "name": "src_site_state"
1537
1567
  },
1538
1568
  {
1539
- "deprecationReason": null,
1540
- "description": "Destination site or remote user identifier",
1541
- "isDeprecated": false,
1542
- "name": "dest_site"
1569
+ "deprecationReason": "use subnet_name instead",
1570
+ "description": "Name of subnet as defined in Cato Management Application",
1571
+ "isDeprecated": true,
1572
+ "name": "subnet"
1543
1573
  },
1544
1574
  {
1545
1575
  "deprecationReason": null,
1546
- "description": "Destination is site or remote user",
1576
+ "description": "Name of subnet as defined in Cato Management Application",
1547
1577
  "isDeprecated": false,
1548
- "name": "dest_is_site_or_vpn"
1578
+ "name": "subnet_name"
1549
1579
  },
1550
1580
  {
1551
1581
  "deprecationReason": null,
1552
- "description": "Destination Site or remote user identifier",
1582
+ "description": "Top level domain",
1553
1583
  "isDeprecated": false,
1554
- "name": "dest_site_id"
1584
+ "name": "tld"
1555
1585
  },
1556
1586
  {
1557
- "deprecationReason": null,
1558
- "description": "Destination Site or remote user name",
1559
- "isDeprecated": false,
1560
- "name": "dest_site_name"
1587
+ "deprecationReason": "use traffic_direction instead",
1588
+ "description": "the total sum of upstream and downstream data in bytes",
1589
+ "isDeprecated": true,
1590
+ "name": "traffic"
1561
1591
  },
1562
1592
  {
1563
1593
  "deprecationReason": null,
@@ -1567,33 +1597,27 @@
1567
1597
  },
1568
1598
  {
1569
1599
  "deprecationReason": null,
1570
- "description": "Name for device related to the traffic",
1571
- "isDeprecated": false,
1572
- "name": "device_name"
1573
- },
1574
- {
1575
- "deprecationReason": null,
1576
- "description": "Active Directory name",
1600
+ "description": "data uploaded to cloud applications",
1577
1601
  "isDeprecated": false,
1578
- "name": "ad_name"
1602
+ "name": "upstream"
1579
1603
  },
1580
1604
  {
1581
1605
  "deprecationReason": null,
1582
- "description": "IP for source host or Cato Client",
1606
+ "description": "User identifier",
1583
1607
  "isDeprecated": false,
1584
- "name": "src_ip"
1608
+ "name": "user_id"
1585
1609
  },
1586
1610
  {
1587
1611
  "deprecationReason": null,
1588
- "description": "Name for Socket interface",
1612
+ "description": "User name",
1589
1613
  "isDeprecated": false,
1590
- "name": "socket_interface"
1614
+ "name": "user_name"
1591
1615
  },
1592
1616
  {
1593
- "deprecationReason": null,
1594
- "description": "Source is site or remote user",
1595
- "isDeprecated": false,
1596
- "name": "src_is_site_or_vpn"
1617
+ "deprecationReason": "use user_id instead",
1618
+ "description": "",
1619
+ "isDeprecated": true,
1620
+ "name": "vpn_user_id"
1597
1621
  }
1598
1622
  ],
1599
1623
  "fields": null,
@@ -1750,8 +1774,14 @@
1750
1774
  "enumValues": [
1751
1775
  {
1752
1776
  "deprecationReason": null,
1753
- "description": "The application identifier",
1777
+ "description": "Active Directory name",
1754
1778
  "isDeprecated": false,
1779
+ "name": "ad_name"
1780
+ },
1781
+ {
1782
+ "deprecationReason": "use application_id instead",
1783
+ "description": "The application identifier",
1784
+ "isDeprecated": true,
1755
1785
  "name": "app"
1756
1786
  },
1757
1787
  {
@@ -1762,51 +1792,27 @@
1762
1792
  },
1763
1793
  {
1764
1794
  "deprecationReason": null,
1765
- "description": "The application name",
1795
+ "description": "Application description",
1766
1796
  "isDeprecated": false,
1767
- "name": "application"
1797
+ "name": "application_description"
1768
1798
  },
1769
1799
  {
1770
- "deprecationReason": null,
1800
+ "deprecationReason": "use application_name instead",
1771
1801
  "description": "The application name",
1772
- "isDeprecated": false,
1773
- "name": "application_name"
1802
+ "isDeprecated": true,
1803
+ "name": "application"
1774
1804
  },
1775
1805
  {
1776
1806
  "deprecationReason": null,
1777
- "description": "new cloud application identifier",
1807
+ "description": "The application name",
1778
1808
  "isDeprecated": false,
1779
- "name": "new_app"
1809
+ "name": "application_name"
1780
1810
  },
1781
1811
  {
1782
1812
  "deprecationReason": null,
1783
1813
  "description": "",
1784
1814
  "isDeprecated": false,
1785
- "name": "discovered_app"
1786
- },
1787
- {
1788
- "deprecationReason": null,
1789
- "description": "the total sum of upstream and downstream data in bytes",
1790
- "isDeprecated": false,
1791
- "name": "traffic"
1792
- },
1793
- {
1794
- "deprecationReason": null,
1795
- "description": "data uploaded to cloud applications",
1796
- "isDeprecated": false,
1797
- "name": "upstream"
1798
- },
1799
- {
1800
- "deprecationReason": null,
1801
- "description": "data downloaded from cloud applications",
1802
- "isDeprecated": false,
1803
- "name": "downstream"
1804
- },
1805
- {
1806
- "deprecationReason": null,
1807
- "description": "the application risk score assigned by Cato",
1808
- "isDeprecated": false,
1809
- "name": "risk_score"
1815
+ "name": "application_risk_level"
1810
1816
  },
1811
1817
  {
1812
1818
  "deprecationReason": null,
@@ -1816,135 +1822,141 @@
1816
1822
  },
1817
1823
  {
1818
1824
  "deprecationReason": null,
1819
- "description": "",
1820
- "isDeprecated": false,
1821
- "name": "risk_level"
1822
- },
1823
- {
1824
- "deprecationReason": null,
1825
- "description": "",
1826
- "isDeprecated": false,
1827
- "name": "application_risk_level"
1828
- },
1829
- {
1830
- "deprecationReason": null,
1831
- "description": "Is the application defined as sanctioned?",
1825
+ "description": "Cato system categories of the application",
1832
1826
  "isDeprecated": false,
1833
- "name": "sanctioned"
1827
+ "name": "categories"
1834
1828
  },
1835
1829
  {
1836
- "deprecationReason": null,
1837
- "description": "Is the application defined as sanctioned?",
1838
- "isDeprecated": false,
1839
- "name": "is_sanctioned_app"
1830
+ "deprecationReason": "use categories instead",
1831
+ "description": "Cato system category of the application",
1832
+ "isDeprecated": true,
1833
+ "name": "category"
1840
1834
  },
1841
1835
  {
1842
1836
  "deprecationReason": null,
1843
- "description": "the country in which the registered application headquarteres is located",
1837
+ "description": "For hosts configured with a static IP in the Cato Management Application, the host name",
1844
1838
  "isDeprecated": false,
1845
- "name": "hq_location"
1839
+ "name": "configured_host_name"
1846
1840
  },
1847
1841
  {
1848
- "deprecationReason": null,
1849
- "description": "indicates whether the application is considered cloud app/SaaS app",
1850
- "isDeprecated": false,
1851
- "name": "is_cloud_app"
1842
+ "deprecationReason": "use application_description instead",
1843
+ "description": "Application description",
1844
+ "isDeprecated": true,
1845
+ "name": "description"
1852
1846
  },
1853
1847
  {
1854
1848
  "deprecationReason": null,
1855
- "description": "Cato system category of the application",
1849
+ "description": "IP for destination host or Cato Client",
1856
1850
  "isDeprecated": false,
1857
- "name": "category"
1851
+ "name": "dest_ip"
1858
1852
  },
1859
1853
  {
1860
1854
  "deprecationReason": null,
1861
- "description": "Cato system categories of the application",
1855
+ "description": "Destination is site or remote user",
1862
1856
  "isDeprecated": false,
1863
- "name": "categories"
1857
+ "name": "dest_is_site_or_vpn"
1864
1858
  },
1865
1859
  {
1866
1860
  "deprecationReason": null,
1867
- "description": "Application description",
1861
+ "description": "Destination site or remote user identifier",
1868
1862
  "isDeprecated": false,
1869
- "name": "description"
1863
+ "name": "dest_site"
1870
1864
  },
1871
1865
  {
1872
1866
  "deprecationReason": null,
1873
- "description": "Application description",
1867
+ "description": "Destination Site or remote user identifier",
1874
1868
  "isDeprecated": false,
1875
- "name": "application_description"
1869
+ "name": "dest_site_id"
1876
1870
  },
1877
1871
  {
1878
1872
  "deprecationReason": null,
1879
- "description": "",
1873
+ "description": "Destination Site or remote user name",
1880
1874
  "isDeprecated": false,
1881
- "name": "ip"
1875
+ "name": "dest_site_name"
1882
1876
  },
1883
1877
  {
1884
1878
  "deprecationReason": null,
1885
- "description": "Name of subnet as defined in Cato Management Application",
1879
+ "description": "Name for device related to the traffic",
1886
1880
  "isDeprecated": false,
1887
- "name": "subnet"
1881
+ "name": "device_name"
1888
1882
  },
1889
1883
  {
1890
1884
  "deprecationReason": null,
1891
- "description": "Name of subnet as defined in Cato Management Application",
1885
+ "description": "",
1892
1886
  "isDeprecated": false,
1893
- "name": "subnet_name"
1887
+ "name": "discovered_app"
1894
1888
  },
1895
1889
  {
1896
- "deprecationReason": null,
1890
+ "deprecationReason": "user tld instead",
1897
1891
  "description": "",
1898
- "isDeprecated": false,
1892
+ "isDeprecated": true,
1899
1893
  "name": "domain"
1900
1894
  },
1901
1895
  {
1902
1896
  "deprecationReason": null,
1903
- "description": "IP for destination host or Cato Client",
1897
+ "description": "data downloaded from cloud applications",
1904
1898
  "isDeprecated": false,
1905
- "name": "dest_ip"
1899
+ "name": "downstream"
1906
1900
  },
1907
1901
  {
1908
1902
  "deprecationReason": null,
1909
- "description": "Top level domain",
1903
+ "description": "",
1910
1904
  "isDeprecated": false,
1911
- "name": "tld"
1905
+ "name": "flows_created"
1912
1906
  },
1913
1907
  {
1914
1908
  "deprecationReason": null,
1915
- "description": "User identifier",
1909
+ "description": "the country in which the registered application headquarteres is located",
1916
1910
  "isDeprecated": false,
1917
- "name": "user_id"
1911
+ "name": "hq_location"
1918
1912
  },
1919
1913
  {
1920
1914
  "deprecationReason": null,
1921
- "description": "User name",
1915
+ "description": "",
1922
1916
  "isDeprecated": false,
1923
- "name": "user_name"
1917
+ "name": "ip"
1924
1918
  },
1925
1919
  {
1926
1920
  "deprecationReason": null,
1927
- "description": "Source site or remote user identifier",
1921
+ "description": "indicates whether the application is considered cloud app/SaaS app",
1928
1922
  "isDeprecated": false,
1929
- "name": "src_site_id"
1923
+ "name": "is_cloud_app"
1930
1924
  },
1931
1925
  {
1932
1926
  "deprecationReason": null,
1933
- "description": "Source site or remote user name",
1927
+ "description": "Is the application defined as sanctioned?",
1934
1928
  "isDeprecated": false,
1935
- "name": "src_site_name"
1929
+ "name": "is_sanctioned_app"
1936
1930
  },
1937
1931
  {
1938
1932
  "deprecationReason": null,
1939
- "description": "Country in which the source host is located",
1933
+ "description": "new cloud application identifier",
1940
1934
  "isDeprecated": false,
1941
- "name": "site_country"
1935
+ "name": "new_app"
1936
+ },
1937
+ {
1938
+ "deprecationReason": "use application_risk_level instead",
1939
+ "description": "",
1940
+ "isDeprecated": true,
1941
+ "name": "risk_level"
1942
+ },
1943
+ {
1944
+ "deprecationReason": "use application_risk_score instead",
1945
+ "description": "the application risk score assigned by Cato",
1946
+ "isDeprecated": true,
1947
+ "name": "risk_score"
1948
+ },
1949
+ {
1950
+ "deprecationReason": "use is_sanctioned_app instead",
1951
+ "description": "Is the application defined as sanctioned?",
1952
+ "isDeprecated": true,
1953
+ "name": "sanctioned"
1942
1954
  },
1943
1955
  {
1944
1956
  "deprecationReason": null,
1945
- "description": "Site country code alpha2",
1957
+ "description": "Country in which the source host is located",
1946
1958
  "isDeprecated": false,
1947
- "name": "src_site_country_code"
1959
+ "name": "site_country"
1948
1960
  },
1949
1961
  {
1950
1962
  "deprecationReason": null,
@@ -1954,81 +1966,99 @@
1954
1966
  },
1955
1967
  {
1956
1968
  "deprecationReason": null,
1957
- "description": "Site state code",
1969
+ "description": "Name for Socket interface",
1958
1970
  "isDeprecated": false,
1959
- "name": "src_site_state"
1971
+ "name": "socket_interface"
1960
1972
  },
1961
1973
  {
1962
- "deprecationReason": "use user_id instead",
1963
- "description": "",
1964
- "isDeprecated": true,
1965
- "name": "vpn_user_id"
1974
+ "deprecationReason": null,
1975
+ "description": "IP for source host or Cato Client",
1976
+ "isDeprecated": false,
1977
+ "name": "src_ip"
1966
1978
  },
1967
1979
  {
1968
1980
  "deprecationReason": null,
1969
- "description": "",
1981
+ "description": "Source is site or remote user",
1970
1982
  "isDeprecated": false,
1971
- "name": "flows_created"
1983
+ "name": "src_is_site_or_vpn"
1972
1984
  },
1973
1985
  {
1974
1986
  "deprecationReason": null,
1975
- "description": "Destination site or remote user identifier",
1987
+ "description": "Site country code alpha2",
1976
1988
  "isDeprecated": false,
1977
- "name": "dest_site"
1989
+ "name": "src_site_country_code"
1978
1990
  },
1979
1991
  {
1980
1992
  "deprecationReason": null,
1981
- "description": "Destination is site or remote user",
1993
+ "description": "Source site or remote user identifier",
1982
1994
  "isDeprecated": false,
1983
- "name": "dest_is_site_or_vpn"
1995
+ "name": "src_site_id"
1984
1996
  },
1985
1997
  {
1986
1998
  "deprecationReason": null,
1987
- "description": "Destination Site or remote user identifier",
1999
+ "description": "Source site or remote user name",
1988
2000
  "isDeprecated": false,
1989
- "name": "dest_site_id"
2001
+ "name": "src_site_name"
1990
2002
  },
1991
2003
  {
1992
2004
  "deprecationReason": null,
1993
- "description": "Destination Site or remote user name",
2005
+ "description": "Site state code",
1994
2006
  "isDeprecated": false,
1995
- "name": "dest_site_name"
2007
+ "name": "src_site_state"
2008
+ },
2009
+ {
2010
+ "deprecationReason": "use subnet_name instead",
2011
+ "description": "Name of subnet as defined in Cato Management Application",
2012
+ "isDeprecated": true,
2013
+ "name": "subnet"
1996
2014
  },
1997
2015
  {
1998
2016
  "deprecationReason": null,
1999
- "description": "Traffic direction",
2017
+ "description": "Name of subnet as defined in Cato Management Application",
2000
2018
  "isDeprecated": false,
2001
- "name": "traffic_direction"
2019
+ "name": "subnet_name"
2002
2020
  },
2003
2021
  {
2004
2022
  "deprecationReason": null,
2005
- "description": "Name for device related to the traffic",
2023
+ "description": "Top level domain",
2006
2024
  "isDeprecated": false,
2007
- "name": "device_name"
2025
+ "name": "tld"
2026
+ },
2027
+ {
2028
+ "deprecationReason": "use traffic_direction instead",
2029
+ "description": "the total sum of upstream and downstream data in bytes",
2030
+ "isDeprecated": true,
2031
+ "name": "traffic"
2008
2032
  },
2009
2033
  {
2010
2034
  "deprecationReason": null,
2011
- "description": "Active Directory name",
2035
+ "description": "Traffic direction",
2012
2036
  "isDeprecated": false,
2013
- "name": "ad_name"
2037
+ "name": "traffic_direction"
2014
2038
  },
2015
2039
  {
2016
2040
  "deprecationReason": null,
2017
- "description": "IP for source host or Cato Client",
2041
+ "description": "data uploaded to cloud applications",
2018
2042
  "isDeprecated": false,
2019
- "name": "src_ip"
2043
+ "name": "upstream"
2020
2044
  },
2021
2045
  {
2022
2046
  "deprecationReason": null,
2023
- "description": "Name for Socket interface",
2047
+ "description": "User identifier",
2024
2048
  "isDeprecated": false,
2025
- "name": "socket_interface"
2049
+ "name": "user_id"
2026
2050
  },
2027
2051
  {
2028
2052
  "deprecationReason": null,
2029
- "description": "Source is site or remote user",
2053
+ "description": "User name",
2030
2054
  "isDeprecated": false,
2031
- "name": "src_is_site_or_vpn"
2055
+ "name": "user_name"
2056
+ },
2057
+ {
2058
+ "deprecationReason": "use user_id instead",
2059
+ "description": "",
2060
+ "isDeprecated": true,
2061
+ "name": "vpn_user_id"
2032
2062
  }
2033
2063
  ],
2034
2064
  "fields": null,
@@ -2219,8 +2249,14 @@
2219
2249
  "enumValues": [
2220
2250
  {
2221
2251
  "deprecationReason": null,
2222
- "description": "The application identifier",
2252
+ "description": "Active Directory name",
2223
2253
  "isDeprecated": false,
2254
+ "name": "ad_name"
2255
+ },
2256
+ {
2257
+ "deprecationReason": "use application_id instead",
2258
+ "description": "The application identifier",
2259
+ "isDeprecated": true,
2224
2260
  "name": "app"
2225
2261
  },
2226
2262
  {
@@ -2231,8 +2267,14 @@
2231
2267
  },
2232
2268
  {
2233
2269
  "deprecationReason": null,
2234
- "description": "The application name",
2270
+ "description": "Application description",
2235
2271
  "isDeprecated": false,
2272
+ "name": "application_description"
2273
+ },
2274
+ {
2275
+ "deprecationReason": "use application_name instead",
2276
+ "description": "The application name",
2277
+ "isDeprecated": true,
2236
2278
  "name": "application"
2237
2279
  },
2238
2280
  {
@@ -2243,105 +2285,105 @@
2243
2285
  },
2244
2286
  {
2245
2287
  "deprecationReason": null,
2246
- "description": "new cloud application identifier",
2288
+ "description": "",
2247
2289
  "isDeprecated": false,
2248
- "name": "new_app"
2290
+ "name": "application_risk_level"
2249
2291
  },
2250
2292
  {
2251
2293
  "deprecationReason": null,
2252
- "description": "",
2294
+ "description": "The application risk score assigned by Cato",
2253
2295
  "isDeprecated": false,
2254
- "name": "discovered_app"
2296
+ "name": "application_risk_score"
2255
2297
  },
2256
2298
  {
2257
2299
  "deprecationReason": null,
2258
- "description": "the total sum of upstream and downstream data in bytes",
2300
+ "description": "Cato system categories of the application",
2259
2301
  "isDeprecated": false,
2260
- "name": "traffic"
2302
+ "name": "categories"
2261
2303
  },
2262
2304
  {
2263
- "deprecationReason": null,
2264
- "description": "data uploaded to cloud applications",
2265
- "isDeprecated": false,
2266
- "name": "upstream"
2305
+ "deprecationReason": "use categories instead",
2306
+ "description": "Cato system category of the application",
2307
+ "isDeprecated": true,
2308
+ "name": "category"
2267
2309
  },
2268
2310
  {
2269
2311
  "deprecationReason": null,
2270
- "description": "data downloaded from cloud applications",
2312
+ "description": "For hosts configured with a static IP in the Cato Management Application, the host name",
2271
2313
  "isDeprecated": false,
2272
- "name": "downstream"
2314
+ "name": "configured_host_name"
2273
2315
  },
2274
2316
  {
2275
- "deprecationReason": null,
2276
- "description": "the application risk score assigned by Cato",
2277
- "isDeprecated": false,
2278
- "name": "risk_score"
2317
+ "deprecationReason": "use application_description instead",
2318
+ "description": "Application description",
2319
+ "isDeprecated": true,
2320
+ "name": "description"
2279
2321
  },
2280
2322
  {
2281
2323
  "deprecationReason": null,
2282
- "description": "The application risk score assigned by Cato",
2324
+ "description": "IP for destination host or Cato Client",
2283
2325
  "isDeprecated": false,
2284
- "name": "application_risk_score"
2326
+ "name": "dest_ip"
2285
2327
  },
2286
2328
  {
2287
2329
  "deprecationReason": null,
2288
- "description": "",
2330
+ "description": "Destination is site or remote user",
2289
2331
  "isDeprecated": false,
2290
- "name": "risk_level"
2332
+ "name": "dest_is_site_or_vpn"
2291
2333
  },
2292
2334
  {
2293
2335
  "deprecationReason": null,
2294
- "description": "",
2336
+ "description": "Destination site or remote user identifier",
2295
2337
  "isDeprecated": false,
2296
- "name": "application_risk_level"
2338
+ "name": "dest_site"
2297
2339
  },
2298
2340
  {
2299
2341
  "deprecationReason": null,
2300
- "description": "Is the application defined as sanctioned?",
2342
+ "description": "Destination Site or remote user identifier",
2301
2343
  "isDeprecated": false,
2302
- "name": "sanctioned"
2344
+ "name": "dest_site_id"
2303
2345
  },
2304
2346
  {
2305
2347
  "deprecationReason": null,
2306
- "description": "Is the application defined as sanctioned?",
2348
+ "description": "Destination Site or remote user name",
2307
2349
  "isDeprecated": false,
2308
- "name": "is_sanctioned_app"
2350
+ "name": "dest_site_name"
2309
2351
  },
2310
2352
  {
2311
2353
  "deprecationReason": null,
2312
- "description": "the country in which the registered application headquarteres is located",
2354
+ "description": "Name for device related to the traffic",
2313
2355
  "isDeprecated": false,
2314
- "name": "hq_location"
2356
+ "name": "device_name"
2315
2357
  },
2316
2358
  {
2317
2359
  "deprecationReason": null,
2318
- "description": "indicates whether the application is considered cloud app/SaaS app",
2360
+ "description": "",
2319
2361
  "isDeprecated": false,
2320
- "name": "is_cloud_app"
2362
+ "name": "discovered_app"
2321
2363
  },
2322
2364
  {
2323
- "deprecationReason": null,
2324
- "description": "Cato system category of the application",
2325
- "isDeprecated": false,
2326
- "name": "category"
2365
+ "deprecationReason": "user tld instead",
2366
+ "description": "",
2367
+ "isDeprecated": true,
2368
+ "name": "domain"
2327
2369
  },
2328
2370
  {
2329
2371
  "deprecationReason": null,
2330
- "description": "Cato system categories of the application",
2372
+ "description": "data downloaded from cloud applications",
2331
2373
  "isDeprecated": false,
2332
- "name": "categories"
2374
+ "name": "downstream"
2333
2375
  },
2334
2376
  {
2335
2377
  "deprecationReason": null,
2336
- "description": "Application description",
2378
+ "description": "",
2337
2379
  "isDeprecated": false,
2338
- "name": "description"
2380
+ "name": "flows_created"
2339
2381
  },
2340
2382
  {
2341
2383
  "deprecationReason": null,
2342
- "description": "Application description",
2384
+ "description": "the country in which the registered application headquarteres is located",
2343
2385
  "isDeprecated": false,
2344
- "name": "application_description"
2386
+ "name": "hq_location"
2345
2387
  },
2346
2388
  {
2347
2389
  "deprecationReason": null,
@@ -2351,75 +2393,87 @@
2351
2393
  },
2352
2394
  {
2353
2395
  "deprecationReason": null,
2354
- "description": "Name of subnet as defined in Cato Management Application",
2396
+ "description": "indicates whether the application is considered cloud app/SaaS app",
2355
2397
  "isDeprecated": false,
2356
- "name": "subnet"
2398
+ "name": "is_cloud_app"
2357
2399
  },
2358
2400
  {
2359
2401
  "deprecationReason": null,
2360
- "description": "Name of subnet as defined in Cato Management Application",
2402
+ "description": "Is the application defined as sanctioned?",
2361
2403
  "isDeprecated": false,
2362
- "name": "subnet_name"
2404
+ "name": "is_sanctioned_app"
2363
2405
  },
2364
2406
  {
2365
2407
  "deprecationReason": null,
2366
- "description": "",
2408
+ "description": "new cloud application identifier",
2367
2409
  "isDeprecated": false,
2368
- "name": "domain"
2410
+ "name": "new_app"
2369
2411
  },
2370
2412
  {
2371
- "deprecationReason": null,
2372
- "description": "IP for destination host or Cato Client",
2373
- "isDeprecated": false,
2374
- "name": "dest_ip"
2413
+ "deprecationReason": "use application_risk_level instead",
2414
+ "description": "",
2415
+ "isDeprecated": true,
2416
+ "name": "risk_level"
2417
+ },
2418
+ {
2419
+ "deprecationReason": "use application_risk_score instead",
2420
+ "description": "the application risk score assigned by Cato",
2421
+ "isDeprecated": true,
2422
+ "name": "risk_score"
2423
+ },
2424
+ {
2425
+ "deprecationReason": "use is_sanctioned_app instead",
2426
+ "description": "Is the application defined as sanctioned?",
2427
+ "isDeprecated": true,
2428
+ "name": "sanctioned"
2375
2429
  },
2376
2430
  {
2377
2431
  "deprecationReason": null,
2378
- "description": "Top level domain",
2432
+ "description": "Country in which the source host is located",
2379
2433
  "isDeprecated": false,
2380
- "name": "tld"
2434
+ "name": "site_country"
2381
2435
  },
2382
2436
  {
2383
2437
  "deprecationReason": null,
2384
- "description": "User identifier",
2438
+ "description": "State in which the source host is located",
2385
2439
  "isDeprecated": false,
2386
- "name": "user_id"
2440
+ "name": "site_state"
2387
2441
  },
2388
2442
  {
2389
2443
  "deprecationReason": null,
2390
- "description": "User name",
2444
+ "description": "Name for Socket interface",
2391
2445
  "isDeprecated": false,
2392
- "name": "user_name"
2446
+ "name": "socket_interface"
2393
2447
  },
2394
2448
  {
2395
2449
  "deprecationReason": null,
2396
- "description": "Source site or remote user identifier",
2450
+ "description": "IP for source host or Cato Client",
2397
2451
  "isDeprecated": false,
2398
- "name": "src_site_id"
2452
+ "name": "src_ip"
2399
2453
  },
2400
2454
  {
2401
2455
  "deprecationReason": null,
2402
- "description": "Source site or remote user name",
2456
+ "description": "Source is site or remote user",
2403
2457
  "isDeprecated": false,
2404
- "name": "src_site_name"
2458
+ "name": "src_is_site_or_vpn"
2405
2459
  },
2406
2460
  {
2407
2461
  "deprecationReason": null,
2408
- "description": "Country in which the source host is located",
2462
+ "description": "Site country code alpha2",
2409
2463
  "isDeprecated": false,
2410
- "name": "site_country"
2464
+ "name": "src_site_country_code"
2411
2465
  },
2412
2466
  {
2413
2467
  "deprecationReason": null,
2414
- "description": "Site country code alpha2",
2468
+ "description": "Source site or remote user identifier",
2415
2469
  "isDeprecated": false,
2416
- "name": "src_site_country_code"
2470
+ "name": "src_site_id"
2417
2471
  },
2418
2472
  {
2419
2473
  "deprecationReason": null,
2420
- "description": "State in which the source host is located",
2474
+ "description": "Source site or remote user name",
2421
2475
  "isDeprecated": false,
2422
- "name": "site_state"
2476
+ "name": "src_site_name"
2423
2477
  },
2424
2478
  {
2425
2479
  "deprecationReason": null,
@@ -2428,40 +2482,28 @@
2428
2482
  "name": "src_site_state"
2429
2483
  },
2430
2484
  {
2431
- "deprecationReason": "use user_id instead",
2432
- "description": "",
2485
+ "deprecationReason": "use subnet_name instead",
2486
+ "description": "Name of subnet as defined in Cato Management Application",
2433
2487
  "isDeprecated": true,
2434
- "name": "vpn_user_id"
2435
- },
2436
- {
2437
- "deprecationReason": null,
2438
- "description": "",
2439
- "isDeprecated": false,
2440
- "name": "flows_created"
2441
- },
2442
- {
2443
- "deprecationReason": null,
2444
- "description": "Destination site or remote user identifier",
2445
- "isDeprecated": false,
2446
- "name": "dest_site"
2488
+ "name": "subnet"
2447
2489
  },
2448
2490
  {
2449
2491
  "deprecationReason": null,
2450
- "description": "Destination is site or remote user",
2492
+ "description": "Name of subnet as defined in Cato Management Application",
2451
2493
  "isDeprecated": false,
2452
- "name": "dest_is_site_or_vpn"
2494
+ "name": "subnet_name"
2453
2495
  },
2454
2496
  {
2455
2497
  "deprecationReason": null,
2456
- "description": "Destination Site or remote user identifier",
2498
+ "description": "Top level domain",
2457
2499
  "isDeprecated": false,
2458
- "name": "dest_site_id"
2500
+ "name": "tld"
2459
2501
  },
2460
2502
  {
2461
- "deprecationReason": null,
2462
- "description": "Destination Site or remote user name",
2463
- "isDeprecated": false,
2464
- "name": "dest_site_name"
2503
+ "deprecationReason": "use traffic_direction instead",
2504
+ "description": "the total sum of upstream and downstream data in bytes",
2505
+ "isDeprecated": true,
2506
+ "name": "traffic"
2465
2507
  },
2466
2508
  {
2467
2509
  "deprecationReason": null,
@@ -2471,33 +2513,27 @@
2471
2513
  },
2472
2514
  {
2473
2515
  "deprecationReason": null,
2474
- "description": "Name for device related to the traffic",
2475
- "isDeprecated": false,
2476
- "name": "device_name"
2477
- },
2478
- {
2479
- "deprecationReason": null,
2480
- "description": "Active Directory name",
2516
+ "description": "data uploaded to cloud applications",
2481
2517
  "isDeprecated": false,
2482
- "name": "ad_name"
2518
+ "name": "upstream"
2483
2519
  },
2484
2520
  {
2485
2521
  "deprecationReason": null,
2486
- "description": "IP for source host or Cato Client",
2522
+ "description": "User identifier",
2487
2523
  "isDeprecated": false,
2488
- "name": "src_ip"
2524
+ "name": "user_id"
2489
2525
  },
2490
2526
  {
2491
2527
  "deprecationReason": null,
2492
- "description": "Name for Socket interface",
2528
+ "description": "User name",
2493
2529
  "isDeprecated": false,
2494
- "name": "socket_interface"
2530
+ "name": "user_name"
2495
2531
  },
2496
2532
  {
2497
- "deprecationReason": null,
2498
- "description": "Source is site or remote user",
2499
- "isDeprecated": false,
2500
- "name": "src_is_site_or_vpn"
2533
+ "deprecationReason": "use user_id instead",
2534
+ "description": "",
2535
+ "isDeprecated": true,
2536
+ "name": "vpn_user_id"
2501
2537
  }
2502
2538
  ],
2503
2539
  "fields": null,
@@ -2607,8 +2643,14 @@
2607
2643
  "enumValues": [
2608
2644
  {
2609
2645
  "deprecationReason": null,
2610
- "description": "The application identifier",
2646
+ "description": "Active Directory name",
2611
2647
  "isDeprecated": false,
2648
+ "name": "ad_name"
2649
+ },
2650
+ {
2651
+ "deprecationReason": "use application_id instead",
2652
+ "description": "The application identifier",
2653
+ "isDeprecated": true,
2612
2654
  "name": "app"
2613
2655
  },
2614
2656
  {
@@ -2619,177 +2661,165 @@
2619
2661
  },
2620
2662
  {
2621
2663
  "deprecationReason": null,
2622
- "description": "The application name",
2664
+ "description": "Application description",
2623
2665
  "isDeprecated": false,
2624
- "name": "application"
2666
+ "name": "application_description"
2625
2667
  },
2626
2668
  {
2627
- "deprecationReason": null,
2669
+ "deprecationReason": "use application_name instead",
2628
2670
  "description": "The application name",
2629
- "isDeprecated": false,
2630
- "name": "application_name"
2671
+ "isDeprecated": true,
2672
+ "name": "application"
2631
2673
  },
2632
2674
  {
2633
2675
  "deprecationReason": null,
2634
- "description": "new cloud application identifier",
2676
+ "description": "The application name",
2635
2677
  "isDeprecated": false,
2636
- "name": "new_app"
2678
+ "name": "application_name"
2637
2679
  },
2638
2680
  {
2639
2681
  "deprecationReason": null,
2640
2682
  "description": "",
2641
2683
  "isDeprecated": false,
2642
- "name": "discovered_app"
2643
- },
2644
- {
2645
- "deprecationReason": null,
2646
- "description": "the total sum of upstream and downstream data in bytes",
2647
- "isDeprecated": false,
2648
- "name": "traffic"
2684
+ "name": "application_risk_level"
2649
2685
  },
2650
2686
  {
2651
2687
  "deprecationReason": null,
2652
- "description": "data uploaded to cloud applications",
2688
+ "description": "The application risk score assigned by Cato",
2653
2689
  "isDeprecated": false,
2654
- "name": "upstream"
2690
+ "name": "application_risk_score"
2655
2691
  },
2656
2692
  {
2657
2693
  "deprecationReason": null,
2658
- "description": "data downloaded from cloud applications",
2694
+ "description": "Cato system categories of the application",
2659
2695
  "isDeprecated": false,
2660
- "name": "downstream"
2696
+ "name": "categories"
2661
2697
  },
2662
2698
  {
2663
- "deprecationReason": null,
2664
- "description": "the application risk score assigned by Cato",
2665
- "isDeprecated": false,
2666
- "name": "risk_score"
2699
+ "deprecationReason": "use categories instead",
2700
+ "description": "Cato system category of the application",
2701
+ "isDeprecated": true,
2702
+ "name": "category"
2667
2703
  },
2668
2704
  {
2669
2705
  "deprecationReason": null,
2670
- "description": "The application risk score assigned by Cato",
2706
+ "description": "For hosts configured with a static IP in the Cato Management Application, the host name",
2671
2707
  "isDeprecated": false,
2672
- "name": "application_risk_score"
2708
+ "name": "configured_host_name"
2673
2709
  },
2674
2710
  {
2675
- "deprecationReason": null,
2676
- "description": "",
2677
- "isDeprecated": false,
2678
- "name": "risk_level"
2711
+ "deprecationReason": "use application_description instead",
2712
+ "description": "Application description",
2713
+ "isDeprecated": true,
2714
+ "name": "description"
2679
2715
  },
2680
2716
  {
2681
2717
  "deprecationReason": null,
2682
- "description": "",
2718
+ "description": "IP for destination host or Cato Client",
2683
2719
  "isDeprecated": false,
2684
- "name": "application_risk_level"
2720
+ "name": "dest_ip"
2685
2721
  },
2686
2722
  {
2687
2723
  "deprecationReason": null,
2688
- "description": "Is the application defined as sanctioned?",
2724
+ "description": "Destination is site or remote user",
2689
2725
  "isDeprecated": false,
2690
- "name": "sanctioned"
2726
+ "name": "dest_is_site_or_vpn"
2691
2727
  },
2692
2728
  {
2693
2729
  "deprecationReason": null,
2694
- "description": "Is the application defined as sanctioned?",
2730
+ "description": "Destination site or remote user identifier",
2695
2731
  "isDeprecated": false,
2696
- "name": "is_sanctioned_app"
2732
+ "name": "dest_site"
2697
2733
  },
2698
2734
  {
2699
2735
  "deprecationReason": null,
2700
- "description": "the country in which the registered application headquarteres is located",
2736
+ "description": "Destination Site or remote user identifier",
2701
2737
  "isDeprecated": false,
2702
- "name": "hq_location"
2738
+ "name": "dest_site_id"
2703
2739
  },
2704
2740
  {
2705
2741
  "deprecationReason": null,
2706
- "description": "indicates whether the application is considered cloud app/SaaS app",
2742
+ "description": "Destination Site or remote user name",
2707
2743
  "isDeprecated": false,
2708
- "name": "is_cloud_app"
2744
+ "name": "dest_site_name"
2709
2745
  },
2710
2746
  {
2711
2747
  "deprecationReason": null,
2712
- "description": "Cato system category of the application",
2748
+ "description": "Name for device related to the traffic",
2713
2749
  "isDeprecated": false,
2714
- "name": "category"
2750
+ "name": "device_name"
2715
2751
  },
2716
2752
  {
2717
2753
  "deprecationReason": null,
2718
- "description": "Cato system categories of the application",
2754
+ "description": "",
2719
2755
  "isDeprecated": false,
2720
- "name": "categories"
2756
+ "name": "discovered_app"
2721
2757
  },
2722
2758
  {
2723
- "deprecationReason": null,
2724
- "description": "Application description",
2725
- "isDeprecated": false,
2726
- "name": "description"
2759
+ "deprecationReason": "user tld instead",
2760
+ "description": "",
2761
+ "isDeprecated": true,
2762
+ "name": "domain"
2727
2763
  },
2728
2764
  {
2729
2765
  "deprecationReason": null,
2730
- "description": "Application description",
2766
+ "description": "data downloaded from cloud applications",
2731
2767
  "isDeprecated": false,
2732
- "name": "application_description"
2768
+ "name": "downstream"
2733
2769
  },
2734
2770
  {
2735
2771
  "deprecationReason": null,
2736
2772
  "description": "",
2737
2773
  "isDeprecated": false,
2738
- "name": "ip"
2739
- },
2740
- {
2741
- "deprecationReason": null,
2742
- "description": "Name of subnet as defined in Cato Management Application",
2743
- "isDeprecated": false,
2744
- "name": "subnet"
2774
+ "name": "flows_created"
2745
2775
  },
2746
2776
  {
2747
2777
  "deprecationReason": null,
2748
- "description": "Name of subnet as defined in Cato Management Application",
2778
+ "description": "the country in which the registered application headquarteres is located",
2749
2779
  "isDeprecated": false,
2750
- "name": "subnet_name"
2780
+ "name": "hq_location"
2751
2781
  },
2752
2782
  {
2753
2783
  "deprecationReason": null,
2754
2784
  "description": "",
2755
2785
  "isDeprecated": false,
2756
- "name": "domain"
2786
+ "name": "ip"
2757
2787
  },
2758
2788
  {
2759
2789
  "deprecationReason": null,
2760
- "description": "IP for destination host or Cato Client",
2790
+ "description": "indicates whether the application is considered cloud app/SaaS app",
2761
2791
  "isDeprecated": false,
2762
- "name": "dest_ip"
2792
+ "name": "is_cloud_app"
2763
2793
  },
2764
2794
  {
2765
2795
  "deprecationReason": null,
2766
- "description": "Top level domain",
2796
+ "description": "Is the application defined as sanctioned?",
2767
2797
  "isDeprecated": false,
2768
- "name": "tld"
2798
+ "name": "is_sanctioned_app"
2769
2799
  },
2770
2800
  {
2771
2801
  "deprecationReason": null,
2772
- "description": "User identifier",
2802
+ "description": "new cloud application identifier",
2773
2803
  "isDeprecated": false,
2774
- "name": "user_id"
2804
+ "name": "new_app"
2775
2805
  },
2776
2806
  {
2777
- "deprecationReason": null,
2778
- "description": "User name",
2779
- "isDeprecated": false,
2780
- "name": "user_name"
2807
+ "deprecationReason": "use application_risk_level instead",
2808
+ "description": "",
2809
+ "isDeprecated": true,
2810
+ "name": "risk_level"
2781
2811
  },
2782
2812
  {
2783
- "deprecationReason": null,
2784
- "description": "Source site or remote user identifier",
2785
- "isDeprecated": false,
2786
- "name": "src_site_id"
2813
+ "deprecationReason": "use application_risk_score instead",
2814
+ "description": "the application risk score assigned by Cato",
2815
+ "isDeprecated": true,
2816
+ "name": "risk_score"
2787
2817
  },
2788
2818
  {
2789
- "deprecationReason": null,
2790
- "description": "Source site or remote user name",
2791
- "isDeprecated": false,
2792
- "name": "src_site_name"
2819
+ "deprecationReason": "use is_sanctioned_app instead",
2820
+ "description": "Is the application defined as sanctioned?",
2821
+ "isDeprecated": true,
2822
+ "name": "sanctioned"
2793
2823
  },
2794
2824
  {
2795
2825
  "deprecationReason": null,
@@ -2799,93 +2829,105 @@
2799
2829
  },
2800
2830
  {
2801
2831
  "deprecationReason": null,
2802
- "description": "Site country code alpha2",
2832
+ "description": "State in which the source host is located",
2803
2833
  "isDeprecated": false,
2804
- "name": "src_site_country_code"
2834
+ "name": "site_state"
2805
2835
  },
2806
2836
  {
2807
2837
  "deprecationReason": null,
2808
- "description": "State in which the source host is located",
2838
+ "description": "Name for Socket interface",
2809
2839
  "isDeprecated": false,
2810
- "name": "site_state"
2840
+ "name": "socket_interface"
2811
2841
  },
2812
2842
  {
2813
2843
  "deprecationReason": null,
2814
- "description": "Site state code",
2844
+ "description": "IP for source host or Cato Client",
2815
2845
  "isDeprecated": false,
2816
- "name": "src_site_state"
2846
+ "name": "src_ip"
2817
2847
  },
2818
2848
  {
2819
- "deprecationReason": "use user_id instead",
2820
- "description": "",
2821
- "isDeprecated": true,
2822
- "name": "vpn_user_id"
2849
+ "deprecationReason": null,
2850
+ "description": "Source is site or remote user",
2851
+ "isDeprecated": false,
2852
+ "name": "src_is_site_or_vpn"
2823
2853
  },
2824
2854
  {
2825
2855
  "deprecationReason": null,
2826
- "description": "",
2856
+ "description": "Site country code alpha2",
2827
2857
  "isDeprecated": false,
2828
- "name": "flows_created"
2858
+ "name": "src_site_country_code"
2829
2859
  },
2830
2860
  {
2831
2861
  "deprecationReason": null,
2832
- "description": "Destination site or remote user identifier",
2862
+ "description": "Source site or remote user identifier",
2833
2863
  "isDeprecated": false,
2834
- "name": "dest_site"
2864
+ "name": "src_site_id"
2835
2865
  },
2836
2866
  {
2837
2867
  "deprecationReason": null,
2838
- "description": "Destination is site or remote user",
2868
+ "description": "Source site or remote user name",
2839
2869
  "isDeprecated": false,
2840
- "name": "dest_is_site_or_vpn"
2870
+ "name": "src_site_name"
2841
2871
  },
2842
2872
  {
2843
2873
  "deprecationReason": null,
2844
- "description": "Destination Site or remote user identifier",
2874
+ "description": "Site state code",
2845
2875
  "isDeprecated": false,
2846
- "name": "dest_site_id"
2876
+ "name": "src_site_state"
2847
2877
  },
2848
2878
  {
2849
- "deprecationReason": null,
2850
- "description": "Destination Site or remote user name",
2851
- "isDeprecated": false,
2852
- "name": "dest_site_name"
2879
+ "deprecationReason": "use subnet_name instead",
2880
+ "description": "Name of subnet as defined in Cato Management Application",
2881
+ "isDeprecated": true,
2882
+ "name": "subnet"
2853
2883
  },
2854
2884
  {
2855
2885
  "deprecationReason": null,
2856
- "description": "Traffic direction",
2886
+ "description": "Name of subnet as defined in Cato Management Application",
2857
2887
  "isDeprecated": false,
2858
- "name": "traffic_direction"
2888
+ "name": "subnet_name"
2859
2889
  },
2860
2890
  {
2861
2891
  "deprecationReason": null,
2862
- "description": "Name for device related to the traffic",
2892
+ "description": "Top level domain",
2863
2893
  "isDeprecated": false,
2864
- "name": "device_name"
2894
+ "name": "tld"
2895
+ },
2896
+ {
2897
+ "deprecationReason": "use traffic_direction instead",
2898
+ "description": "the total sum of upstream and downstream data in bytes",
2899
+ "isDeprecated": true,
2900
+ "name": "traffic"
2865
2901
  },
2866
2902
  {
2867
2903
  "deprecationReason": null,
2868
- "description": "Active Directory name",
2904
+ "description": "Traffic direction",
2869
2905
  "isDeprecated": false,
2870
- "name": "ad_name"
2906
+ "name": "traffic_direction"
2871
2907
  },
2872
2908
  {
2873
2909
  "deprecationReason": null,
2874
- "description": "IP for source host or Cato Client",
2910
+ "description": "data uploaded to cloud applications",
2875
2911
  "isDeprecated": false,
2876
- "name": "src_ip"
2912
+ "name": "upstream"
2877
2913
  },
2878
2914
  {
2879
2915
  "deprecationReason": null,
2880
- "description": "Name for Socket interface",
2916
+ "description": "User identifier",
2881
2917
  "isDeprecated": false,
2882
- "name": "socket_interface"
2918
+ "name": "user_id"
2883
2919
  },
2884
2920
  {
2885
2921
  "deprecationReason": null,
2886
- "description": "Source is site or remote user",
2922
+ "description": "User name",
2887
2923
  "isDeprecated": false,
2888
- "name": "src_is_site_or_vpn"
2924
+ "name": "user_name"
2925
+ },
2926
+ {
2927
+ "deprecationReason": "use user_id instead",
2928
+ "description": "",
2929
+ "isDeprecated": true,
2930
+ "name": "vpn_user_id"
2889
2931
  }
2890
2932
  ],
2891
2933
  "fields": null,
@@ -3078,8 +3120,14 @@
3078
3120
  "enumValues": [
3079
3121
  {
3080
3122
  "deprecationReason": null,
3081
- "description": "The application identifier",
3123
+ "description": "Active Directory name",
3082
3124
  "isDeprecated": false,
3125
+ "name": "ad_name"
3126
+ },
3127
+ {
3128
+ "deprecationReason": "use application_id instead",
3129
+ "description": "The application identifier",
3130
+ "isDeprecated": true,
3083
3131
  "name": "app"
3084
3132
  },
3085
3133
  {
@@ -3090,8 +3138,14 @@
3090
3138
  },
3091
3139
  {
3092
3140
  "deprecationReason": null,
3093
- "description": "The application name",
3141
+ "description": "Application description",
3094
3142
  "isDeprecated": false,
3143
+ "name": "application_description"
3144
+ },
3145
+ {
3146
+ "deprecationReason": "use application_name instead",
3147
+ "description": "The application name",
3148
+ "isDeprecated": true,
3095
3149
  "name": "application"
3096
3150
  },
3097
3151
  {
@@ -3102,105 +3156,105 @@
3102
3156
  },
3103
3157
  {
3104
3158
  "deprecationReason": null,
3105
- "description": "new cloud application identifier",
3159
+ "description": "",
3106
3160
  "isDeprecated": false,
3107
- "name": "new_app"
3161
+ "name": "application_risk_level"
3108
3162
  },
3109
3163
  {
3110
3164
  "deprecationReason": null,
3111
- "description": "",
3165
+ "description": "The application risk score assigned by Cato",
3112
3166
  "isDeprecated": false,
3113
- "name": "discovered_app"
3167
+ "name": "application_risk_score"
3114
3168
  },
3115
3169
  {
3116
3170
  "deprecationReason": null,
3117
- "description": "the total sum of upstream and downstream data in bytes",
3171
+ "description": "Cato system categories of the application",
3118
3172
  "isDeprecated": false,
3119
- "name": "traffic"
3173
+ "name": "categories"
3120
3174
  },
3121
3175
  {
3122
- "deprecationReason": null,
3123
- "description": "data uploaded to cloud applications",
3124
- "isDeprecated": false,
3125
- "name": "upstream"
3176
+ "deprecationReason": "use categories instead",
3177
+ "description": "Cato system category of the application",
3178
+ "isDeprecated": true,
3179
+ "name": "category"
3126
3180
  },
3127
3181
  {
3128
3182
  "deprecationReason": null,
3129
- "description": "data downloaded from cloud applications",
3183
+ "description": "For hosts configured with a static IP in the Cato Management Application, the host name",
3130
3184
  "isDeprecated": false,
3131
- "name": "downstream"
3185
+ "name": "configured_host_name"
3132
3186
  },
3133
3187
  {
3134
- "deprecationReason": null,
3135
- "description": "the application risk score assigned by Cato",
3136
- "isDeprecated": false,
3137
- "name": "risk_score"
3188
+ "deprecationReason": "use application_description instead",
3189
+ "description": "Application description",
3190
+ "isDeprecated": true,
3191
+ "name": "description"
3138
3192
  },
3139
3193
  {
3140
3194
  "deprecationReason": null,
3141
- "description": "The application risk score assigned by Cato",
3195
+ "description": "IP for destination host or Cato Client",
3142
3196
  "isDeprecated": false,
3143
- "name": "application_risk_score"
3197
+ "name": "dest_ip"
3144
3198
  },
3145
3199
  {
3146
3200
  "deprecationReason": null,
3147
- "description": "",
3201
+ "description": "Destination is site or remote user",
3148
3202
  "isDeprecated": false,
3149
- "name": "risk_level"
3203
+ "name": "dest_is_site_or_vpn"
3150
3204
  },
3151
3205
  {
3152
3206
  "deprecationReason": null,
3153
- "description": "",
3207
+ "description": "Destination site or remote user identifier",
3154
3208
  "isDeprecated": false,
3155
- "name": "application_risk_level"
3209
+ "name": "dest_site"
3156
3210
  },
3157
3211
  {
3158
3212
  "deprecationReason": null,
3159
- "description": "Is the application defined as sanctioned?",
3213
+ "description": "Destination Site or remote user identifier",
3160
3214
  "isDeprecated": false,
3161
- "name": "sanctioned"
3215
+ "name": "dest_site_id"
3162
3216
  },
3163
3217
  {
3164
3218
  "deprecationReason": null,
3165
- "description": "Is the application defined as sanctioned?",
3219
+ "description": "Destination Site or remote user name",
3166
3220
  "isDeprecated": false,
3167
- "name": "is_sanctioned_app"
3221
+ "name": "dest_site_name"
3168
3222
  },
3169
3223
  {
3170
3224
  "deprecationReason": null,
3171
- "description": "the country in which the registered application headquarteres is located",
3225
+ "description": "Name for device related to the traffic",
3172
3226
  "isDeprecated": false,
3173
- "name": "hq_location"
3227
+ "name": "device_name"
3174
3228
  },
3175
3229
  {
3176
3230
  "deprecationReason": null,
3177
- "description": "indicates whether the application is considered cloud app/SaaS app",
3231
+ "description": "",
3178
3232
  "isDeprecated": false,
3179
- "name": "is_cloud_app"
3233
+ "name": "discovered_app"
3180
3234
  },
3181
3235
  {
3182
- "deprecationReason": null,
3183
- "description": "Cato system category of the application",
3184
- "isDeprecated": false,
3185
- "name": "category"
3236
+ "deprecationReason": "user tld instead",
3237
+ "description": "",
3238
+ "isDeprecated": true,
3239
+ "name": "domain"
3186
3240
  },
3187
3241
  {
3188
3242
  "deprecationReason": null,
3189
- "description": "Cato system categories of the application",
3243
+ "description": "data downloaded from cloud applications",
3190
3244
  "isDeprecated": false,
3191
- "name": "categories"
3245
+ "name": "downstream"
3192
3246
  },
3193
3247
  {
3194
3248
  "deprecationReason": null,
3195
- "description": "Application description",
3249
+ "description": "",
3196
3250
  "isDeprecated": false,
3197
- "name": "description"
3251
+ "name": "flows_created"
3198
3252
  },
3199
3253
  {
3200
3254
  "deprecationReason": null,
3201
- "description": "Application description",
3255
+ "description": "the country in which the registered application headquarteres is located",
3202
3256
  "isDeprecated": false,
3203
- "name": "application_description"
3257
+ "name": "hq_location"
3204
3258
  },
3205
3259
  {
3206
3260
  "deprecationReason": null,
@@ -3210,63 +3264,69 @@
3210
3264
  },
3211
3265
  {
3212
3266
  "deprecationReason": null,
3213
- "description": "Name of subnet as defined in Cato Management Application",
3267
+ "description": "indicates whether the application is considered cloud app/SaaS app",
3214
3268
  "isDeprecated": false,
3215
- "name": "subnet"
3269
+ "name": "is_cloud_app"
3216
3270
  },
3217
3271
  {
3218
3272
  "deprecationReason": null,
3219
- "description": "Name of subnet as defined in Cato Management Application",
3273
+ "description": "Is the application defined as sanctioned?",
3220
3274
  "isDeprecated": false,
3221
- "name": "subnet_name"
3275
+ "name": "is_sanctioned_app"
3222
3276
  },
3223
3277
  {
3224
3278
  "deprecationReason": null,
3225
- "description": "",
3279
+ "description": "new cloud application identifier",
3226
3280
  "isDeprecated": false,
3227
- "name": "domain"
3281
+ "name": "new_app"
3228
3282
  },
3229
3283
  {
3230
- "deprecationReason": null,
3231
- "description": "IP for destination host or Cato Client",
3232
- "isDeprecated": false,
3233
- "name": "dest_ip"
3284
+ "deprecationReason": "use application_risk_level instead",
3285
+ "description": "",
3286
+ "isDeprecated": true,
3287
+ "name": "risk_level"
3234
3288
  },
3235
3289
  {
3236
- "deprecationReason": null,
3237
- "description": "Top level domain",
3238
- "isDeprecated": false,
3239
- "name": "tld"
3290
+ "deprecationReason": "use application_risk_score instead",
3291
+ "description": "the application risk score assigned by Cato",
3292
+ "isDeprecated": true,
3293
+ "name": "risk_score"
3294
+ },
3295
+ {
3296
+ "deprecationReason": "use is_sanctioned_app instead",
3297
+ "description": "Is the application defined as sanctioned?",
3298
+ "isDeprecated": true,
3299
+ "name": "sanctioned"
3240
3300
  },
3241
3301
  {
3242
3302
  "deprecationReason": null,
3243
- "description": "User identifier",
3303
+ "description": "Country in which the source host is located",
3244
3304
  "isDeprecated": false,
3245
- "name": "user_id"
3305
+ "name": "site_country"
3246
3306
  },
3247
3307
  {
3248
3308
  "deprecationReason": null,
3249
- "description": "User name",
3309
+ "description": "State in which the source host is located",
3250
3310
  "isDeprecated": false,
3251
- "name": "user_name"
3311
+ "name": "site_state"
3252
3312
  },
3253
3313
  {
3254
3314
  "deprecationReason": null,
3255
- "description": "Source site or remote user identifier",
3315
+ "description": "Name for Socket interface",
3256
3316
  "isDeprecated": false,
3257
- "name": "src_site_id"
3317
+ "name": "socket_interface"
3258
3318
  },
3259
3319
  {
3260
3320
  "deprecationReason": null,
3261
- "description": "Source site or remote user name",
3321
+ "description": "IP for source host or Cato Client",
3262
3322
  "isDeprecated": false,
3263
- "name": "src_site_name"
3323
+ "name": "src_ip"
3264
3324
  },
3265
3325
  {
3266
3326
  "deprecationReason": null,
3267
- "description": "Country in which the source host is located",
3327
+ "description": "Source is site or remote user",
3268
3328
  "isDeprecated": false,
3269
- "name": "site_country"
3329
+ "name": "src_is_site_or_vpn"
3270
3330
  },
3271
3331
  {
3272
3332
  "deprecationReason": null,
@@ -3276,51 +3336,45 @@
3276
3336
  },
3277
3337
  {
3278
3338
  "deprecationReason": null,
3279
- "description": "State in which the source host is located",
3339
+ "description": "Source site or remote user identifier",
3280
3340
  "isDeprecated": false,
3281
- "name": "site_state"
3341
+ "name": "src_site_id"
3282
3342
  },
3283
3343
  {
3284
3344
  "deprecationReason": null,
3285
- "description": "Site state code",
3345
+ "description": "Source site or remote user name",
3286
3346
  "isDeprecated": false,
3287
- "name": "src_site_state"
3288
- },
3289
- {
3290
- "deprecationReason": "use user_id instead",
3291
- "description": "",
3292
- "isDeprecated": true,
3293
- "name": "vpn_user_id"
3347
+ "name": "src_site_name"
3294
3348
  },
3295
3349
  {
3296
3350
  "deprecationReason": null,
3297
- "description": "",
3351
+ "description": "Site state code",
3298
3352
  "isDeprecated": false,
3299
- "name": "flows_created"
3353
+ "name": "src_site_state"
3300
3354
  },
3301
3355
  {
3302
- "deprecationReason": null,
3303
- "description": "Destination site or remote user identifier",
3304
- "isDeprecated": false,
3305
- "name": "dest_site"
3356
+ "deprecationReason": "use subnet_name instead",
3357
+ "description": "Name of subnet as defined in Cato Management Application",
3358
+ "isDeprecated": true,
3359
+ "name": "subnet"
3306
3360
  },
3307
3361
  {
3308
3362
  "deprecationReason": null,
3309
- "description": "Destination is site or remote user",
3363
+ "description": "Name of subnet as defined in Cato Management Application",
3310
3364
  "isDeprecated": false,
3311
- "name": "dest_is_site_or_vpn"
3365
+ "name": "subnet_name"
3312
3366
  },
3313
3367
  {
3314
3368
  "deprecationReason": null,
3315
- "description": "Destination Site or remote user identifier",
3369
+ "description": "Top level domain",
3316
3370
  "isDeprecated": false,
3317
- "name": "dest_site_id"
3371
+ "name": "tld"
3318
3372
  },
3319
3373
  {
3320
- "deprecationReason": null,
3321
- "description": "Destination Site or remote user name",
3322
- "isDeprecated": false,
3323
- "name": "dest_site_name"
3374
+ "deprecationReason": "use traffic_direction instead",
3375
+ "description": "the total sum of upstream and downstream data in bytes",
3376
+ "isDeprecated": true,
3377
+ "name": "traffic"
3324
3378
  },
3325
3379
  {
3326
3380
  "deprecationReason": null,
@@ -3330,33 +3384,27 @@
3330
3384
  },
3331
3385
  {
3332
3386
  "deprecationReason": null,
3333
- "description": "Name for device related to the traffic",
3334
- "isDeprecated": false,
3335
- "name": "device_name"
3336
- },
3337
- {
3338
- "deprecationReason": null,
3339
- "description": "Active Directory name",
3387
+ "description": "data uploaded to cloud applications",
3340
3388
  "isDeprecated": false,
3341
- "name": "ad_name"
3389
+ "name": "upstream"
3342
3390
  },
3343
3391
  {
3344
3392
  "deprecationReason": null,
3345
- "description": "IP for source host or Cato Client",
3393
+ "description": "User identifier",
3346
3394
  "isDeprecated": false,
3347
- "name": "src_ip"
3395
+ "name": "user_id"
3348
3396
  },
3349
3397
  {
3350
3398
  "deprecationReason": null,
3351
- "description": "Name for Socket interface",
3399
+ "description": "User name",
3352
3400
  "isDeprecated": false,
3353
- "name": "socket_interface"
3401
+ "name": "user_name"
3354
3402
  },
3355
3403
  {
3356
- "deprecationReason": null,
3357
- "description": "Source is site or remote user",
3358
- "isDeprecated": false,
3359
- "name": "src_is_site_or_vpn"
3404
+ "deprecationReason": "use user_id instead",
3405
+ "description": "",
3406
+ "isDeprecated": true,
3407
+ "name": "vpn_user_id"
3360
3408
  }
3361
3409
  ],
3362
3410
  "fields": null,