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
models/query.events.json CHANGED
@@ -131,12 +131,6 @@
131
131
  "isDeprecated": false,
132
132
  "name": "app_stack"
133
133
  },
134
- {
135
- "deprecationReason": "use application_id/application_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
136
- "description": "For Internet firewall, app for this event",
137
- "isDeprecated": true,
138
- "name": "application"
139
- },
140
134
  {
141
135
  "deprecationReason": null,
142
136
  "description": "Application ID of the flow",
@@ -347,18 +341,6 @@
347
341
  "isDeprecated": false,
348
342
  "name": "criticality"
349
343
  },
350
- {
351
- "deprecationReason": "use custom_category_id/custom_category_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
352
- "description": "Unique Cato ID for the custom category",
353
- "isDeprecated": true,
354
- "name": "custom_categories"
355
- },
356
- {
357
- "deprecationReason": "use custom_category_id/custom_category_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
358
- "description": "Name for the custom category defined in the Cato Management Application",
359
- "isDeprecated": true,
360
- "name": "custom_category"
361
- },
362
344
  {
363
345
  "deprecationReason": null,
364
346
  "description": "Custom category ID",
@@ -443,12 +425,6 @@
443
425
  "isDeprecated": false,
444
426
  "name": "dest_process_path"
445
427
  },
446
- {
447
- "deprecationReason": "use dest_site_id/dest_site_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
448
- "description": "For WAN traffic, name of destination site or SDP user",
449
- "isDeprecated": true,
450
- "name": "dest_site"
451
- },
452
428
  {
453
429
  "deprecationReason": null,
454
430
  "description": "Unique internal Cato ID for the destination site or remote user",
@@ -521,12 +497,6 @@
521
497
  "isDeprecated": false,
522
498
  "name": "device_posture_profile"
523
499
  },
524
- {
525
- "deprecationReason": "use device_posture_profile instead. Planned end-of-life (EoL) date: May 1, 2025.",
526
- "description": "Device posture profiles",
527
- "isDeprecated": true,
528
- "name": "device_posture_profiles"
529
- },
530
500
  {
531
501
  "deprecationReason": null,
532
502
  "description": "Device Type",
@@ -623,6 +593,12 @@
623
593
  "isDeprecated": false,
624
594
  "name": "endpoint_id"
625
595
  },
596
+ {
597
+ "deprecationReason": null,
598
+ "description": "The engine type associated with the event",
599
+ "isDeprecated": false,
600
+ "name": "engine_type"
601
+ },
626
602
  {
627
603
  "deprecationReason": null,
628
604
  "description": "The Endpoint Protection Engine that detected the malware",
@@ -1013,12 +989,24 @@
1013
989
  "isDeprecated": false,
1014
990
  "name": "producer"
1015
991
  },
992
+ {
993
+ "deprecationReason": null,
994
+ "description": "Related project name(s)",
995
+ "isDeprecated": false,
996
+ "name": "projects"
997
+ },
1016
998
  {
1017
999
  "deprecationReason": null,
1018
1000
  "description": "Prompt Page Selected Action",
1019
1001
  "isDeprecated": false,
1020
1002
  "name": "prompt_action"
1021
1003
  },
1004
+ {
1005
+ "deprecationReason": null,
1006
+ "description": "The name of the provider, for example cloud provider - AWS",
1007
+ "isDeprecated": false,
1008
+ "name": "provider_name"
1009
+ },
1022
1010
  {
1023
1011
  "deprecationReason": null,
1024
1012
  "description": "Public source IP",
@@ -1073,6 +1061,12 @@
1073
1061
  "isDeprecated": false,
1074
1062
  "name": "referer_url"
1075
1063
  },
1064
+ {
1065
+ "deprecationReason": null,
1066
+ "description": "The region of the object",
1067
+ "isDeprecated": false,
1068
+ "name": "region_name"
1069
+ },
1076
1070
  {
1077
1071
  "deprecationReason": null,
1078
1072
  "description": "Registration code used the first time that a SDP user authenticates (the code is partially obfuscated)",
@@ -1081,15 +1075,15 @@
1081
1075
  },
1082
1076
  {
1083
1077
  "deprecationReason": null,
1084
- "description": "(IPS or SAM event) Indicates the overall impact of a threat for the host or network: Low \u2013 ie. adware Medium \u2013 ie. network scans High \u2013 ie. spyware or worms",
1078
+ "description": "The ID of the resource in the cloud provider",
1085
1079
  "isDeprecated": false,
1086
- "name": "risk_level"
1080
+ "name": "resource_id"
1087
1081
  },
1088
1082
  {
1089
- "deprecationReason": "use rule_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
1090
- "description": "Name of security rule related to the event",
1091
- "isDeprecated": true,
1092
- "name": "rule"
1083
+ "deprecationReason": null,
1084
+ "description": "(IPS or SAM event) Indicates the overall impact of a threat for the host or network: Low \u2013 ie. adware Medium \u2013 ie. network scans High \u2013 ie. spyware or worms",
1085
+ "isDeprecated": false,
1086
+ "name": "risk_level"
1093
1087
  },
1094
1088
  {
1095
1089
  "deprecationReason": null,
@@ -1211,12 +1205,6 @@
1211
1205
  "isDeprecated": false,
1212
1206
  "name": "src_isp_ip"
1213
1207
  },
1214
- {
1215
- "deprecationReason": "please use src_site_id and dest_site_id instead. Planned end-of-life (EoL) date: June 30, 2025.",
1216
- "description": "Source or destination site or remote user ID.\nThis field can only be used in filter.",
1217
- "isDeprecated": true,
1218
- "name": "src_or_dest_site_id"
1219
- },
1220
1208
  {
1221
1209
  "deprecationReason": null,
1222
1210
  "description": "Source process ID",
@@ -1253,12 +1241,6 @@
1253
1241
  "isDeprecated": false,
1254
1242
  "name": "src_process_path"
1255
1243
  },
1256
- {
1257
- "deprecationReason": "use src_site_id/src_site_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
1258
- "description": "Name of site or user initiating the connection",
1259
- "isDeprecated": true,
1260
- "name": "src_site"
1261
- },
1262
1244
  {
1263
1245
  "deprecationReason": null,
1264
1246
  "description": "Unique internal Cato ID for the site or remote user",
@@ -1295,6 +1277,12 @@
1295
1277
  "isDeprecated": false,
1296
1278
  "name": "subnet_name"
1297
1279
  },
1280
+ {
1281
+ "deprecationReason": null,
1282
+ "description": "The name of the subscription",
1283
+ "isDeprecated": false,
1284
+ "name": "subscription_name"
1285
+ },
1298
1286
  {
1299
1287
  "deprecationReason": null,
1300
1288
  "description": "Number of targets (servers) associated with this event",
@@ -1735,12 +1723,6 @@
1735
1723
  "isDeprecated": false,
1736
1724
  "name": "app_stack"
1737
1725
  },
1738
- {
1739
- "deprecationReason": "use application_id/application_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
1740
- "description": "For Internet firewall, app for this event",
1741
- "isDeprecated": true,
1742
- "name": "application"
1743
- },
1744
1726
  {
1745
1727
  "deprecationReason": null,
1746
1728
  "description": "Application ID of the flow",
@@ -1951,18 +1933,6 @@
1951
1933
  "isDeprecated": false,
1952
1934
  "name": "criticality"
1953
1935
  },
1954
- {
1955
- "deprecationReason": "use custom_category_id/custom_category_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
1956
- "description": "Unique Cato ID for the custom category",
1957
- "isDeprecated": true,
1958
- "name": "custom_categories"
1959
- },
1960
- {
1961
- "deprecationReason": "use custom_category_id/custom_category_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
1962
- "description": "Name for the custom category defined in the Cato Management Application",
1963
- "isDeprecated": true,
1964
- "name": "custom_category"
1965
- },
1966
1936
  {
1967
1937
  "deprecationReason": null,
1968
1938
  "description": "Custom category ID",
@@ -2047,12 +2017,6 @@
2047
2017
  "isDeprecated": false,
2048
2018
  "name": "dest_process_path"
2049
2019
  },
2050
- {
2051
- "deprecationReason": "use dest_site_id/dest_site_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
2052
- "description": "For WAN traffic, name of destination site or SDP user",
2053
- "isDeprecated": true,
2054
- "name": "dest_site"
2055
- },
2056
2020
  {
2057
2021
  "deprecationReason": null,
2058
2022
  "description": "Unique internal Cato ID for the destination site or remote user",
@@ -2125,12 +2089,6 @@
2125
2089
  "isDeprecated": false,
2126
2090
  "name": "device_posture_profile"
2127
2091
  },
2128
- {
2129
- "deprecationReason": "use device_posture_profile instead. Planned end-of-life (EoL) date: May 1, 2025.",
2130
- "description": "Device posture profiles",
2131
- "isDeprecated": true,
2132
- "name": "device_posture_profiles"
2133
- },
2134
2092
  {
2135
2093
  "deprecationReason": null,
2136
2094
  "description": "Device Type",
@@ -2227,6 +2185,12 @@
2227
2185
  "isDeprecated": false,
2228
2186
  "name": "endpoint_id"
2229
2187
  },
2188
+ {
2189
+ "deprecationReason": null,
2190
+ "description": "The engine type associated with the event",
2191
+ "isDeprecated": false,
2192
+ "name": "engine_type"
2193
+ },
2230
2194
  {
2231
2195
  "deprecationReason": null,
2232
2196
  "description": "The Endpoint Protection Engine that detected the malware",
@@ -2617,12 +2581,24 @@
2617
2581
  "isDeprecated": false,
2618
2582
  "name": "producer"
2619
2583
  },
2584
+ {
2585
+ "deprecationReason": null,
2586
+ "description": "Related project name(s)",
2587
+ "isDeprecated": false,
2588
+ "name": "projects"
2589
+ },
2620
2590
  {
2621
2591
  "deprecationReason": null,
2622
2592
  "description": "Prompt Page Selected Action",
2623
2593
  "isDeprecated": false,
2624
2594
  "name": "prompt_action"
2625
2595
  },
2596
+ {
2597
+ "deprecationReason": null,
2598
+ "description": "The name of the provider, for example cloud provider - AWS",
2599
+ "isDeprecated": false,
2600
+ "name": "provider_name"
2601
+ },
2626
2602
  {
2627
2603
  "deprecationReason": null,
2628
2604
  "description": "Public source IP",
@@ -2677,6 +2653,12 @@
2677
2653
  "isDeprecated": false,
2678
2654
  "name": "referer_url"
2679
2655
  },
2656
+ {
2657
+ "deprecationReason": null,
2658
+ "description": "The region of the object",
2659
+ "isDeprecated": false,
2660
+ "name": "region_name"
2661
+ },
2680
2662
  {
2681
2663
  "deprecationReason": null,
2682
2664
  "description": "Registration code used the first time that a SDP user authenticates (the code is partially obfuscated)",
@@ -2685,15 +2667,15 @@
2685
2667
  },
2686
2668
  {
2687
2669
  "deprecationReason": null,
2688
- "description": "(IPS or SAM event) Indicates the overall impact of a threat for the host or network: Low \u2013 ie. adware Medium \u2013 ie. network scans High \u2013 ie. spyware or worms",
2670
+ "description": "The ID of the resource in the cloud provider",
2689
2671
  "isDeprecated": false,
2690
- "name": "risk_level"
2672
+ "name": "resource_id"
2691
2673
  },
2692
2674
  {
2693
- "deprecationReason": "use rule_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
2694
- "description": "Name of security rule related to the event",
2695
- "isDeprecated": true,
2696
- "name": "rule"
2675
+ "deprecationReason": null,
2676
+ "description": "(IPS or SAM event) Indicates the overall impact of a threat for the host or network: Low \u2013 ie. adware Medium \u2013 ie. network scans High \u2013 ie. spyware or worms",
2677
+ "isDeprecated": false,
2678
+ "name": "risk_level"
2697
2679
  },
2698
2680
  {
2699
2681
  "deprecationReason": null,
@@ -2815,12 +2797,6 @@
2815
2797
  "isDeprecated": false,
2816
2798
  "name": "src_isp_ip"
2817
2799
  },
2818
- {
2819
- "deprecationReason": "please use src_site_id and dest_site_id instead. Planned end-of-life (EoL) date: June 30, 2025.",
2820
- "description": "Source or destination site or remote user ID.\nThis field can only be used in filter.",
2821
- "isDeprecated": true,
2822
- "name": "src_or_dest_site_id"
2823
- },
2824
2800
  {
2825
2801
  "deprecationReason": null,
2826
2802
  "description": "Source process ID",
@@ -2857,12 +2833,6 @@
2857
2833
  "isDeprecated": false,
2858
2834
  "name": "src_process_path"
2859
2835
  },
2860
- {
2861
- "deprecationReason": "use src_site_id/src_site_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
2862
- "description": "Name of site or user initiating the connection",
2863
- "isDeprecated": true,
2864
- "name": "src_site"
2865
- },
2866
2836
  {
2867
2837
  "deprecationReason": null,
2868
2838
  "description": "Unique internal Cato ID for the site or remote user",
@@ -2899,6 +2869,12 @@
2899
2869
  "isDeprecated": false,
2900
2870
  "name": "subnet_name"
2901
2871
  },
2872
+ {
2873
+ "deprecationReason": null,
2874
+ "description": "The name of the subscription",
2875
+ "isDeprecated": false,
2876
+ "name": "subscription_name"
2877
+ },
2902
2878
  {
2903
2879
  "deprecationReason": null,
2904
2880
  "description": "Number of targets (servers) associated with this event",
@@ -3555,12 +3531,6 @@
3555
3531
  "isDeprecated": false,
3556
3532
  "name": "app_stack"
3557
3533
  },
3558
- {
3559
- "deprecationReason": "use application_id/application_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
3560
- "description": "For Internet firewall, app for this event",
3561
- "isDeprecated": true,
3562
- "name": "application"
3563
- },
3564
3534
  {
3565
3535
  "deprecationReason": null,
3566
3536
  "description": "Application ID of the flow",
@@ -3771,18 +3741,6 @@
3771
3741
  "isDeprecated": false,
3772
3742
  "name": "criticality"
3773
3743
  },
3774
- {
3775
- "deprecationReason": "use custom_category_id/custom_category_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
3776
- "description": "Unique Cato ID for the custom category",
3777
- "isDeprecated": true,
3778
- "name": "custom_categories"
3779
- },
3780
- {
3781
- "deprecationReason": "use custom_category_id/custom_category_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
3782
- "description": "Name for the custom category defined in the Cato Management Application",
3783
- "isDeprecated": true,
3784
- "name": "custom_category"
3785
- },
3786
3744
  {
3787
3745
  "deprecationReason": null,
3788
3746
  "description": "Custom category ID",
@@ -3867,12 +3825,6 @@
3867
3825
  "isDeprecated": false,
3868
3826
  "name": "dest_process_path"
3869
3827
  },
3870
- {
3871
- "deprecationReason": "use dest_site_id/dest_site_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
3872
- "description": "For WAN traffic, name of destination site or SDP user",
3873
- "isDeprecated": true,
3874
- "name": "dest_site"
3875
- },
3876
3828
  {
3877
3829
  "deprecationReason": null,
3878
3830
  "description": "Unique internal Cato ID for the destination site or remote user",
@@ -3945,12 +3897,6 @@
3945
3897
  "isDeprecated": false,
3946
3898
  "name": "device_posture_profile"
3947
3899
  },
3948
- {
3949
- "deprecationReason": "use device_posture_profile instead. Planned end-of-life (EoL) date: May 1, 2025.",
3950
- "description": "Device posture profiles",
3951
- "isDeprecated": true,
3952
- "name": "device_posture_profiles"
3953
- },
3954
3900
  {
3955
3901
  "deprecationReason": null,
3956
3902
  "description": "Device Type",
@@ -4047,6 +3993,12 @@
4047
3993
  "isDeprecated": false,
4048
3994
  "name": "endpoint_id"
4049
3995
  },
3996
+ {
3997
+ "deprecationReason": null,
3998
+ "description": "The engine type associated with the event",
3999
+ "isDeprecated": false,
4000
+ "name": "engine_type"
4001
+ },
4050
4002
  {
4051
4003
  "deprecationReason": null,
4052
4004
  "description": "The Endpoint Protection Engine that detected the malware",
@@ -4437,12 +4389,24 @@
4437
4389
  "isDeprecated": false,
4438
4390
  "name": "producer"
4439
4391
  },
4392
+ {
4393
+ "deprecationReason": null,
4394
+ "description": "Related project name(s)",
4395
+ "isDeprecated": false,
4396
+ "name": "projects"
4397
+ },
4440
4398
  {
4441
4399
  "deprecationReason": null,
4442
4400
  "description": "Prompt Page Selected Action",
4443
4401
  "isDeprecated": false,
4444
4402
  "name": "prompt_action"
4445
4403
  },
4404
+ {
4405
+ "deprecationReason": null,
4406
+ "description": "The name of the provider, for example cloud provider - AWS",
4407
+ "isDeprecated": false,
4408
+ "name": "provider_name"
4409
+ },
4446
4410
  {
4447
4411
  "deprecationReason": null,
4448
4412
  "description": "Public source IP",
@@ -4497,6 +4461,12 @@
4497
4461
  "isDeprecated": false,
4498
4462
  "name": "referer_url"
4499
4463
  },
4464
+ {
4465
+ "deprecationReason": null,
4466
+ "description": "The region of the object",
4467
+ "isDeprecated": false,
4468
+ "name": "region_name"
4469
+ },
4500
4470
  {
4501
4471
  "deprecationReason": null,
4502
4472
  "description": "Registration code used the first time that a SDP user authenticates (the code is partially obfuscated)",
@@ -4505,15 +4475,15 @@
4505
4475
  },
4506
4476
  {
4507
4477
  "deprecationReason": null,
4508
- "description": "(IPS or SAM event) Indicates the overall impact of a threat for the host or network: Low \u2013 ie. adware Medium \u2013 ie. network scans High \u2013 ie. spyware or worms",
4478
+ "description": "The ID of the resource in the cloud provider",
4509
4479
  "isDeprecated": false,
4510
- "name": "risk_level"
4480
+ "name": "resource_id"
4511
4481
  },
4512
4482
  {
4513
- "deprecationReason": "use rule_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
4514
- "description": "Name of security rule related to the event",
4515
- "isDeprecated": true,
4516
- "name": "rule"
4483
+ "deprecationReason": null,
4484
+ "description": "(IPS or SAM event) Indicates the overall impact of a threat for the host or network: Low \u2013 ie. adware Medium \u2013 ie. network scans High \u2013 ie. spyware or worms",
4485
+ "isDeprecated": false,
4486
+ "name": "risk_level"
4517
4487
  },
4518
4488
  {
4519
4489
  "deprecationReason": null,
@@ -4635,12 +4605,6 @@
4635
4605
  "isDeprecated": false,
4636
4606
  "name": "src_isp_ip"
4637
4607
  },
4638
- {
4639
- "deprecationReason": "please use src_site_id and dest_site_id instead. Planned end-of-life (EoL) date: June 30, 2025.",
4640
- "description": "Source or destination site or remote user ID.\nThis field can only be used in filter.",
4641
- "isDeprecated": true,
4642
- "name": "src_or_dest_site_id"
4643
- },
4644
4608
  {
4645
4609
  "deprecationReason": null,
4646
4610
  "description": "Source process ID",
@@ -4677,12 +4641,6 @@
4677
4641
  "isDeprecated": false,
4678
4642
  "name": "src_process_path"
4679
4643
  },
4680
- {
4681
- "deprecationReason": "use src_site_id/src_site_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
4682
- "description": "Name of site or user initiating the connection",
4683
- "isDeprecated": true,
4684
- "name": "src_site"
4685
- },
4686
4644
  {
4687
4645
  "deprecationReason": null,
4688
4646
  "description": "Unique internal Cato ID for the site or remote user",
@@ -4719,6 +4677,12 @@
4719
4677
  "isDeprecated": false,
4720
4678
  "name": "subnet_name"
4721
4679
  },
4680
+ {
4681
+ "deprecationReason": null,
4682
+ "description": "The name of the subscription",
4683
+ "isDeprecated": false,
4684
+ "name": "subscription_name"
4685
+ },
4722
4686
  {
4723
4687
  "deprecationReason": null,
4724
4688
  "description": "Number of targets (servers) associated with this event",
@@ -5177,12 +5141,6 @@
5177
5141
  "isDeprecated": false,
5178
5142
  "name": "app_stack"
5179
5143
  },
5180
- {
5181
- "deprecationReason": "use application_id/application_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
5182
- "description": "For Internet firewall, app for this event",
5183
- "isDeprecated": true,
5184
- "name": "application"
5185
- },
5186
5144
  {
5187
5145
  "deprecationReason": null,
5188
5146
  "description": "Application ID of the flow",
@@ -5393,18 +5351,6 @@
5393
5351
  "isDeprecated": false,
5394
5352
  "name": "criticality"
5395
5353
  },
5396
- {
5397
- "deprecationReason": "use custom_category_id/custom_category_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
5398
- "description": "Unique Cato ID for the custom category",
5399
- "isDeprecated": true,
5400
- "name": "custom_categories"
5401
- },
5402
- {
5403
- "deprecationReason": "use custom_category_id/custom_category_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
5404
- "description": "Name for the custom category defined in the Cato Management Application",
5405
- "isDeprecated": true,
5406
- "name": "custom_category"
5407
- },
5408
5354
  {
5409
5355
  "deprecationReason": null,
5410
5356
  "description": "Custom category ID",
@@ -5489,12 +5435,6 @@
5489
5435
  "isDeprecated": false,
5490
5436
  "name": "dest_process_path"
5491
5437
  },
5492
- {
5493
- "deprecationReason": "use dest_site_id/dest_site_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
5494
- "description": "For WAN traffic, name of destination site or SDP user",
5495
- "isDeprecated": true,
5496
- "name": "dest_site"
5497
- },
5498
5438
  {
5499
5439
  "deprecationReason": null,
5500
5440
  "description": "Unique internal Cato ID for the destination site or remote user",
@@ -5567,12 +5507,6 @@
5567
5507
  "isDeprecated": false,
5568
5508
  "name": "device_posture_profile"
5569
5509
  },
5570
- {
5571
- "deprecationReason": "use device_posture_profile instead. Planned end-of-life (EoL) date: May 1, 2025.",
5572
- "description": "Device posture profiles",
5573
- "isDeprecated": true,
5574
- "name": "device_posture_profiles"
5575
- },
5576
5510
  {
5577
5511
  "deprecationReason": null,
5578
5512
  "description": "Device Type",
@@ -5669,6 +5603,12 @@
5669
5603
  "isDeprecated": false,
5670
5604
  "name": "endpoint_id"
5671
5605
  },
5606
+ {
5607
+ "deprecationReason": null,
5608
+ "description": "The engine type associated with the event",
5609
+ "isDeprecated": false,
5610
+ "name": "engine_type"
5611
+ },
5672
5612
  {
5673
5613
  "deprecationReason": null,
5674
5614
  "description": "The Endpoint Protection Engine that detected the malware",
@@ -6059,12 +5999,24 @@
6059
5999
  "isDeprecated": false,
6060
6000
  "name": "producer"
6061
6001
  },
6002
+ {
6003
+ "deprecationReason": null,
6004
+ "description": "Related project name(s)",
6005
+ "isDeprecated": false,
6006
+ "name": "projects"
6007
+ },
6062
6008
  {
6063
6009
  "deprecationReason": null,
6064
6010
  "description": "Prompt Page Selected Action",
6065
6011
  "isDeprecated": false,
6066
6012
  "name": "prompt_action"
6067
6013
  },
6014
+ {
6015
+ "deprecationReason": null,
6016
+ "description": "The name of the provider, for example cloud provider - AWS",
6017
+ "isDeprecated": false,
6018
+ "name": "provider_name"
6019
+ },
6068
6020
  {
6069
6021
  "deprecationReason": null,
6070
6022
  "description": "Public source IP",
@@ -6119,6 +6071,12 @@
6119
6071
  "isDeprecated": false,
6120
6072
  "name": "referer_url"
6121
6073
  },
6074
+ {
6075
+ "deprecationReason": null,
6076
+ "description": "The region of the object",
6077
+ "isDeprecated": false,
6078
+ "name": "region_name"
6079
+ },
6122
6080
  {
6123
6081
  "deprecationReason": null,
6124
6082
  "description": "Registration code used the first time that a SDP user authenticates (the code is partially obfuscated)",
@@ -6127,15 +6085,15 @@
6127
6085
  },
6128
6086
  {
6129
6087
  "deprecationReason": null,
6130
- "description": "(IPS or SAM event) Indicates the overall impact of a threat for the host or network: Low \u2013 ie. adware Medium \u2013 ie. network scans High \u2013 ie. spyware or worms",
6088
+ "description": "The ID of the resource in the cloud provider",
6131
6089
  "isDeprecated": false,
6132
- "name": "risk_level"
6090
+ "name": "resource_id"
6133
6091
  },
6134
6092
  {
6135
- "deprecationReason": "use rule_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
6136
- "description": "Name of security rule related to the event",
6137
- "isDeprecated": true,
6138
- "name": "rule"
6093
+ "deprecationReason": null,
6094
+ "description": "(IPS or SAM event) Indicates the overall impact of a threat for the host or network: Low \u2013 ie. adware Medium \u2013 ie. network scans High \u2013 ie. spyware or worms",
6095
+ "isDeprecated": false,
6096
+ "name": "risk_level"
6139
6097
  },
6140
6098
  {
6141
6099
  "deprecationReason": null,
@@ -6257,12 +6215,6 @@
6257
6215
  "isDeprecated": false,
6258
6216
  "name": "src_isp_ip"
6259
6217
  },
6260
- {
6261
- "deprecationReason": "please use src_site_id and dest_site_id instead. Planned end-of-life (EoL) date: June 30, 2025.",
6262
- "description": "Source or destination site or remote user ID.\nThis field can only be used in filter.",
6263
- "isDeprecated": true,
6264
- "name": "src_or_dest_site_id"
6265
- },
6266
6218
  {
6267
6219
  "deprecationReason": null,
6268
6220
  "description": "Source process ID",
@@ -6299,12 +6251,6 @@
6299
6251
  "isDeprecated": false,
6300
6252
  "name": "src_process_path"
6301
6253
  },
6302
- {
6303
- "deprecationReason": "use src_site_id/src_site_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
6304
- "description": "Name of site or user initiating the connection",
6305
- "isDeprecated": true,
6306
- "name": "src_site"
6307
- },
6308
6254
  {
6309
6255
  "deprecationReason": null,
6310
6256
  "description": "Unique internal Cato ID for the site or remote user",
@@ -6341,6 +6287,12 @@
6341
6287
  "isDeprecated": false,
6342
6288
  "name": "subnet_name"
6343
6289
  },
6290
+ {
6291
+ "deprecationReason": null,
6292
+ "description": "The name of the subscription",
6293
+ "isDeprecated": false,
6294
+ "name": "subscription_name"
6295
+ },
6344
6296
  {
6345
6297
  "deprecationReason": null,
6346
6298
  "description": "Number of targets (servers) associated with this event",
@@ -6872,12 +6824,6 @@
6872
6824
  "isDeprecated": false,
6873
6825
  "name": "app_stack"
6874
6826
  },
6875
- {
6876
- "deprecationReason": "use application_id/application_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
6877
- "description": "For Internet firewall, app for this event",
6878
- "isDeprecated": true,
6879
- "name": "application"
6880
- },
6881
6827
  {
6882
6828
  "deprecationReason": null,
6883
6829
  "description": "Application ID of the flow",
@@ -7088,18 +7034,6 @@
7088
7034
  "isDeprecated": false,
7089
7035
  "name": "criticality"
7090
7036
  },
7091
- {
7092
- "deprecationReason": "use custom_category_id/custom_category_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
7093
- "description": "Unique Cato ID for the custom category",
7094
- "isDeprecated": true,
7095
- "name": "custom_categories"
7096
- },
7097
- {
7098
- "deprecationReason": "use custom_category_id/custom_category_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
7099
- "description": "Name for the custom category defined in the Cato Management Application",
7100
- "isDeprecated": true,
7101
- "name": "custom_category"
7102
- },
7103
7037
  {
7104
7038
  "deprecationReason": null,
7105
7039
  "description": "Custom category ID",
@@ -7184,12 +7118,6 @@
7184
7118
  "isDeprecated": false,
7185
7119
  "name": "dest_process_path"
7186
7120
  },
7187
- {
7188
- "deprecationReason": "use dest_site_id/dest_site_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
7189
- "description": "For WAN traffic, name of destination site or SDP user",
7190
- "isDeprecated": true,
7191
- "name": "dest_site"
7192
- },
7193
7121
  {
7194
7122
  "deprecationReason": null,
7195
7123
  "description": "Unique internal Cato ID for the destination site or remote user",
@@ -7262,12 +7190,6 @@
7262
7190
  "isDeprecated": false,
7263
7191
  "name": "device_posture_profile"
7264
7192
  },
7265
- {
7266
- "deprecationReason": "use device_posture_profile instead. Planned end-of-life (EoL) date: May 1, 2025.",
7267
- "description": "Device posture profiles",
7268
- "isDeprecated": true,
7269
- "name": "device_posture_profiles"
7270
- },
7271
7193
  {
7272
7194
  "deprecationReason": null,
7273
7195
  "description": "Device Type",
@@ -7364,6 +7286,12 @@
7364
7286
  "isDeprecated": false,
7365
7287
  "name": "endpoint_id"
7366
7288
  },
7289
+ {
7290
+ "deprecationReason": null,
7291
+ "description": "The engine type associated with the event",
7292
+ "isDeprecated": false,
7293
+ "name": "engine_type"
7294
+ },
7367
7295
  {
7368
7296
  "deprecationReason": null,
7369
7297
  "description": "The Endpoint Protection Engine that detected the malware",
@@ -7754,12 +7682,24 @@
7754
7682
  "isDeprecated": false,
7755
7683
  "name": "producer"
7756
7684
  },
7685
+ {
7686
+ "deprecationReason": null,
7687
+ "description": "Related project name(s)",
7688
+ "isDeprecated": false,
7689
+ "name": "projects"
7690
+ },
7757
7691
  {
7758
7692
  "deprecationReason": null,
7759
7693
  "description": "Prompt Page Selected Action",
7760
7694
  "isDeprecated": false,
7761
7695
  "name": "prompt_action"
7762
7696
  },
7697
+ {
7698
+ "deprecationReason": null,
7699
+ "description": "The name of the provider, for example cloud provider - AWS",
7700
+ "isDeprecated": false,
7701
+ "name": "provider_name"
7702
+ },
7763
7703
  {
7764
7704
  "deprecationReason": null,
7765
7705
  "description": "Public source IP",
@@ -7814,6 +7754,12 @@
7814
7754
  "isDeprecated": false,
7815
7755
  "name": "referer_url"
7816
7756
  },
7757
+ {
7758
+ "deprecationReason": null,
7759
+ "description": "The region of the object",
7760
+ "isDeprecated": false,
7761
+ "name": "region_name"
7762
+ },
7817
7763
  {
7818
7764
  "deprecationReason": null,
7819
7765
  "description": "Registration code used the first time that a SDP user authenticates (the code is partially obfuscated)",
@@ -7822,15 +7768,15 @@
7822
7768
  },
7823
7769
  {
7824
7770
  "deprecationReason": null,
7825
- "description": "(IPS or SAM event) Indicates the overall impact of a threat for the host or network: Low \u2013 ie. adware Medium \u2013 ie. network scans High \u2013 ie. spyware or worms",
7771
+ "description": "The ID of the resource in the cloud provider",
7826
7772
  "isDeprecated": false,
7827
- "name": "risk_level"
7773
+ "name": "resource_id"
7828
7774
  },
7829
7775
  {
7830
- "deprecationReason": "use rule_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
7831
- "description": "Name of security rule related to the event",
7832
- "isDeprecated": true,
7833
- "name": "rule"
7776
+ "deprecationReason": null,
7777
+ "description": "(IPS or SAM event) Indicates the overall impact of a threat for the host or network: Low \u2013 ie. adware Medium \u2013 ie. network scans High \u2013 ie. spyware or worms",
7778
+ "isDeprecated": false,
7779
+ "name": "risk_level"
7834
7780
  },
7835
7781
  {
7836
7782
  "deprecationReason": null,
@@ -7952,12 +7898,6 @@
7952
7898
  "isDeprecated": false,
7953
7899
  "name": "src_isp_ip"
7954
7900
  },
7955
- {
7956
- "deprecationReason": "please use src_site_id and dest_site_id instead. Planned end-of-life (EoL) date: June 30, 2025.",
7957
- "description": "Source or destination site or remote user ID.\nThis field can only be used in filter.",
7958
- "isDeprecated": true,
7959
- "name": "src_or_dest_site_id"
7960
- },
7961
7901
  {
7962
7902
  "deprecationReason": null,
7963
7903
  "description": "Source process ID",
@@ -7994,12 +7934,6 @@
7994
7934
  "isDeprecated": false,
7995
7935
  "name": "src_process_path"
7996
7936
  },
7997
- {
7998
- "deprecationReason": "use src_site_id/src_site_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
7999
- "description": "Name of site or user initiating the connection",
8000
- "isDeprecated": true,
8001
- "name": "src_site"
8002
- },
8003
7937
  {
8004
7938
  "deprecationReason": null,
8005
7939
  "description": "Unique internal Cato ID for the site or remote user",
@@ -8036,6 +7970,12 @@
8036
7970
  "isDeprecated": false,
8037
7971
  "name": "subnet_name"
8038
7972
  },
7973
+ {
7974
+ "deprecationReason": null,
7975
+ "description": "The name of the subscription",
7976
+ "isDeprecated": false,
7977
+ "name": "subscription_name"
7978
+ },
8039
7979
  {
8040
7980
  "deprecationReason": null,
8041
7981
  "description": "Number of targets (servers) associated with this event",
@@ -8476,12 +8416,6 @@
8476
8416
  "isDeprecated": false,
8477
8417
  "name": "app_stack"
8478
8418
  },
8479
- {
8480
- "deprecationReason": "use application_id/application_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
8481
- "description": "For Internet firewall, app for this event",
8482
- "isDeprecated": true,
8483
- "name": "application"
8484
- },
8485
8419
  {
8486
8420
  "deprecationReason": null,
8487
8421
  "description": "Application ID of the flow",
@@ -8692,18 +8626,6 @@
8692
8626
  "isDeprecated": false,
8693
8627
  "name": "criticality"
8694
8628
  },
8695
- {
8696
- "deprecationReason": "use custom_category_id/custom_category_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
8697
- "description": "Unique Cato ID for the custom category",
8698
- "isDeprecated": true,
8699
- "name": "custom_categories"
8700
- },
8701
- {
8702
- "deprecationReason": "use custom_category_id/custom_category_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
8703
- "description": "Name for the custom category defined in the Cato Management Application",
8704
- "isDeprecated": true,
8705
- "name": "custom_category"
8706
- },
8707
8629
  {
8708
8630
  "deprecationReason": null,
8709
8631
  "description": "Custom category ID",
@@ -8788,12 +8710,6 @@
8788
8710
  "isDeprecated": false,
8789
8711
  "name": "dest_process_path"
8790
8712
  },
8791
- {
8792
- "deprecationReason": "use dest_site_id/dest_site_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
8793
- "description": "For WAN traffic, name of destination site or SDP user",
8794
- "isDeprecated": true,
8795
- "name": "dest_site"
8796
- },
8797
8713
  {
8798
8714
  "deprecationReason": null,
8799
8715
  "description": "Unique internal Cato ID for the destination site or remote user",
@@ -8866,12 +8782,6 @@
8866
8782
  "isDeprecated": false,
8867
8783
  "name": "device_posture_profile"
8868
8784
  },
8869
- {
8870
- "deprecationReason": "use device_posture_profile instead. Planned end-of-life (EoL) date: May 1, 2025.",
8871
- "description": "Device posture profiles",
8872
- "isDeprecated": true,
8873
- "name": "device_posture_profiles"
8874
- },
8875
8785
  {
8876
8786
  "deprecationReason": null,
8877
8787
  "description": "Device Type",
@@ -8968,6 +8878,12 @@
8968
8878
  "isDeprecated": false,
8969
8879
  "name": "endpoint_id"
8970
8880
  },
8881
+ {
8882
+ "deprecationReason": null,
8883
+ "description": "The engine type associated with the event",
8884
+ "isDeprecated": false,
8885
+ "name": "engine_type"
8886
+ },
8971
8887
  {
8972
8888
  "deprecationReason": null,
8973
8889
  "description": "The Endpoint Protection Engine that detected the malware",
@@ -9358,12 +9274,24 @@
9358
9274
  "isDeprecated": false,
9359
9275
  "name": "producer"
9360
9276
  },
9277
+ {
9278
+ "deprecationReason": null,
9279
+ "description": "Related project name(s)",
9280
+ "isDeprecated": false,
9281
+ "name": "projects"
9282
+ },
9361
9283
  {
9362
9284
  "deprecationReason": null,
9363
9285
  "description": "Prompt Page Selected Action",
9364
9286
  "isDeprecated": false,
9365
9287
  "name": "prompt_action"
9366
9288
  },
9289
+ {
9290
+ "deprecationReason": null,
9291
+ "description": "The name of the provider, for example cloud provider - AWS",
9292
+ "isDeprecated": false,
9293
+ "name": "provider_name"
9294
+ },
9367
9295
  {
9368
9296
  "deprecationReason": null,
9369
9297
  "description": "Public source IP",
@@ -9418,6 +9346,12 @@
9418
9346
  "isDeprecated": false,
9419
9347
  "name": "referer_url"
9420
9348
  },
9349
+ {
9350
+ "deprecationReason": null,
9351
+ "description": "The region of the object",
9352
+ "isDeprecated": false,
9353
+ "name": "region_name"
9354
+ },
9421
9355
  {
9422
9356
  "deprecationReason": null,
9423
9357
  "description": "Registration code used the first time that a SDP user authenticates (the code is partially obfuscated)",
@@ -9426,15 +9360,15 @@
9426
9360
  },
9427
9361
  {
9428
9362
  "deprecationReason": null,
9429
- "description": "(IPS or SAM event) Indicates the overall impact of a threat for the host or network: Low \u2013 ie. adware Medium \u2013 ie. network scans High \u2013 ie. spyware or worms",
9363
+ "description": "The ID of the resource in the cloud provider",
9430
9364
  "isDeprecated": false,
9431
- "name": "risk_level"
9365
+ "name": "resource_id"
9432
9366
  },
9433
9367
  {
9434
- "deprecationReason": "use rule_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
9435
- "description": "Name of security rule related to the event",
9436
- "isDeprecated": true,
9437
- "name": "rule"
9368
+ "deprecationReason": null,
9369
+ "description": "(IPS or SAM event) Indicates the overall impact of a threat for the host or network: Low \u2013 ie. adware Medium \u2013 ie. network scans High \u2013 ie. spyware or worms",
9370
+ "isDeprecated": false,
9371
+ "name": "risk_level"
9438
9372
  },
9439
9373
  {
9440
9374
  "deprecationReason": null,
@@ -9556,12 +9490,6 @@
9556
9490
  "isDeprecated": false,
9557
9491
  "name": "src_isp_ip"
9558
9492
  },
9559
- {
9560
- "deprecationReason": "please use src_site_id and dest_site_id instead. Planned end-of-life (EoL) date: June 30, 2025.",
9561
- "description": "Source or destination site or remote user ID.\nThis field can only be used in filter.",
9562
- "isDeprecated": true,
9563
- "name": "src_or_dest_site_id"
9564
- },
9565
9493
  {
9566
9494
  "deprecationReason": null,
9567
9495
  "description": "Source process ID",
@@ -9598,12 +9526,6 @@
9598
9526
  "isDeprecated": false,
9599
9527
  "name": "src_process_path"
9600
9528
  },
9601
- {
9602
- "deprecationReason": "use src_site_id/src_site_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
9603
- "description": "Name of site or user initiating the connection",
9604
- "isDeprecated": true,
9605
- "name": "src_site"
9606
- },
9607
9529
  {
9608
9530
  "deprecationReason": null,
9609
9531
  "description": "Unique internal Cato ID for the site or remote user",
@@ -9640,6 +9562,12 @@
9640
9562
  "isDeprecated": false,
9641
9563
  "name": "subnet_name"
9642
9564
  },
9565
+ {
9566
+ "deprecationReason": null,
9567
+ "description": "The name of the subscription",
9568
+ "isDeprecated": false,
9569
+ "name": "subscription_name"
9570
+ },
9643
9571
  {
9644
9572
  "deprecationReason": null,
9645
9573
  "description": "Number of targets (servers) associated with this event",
@@ -10296,12 +10224,6 @@
10296
10224
  "isDeprecated": false,
10297
10225
  "name": "app_stack"
10298
10226
  },
10299
- {
10300
- "deprecationReason": "use application_id/application_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
10301
- "description": "For Internet firewall, app for this event",
10302
- "isDeprecated": true,
10303
- "name": "application"
10304
- },
10305
10227
  {
10306
10228
  "deprecationReason": null,
10307
10229
  "description": "Application ID of the flow",
@@ -10512,18 +10434,6 @@
10512
10434
  "isDeprecated": false,
10513
10435
  "name": "criticality"
10514
10436
  },
10515
- {
10516
- "deprecationReason": "use custom_category_id/custom_category_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
10517
- "description": "Unique Cato ID for the custom category",
10518
- "isDeprecated": true,
10519
- "name": "custom_categories"
10520
- },
10521
- {
10522
- "deprecationReason": "use custom_category_id/custom_category_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
10523
- "description": "Name for the custom category defined in the Cato Management Application",
10524
- "isDeprecated": true,
10525
- "name": "custom_category"
10526
- },
10527
10437
  {
10528
10438
  "deprecationReason": null,
10529
10439
  "description": "Custom category ID",
@@ -10608,12 +10518,6 @@
10608
10518
  "isDeprecated": false,
10609
10519
  "name": "dest_process_path"
10610
10520
  },
10611
- {
10612
- "deprecationReason": "use dest_site_id/dest_site_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
10613
- "description": "For WAN traffic, name of destination site or SDP user",
10614
- "isDeprecated": true,
10615
- "name": "dest_site"
10616
- },
10617
10521
  {
10618
10522
  "deprecationReason": null,
10619
10523
  "description": "Unique internal Cato ID for the destination site or remote user",
@@ -10686,12 +10590,6 @@
10686
10590
  "isDeprecated": false,
10687
10591
  "name": "device_posture_profile"
10688
10592
  },
10689
- {
10690
- "deprecationReason": "use device_posture_profile instead. Planned end-of-life (EoL) date: May 1, 2025.",
10691
- "description": "Device posture profiles",
10692
- "isDeprecated": true,
10693
- "name": "device_posture_profiles"
10694
- },
10695
10593
  {
10696
10594
  "deprecationReason": null,
10697
10595
  "description": "Device Type",
@@ -10788,6 +10686,12 @@
10788
10686
  "isDeprecated": false,
10789
10687
  "name": "endpoint_id"
10790
10688
  },
10689
+ {
10690
+ "deprecationReason": null,
10691
+ "description": "The engine type associated with the event",
10692
+ "isDeprecated": false,
10693
+ "name": "engine_type"
10694
+ },
10791
10695
  {
10792
10696
  "deprecationReason": null,
10793
10697
  "description": "The Endpoint Protection Engine that detected the malware",
@@ -11178,12 +11082,24 @@
11178
11082
  "isDeprecated": false,
11179
11083
  "name": "producer"
11180
11084
  },
11085
+ {
11086
+ "deprecationReason": null,
11087
+ "description": "Related project name(s)",
11088
+ "isDeprecated": false,
11089
+ "name": "projects"
11090
+ },
11181
11091
  {
11182
11092
  "deprecationReason": null,
11183
11093
  "description": "Prompt Page Selected Action",
11184
11094
  "isDeprecated": false,
11185
11095
  "name": "prompt_action"
11186
11096
  },
11097
+ {
11098
+ "deprecationReason": null,
11099
+ "description": "The name of the provider, for example cloud provider - AWS",
11100
+ "isDeprecated": false,
11101
+ "name": "provider_name"
11102
+ },
11187
11103
  {
11188
11104
  "deprecationReason": null,
11189
11105
  "description": "Public source IP",
@@ -11238,6 +11154,12 @@
11238
11154
  "isDeprecated": false,
11239
11155
  "name": "referer_url"
11240
11156
  },
11157
+ {
11158
+ "deprecationReason": null,
11159
+ "description": "The region of the object",
11160
+ "isDeprecated": false,
11161
+ "name": "region_name"
11162
+ },
11241
11163
  {
11242
11164
  "deprecationReason": null,
11243
11165
  "description": "Registration code used the first time that a SDP user authenticates (the code is partially obfuscated)",
@@ -11246,15 +11168,15 @@
11246
11168
  },
11247
11169
  {
11248
11170
  "deprecationReason": null,
11249
- "description": "(IPS or SAM event) Indicates the overall impact of a threat for the host or network: Low \u2013 ie. adware Medium \u2013 ie. network scans High \u2013 ie. spyware or worms",
11171
+ "description": "The ID of the resource in the cloud provider",
11250
11172
  "isDeprecated": false,
11251
- "name": "risk_level"
11173
+ "name": "resource_id"
11252
11174
  },
11253
11175
  {
11254
- "deprecationReason": "use rule_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
11255
- "description": "Name of security rule related to the event",
11256
- "isDeprecated": true,
11257
- "name": "rule"
11176
+ "deprecationReason": null,
11177
+ "description": "(IPS or SAM event) Indicates the overall impact of a threat for the host or network: Low \u2013 ie. adware Medium \u2013 ie. network scans High \u2013 ie. spyware or worms",
11178
+ "isDeprecated": false,
11179
+ "name": "risk_level"
11258
11180
  },
11259
11181
  {
11260
11182
  "deprecationReason": null,
@@ -11376,12 +11298,6 @@
11376
11298
  "isDeprecated": false,
11377
11299
  "name": "src_isp_ip"
11378
11300
  },
11379
- {
11380
- "deprecationReason": "please use src_site_id and dest_site_id instead. Planned end-of-life (EoL) date: June 30, 2025.",
11381
- "description": "Source or destination site or remote user ID.\nThis field can only be used in filter.",
11382
- "isDeprecated": true,
11383
- "name": "src_or_dest_site_id"
11384
- },
11385
11301
  {
11386
11302
  "deprecationReason": null,
11387
11303
  "description": "Source process ID",
@@ -11418,12 +11334,6 @@
11418
11334
  "isDeprecated": false,
11419
11335
  "name": "src_process_path"
11420
11336
  },
11421
- {
11422
- "deprecationReason": "use src_site_id/src_site_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
11423
- "description": "Name of site or user initiating the connection",
11424
- "isDeprecated": true,
11425
- "name": "src_site"
11426
- },
11427
11337
  {
11428
11338
  "deprecationReason": null,
11429
11339
  "description": "Unique internal Cato ID for the site or remote user",
@@ -11460,6 +11370,12 @@
11460
11370
  "isDeprecated": false,
11461
11371
  "name": "subnet_name"
11462
11372
  },
11373
+ {
11374
+ "deprecationReason": null,
11375
+ "description": "The name of the subscription",
11376
+ "isDeprecated": false,
11377
+ "name": "subscription_name"
11378
+ },
11463
11379
  {
11464
11380
  "deprecationReason": null,
11465
11381
  "description": "Number of targets (servers) associated with this event",
@@ -11918,12 +11834,6 @@
11918
11834
  "isDeprecated": false,
11919
11835
  "name": "app_stack"
11920
11836
  },
11921
- {
11922
- "deprecationReason": "use application_id/application_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
11923
- "description": "For Internet firewall, app for this event",
11924
- "isDeprecated": true,
11925
- "name": "application"
11926
- },
11927
11837
  {
11928
11838
  "deprecationReason": null,
11929
11839
  "description": "Application ID of the flow",
@@ -12134,18 +12044,6 @@
12134
12044
  "isDeprecated": false,
12135
12045
  "name": "criticality"
12136
12046
  },
12137
- {
12138
- "deprecationReason": "use custom_category_id/custom_category_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
12139
- "description": "Unique Cato ID for the custom category",
12140
- "isDeprecated": true,
12141
- "name": "custom_categories"
12142
- },
12143
- {
12144
- "deprecationReason": "use custom_category_id/custom_category_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
12145
- "description": "Name for the custom category defined in the Cato Management Application",
12146
- "isDeprecated": true,
12147
- "name": "custom_category"
12148
- },
12149
12047
  {
12150
12048
  "deprecationReason": null,
12151
12049
  "description": "Custom category ID",
@@ -12230,12 +12128,6 @@
12230
12128
  "isDeprecated": false,
12231
12129
  "name": "dest_process_path"
12232
12130
  },
12233
- {
12234
- "deprecationReason": "use dest_site_id/dest_site_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
12235
- "description": "For WAN traffic, name of destination site or SDP user",
12236
- "isDeprecated": true,
12237
- "name": "dest_site"
12238
- },
12239
12131
  {
12240
12132
  "deprecationReason": null,
12241
12133
  "description": "Unique internal Cato ID for the destination site or remote user",
@@ -12308,12 +12200,6 @@
12308
12200
  "isDeprecated": false,
12309
12201
  "name": "device_posture_profile"
12310
12202
  },
12311
- {
12312
- "deprecationReason": "use device_posture_profile instead. Planned end-of-life (EoL) date: May 1, 2025.",
12313
- "description": "Device posture profiles",
12314
- "isDeprecated": true,
12315
- "name": "device_posture_profiles"
12316
- },
12317
12203
  {
12318
12204
  "deprecationReason": null,
12319
12205
  "description": "Device Type",
@@ -12410,6 +12296,12 @@
12410
12296
  "isDeprecated": false,
12411
12297
  "name": "endpoint_id"
12412
12298
  },
12299
+ {
12300
+ "deprecationReason": null,
12301
+ "description": "The engine type associated with the event",
12302
+ "isDeprecated": false,
12303
+ "name": "engine_type"
12304
+ },
12413
12305
  {
12414
12306
  "deprecationReason": null,
12415
12307
  "description": "The Endpoint Protection Engine that detected the malware",
@@ -12800,12 +12692,24 @@
12800
12692
  "isDeprecated": false,
12801
12693
  "name": "producer"
12802
12694
  },
12695
+ {
12696
+ "deprecationReason": null,
12697
+ "description": "Related project name(s)",
12698
+ "isDeprecated": false,
12699
+ "name": "projects"
12700
+ },
12803
12701
  {
12804
12702
  "deprecationReason": null,
12805
12703
  "description": "Prompt Page Selected Action",
12806
12704
  "isDeprecated": false,
12807
12705
  "name": "prompt_action"
12808
12706
  },
12707
+ {
12708
+ "deprecationReason": null,
12709
+ "description": "The name of the provider, for example cloud provider - AWS",
12710
+ "isDeprecated": false,
12711
+ "name": "provider_name"
12712
+ },
12809
12713
  {
12810
12714
  "deprecationReason": null,
12811
12715
  "description": "Public source IP",
@@ -12860,6 +12764,12 @@
12860
12764
  "isDeprecated": false,
12861
12765
  "name": "referer_url"
12862
12766
  },
12767
+ {
12768
+ "deprecationReason": null,
12769
+ "description": "The region of the object",
12770
+ "isDeprecated": false,
12771
+ "name": "region_name"
12772
+ },
12863
12773
  {
12864
12774
  "deprecationReason": null,
12865
12775
  "description": "Registration code used the first time that a SDP user authenticates (the code is partially obfuscated)",
@@ -12868,15 +12778,15 @@
12868
12778
  },
12869
12779
  {
12870
12780
  "deprecationReason": null,
12871
- "description": "(IPS or SAM event) Indicates the overall impact of a threat for the host or network: Low \u2013 ie. adware Medium \u2013 ie. network scans High \u2013 ie. spyware or worms",
12781
+ "description": "The ID of the resource in the cloud provider",
12872
12782
  "isDeprecated": false,
12873
- "name": "risk_level"
12783
+ "name": "resource_id"
12874
12784
  },
12875
12785
  {
12876
- "deprecationReason": "use rule_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
12877
- "description": "Name of security rule related to the event",
12878
- "isDeprecated": true,
12879
- "name": "rule"
12786
+ "deprecationReason": null,
12787
+ "description": "(IPS or SAM event) Indicates the overall impact of a threat for the host or network: Low \u2013 ie. adware Medium \u2013 ie. network scans High \u2013 ie. spyware or worms",
12788
+ "isDeprecated": false,
12789
+ "name": "risk_level"
12880
12790
  },
12881
12791
  {
12882
12792
  "deprecationReason": null,
@@ -12998,12 +12908,6 @@
12998
12908
  "isDeprecated": false,
12999
12909
  "name": "src_isp_ip"
13000
12910
  },
13001
- {
13002
- "deprecationReason": "please use src_site_id and dest_site_id instead. Planned end-of-life (EoL) date: June 30, 2025.",
13003
- "description": "Source or destination site or remote user ID.\nThis field can only be used in filter.",
13004
- "isDeprecated": true,
13005
- "name": "src_or_dest_site_id"
13006
- },
13007
12911
  {
13008
12912
  "deprecationReason": null,
13009
12913
  "description": "Source process ID",
@@ -13040,12 +12944,6 @@
13040
12944
  "isDeprecated": false,
13041
12945
  "name": "src_process_path"
13042
12946
  },
13043
- {
13044
- "deprecationReason": "use src_site_id/src_site_name instead. Planned end-of-life (EoL) date: May 1, 2025.",
13045
- "description": "Name of site or user initiating the connection",
13046
- "isDeprecated": true,
13047
- "name": "src_site"
13048
- },
13049
12947
  {
13050
12948
  "deprecationReason": null,
13051
12949
  "description": "Unique internal Cato ID for the site or remote user",
@@ -13082,6 +12980,12 @@
13082
12980
  "isDeprecated": false,
13083
12981
  "name": "subnet_name"
13084
12982
  },
12983
+ {
12984
+ "deprecationReason": null,
12985
+ "description": "The name of the subscription",
12986
+ "isDeprecated": false,
12987
+ "name": "subscription_name"
12988
+ },
13085
12989
  {
13086
12990
  "deprecationReason": null,
13087
12991
  "description": "Number of targets (servers) associated with this event",