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
@@ -612,7 +612,7 @@
612
612
  "enumValues": null,
613
613
  "fields": {
614
614
  "errors": {
615
- "alias": "policyMutationErrorErrors: errors",
615
+ "alias": "errorsInternetFirewallPolicyMutationPayload: errors",
616
616
  "args": {},
617
617
  "deprecationReason": null,
618
618
  "description": null,
@@ -625,7 +625,7 @@
625
625
  "responseStr": "errors:$policyMutationError ",
626
626
  "type": {
627
627
  "definition": {
628
- "description": "The `PolicyMutationError` enum defines various error messages related to policy publishing in the policy platform service.\n\n## Policy Errors\n\n### `ConcurrentPolicyPublish`\n- **Error Message:** \"Another policy is currently publishing\"\n\n### `PolicyRevisionMismatch`\n- **Error Message:** \"Revision is not owned by the admin\"\n\n### `PolicyRevisionNotFound`\n- **Error Message:** \"Revision was not found\"\n\n### `PolicyInvalidEntity`\n- **Error Message:** \"Invalid entity\"\n\n### `DuplicateRuleName`\n- **Error Message:** \"Rule with the same name already exists\"\n\n### `DuplicateSectionName`\n- **Error Message:** \"Section with the same name already exists\"\n\n### `PolicyFailure`\n- **Error Message:** \"Can’t publish policy due to an internal error. Please try again in a few minutes\"\n\n\n## Rule Errors\n\n### `ruleIsLocked`\n- **Error Message:** \"Rule is locked by another revision\"\n\n### `ruleWasRemoved`\n- **Error Message:** \"Rule was already removed\"\n\n### `ruleNotExist`\n- **Error Message:** \"Rule does not exist\"\n\n### `ruleSectionNotExist`\n- **Error Message:** \"Section does not exist\"\n\n### `ruleSectionIsLocked`\n- **Error Message:** \"Section is locked by another revision\"\n\n### `rulePositionInvalid`\n- **Error Message:** \"Rule position is invalid\"\n\n### `ruleNameIsEmpty`\n- **Error Message:** \"Rule name can't be empty\"\n\n### `ruleNameAlreadyExists`\n- **Error Message:** \"Rule with the same name already exists\"\n\n### `ruleSystemModification`\n- **Error Message:** \"Can't modify a system rule\"\n\n### `ruleSystemMove`\n- **Error Message:** \"Can't add a rule above the system rules\"\n\n### `ruleHasInvalidEntity`\n- **Error Message:** \"Rule has an invalid entity\"\n\n### `failedValidatingRule`\n- **Error Message:** \"Something went wrong, couldn't validate rule\"\n\n\n## Section Errors\n\n### `sectionIsLocked`\n- **Error Message:** \"Section is locked by another revision\"\n\n### `sectionSystemMove`\n- **Error Message:** \"Section with system rules cannot be moved or removed\"\n\n### `sectionNotExist`\n- **Error Message:** \"Section does not exist\"\n\n### `sectionPositionInvalid`\n- **Error Message:** \"Section position is invalid\"",
628
+ "description": "The `PolicyMutationError` enum defines various error messages related to policy publishing in the policy platform service.\n\n## Policy Errors\n\n### `ConcurrentPolicyPublish`\n- **Error Message:** \"Another policy is currently publishing\"\n\n### `PolicyRevisionMismatch`\n- **Error Message:** \"Revision is not owned by the admin\"\n\n### `PolicyRevisionNotFound`\n- **Error Message:** \"Revision was not found\"\n\n### `PolicyInvalidEntity`\n- **Error Message:** \"Invalid entity\"\n\n### `DuplicateRuleName`\n- **Error Message:** \"Rule with the same name already exists\"\n\n### `DuplicateSectionName`\n- **Error Message:** \"Section with the same name already exists\"\n\n### `PolicyFailure`\n- **Error Message:** \"Can\u2019t publish policy due to an internal error. Please try again in a few minutes\"\n\n\n## Rule Errors\n\n### `ruleIsLocked`\n- **Error Message:** \"Rule is locked by another revision\"\n\n### `ruleWasRemoved`\n- **Error Message:** \"Rule was already removed\"\n\n### `ruleNotExist`\n- **Error Message:** \"Rule does not exist\"\n\n### `ruleSectionNotExist`\n- **Error Message:** \"Section does not exist\"\n\n### `ruleSectionIsLocked`\n- **Error Message:** \"Section is locked by another revision\"\n\n### `rulePositionInvalid`\n- **Error Message:** \"Rule position is invalid\"\n\n### `ruleNameIsEmpty`\n- **Error Message:** \"Rule name can't be empty\"\n\n### `ruleNameAlreadyExists`\n- **Error Message:** \"Rule with the same name already exists\"\n\n### `ruleSystemModification`\n- **Error Message:** \"Can't modify a system rule\"\n\n### `ruleSystemMove`\n- **Error Message:** \"Can't add a rule above the system rules\"\n\n### `ruleHasInvalidEntity`\n- **Error Message:** \"Rule has an invalid entity\"\n\n### `failedValidatingRule`\n- **Error Message:** \"Something went wrong, couldn't validate rule\"\n\n\n## Section Errors\n\n### `sectionIsLocked`\n- **Error Message:** \"Section is locked by another revision\"\n\n### `sectionSystemMove`\n- **Error Message:** \"Section with system rules cannot be moved or removed\"\n\n### `sectionNotExist`\n- **Error Message:** \"Section does not exist\"\n\n### `sectionPositionInvalid`\n- **Error Message:** \"Section position is invalid\"",
629
629
  "enumValues": null,
630
630
  "fields": {
631
631
  "errorCode": {
@@ -688,7 +688,7 @@
688
688
  "varName": "policyMutationError"
689
689
  },
690
690
  "policy": {
691
- "alias": "internetFirewallPolicyPolicy: policy",
691
+ "alias": "policyInternetFirewallPolicyMutationPayload: policy",
692
692
  "args": {},
693
693
  "deprecationReason": null,
694
694
  "description": null,
@@ -974,7 +974,7 @@
974
974
  "enumValues": null,
975
975
  "fields": {
976
976
  "audit": {
977
- "alias": "policyElementAuditAudit: audit",
977
+ "alias": "auditInternetFirewallRulePayload: audit",
978
978
  "args": {},
979
979
  "deprecationReason": null,
980
980
  "description": null,
@@ -1050,7 +1050,7 @@
1050
1050
  "varName": "policyElementAudit"
1051
1051
  },
1052
1052
  "properties": {
1053
- "alias": "policyElementPropertiesEnumProperties: properties",
1053
+ "alias": "propertiesInternetFirewallRulePayload: properties",
1054
1054
  "args": {},
1055
1055
  "deprecationReason": null,
1056
1056
  "description": null,
@@ -1128,7 +1128,7 @@
1128
1128
  "varName": "properties"
1129
1129
  },
1130
1130
  "rule": {
1131
- "alias": "internetFirewallRuleRule: rule",
1131
+ "alias": "ruleInternetFirewallRulePayload: rule",
1132
1132
  "args": {},
1133
1133
  "deprecationReason": null,
1134
1134
  "description": null,
@@ -1145,7 +1145,7 @@
1145
1145
  "enumValues": null,
1146
1146
  "fields": {
1147
1147
  "action": {
1148
- "alias": "internetFirewallActionEnumAction: action",
1148
+ "alias": "actionInternetFirewallRule: action",
1149
1149
  "args": {},
1150
1150
  "deprecationReason": null,
1151
1151
  "description": "The action applied by the Internet Firewall if the rule is matched",
@@ -1203,7 +1203,7 @@
1203
1203
  "varName": "action"
1204
1204
  },
1205
1205
  "activePeriod": {
1206
- "alias": "policyRuleActivePeriodActivePeriod: activePeriod",
1206
+ "alias": "activePeriodInternetFirewallRule: activePeriod",
1207
1207
  "args": {},
1208
1208
  "deprecationReason": null,
1209
1209
  "description": "The time period during which the rule is active, outside this period, the rule is inactive",
@@ -1319,7 +1319,7 @@
1319
1319
  "varName": "policyRuleActivePeriod"
1320
1320
  },
1321
1321
  "connectionOrigin": {
1322
- "alias": "connectionOriginEnumConnectionOrigin: connectionOrigin",
1322
+ "alias": "connectionOriginInternetFirewallRule: connectionOrigin",
1323
1323
  "args": {},
1324
1324
  "deprecationReason": null,
1325
1325
  "description": "Connection origin of the traffic",
@@ -1371,10 +1371,10 @@
1371
1371
  "varName": "connectionOrigin"
1372
1372
  },
1373
1373
  "country": {
1374
- "alias": "countryRefCountry: country",
1374
+ "alias": "countryInternetFirewallRule: country",
1375
1375
  "args": {},
1376
1376
  "deprecationReason": null,
1377
- "description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
1377
+ "description": "Source country traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
1378
1378
  "id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___country",
1379
1379
  "isDeprecated": false,
1380
1380
  "name": "country",
@@ -1470,10 +1470,10 @@
1470
1470
  "varName": "description"
1471
1471
  },
1472
1472
  "destination": {
1473
- "alias": "internetFirewallDestinationDestination: destination",
1473
+ "alias": "destinationInternetFirewallRule: destination",
1474
1474
  "args": {},
1475
1475
  "deprecationReason": null,
1476
- "description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
1476
+ "description": "Destination traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
1477
1477
  "id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___destination",
1478
1478
  "isDeprecated": false,
1479
1479
  "name": "destination",
@@ -1487,7 +1487,7 @@
1487
1487
  "enumValues": null,
1488
1488
  "fields": {
1489
1489
  "appCategory": {
1490
- "alias": "applicationCategoryRefAppCategory: appCategory",
1490
+ "alias": "appCategoryInternetFirewallDestination: appCategory",
1491
1491
  "args": {},
1492
1492
  "deprecationReason": null,
1493
1493
  "description": "Cato category of applications which are dynamically updated by Cato",
@@ -1565,7 +1565,7 @@
1565
1565
  "varName": "applicationCategoryRef"
1566
1566
  },
1567
1567
  "application": {
1568
- "alias": "applicationRefApplication: application",
1568
+ "alias": "applicationInternetFirewallDestination: application",
1569
1569
  "args": {},
1570
1570
  "deprecationReason": null,
1571
1571
  "description": "Applications for the rule (pre-defined)",
@@ -1643,7 +1643,7 @@
1643
1643
  "varName": "applicationRef"
1644
1644
  },
1645
1645
  "containers": {
1646
- "alias": "internetFirewallContainerContainers: containers",
1646
+ "alias": "containersInternetFirewallDestination: containers",
1647
1647
  "args": {},
1648
1648
  "deprecationReason": null,
1649
1649
  "description": null,
@@ -1660,7 +1660,7 @@
1660
1660
  "enumValues": null,
1661
1661
  "fields": {
1662
1662
  "fqdnContainer": {
1663
- "alias": "fqdnContainerRefFqdnContainer: fqdnContainer",
1663
+ "alias": "fqdnContainerInternetFirewallContainer: fqdnContainer",
1664
1664
  "args": {},
1665
1665
  "deprecationReason": null,
1666
1666
  "description": null,
@@ -1738,7 +1738,7 @@
1738
1738
  "varName": "fqdnContainerRef"
1739
1739
  },
1740
1740
  "ipAddressRangeContainer": {
1741
- "alias": "ipAddressRangeContainerRefIpAddressRangeContainer: ipAddressRangeContainer",
1741
+ "alias": "ipAddressRangeContainerInternetFirewallContainer: ipAddressRangeContainer",
1742
1742
  "args": {},
1743
1743
  "deprecationReason": null,
1744
1744
  "description": null,
@@ -1833,7 +1833,7 @@
1833
1833
  "varName": "internetFirewallContainer"
1834
1834
  },
1835
1835
  "country": {
1836
- "alias": "countryRefCountry: country",
1836
+ "alias": "countryInternetFirewallDestination: country",
1837
1837
  "args": {},
1838
1838
  "deprecationReason": null,
1839
1839
  "description": "Countries",
@@ -1911,7 +1911,7 @@
1911
1911
  "varName": "countryRef"
1912
1912
  },
1913
1913
  "customApp": {
1914
- "alias": "customApplicationRefCustomApp: customApp",
1914
+ "alias": "customAppInternetFirewallDestination: customApp",
1915
1915
  "args": {},
1916
1916
  "deprecationReason": null,
1917
1917
  "description": "Custom (user-defined) applications",
@@ -1989,10 +1989,10 @@
1989
1989
  "varName": "customApplicationRef"
1990
1990
  },
1991
1991
  "customCategory": {
1992
- "alias": "customCategoryRefCustomCategory: customCategory",
1992
+ "alias": "customCategoryInternetFirewallDestination: customCategory",
1993
1993
  "args": {},
1994
1994
  "deprecationReason": null,
1995
- "description": "Custom Categories Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
1995
+ "description": "Custom Categories \u2013 Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
1996
1996
  "id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___destination___customCategory",
1997
1997
  "isDeprecated": false,
1998
1998
  "name": "customCategory",
@@ -2113,7 +2113,7 @@
2113
2113
  "varName": "fqdn"
2114
2114
  },
2115
2115
  "globalIpRange": {
2116
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
2116
+ "alias": "globalIpRangeInternetFirewallDestination: globalIpRange",
2117
2117
  "args": {},
2118
2118
  "deprecationReason": null,
2119
2119
  "description": "Globally defined IP range, IP and subnet objects",
@@ -2214,7 +2214,7 @@
2214
2214
  "varName": "ip"
2215
2215
  },
2216
2216
  "ipRange": {
2217
- "alias": "ipAddressRangeIpRange: ipRange",
2217
+ "alias": "ipRangeInternetFirewallDestination: ipRange",
2218
2218
  "args": {},
2219
2219
  "deprecationReason": null,
2220
2220
  "description": "A range of IPs. Every IP within the range will be matched",
@@ -2315,7 +2315,7 @@
2315
2315
  "varName": "remoteAsn"
2316
2316
  },
2317
2317
  "sanctionedAppsCategory": {
2318
- "alias": "sanctionedAppsCategoryRefSanctionedAppsCategory: sanctionedAppsCategory",
2318
+ "alias": "sanctionedAppsCategoryInternetFirewallDestination: sanctionedAppsCategory",
2319
2319
  "args": {},
2320
2320
  "deprecationReason": null,
2321
2321
  "description": "Sanctioned Cloud Applications - apps that are approved and generally represent an understood and acceptable level of risk in your organization.",
@@ -2433,10 +2433,10 @@
2433
2433
  "varName": "internetFirewallDestination"
2434
2434
  },
2435
2435
  "device": {
2436
- "alias": "deviceProfileRefDevice: device",
2436
+ "alias": "deviceInternetFirewallRule: device",
2437
2437
  "args": {},
2438
2438
  "deprecationReason": null,
2439
- "description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
2439
+ "description": "Source Device Profile traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
2440
2440
  "id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___device",
2441
2441
  "isDeprecated": false,
2442
2442
  "name": "device",
@@ -2511,7 +2511,7 @@
2511
2511
  "varName": "deviceProfileRef"
2512
2512
  },
2513
2513
  "deviceAttributes": {
2514
- "alias": "deviceAttributesDeviceAttributes: deviceAttributes",
2514
+ "alias": "deviceAttributesInternetFirewallRule: deviceAttributes",
2515
2515
  "args": {},
2516
2516
  "deprecationReason": null,
2517
2517
  "description": "Additional device attributes such as category, type, model, and manufacturer.\nLogical 'OR' is applied within the criteria set.\nLogical 'AND' is applied between criteria sets.",
@@ -2683,10 +2683,10 @@
2683
2683
  "varName": "deviceAttributes"
2684
2684
  },
2685
2685
  "deviceOS": {
2686
- "alias": "operatingSystemDeviceOS: deviceOS",
2686
+ "alias": "deviceOSInternetFirewallRule: deviceOS",
2687
2687
  "args": {},
2688
2688
  "deprecationReason": null,
2689
- "description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
2689
+ "description": "Source device Operating System traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
2690
2690
  "id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___deviceOS",
2691
2691
  "isDeprecated": false,
2692
2692
  "name": "deviceOS",
@@ -2776,7 +2776,7 @@
2776
2776
  "varName": "enabled"
2777
2777
  },
2778
2778
  "exceptions": {
2779
- "alias": "internetFirewallRuleExceptionExceptions: exceptions",
2779
+ "alias": "exceptionsInternetFirewallRule: exceptions",
2780
2780
  "args": {},
2781
2781
  "deprecationReason": null,
2782
2782
  "description": "The set of exceptions for the rule.\nExceptions define when the rule will be ignored and the firewall evaluation will continue with the lower priority rules.",
@@ -2793,7 +2793,7 @@
2793
2793
  "enumValues": null,
2794
2794
  "fields": {
2795
2795
  "connectionOrigin": {
2796
- "alias": "connectionOriginEnumConnectionOrigin: connectionOrigin",
2796
+ "alias": "connectionOriginInternetFirewallRuleException: connectionOrigin",
2797
2797
  "args": {},
2798
2798
  "deprecationReason": null,
2799
2799
  "description": "Connection origin matching criteria for the exception.",
@@ -2845,7 +2845,7 @@
2845
2845
  "varName": "connectionOrigin"
2846
2846
  },
2847
2847
  "country": {
2848
- "alias": "countryRefCountry: country",
2848
+ "alias": "countryInternetFirewallRuleException: country",
2849
2849
  "args": {},
2850
2850
  "deprecationReason": null,
2851
2851
  "description": "Source country matching criteria for the exception.",
@@ -2923,7 +2923,7 @@
2923
2923
  "varName": "countryRef"
2924
2924
  },
2925
2925
  "destination": {
2926
- "alias": "internetFirewallDestinationDestination: destination",
2926
+ "alias": "destinationInternetFirewallRuleException: destination",
2927
2927
  "args": {},
2928
2928
  "deprecationReason": null,
2929
2929
  "description": "Destination matching criteria for the exception.",
@@ -2940,7 +2940,7 @@
2940
2940
  "enumValues": null,
2941
2941
  "fields": {
2942
2942
  "appCategory": {
2943
- "alias": "applicationCategoryRefAppCategory: appCategory",
2943
+ "alias": "appCategoryInternetFirewallDestination: appCategory",
2944
2944
  "args": {},
2945
2945
  "deprecationReason": null,
2946
2946
  "description": "Cato category of applications which are dynamically updated by Cato",
@@ -3018,7 +3018,7 @@
3018
3018
  "varName": "applicationCategoryRef"
3019
3019
  },
3020
3020
  "application": {
3021
- "alias": "applicationRefApplication: application",
3021
+ "alias": "applicationInternetFirewallDestination: application",
3022
3022
  "args": {},
3023
3023
  "deprecationReason": null,
3024
3024
  "description": "Applications for the rule (pre-defined)",
@@ -3096,7 +3096,7 @@
3096
3096
  "varName": "applicationRef"
3097
3097
  },
3098
3098
  "containers": {
3099
- "alias": "internetFirewallContainerContainers: containers",
3099
+ "alias": "containersInternetFirewallDestination: containers",
3100
3100
  "args": {},
3101
3101
  "deprecationReason": null,
3102
3102
  "description": null,
@@ -3113,7 +3113,7 @@
3113
3113
  "enumValues": null,
3114
3114
  "fields": {
3115
3115
  "fqdnContainer": {
3116
- "alias": "fqdnContainerRefFqdnContainer: fqdnContainer",
3116
+ "alias": "fqdnContainerInternetFirewallContainer: fqdnContainer",
3117
3117
  "args": {},
3118
3118
  "deprecationReason": null,
3119
3119
  "description": null,
@@ -3191,7 +3191,7 @@
3191
3191
  "varName": "fqdnContainerRef"
3192
3192
  },
3193
3193
  "ipAddressRangeContainer": {
3194
- "alias": "ipAddressRangeContainerRefIpAddressRangeContainer: ipAddressRangeContainer",
3194
+ "alias": "ipAddressRangeContainerInternetFirewallContainer: ipAddressRangeContainer",
3195
3195
  "args": {},
3196
3196
  "deprecationReason": null,
3197
3197
  "description": null,
@@ -3286,7 +3286,7 @@
3286
3286
  "varName": "internetFirewallContainer"
3287
3287
  },
3288
3288
  "country": {
3289
- "alias": "countryRefCountry: country",
3289
+ "alias": "countryInternetFirewallDestination: country",
3290
3290
  "args": {},
3291
3291
  "deprecationReason": null,
3292
3292
  "description": "Countries",
@@ -3364,7 +3364,7 @@
3364
3364
  "varName": "countryRef"
3365
3365
  },
3366
3366
  "customApp": {
3367
- "alias": "customApplicationRefCustomApp: customApp",
3367
+ "alias": "customAppInternetFirewallDestination: customApp",
3368
3368
  "args": {},
3369
3369
  "deprecationReason": null,
3370
3370
  "description": "Custom (user-defined) applications",
@@ -3442,10 +3442,10 @@
3442
3442
  "varName": "customApplicationRef"
3443
3443
  },
3444
3444
  "customCategory": {
3445
- "alias": "customCategoryRefCustomCategory: customCategory",
3445
+ "alias": "customCategoryInternetFirewallDestination: customCategory",
3446
3446
  "args": {},
3447
3447
  "deprecationReason": null,
3448
- "description": "Custom Categories Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
3448
+ "description": "Custom Categories \u2013 Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
3449
3449
  "id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___exceptions___destination___customCategory",
3450
3450
  "isDeprecated": false,
3451
3451
  "name": "customCategory",
@@ -3566,7 +3566,7 @@
3566
3566
  "varName": "fqdn"
3567
3567
  },
3568
3568
  "globalIpRange": {
3569
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
3569
+ "alias": "globalIpRangeInternetFirewallDestination: globalIpRange",
3570
3570
  "args": {},
3571
3571
  "deprecationReason": null,
3572
3572
  "description": "Globally defined IP range, IP and subnet objects",
@@ -3667,7 +3667,7 @@
3667
3667
  "varName": "ip"
3668
3668
  },
3669
3669
  "ipRange": {
3670
- "alias": "ipAddressRangeIpRange: ipRange",
3670
+ "alias": "ipRangeInternetFirewallDestination: ipRange",
3671
3671
  "args": {},
3672
3672
  "deprecationReason": null,
3673
3673
  "description": "A range of IPs. Every IP within the range will be matched",
@@ -3768,7 +3768,7 @@
3768
3768
  "varName": "remoteAsn"
3769
3769
  },
3770
3770
  "sanctionedAppsCategory": {
3771
- "alias": "sanctionedAppsCategoryRefSanctionedAppsCategory: sanctionedAppsCategory",
3771
+ "alias": "sanctionedAppsCategoryInternetFirewallDestination: sanctionedAppsCategory",
3772
3772
  "args": {},
3773
3773
  "deprecationReason": null,
3774
3774
  "description": "Sanctioned Cloud Applications - apps that are approved and generally represent an understood and acceptable level of risk in your organization.",
@@ -3886,7 +3886,7 @@
3886
3886
  "varName": "internetFirewallDestination"
3887
3887
  },
3888
3888
  "device": {
3889
- "alias": "deviceProfileRefDevice: device",
3889
+ "alias": "deviceInternetFirewallRuleException: device",
3890
3890
  "args": {},
3891
3891
  "deprecationReason": null,
3892
3892
  "description": "Source Device Profile matching criteria for the exception.",
@@ -3964,7 +3964,7 @@
3964
3964
  "varName": "deviceProfileRef"
3965
3965
  },
3966
3966
  "deviceAttributes": {
3967
- "alias": "deviceAttributesDeviceAttributes: deviceAttributes",
3967
+ "alias": "deviceAttributesInternetFirewallRuleException: deviceAttributes",
3968
3968
  "args": {},
3969
3969
  "deprecationReason": null,
3970
3970
  "description": "Source Device Attributes matching criteria for the exception.",
@@ -4136,7 +4136,7 @@
4136
4136
  "varName": "deviceAttributes"
4137
4137
  },
4138
4138
  "deviceOS": {
4139
- "alias": "operatingSystemDeviceOS: deviceOS",
4139
+ "alias": "deviceOSInternetFirewallRuleException: deviceOS",
4140
4140
  "args": {},
4141
4141
  "deprecationReason": null,
4142
4142
  "description": "Source device OS matching criteria for the exception.",
@@ -4229,7 +4229,7 @@
4229
4229
  "varName": "name"
4230
4230
  },
4231
4231
  "service": {
4232
- "alias": "internetFirewallServiceTypeService: service",
4232
+ "alias": "serviceInternetFirewallRuleException: service",
4233
4233
  "args": {},
4234
4234
  "deprecationReason": null,
4235
4235
  "description": "Destination service matching criteria for the exception.",
@@ -4246,7 +4246,7 @@
4246
4246
  "enumValues": null,
4247
4247
  "fields": {
4248
4248
  "custom": {
4249
- "alias": "customServiceCustom: custom",
4249
+ "alias": "customInternetFirewallServiceType: custom",
4250
4250
  "args": {},
4251
4251
  "deprecationReason": null,
4252
4252
  "description": null,
@@ -4285,7 +4285,7 @@
4285
4285
  "varName": "port"
4286
4286
  },
4287
4287
  "portRange": {
4288
- "alias": "portRangePortRange: portRange",
4288
+ "alias": "portRangeCustomService: portRange",
4289
4289
  "args": {},
4290
4290
  "deprecationReason": null,
4291
4291
  "description": null,
@@ -4360,7 +4360,7 @@
4360
4360
  "varName": "portRange"
4361
4361
  },
4362
4362
  "protocol": {
4363
- "alias": "ipProtocolProtocol: protocol",
4363
+ "alias": "protocolCustomService: protocol",
4364
4364
  "args": {},
4365
4365
  "deprecationReason": null,
4366
4366
  "description": null,
@@ -4443,7 +4443,7 @@
4443
4443
  "varName": "customService"
4444
4444
  },
4445
4445
  "standard": {
4446
- "alias": "serviceRefStandard: standard",
4446
+ "alias": "standardInternetFirewallServiceType: standard",
4447
4447
  "args": {},
4448
4448
  "deprecationReason": null,
4449
4449
  "description": null,
@@ -4538,7 +4538,7 @@
4538
4538
  "varName": "internetFirewallServiceType"
4539
4539
  },
4540
4540
  "source": {
4541
- "alias": "internetFirewallSourceSource: source",
4541
+ "alias": "sourceInternetFirewallRuleException: source",
4542
4542
  "args": {},
4543
4543
  "deprecationReason": null,
4544
4544
  "description": "Source traffic matching criteria for the exception.",
@@ -4555,7 +4555,7 @@
4555
4555
  "enumValues": null,
4556
4556
  "fields": {
4557
4557
  "floatingSubnet": {
4558
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
4558
+ "alias": "floatingSubnetInternetFirewallSource: floatingSubnet",
4559
4559
  "args": {},
4560
4560
  "deprecationReason": null,
4561
4561
  "description": "Floating Subnets (ie. Floating Ranges) are used to identify traffic exactly matched to the route advertised by BGP. They are not associated with a specific site. This is useful in scenarios such as active-standby high availability routed via BGP.",
@@ -4633,7 +4633,7 @@
4633
4633
  "varName": "floatingSubnetRef"
4634
4634
  },
4635
4635
  "globalIpRange": {
4636
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
4636
+ "alias": "globalIpRangeInternetFirewallSource: globalIpRange",
4637
4637
  "args": {},
4638
4638
  "deprecationReason": null,
4639
4639
  "description": "Globally defined IP range, IP and subnet objects",
@@ -4711,7 +4711,7 @@
4711
4711
  "varName": "globalIpRangeRef"
4712
4712
  },
4713
4713
  "group": {
4714
- "alias": "groupRefGroup: group",
4714
+ "alias": "groupInternetFirewallSource: group",
4715
4715
  "args": {},
4716
4716
  "deprecationReason": null,
4717
4717
  "description": "Groups defined for your account",
@@ -4789,7 +4789,7 @@
4789
4789
  "varName": "groupRef"
4790
4790
  },
4791
4791
  "host": {
4792
- "alias": "hostRefHost: host",
4792
+ "alias": "hostInternetFirewallSource: host",
4793
4793
  "args": {},
4794
4794
  "deprecationReason": null,
4795
4795
  "description": "Hosts and servers defined for your account",
@@ -4890,7 +4890,7 @@
4890
4890
  "varName": "ip"
4891
4891
  },
4892
4892
  "ipRange": {
4893
- "alias": "ipAddressRangeIpRange: ipRange",
4893
+ "alias": "ipRangeInternetFirewallSource: ipRange",
4894
4894
  "args": {},
4895
4895
  "deprecationReason": null,
4896
4896
  "description": "Multiple separate IP addresses or an IP range",
@@ -4968,7 +4968,7 @@
4968
4968
  "varName": "ipAddressRange"
4969
4969
  },
4970
4970
  "networkInterface": {
4971
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
4971
+ "alias": "networkInterfaceInternetFirewallSource: networkInterface",
4972
4972
  "args": {},
4973
4973
  "deprecationReason": null,
4974
4974
  "description": "Network range defined for a site",
@@ -5046,7 +5046,7 @@
5046
5046
  "varName": "networkInterfaceRef"
5047
5047
  },
5048
5048
  "site": {
5049
- "alias": "siteRefSite: site",
5049
+ "alias": "siteInternetFirewallSource: site",
5050
5050
  "args": {},
5051
5051
  "deprecationReason": null,
5052
5052
  "description": "Site defined for the account",
@@ -5124,7 +5124,7 @@
5124
5124
  "varName": "siteRef"
5125
5125
  },
5126
5126
  "siteNetworkSubnet": {
5127
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
5127
+ "alias": "siteNetworkSubnetInternetFirewallSource: siteNetworkSubnet",
5128
5128
  "args": {},
5129
5129
  "deprecationReason": null,
5130
5130
  "description": "GlobalRange + InterfaceSubnet",
@@ -5225,7 +5225,7 @@
5225
5225
  "varName": "subnet"
5226
5226
  },
5227
5227
  "systemGroup": {
5228
- "alias": "systemGroupRefSystemGroup: systemGroup",
5228
+ "alias": "systemGroupInternetFirewallSource: systemGroup",
5229
5229
  "args": {},
5230
5230
  "deprecationReason": null,
5231
5231
  "description": "Predefined Cato groups",
@@ -5303,7 +5303,7 @@
5303
5303
  "varName": "systemGroupRef"
5304
5304
  },
5305
5305
  "user": {
5306
- "alias": "userRefUser: user",
5306
+ "alias": "userInternetFirewallSource: user",
5307
5307
  "args": {},
5308
5308
  "deprecationReason": null,
5309
5309
  "description": "Individual users defined for the account",
@@ -5381,7 +5381,7 @@
5381
5381
  "varName": "userRef"
5382
5382
  },
5383
5383
  "usersGroup": {
5384
- "alias": "usersGroupRefUsersGroup: usersGroup",
5384
+ "alias": "usersGroupInternetFirewallSource: usersGroup",
5385
5385
  "args": {},
5386
5386
  "deprecationReason": null,
5387
5387
  "description": "Group of users",
@@ -5558,7 +5558,7 @@
5558
5558
  "varName": "name"
5559
5559
  },
5560
5560
  "schedule": {
5561
- "alias": "policyScheduleSchedule: schedule",
5561
+ "alias": "scheduleInternetFirewallRule: schedule",
5562
5562
  "args": {},
5563
5563
  "deprecationReason": null,
5564
5564
  "description": "The time period specifying when the rule is enabled, otherwise it is disabled.",
@@ -5575,7 +5575,7 @@
5575
5575
  "enumValues": null,
5576
5576
  "fields": {
5577
5577
  "activeOn": {
5578
- "alias": "policyActiveOnEnumActiveOn: activeOn",
5578
+ "alias": "activeOnPolicySchedule: activeOn",
5579
5579
  "args": {},
5580
5580
  "deprecationReason": null,
5581
5581
  "description": null,
@@ -5633,7 +5633,7 @@
5633
5633
  "varName": "activeOn"
5634
5634
  },
5635
5635
  "customRecurring": {
5636
- "alias": "policyCustomRecurringCustomRecurring: customRecurring",
5636
+ "alias": "customRecurringPolicySchedule: customRecurring",
5637
5637
  "args": {},
5638
5638
  "deprecationReason": null,
5639
5639
  "description": null,
@@ -5785,7 +5785,7 @@
5785
5785
  "varName": "policyCustomRecurring"
5786
5786
  },
5787
5787
  "customTimeframe": {
5788
- "alias": "policyCustomTimeframeCustomTimeframe: customTimeframe",
5788
+ "alias": "customTimeframePolicySchedule: customTimeframe",
5789
5789
  "args": {},
5790
5790
  "deprecationReason": null,
5791
5791
  "description": null,
@@ -5877,7 +5877,7 @@
5877
5877
  "varName": "policySchedule"
5878
5878
  },
5879
5879
  "section": {
5880
- "alias": "policySectionInfoSection: section",
5880
+ "alias": "sectionInternetFirewallRule: section",
5881
5881
  "args": {},
5882
5882
  "deprecationReason": null,
5883
5883
  "description": "Policy section where the rule is located",
@@ -5953,10 +5953,10 @@
5953
5953
  "varName": "policySectionInfo"
5954
5954
  },
5955
5955
  "service": {
5956
- "alias": "internetFirewallServiceTypeService: service",
5956
+ "alias": "serviceInternetFirewallRule: service",
5957
5957
  "args": {},
5958
5958
  "deprecationReason": null,
5959
- "description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
5959
+ "description": "Destination service traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
5960
5960
  "id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___service",
5961
5961
  "isDeprecated": false,
5962
5962
  "name": "service",
@@ -5970,7 +5970,7 @@
5970
5970
  "enumValues": null,
5971
5971
  "fields": {
5972
5972
  "custom": {
5973
- "alias": "customServiceCustom: custom",
5973
+ "alias": "customInternetFirewallServiceType: custom",
5974
5974
  "args": {},
5975
5975
  "deprecationReason": null,
5976
5976
  "description": null,
@@ -6009,7 +6009,7 @@
6009
6009
  "varName": "port"
6010
6010
  },
6011
6011
  "portRange": {
6012
- "alias": "portRangePortRange: portRange",
6012
+ "alias": "portRangeCustomService: portRange",
6013
6013
  "args": {},
6014
6014
  "deprecationReason": null,
6015
6015
  "description": null,
@@ -6084,7 +6084,7 @@
6084
6084
  "varName": "portRange"
6085
6085
  },
6086
6086
  "protocol": {
6087
- "alias": "ipProtocolProtocol: protocol",
6087
+ "alias": "protocolCustomService: protocol",
6088
6088
  "args": {},
6089
6089
  "deprecationReason": null,
6090
6090
  "description": null,
@@ -6167,7 +6167,7 @@
6167
6167
  "varName": "customService"
6168
6168
  },
6169
6169
  "standard": {
6170
- "alias": "serviceRefStandard: standard",
6170
+ "alias": "standardInternetFirewallServiceType: standard",
6171
6171
  "args": {},
6172
6172
  "deprecationReason": null,
6173
6173
  "description": null,
@@ -6262,10 +6262,10 @@
6262
6262
  "varName": "internetFirewallServiceType"
6263
6263
  },
6264
6264
  "source": {
6265
- "alias": "internetFirewallSourceSource: source",
6265
+ "alias": "sourceInternetFirewallRule: source",
6266
6266
  "args": {},
6267
6267
  "deprecationReason": null,
6268
- "description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
6268
+ "description": "Source traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
6269
6269
  "id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___source",
6270
6270
  "isDeprecated": false,
6271
6271
  "name": "source",
@@ -6279,7 +6279,7 @@
6279
6279
  "enumValues": null,
6280
6280
  "fields": {
6281
6281
  "floatingSubnet": {
6282
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
6282
+ "alias": "floatingSubnetInternetFirewallSource: floatingSubnet",
6283
6283
  "args": {},
6284
6284
  "deprecationReason": null,
6285
6285
  "description": "Floating Subnets (ie. Floating Ranges) are used to identify traffic exactly matched to the route advertised by BGP. They are not associated with a specific site. This is useful in scenarios such as active-standby high availability routed via BGP.",
@@ -6357,7 +6357,7 @@
6357
6357
  "varName": "floatingSubnetRef"
6358
6358
  },
6359
6359
  "globalIpRange": {
6360
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
6360
+ "alias": "globalIpRangeInternetFirewallSource: globalIpRange",
6361
6361
  "args": {},
6362
6362
  "deprecationReason": null,
6363
6363
  "description": "Globally defined IP range, IP and subnet objects",
@@ -6435,7 +6435,7 @@
6435
6435
  "varName": "globalIpRangeRef"
6436
6436
  },
6437
6437
  "group": {
6438
- "alias": "groupRefGroup: group",
6438
+ "alias": "groupInternetFirewallSource: group",
6439
6439
  "args": {},
6440
6440
  "deprecationReason": null,
6441
6441
  "description": "Groups defined for your account",
@@ -6513,7 +6513,7 @@
6513
6513
  "varName": "groupRef"
6514
6514
  },
6515
6515
  "host": {
6516
- "alias": "hostRefHost: host",
6516
+ "alias": "hostInternetFirewallSource: host",
6517
6517
  "args": {},
6518
6518
  "deprecationReason": null,
6519
6519
  "description": "Hosts and servers defined for your account",
@@ -6614,7 +6614,7 @@
6614
6614
  "varName": "ip"
6615
6615
  },
6616
6616
  "ipRange": {
6617
- "alias": "ipAddressRangeIpRange: ipRange",
6617
+ "alias": "ipRangeInternetFirewallSource: ipRange",
6618
6618
  "args": {},
6619
6619
  "deprecationReason": null,
6620
6620
  "description": "Multiple separate IP addresses or an IP range",
@@ -6692,7 +6692,7 @@
6692
6692
  "varName": "ipAddressRange"
6693
6693
  },
6694
6694
  "networkInterface": {
6695
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
6695
+ "alias": "networkInterfaceInternetFirewallSource: networkInterface",
6696
6696
  "args": {},
6697
6697
  "deprecationReason": null,
6698
6698
  "description": "Network range defined for a site",
@@ -6770,7 +6770,7 @@
6770
6770
  "varName": "networkInterfaceRef"
6771
6771
  },
6772
6772
  "site": {
6773
- "alias": "siteRefSite: site",
6773
+ "alias": "siteInternetFirewallSource: site",
6774
6774
  "args": {},
6775
6775
  "deprecationReason": null,
6776
6776
  "description": "Site defined for the account",
@@ -6848,7 +6848,7 @@
6848
6848
  "varName": "siteRef"
6849
6849
  },
6850
6850
  "siteNetworkSubnet": {
6851
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
6851
+ "alias": "siteNetworkSubnetInternetFirewallSource: siteNetworkSubnet",
6852
6852
  "args": {},
6853
6853
  "deprecationReason": null,
6854
6854
  "description": "GlobalRange + InterfaceSubnet",
@@ -6949,7 +6949,7 @@
6949
6949
  "varName": "subnet"
6950
6950
  },
6951
6951
  "systemGroup": {
6952
- "alias": "systemGroupRefSystemGroup: systemGroup",
6952
+ "alias": "systemGroupInternetFirewallSource: systemGroup",
6953
6953
  "args": {},
6954
6954
  "deprecationReason": null,
6955
6955
  "description": "Predefined Cato groups",
@@ -7027,7 +7027,7 @@
7027
7027
  "varName": "systemGroupRef"
7028
7028
  },
7029
7029
  "user": {
7030
- "alias": "userRefUser: user",
7030
+ "alias": "userInternetFirewallSource: user",
7031
7031
  "args": {},
7032
7032
  "deprecationReason": null,
7033
7033
  "description": "Individual users defined for the account",
@@ -7105,7 +7105,7 @@
7105
7105
  "varName": "userRef"
7106
7106
  },
7107
7107
  "usersGroup": {
7108
- "alias": "usersGroupRefUsersGroup: usersGroup",
7108
+ "alias": "usersGroupInternetFirewallSource: usersGroup",
7109
7109
  "args": {},
7110
7110
  "deprecationReason": null,
7111
7111
  "description": "Group of users",
@@ -7200,7 +7200,7 @@
7200
7200
  "varName": "internetFirewallSource"
7201
7201
  },
7202
7202
  "tracking": {
7203
- "alias": "policyTrackingTracking: tracking",
7203
+ "alias": "trackingInternetFirewallRule: tracking",
7204
7204
  "args": {},
7205
7205
  "deprecationReason": null,
7206
7206
  "description": "Tracking information when the rule is matched, such as events and notifications",
@@ -7217,7 +7217,7 @@
7217
7217
  "enumValues": null,
7218
7218
  "fields": {
7219
7219
  "alert": {
7220
- "alias": "policyRuleTrackingAlertAlert: alert",
7220
+ "alias": "alertPolicyTracking: alert",
7221
7221
  "args": {},
7222
7222
  "deprecationReason": null,
7223
7223
  "description": null,
@@ -7236,7 +7236,7 @@
7236
7236
  "enabled": {
7237
7237
  "args": {},
7238
7238
  "deprecationReason": null,
7239
- "description": "TRUE send alerts when the rule is matched, FALSE don’t send alerts when the rule is matched",
7239
+ "description": "TRUE \u2013 send alerts when the rule is matched, FALSE \u2013 don\u2019t send alerts when the rule is matched",
7240
7240
  "id_str": "internetFirewall___publishPolicyRevision___policy___rules___rule___tracking___alert___enabled",
7241
7241
  "isDeprecated": false,
7242
7242
  "name": "enabled",
@@ -7255,7 +7255,7 @@
7255
7255
  "varName": "enabled"
7256
7256
  },
7257
7257
  "frequency": {
7258
- "alias": "policyRuleTrackingFrequencyEnumFrequency: frequency",
7258
+ "alias": "frequencyPolicyRuleTrackingAlert: frequency",
7259
7259
  "args": {},
7260
7260
  "deprecationReason": null,
7261
7261
  "description": "Returns data for the alert frequency",
@@ -7313,7 +7313,7 @@
7313
7313
  "varName": "frequency"
7314
7314
  },
7315
7315
  "mailingList": {
7316
- "alias": "subscriptionMailingListRefMailingList: mailingList",
7316
+ "alias": "mailingListPolicyRuleTrackingAlert: mailingList",
7317
7317
  "args": {},
7318
7318
  "deprecationReason": null,
7319
7319
  "description": "Returns data for the Mailing List that receives the alert",
@@ -7391,7 +7391,7 @@
7391
7391
  "varName": "subscriptionMailingListRef"
7392
7392
  },
7393
7393
  "subscriptionGroup": {
7394
- "alias": "subscriptionGroupRefSubscriptionGroup: subscriptionGroup",
7394
+ "alias": "subscriptionGroupPolicyRuleTrackingAlert: subscriptionGroup",
7395
7395
  "args": {},
7396
7396
  "deprecationReason": null,
7397
7397
  "description": "Returns data for the Subscription Group that receives the alert",
@@ -7469,7 +7469,7 @@
7469
7469
  "varName": "subscriptionGroupRef"
7470
7470
  },
7471
7471
  "webhook": {
7472
- "alias": "subscriptionWebhookRefWebhook: webhook",
7472
+ "alias": "webhookPolicyRuleTrackingAlert: webhook",
7473
7473
  "args": {},
7474
7474
  "deprecationReason": null,
7475
7475
  "description": "Returns data for the Webhook that receives the alert",
@@ -7564,7 +7564,7 @@
7564
7564
  "varName": "policyRuleTrackingAlert"
7565
7565
  },
7566
7566
  "event": {
7567
- "alias": "policyRuleTrackingEventEvent: event",
7567
+ "alias": "eventPolicyTracking: event",
7568
7568
  "args": {},
7569
7569
  "deprecationReason": null,
7570
7570
  "description": null,
@@ -7688,7 +7688,7 @@
7688
7688
  "enumValues": null,
7689
7689
  "fields": {
7690
7690
  "audit": {
7691
- "alias": "policyElementAuditAudit: audit",
7691
+ "alias": "auditPolicySectionPayload: audit",
7692
7692
  "args": {},
7693
7693
  "deprecationReason": null,
7694
7694
  "description": null,
@@ -7764,7 +7764,7 @@
7764
7764
  "varName": "policyElementAudit"
7765
7765
  },
7766
7766
  "properties": {
7767
- "alias": "policyElementPropertiesEnumProperties: properties",
7767
+ "alias": "propertiesPolicySectionPayload: properties",
7768
7768
  "args": {},
7769
7769
  "deprecationReason": null,
7770
7770
  "description": null,
@@ -7842,7 +7842,7 @@
7842
7842
  "varName": "properties"
7843
7843
  },
7844
7844
  "section": {
7845
- "alias": "policySectionInfoSection: section",
7845
+ "alias": "sectionPolicySectionPayload: section",
7846
7846
  "args": {},
7847
7847
  "deprecationReason": null,
7848
7848
  "description": null,
@@ -7953,7 +7953,7 @@
7953
7953
  "varName": "internetFirewallPolicy"
7954
7954
  },
7955
7955
  "status": {
7956
- "alias": "policyMutationStatusStatus: status",
7956
+ "alias": "statusInternetFirewallPolicyMutationPayload: status",
7957
7957
  "args": {},
7958
7958
  "deprecationReason": null,
7959
7959
  "description": null,