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
@@ -633,7 +633,7 @@
633
633
  "enumValues": null,
634
634
  "fields": {
635
635
  "errors": {
636
- "alias": "policyMutationErrorErrors: errors",
636
+ "alias": "errorsWanFirewallPolicyMutationPayload: errors",
637
637
  "args": {},
638
638
  "deprecationReason": null,
639
639
  "description": null,
@@ -646,7 +646,7 @@
646
646
  "responseStr": "errors:$policyMutationError ",
647
647
  "type": {
648
648
  "definition": {
649
- "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\"",
649
+ "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\"",
650
650
  "enumValues": null,
651
651
  "fields": {
652
652
  "errorCode": {
@@ -709,7 +709,7 @@
709
709
  "varName": "policyMutationError"
710
710
  },
711
711
  "policy": {
712
- "alias": "wanFirewallPolicyPolicy: policy",
712
+ "alias": "policyWanFirewallPolicyMutationPayload: policy",
713
713
  "args": {},
714
714
  "deprecationReason": null,
715
715
  "description": null,
@@ -995,7 +995,7 @@
995
995
  "enumValues": null,
996
996
  "fields": {
997
997
  "audit": {
998
- "alias": "policyElementAuditAudit: audit",
998
+ "alias": "auditWanFirewallRulePayload: audit",
999
999
  "args": {},
1000
1000
  "deprecationReason": null,
1001
1001
  "description": null,
@@ -1071,7 +1071,7 @@
1071
1071
  "varName": "policyElementAudit"
1072
1072
  },
1073
1073
  "properties": {
1074
- "alias": "policyElementPropertiesEnumProperties: properties",
1074
+ "alias": "propertiesWanFirewallRulePayload: properties",
1075
1075
  "args": {},
1076
1076
  "deprecationReason": null,
1077
1077
  "description": null,
@@ -1149,7 +1149,7 @@
1149
1149
  "varName": "properties"
1150
1150
  },
1151
1151
  "rule": {
1152
- "alias": "wanFirewallRuleRule: rule",
1152
+ "alias": "ruleWanFirewallRulePayload: rule",
1153
1153
  "args": {},
1154
1154
  "deprecationReason": null,
1155
1155
  "description": null,
@@ -1166,7 +1166,7 @@
1166
1166
  "enumValues": null,
1167
1167
  "fields": {
1168
1168
  "action": {
1169
- "alias": "wanFirewallActionEnumAction: action",
1169
+ "alias": "actionWanFirewallRule: action",
1170
1170
  "args": {},
1171
1171
  "deprecationReason": null,
1172
1172
  "description": "The action applied by the Internet Firewall if the rule is matched",
@@ -1218,7 +1218,7 @@
1218
1218
  "varName": "action"
1219
1219
  },
1220
1220
  "activePeriod": {
1221
- "alias": "policyRuleActivePeriodActivePeriod: activePeriod",
1221
+ "alias": "activePeriodWanFirewallRule: activePeriod",
1222
1222
  "args": {},
1223
1223
  "deprecationReason": null,
1224
1224
  "description": "The time period during which the rule is active, outside this period, the rule is inactive",
@@ -1334,10 +1334,10 @@
1334
1334
  "varName": "policyRuleActivePeriod"
1335
1335
  },
1336
1336
  "application": {
1337
- "alias": "wanFirewallApplicationApplication: application",
1337
+ "alias": "applicationWanFirewallRule: application",
1338
1338
  "args": {},
1339
1339
  "deprecationReason": null,
1340
- "description": "Application traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
1340
+ "description": "Application traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
1341
1341
  "id_str": "wanFirewall___updatePolicy___policy___rules___rule___application",
1342
1342
  "isDeprecated": false,
1343
1343
  "name": "application",
@@ -1351,7 +1351,7 @@
1351
1351
  "enumValues": null,
1352
1352
  "fields": {
1353
1353
  "appCategory": {
1354
- "alias": "applicationCategoryRefAppCategory: appCategory",
1354
+ "alias": "appCategoryWanFirewallApplication: appCategory",
1355
1355
  "args": {},
1356
1356
  "deprecationReason": null,
1357
1357
  "description": "Cato category of applications which are dynamically updated by Cato",
@@ -1429,7 +1429,7 @@
1429
1429
  "varName": "applicationCategoryRef"
1430
1430
  },
1431
1431
  "application": {
1432
- "alias": "applicationRefApplication: application",
1432
+ "alias": "applicationWanFirewallApplication: application",
1433
1433
  "args": {},
1434
1434
  "deprecationReason": null,
1435
1435
  "description": "Applications for the rule (pre-defined)",
@@ -1507,7 +1507,7 @@
1507
1507
  "varName": "applicationRef"
1508
1508
  },
1509
1509
  "customApp": {
1510
- "alias": "customApplicationRefCustomApp: customApp",
1510
+ "alias": "customAppWanFirewallApplication: customApp",
1511
1511
  "args": {},
1512
1512
  "deprecationReason": null,
1513
1513
  "description": "Custom (user-defined) applications",
@@ -1585,10 +1585,10 @@
1585
1585
  "varName": "customApplicationRef"
1586
1586
  },
1587
1587
  "customCategory": {
1588
- "alias": "customCategoryRefCustomCategory: customCategory",
1588
+ "alias": "customCategoryWanFirewallApplication: customCategory",
1589
1589
  "args": {},
1590
1590
  "deprecationReason": null,
1591
- "description": "Custom Categories Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
1591
+ "description": "Custom Categories \u2013 Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
1592
1592
  "id_str": "wanFirewall___updatePolicy___policy___rules___rule___application___customCategory",
1593
1593
  "isDeprecated": false,
1594
1594
  "name": "customCategory",
@@ -1709,7 +1709,7 @@
1709
1709
  "varName": "fqdn"
1710
1710
  },
1711
1711
  "globalIpRange": {
1712
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
1712
+ "alias": "globalIpRangeWanFirewallApplication: globalIpRange",
1713
1713
  "args": {},
1714
1714
  "deprecationReason": null,
1715
1715
  "description": "Globally defined IP range, IP and subnet objects",
@@ -1810,7 +1810,7 @@
1810
1810
  "varName": "ip"
1811
1811
  },
1812
1812
  "ipRange": {
1813
- "alias": "ipAddressRangeIpRange: ipRange",
1813
+ "alias": "ipRangeWanFirewallApplication: ipRange",
1814
1814
  "args": {},
1815
1815
  "deprecationReason": null,
1816
1816
  "description": "A range of IPs. Every IP within the range will be matched",
@@ -1888,7 +1888,7 @@
1888
1888
  "varName": "ipAddressRange"
1889
1889
  },
1890
1890
  "sanctionedAppsCategory": {
1891
- "alias": "sanctionedAppsCategoryRefSanctionedAppsCategory: sanctionedAppsCategory",
1891
+ "alias": "sanctionedAppsCategoryWanFirewallApplication: sanctionedAppsCategory",
1892
1892
  "args": {},
1893
1893
  "deprecationReason": null,
1894
1894
  "description": "Sanctioned Cloud Applications - apps that are approved and generally represent an understood and acceptable level of risk in your organization.",
@@ -2006,7 +2006,7 @@
2006
2006
  "varName": "wanFirewallApplication"
2007
2007
  },
2008
2008
  "connectionOrigin": {
2009
- "alias": "connectionOriginEnumConnectionOrigin: connectionOrigin",
2009
+ "alias": "connectionOriginWanFirewallRule: connectionOrigin",
2010
2010
  "args": {},
2011
2011
  "deprecationReason": null,
2012
2012
  "description": "Connection origin of the traffic",
@@ -2058,10 +2058,10 @@
2058
2058
  "varName": "connectionOrigin"
2059
2059
  },
2060
2060
  "country": {
2061
- "alias": "countryRefCountry: country",
2061
+ "alias": "countryWanFirewallRule: country",
2062
2062
  "args": {},
2063
2063
  "deprecationReason": null,
2064
- "description": "Source country traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
2064
+ "description": "Source country traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
2065
2065
  "id_str": "wanFirewall___updatePolicy___policy___rules___rule___country",
2066
2066
  "isDeprecated": false,
2067
2067
  "name": "country",
@@ -2157,10 +2157,10 @@
2157
2157
  "varName": "description"
2158
2158
  },
2159
2159
  "destination": {
2160
- "alias": "wanFirewallDestinationDestination: destination",
2160
+ "alias": "destinationWanFirewallRule: destination",
2161
2161
  "args": {},
2162
2162
  "deprecationReason": null,
2163
- "description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
2163
+ "description": "Destination traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
2164
2164
  "id_str": "wanFirewall___updatePolicy___policy___rules___rule___destination",
2165
2165
  "isDeprecated": false,
2166
2166
  "name": "destination",
@@ -2174,7 +2174,7 @@
2174
2174
  "enumValues": null,
2175
2175
  "fields": {
2176
2176
  "floatingSubnet": {
2177
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
2177
+ "alias": "floatingSubnetWanFirewallDestination: floatingSubnet",
2178
2178
  "args": {},
2179
2179
  "deprecationReason": null,
2180
2180
  "description": "Floating Subnets (ie. Floating Ranges) are used to identify traffic exactly matched to the route advertised by BGP.\nThey are not associated with a specific site.\nThis is useful in scenarios such as active-standby high availability routed via BGP.",
@@ -2252,7 +2252,7 @@
2252
2252
  "varName": "floatingSubnetRef"
2253
2253
  },
2254
2254
  "globalIpRange": {
2255
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
2255
+ "alias": "globalIpRangeWanFirewallDestination: globalIpRange",
2256
2256
  "args": {},
2257
2257
  "deprecationReason": null,
2258
2258
  "description": "Globally defined IP range, IP and subnet objects",
@@ -2330,7 +2330,7 @@
2330
2330
  "varName": "globalIpRangeRef"
2331
2331
  },
2332
2332
  "group": {
2333
- "alias": "groupRefGroup: group",
2333
+ "alias": "groupWanFirewallDestination: group",
2334
2334
  "args": {},
2335
2335
  "deprecationReason": null,
2336
2336
  "description": "Groups defined for your account",
@@ -2408,7 +2408,7 @@
2408
2408
  "varName": "groupRef"
2409
2409
  },
2410
2410
  "host": {
2411
- "alias": "hostRefHost: host",
2411
+ "alias": "hostWanFirewallDestination: host",
2412
2412
  "args": {},
2413
2413
  "deprecationReason": null,
2414
2414
  "description": "Hosts and servers defined for your account",
@@ -2509,7 +2509,7 @@
2509
2509
  "varName": "ip"
2510
2510
  },
2511
2511
  "ipRange": {
2512
- "alias": "ipAddressRangeIpRange: ipRange",
2512
+ "alias": "ipRangeWanFirewallDestination: ipRange",
2513
2513
  "args": {},
2514
2514
  "deprecationReason": null,
2515
2515
  "description": "Multiple separate IP addresses or an IP range",
@@ -2587,7 +2587,7 @@
2587
2587
  "varName": "ipAddressRange"
2588
2588
  },
2589
2589
  "networkInterface": {
2590
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
2590
+ "alias": "networkInterfaceWanFirewallDestination: networkInterface",
2591
2591
  "args": {},
2592
2592
  "deprecationReason": null,
2593
2593
  "description": "Network range defined for a site",
@@ -2665,7 +2665,7 @@
2665
2665
  "varName": "networkInterfaceRef"
2666
2666
  },
2667
2667
  "site": {
2668
- "alias": "siteRefSite: site",
2668
+ "alias": "siteWanFirewallDestination: site",
2669
2669
  "args": {},
2670
2670
  "deprecationReason": null,
2671
2671
  "description": "Site defined for the account",
@@ -2743,7 +2743,7 @@
2743
2743
  "varName": "siteRef"
2744
2744
  },
2745
2745
  "siteNetworkSubnet": {
2746
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
2746
+ "alias": "siteNetworkSubnetWanFirewallDestination: siteNetworkSubnet",
2747
2747
  "args": {},
2748
2748
  "deprecationReason": null,
2749
2749
  "description": "GlobalRange + InterfaceSubnet",
@@ -2844,7 +2844,7 @@
2844
2844
  "varName": "subnet"
2845
2845
  },
2846
2846
  "systemGroup": {
2847
- "alias": "systemGroupRefSystemGroup: systemGroup",
2847
+ "alias": "systemGroupWanFirewallDestination: systemGroup",
2848
2848
  "args": {},
2849
2849
  "deprecationReason": null,
2850
2850
  "description": "Predefined Cato groups",
@@ -2922,7 +2922,7 @@
2922
2922
  "varName": "systemGroupRef"
2923
2923
  },
2924
2924
  "user": {
2925
- "alias": "userRefUser: user",
2925
+ "alias": "userWanFirewallDestination: user",
2926
2926
  "args": {},
2927
2927
  "deprecationReason": null,
2928
2928
  "description": "Individual users defined for the account",
@@ -3000,7 +3000,7 @@
3000
3000
  "varName": "userRef"
3001
3001
  },
3002
3002
  "usersGroup": {
3003
- "alias": "usersGroupRefUsersGroup: usersGroup",
3003
+ "alias": "usersGroupWanFirewallDestination: usersGroup",
3004
3004
  "args": {},
3005
3005
  "deprecationReason": null,
3006
3006
  "description": "Group of users",
@@ -3095,10 +3095,10 @@
3095
3095
  "varName": "wanFirewallDestination"
3096
3096
  },
3097
3097
  "device": {
3098
- "alias": "deviceProfileRefDevice: device",
3098
+ "alias": "deviceWanFirewallRule: device",
3099
3099
  "args": {},
3100
3100
  "deprecationReason": null,
3101
- "description": "Source Device Profile traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
3101
+ "description": "Source Device Profile traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
3102
3102
  "id_str": "wanFirewall___updatePolicy___policy___rules___rule___device",
3103
3103
  "isDeprecated": false,
3104
3104
  "name": "device",
@@ -3173,7 +3173,7 @@
3173
3173
  "varName": "deviceProfileRef"
3174
3174
  },
3175
3175
  "deviceAttributes": {
3176
- "alias": "deviceAttributesDeviceAttributes: deviceAttributes",
3176
+ "alias": "deviceAttributesWanFirewallRule: deviceAttributes",
3177
3177
  "args": {},
3178
3178
  "deprecationReason": null,
3179
3179
  "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.",
@@ -3345,10 +3345,10 @@
3345
3345
  "varName": "deviceAttributes"
3346
3346
  },
3347
3347
  "deviceOS": {
3348
- "alias": "operatingSystemDeviceOS: deviceOS",
3348
+ "alias": "deviceOSWanFirewallRule: deviceOS",
3349
3349
  "args": {},
3350
3350
  "deprecationReason": null,
3351
- "description": "Source device Operating System traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
3351
+ "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.",
3352
3352
  "id_str": "wanFirewall___updatePolicy___policy___rules___rule___deviceOS",
3353
3353
  "isDeprecated": false,
3354
3354
  "name": "deviceOS",
@@ -3417,7 +3417,7 @@
3417
3417
  "varName": "deviceOS"
3418
3418
  },
3419
3419
  "direction": {
3420
- "alias": "wanFirewallDirectionEnumDirection: direction",
3420
+ "alias": "directionWanFirewallRule: direction",
3421
3421
  "args": {},
3422
3422
  "deprecationReason": null,
3423
3423
  "description": null,
@@ -3484,7 +3484,7 @@
3484
3484
  "varName": "enabled"
3485
3485
  },
3486
3486
  "exceptions": {
3487
- "alias": "wanFirewallRuleExceptionExceptions: exceptions",
3487
+ "alias": "exceptionsWanFirewallRule: exceptions",
3488
3488
  "args": {},
3489
3489
  "deprecationReason": null,
3490
3490
  "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.",
@@ -3501,7 +3501,7 @@
3501
3501
  "enumValues": null,
3502
3502
  "fields": {
3503
3503
  "application": {
3504
- "alias": "wanFirewallApplicationApplication: application",
3504
+ "alias": "applicationWanFirewallRuleException: application",
3505
3505
  "args": {},
3506
3506
  "deprecationReason": null,
3507
3507
  "description": "Application matching criteria for the exception.",
@@ -3518,7 +3518,7 @@
3518
3518
  "enumValues": null,
3519
3519
  "fields": {
3520
3520
  "appCategory": {
3521
- "alias": "applicationCategoryRefAppCategory: appCategory",
3521
+ "alias": "appCategoryWanFirewallApplication: appCategory",
3522
3522
  "args": {},
3523
3523
  "deprecationReason": null,
3524
3524
  "description": "Cato category of applications which are dynamically updated by Cato",
@@ -3596,7 +3596,7 @@
3596
3596
  "varName": "applicationCategoryRef"
3597
3597
  },
3598
3598
  "application": {
3599
- "alias": "applicationRefApplication: application",
3599
+ "alias": "applicationWanFirewallApplication: application",
3600
3600
  "args": {},
3601
3601
  "deprecationReason": null,
3602
3602
  "description": "Applications for the rule (pre-defined)",
@@ -3674,7 +3674,7 @@
3674
3674
  "varName": "applicationRef"
3675
3675
  },
3676
3676
  "customApp": {
3677
- "alias": "customApplicationRefCustomApp: customApp",
3677
+ "alias": "customAppWanFirewallApplication: customApp",
3678
3678
  "args": {},
3679
3679
  "deprecationReason": null,
3680
3680
  "description": "Custom (user-defined) applications",
@@ -3752,10 +3752,10 @@
3752
3752
  "varName": "customApplicationRef"
3753
3753
  },
3754
3754
  "customCategory": {
3755
- "alias": "customCategoryRefCustomCategory: customCategory",
3755
+ "alias": "customCategoryWanFirewallApplication: customCategory",
3756
3756
  "args": {},
3757
3757
  "deprecationReason": null,
3758
- "description": "Custom Categories Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
3758
+ "description": "Custom Categories \u2013 Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
3759
3759
  "id_str": "wanFirewall___updatePolicy___policy___rules___rule___exceptions___application___customCategory",
3760
3760
  "isDeprecated": false,
3761
3761
  "name": "customCategory",
@@ -3876,7 +3876,7 @@
3876
3876
  "varName": "fqdn"
3877
3877
  },
3878
3878
  "globalIpRange": {
3879
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
3879
+ "alias": "globalIpRangeWanFirewallApplication: globalIpRange",
3880
3880
  "args": {},
3881
3881
  "deprecationReason": null,
3882
3882
  "description": "Globally defined IP range, IP and subnet objects",
@@ -3977,7 +3977,7 @@
3977
3977
  "varName": "ip"
3978
3978
  },
3979
3979
  "ipRange": {
3980
- "alias": "ipAddressRangeIpRange: ipRange",
3980
+ "alias": "ipRangeWanFirewallApplication: ipRange",
3981
3981
  "args": {},
3982
3982
  "deprecationReason": null,
3983
3983
  "description": "A range of IPs. Every IP within the range will be matched",
@@ -4055,7 +4055,7 @@
4055
4055
  "varName": "ipAddressRange"
4056
4056
  },
4057
4057
  "sanctionedAppsCategory": {
4058
- "alias": "sanctionedAppsCategoryRefSanctionedAppsCategory: sanctionedAppsCategory",
4058
+ "alias": "sanctionedAppsCategoryWanFirewallApplication: sanctionedAppsCategory",
4059
4059
  "args": {},
4060
4060
  "deprecationReason": null,
4061
4061
  "description": "Sanctioned Cloud Applications - apps that are approved and generally represent an understood and acceptable level of risk in your organization.",
@@ -4173,7 +4173,7 @@
4173
4173
  "varName": "wanFirewallApplication"
4174
4174
  },
4175
4175
  "connectionOrigin": {
4176
- "alias": "connectionOriginEnumConnectionOrigin: connectionOrigin",
4176
+ "alias": "connectionOriginWanFirewallRuleException: connectionOrigin",
4177
4177
  "args": {},
4178
4178
  "deprecationReason": null,
4179
4179
  "description": "Connection origin matching criteria for the exception.",
@@ -4225,7 +4225,7 @@
4225
4225
  "varName": "connectionOrigin"
4226
4226
  },
4227
4227
  "country": {
4228
- "alias": "countryRefCountry: country",
4228
+ "alias": "countryWanFirewallRuleException: country",
4229
4229
  "args": {},
4230
4230
  "deprecationReason": null,
4231
4231
  "description": "Source country matching criteria for the exception.",
@@ -4303,7 +4303,7 @@
4303
4303
  "varName": "countryRef"
4304
4304
  },
4305
4305
  "destination": {
4306
- "alias": "wanFirewallDestinationDestination: destination",
4306
+ "alias": "destinationWanFirewallRuleException: destination",
4307
4307
  "args": {},
4308
4308
  "deprecationReason": null,
4309
4309
  "description": "Destination matching criteria for the exception.",
@@ -4320,7 +4320,7 @@
4320
4320
  "enumValues": null,
4321
4321
  "fields": {
4322
4322
  "floatingSubnet": {
4323
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
4323
+ "alias": "floatingSubnetWanFirewallDestination: floatingSubnet",
4324
4324
  "args": {},
4325
4325
  "deprecationReason": null,
4326
4326
  "description": "Floating Subnets (ie. Floating Ranges) are used to identify traffic exactly matched to the route advertised by BGP.\nThey are not associated with a specific site.\nThis is useful in scenarios such as active-standby high availability routed via BGP.",
@@ -4398,7 +4398,7 @@
4398
4398
  "varName": "floatingSubnetRef"
4399
4399
  },
4400
4400
  "globalIpRange": {
4401
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
4401
+ "alias": "globalIpRangeWanFirewallDestination: globalIpRange",
4402
4402
  "args": {},
4403
4403
  "deprecationReason": null,
4404
4404
  "description": "Globally defined IP range, IP and subnet objects",
@@ -4476,7 +4476,7 @@
4476
4476
  "varName": "globalIpRangeRef"
4477
4477
  },
4478
4478
  "group": {
4479
- "alias": "groupRefGroup: group",
4479
+ "alias": "groupWanFirewallDestination: group",
4480
4480
  "args": {},
4481
4481
  "deprecationReason": null,
4482
4482
  "description": "Groups defined for your account",
@@ -4554,7 +4554,7 @@
4554
4554
  "varName": "groupRef"
4555
4555
  },
4556
4556
  "host": {
4557
- "alias": "hostRefHost: host",
4557
+ "alias": "hostWanFirewallDestination: host",
4558
4558
  "args": {},
4559
4559
  "deprecationReason": null,
4560
4560
  "description": "Hosts and servers defined for your account",
@@ -4655,7 +4655,7 @@
4655
4655
  "varName": "ip"
4656
4656
  },
4657
4657
  "ipRange": {
4658
- "alias": "ipAddressRangeIpRange: ipRange",
4658
+ "alias": "ipRangeWanFirewallDestination: ipRange",
4659
4659
  "args": {},
4660
4660
  "deprecationReason": null,
4661
4661
  "description": "Multiple separate IP addresses or an IP range",
@@ -4733,7 +4733,7 @@
4733
4733
  "varName": "ipAddressRange"
4734
4734
  },
4735
4735
  "networkInterface": {
4736
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
4736
+ "alias": "networkInterfaceWanFirewallDestination: networkInterface",
4737
4737
  "args": {},
4738
4738
  "deprecationReason": null,
4739
4739
  "description": "Network range defined for a site",
@@ -4811,7 +4811,7 @@
4811
4811
  "varName": "networkInterfaceRef"
4812
4812
  },
4813
4813
  "site": {
4814
- "alias": "siteRefSite: site",
4814
+ "alias": "siteWanFirewallDestination: site",
4815
4815
  "args": {},
4816
4816
  "deprecationReason": null,
4817
4817
  "description": "Site defined for the account",
@@ -4889,7 +4889,7 @@
4889
4889
  "varName": "siteRef"
4890
4890
  },
4891
4891
  "siteNetworkSubnet": {
4892
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
4892
+ "alias": "siteNetworkSubnetWanFirewallDestination: siteNetworkSubnet",
4893
4893
  "args": {},
4894
4894
  "deprecationReason": null,
4895
4895
  "description": "GlobalRange + InterfaceSubnet",
@@ -4990,7 +4990,7 @@
4990
4990
  "varName": "subnet"
4991
4991
  },
4992
4992
  "systemGroup": {
4993
- "alias": "systemGroupRefSystemGroup: systemGroup",
4993
+ "alias": "systemGroupWanFirewallDestination: systemGroup",
4994
4994
  "args": {},
4995
4995
  "deprecationReason": null,
4996
4996
  "description": "Predefined Cato groups",
@@ -5068,7 +5068,7 @@
5068
5068
  "varName": "systemGroupRef"
5069
5069
  },
5070
5070
  "user": {
5071
- "alias": "userRefUser: user",
5071
+ "alias": "userWanFirewallDestination: user",
5072
5072
  "args": {},
5073
5073
  "deprecationReason": null,
5074
5074
  "description": "Individual users defined for the account",
@@ -5146,7 +5146,7 @@
5146
5146
  "varName": "userRef"
5147
5147
  },
5148
5148
  "usersGroup": {
5149
- "alias": "usersGroupRefUsersGroup: usersGroup",
5149
+ "alias": "usersGroupWanFirewallDestination: usersGroup",
5150
5150
  "args": {},
5151
5151
  "deprecationReason": null,
5152
5152
  "description": "Group of users",
@@ -5241,7 +5241,7 @@
5241
5241
  "varName": "wanFirewallDestination"
5242
5242
  },
5243
5243
  "device": {
5244
- "alias": "deviceProfileRefDevice: device",
5244
+ "alias": "deviceWanFirewallRuleException: device",
5245
5245
  "args": {},
5246
5246
  "deprecationReason": null,
5247
5247
  "description": "Source Device Profile matching criteria for the exception.",
@@ -5319,7 +5319,7 @@
5319
5319
  "varName": "deviceProfileRef"
5320
5320
  },
5321
5321
  "deviceAttributes": {
5322
- "alias": "deviceAttributesDeviceAttributes: deviceAttributes",
5322
+ "alias": "deviceAttributesWanFirewallRuleException: deviceAttributes",
5323
5323
  "args": {},
5324
5324
  "deprecationReason": null,
5325
5325
  "description": "Source Device Attributes matching criteria for the exception.",
@@ -5491,7 +5491,7 @@
5491
5491
  "varName": "deviceAttributes"
5492
5492
  },
5493
5493
  "deviceOS": {
5494
- "alias": "operatingSystemDeviceOS: deviceOS",
5494
+ "alias": "deviceOSWanFirewallRuleException: deviceOS",
5495
5495
  "args": {},
5496
5496
  "deprecationReason": null,
5497
5497
  "description": "Source device OS matching criteria for the exception.",
@@ -5563,7 +5563,7 @@
5563
5563
  "varName": "deviceOS"
5564
5564
  },
5565
5565
  "direction": {
5566
- "alias": "wanFirewallDirectionEnumDirection: direction",
5566
+ "alias": "directionWanFirewallRuleException: direction",
5567
5567
  "args": {},
5568
5568
  "deprecationReason": null,
5569
5569
  "description": "Direction origin matching criteria for the exception",
@@ -5630,7 +5630,7 @@
5630
5630
  "varName": "name"
5631
5631
  },
5632
5632
  "service": {
5633
- "alias": "wanFirewallServiceTypeService: service",
5633
+ "alias": "serviceWanFirewallRuleException: service",
5634
5634
  "args": {},
5635
5635
  "deprecationReason": null,
5636
5636
  "description": "Destination service matching criteria for the exception.",
@@ -5647,7 +5647,7 @@
5647
5647
  "enumValues": null,
5648
5648
  "fields": {
5649
5649
  "custom": {
5650
- "alias": "customServiceCustom: custom",
5650
+ "alias": "customWanFirewallServiceType: custom",
5651
5651
  "args": {},
5652
5652
  "deprecationReason": null,
5653
5653
  "description": null,
@@ -5686,7 +5686,7 @@
5686
5686
  "varName": "port"
5687
5687
  },
5688
5688
  "portRange": {
5689
- "alias": "portRangePortRange: portRange",
5689
+ "alias": "portRangeCustomService: portRange",
5690
5690
  "args": {},
5691
5691
  "deprecationReason": null,
5692
5692
  "description": null,
@@ -5761,7 +5761,7 @@
5761
5761
  "varName": "portRange"
5762
5762
  },
5763
5763
  "protocol": {
5764
- "alias": "ipProtocolProtocol: protocol",
5764
+ "alias": "protocolCustomService: protocol",
5765
5765
  "args": {},
5766
5766
  "deprecationReason": null,
5767
5767
  "description": null,
@@ -5844,7 +5844,7 @@
5844
5844
  "varName": "customService"
5845
5845
  },
5846
5846
  "standard": {
5847
- "alias": "serviceRefStandard: standard",
5847
+ "alias": "standardWanFirewallServiceType: standard",
5848
5848
  "args": {},
5849
5849
  "deprecationReason": null,
5850
5850
  "description": null,
@@ -5939,7 +5939,7 @@
5939
5939
  "varName": "wanFirewallServiceType"
5940
5940
  },
5941
5941
  "source": {
5942
- "alias": "wanFirewallSourceSource: source",
5942
+ "alias": "sourceWanFirewallRuleException: source",
5943
5943
  "args": {},
5944
5944
  "deprecationReason": null,
5945
5945
  "description": "Source matching criteria for the exception.",
@@ -5956,7 +5956,7 @@
5956
5956
  "enumValues": null,
5957
5957
  "fields": {
5958
5958
  "floatingSubnet": {
5959
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
5959
+ "alias": "floatingSubnetWanFirewallSource: floatingSubnet",
5960
5960
  "args": {},
5961
5961
  "deprecationReason": null,
5962
5962
  "description": "Floating Subnets (ie. Floating Ranges) are used to identify traffic exactly matched to the route advertised by BGP.\nThey are not associated with a specific site.\nThis is useful in scenarios such as active-standby high availability routed via BGP.",
@@ -6034,7 +6034,7 @@
6034
6034
  "varName": "floatingSubnetRef"
6035
6035
  },
6036
6036
  "globalIpRange": {
6037
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
6037
+ "alias": "globalIpRangeWanFirewallSource: globalIpRange",
6038
6038
  "args": {},
6039
6039
  "deprecationReason": null,
6040
6040
  "description": "Globally defined IP range, IP and subnet objects",
@@ -6112,7 +6112,7 @@
6112
6112
  "varName": "globalIpRangeRef"
6113
6113
  },
6114
6114
  "group": {
6115
- "alias": "groupRefGroup: group",
6115
+ "alias": "groupWanFirewallSource: group",
6116
6116
  "args": {},
6117
6117
  "deprecationReason": null,
6118
6118
  "description": "Groups defined for your account",
@@ -6190,7 +6190,7 @@
6190
6190
  "varName": "groupRef"
6191
6191
  },
6192
6192
  "host": {
6193
- "alias": "hostRefHost: host",
6193
+ "alias": "hostWanFirewallSource: host",
6194
6194
  "args": {},
6195
6195
  "deprecationReason": null,
6196
6196
  "description": "Hosts and servers defined for your account",
@@ -6291,7 +6291,7 @@
6291
6291
  "varName": "ip"
6292
6292
  },
6293
6293
  "ipRange": {
6294
- "alias": "ipAddressRangeIpRange: ipRange",
6294
+ "alias": "ipRangeWanFirewallSource: ipRange",
6295
6295
  "args": {},
6296
6296
  "deprecationReason": null,
6297
6297
  "description": "Multiple separate IP addresses or an IP range",
@@ -6369,7 +6369,7 @@
6369
6369
  "varName": "ipAddressRange"
6370
6370
  },
6371
6371
  "networkInterface": {
6372
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
6372
+ "alias": "networkInterfaceWanFirewallSource: networkInterface",
6373
6373
  "args": {},
6374
6374
  "deprecationReason": null,
6375
6375
  "description": "Network range defined for a site",
@@ -6447,7 +6447,7 @@
6447
6447
  "varName": "networkInterfaceRef"
6448
6448
  },
6449
6449
  "site": {
6450
- "alias": "siteRefSite: site",
6450
+ "alias": "siteWanFirewallSource: site",
6451
6451
  "args": {},
6452
6452
  "deprecationReason": null,
6453
6453
  "description": "Site defined for the account",
@@ -6525,7 +6525,7 @@
6525
6525
  "varName": "siteRef"
6526
6526
  },
6527
6527
  "siteNetworkSubnet": {
6528
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
6528
+ "alias": "siteNetworkSubnetWanFirewallSource: siteNetworkSubnet",
6529
6529
  "args": {},
6530
6530
  "deprecationReason": null,
6531
6531
  "description": "GlobalRange + InterfaceSubnet",
@@ -6626,7 +6626,7 @@
6626
6626
  "varName": "subnet"
6627
6627
  },
6628
6628
  "systemGroup": {
6629
- "alias": "systemGroupRefSystemGroup: systemGroup",
6629
+ "alias": "systemGroupWanFirewallSource: systemGroup",
6630
6630
  "args": {},
6631
6631
  "deprecationReason": null,
6632
6632
  "description": "Predefined Cato groups",
@@ -6704,7 +6704,7 @@
6704
6704
  "varName": "systemGroupRef"
6705
6705
  },
6706
6706
  "user": {
6707
- "alias": "userRefUser: user",
6707
+ "alias": "userWanFirewallSource: user",
6708
6708
  "args": {},
6709
6709
  "deprecationReason": null,
6710
6710
  "description": "Individual users defined for the account",
@@ -6782,7 +6782,7 @@
6782
6782
  "varName": "userRef"
6783
6783
  },
6784
6784
  "usersGroup": {
6785
- "alias": "usersGroupRefUsersGroup: usersGroup",
6785
+ "alias": "usersGroupWanFirewallSource: usersGroup",
6786
6786
  "args": {},
6787
6787
  "deprecationReason": null,
6788
6788
  "description": "Group of users",
@@ -6959,7 +6959,7 @@
6959
6959
  "varName": "name"
6960
6960
  },
6961
6961
  "schedule": {
6962
- "alias": "policyScheduleSchedule: schedule",
6962
+ "alias": "scheduleWanFirewallRule: schedule",
6963
6963
  "args": {},
6964
6964
  "deprecationReason": null,
6965
6965
  "description": "The time period specifying when the rule is enabled, otherwise it is disabled.",
@@ -6976,7 +6976,7 @@
6976
6976
  "enumValues": null,
6977
6977
  "fields": {
6978
6978
  "activeOn": {
6979
- "alias": "policyActiveOnEnumActiveOn: activeOn",
6979
+ "alias": "activeOnPolicySchedule: activeOn",
6980
6980
  "args": {},
6981
6981
  "deprecationReason": null,
6982
6982
  "description": null,
@@ -7034,7 +7034,7 @@
7034
7034
  "varName": "activeOn"
7035
7035
  },
7036
7036
  "customRecurring": {
7037
- "alias": "policyCustomRecurringCustomRecurring: customRecurring",
7037
+ "alias": "customRecurringPolicySchedule: customRecurring",
7038
7038
  "args": {},
7039
7039
  "deprecationReason": null,
7040
7040
  "description": null,
@@ -7186,7 +7186,7 @@
7186
7186
  "varName": "policyCustomRecurring"
7187
7187
  },
7188
7188
  "customTimeframe": {
7189
- "alias": "policyCustomTimeframeCustomTimeframe: customTimeframe",
7189
+ "alias": "customTimeframePolicySchedule: customTimeframe",
7190
7190
  "args": {},
7191
7191
  "deprecationReason": null,
7192
7192
  "description": null,
@@ -7278,7 +7278,7 @@
7278
7278
  "varName": "policySchedule"
7279
7279
  },
7280
7280
  "section": {
7281
- "alias": "policySectionInfoSection: section",
7281
+ "alias": "sectionWanFirewallRule: section",
7282
7282
  "args": {},
7283
7283
  "deprecationReason": null,
7284
7284
  "description": "Policy section where the rule is located",
@@ -7354,10 +7354,10 @@
7354
7354
  "varName": "policySectionInfo"
7355
7355
  },
7356
7356
  "service": {
7357
- "alias": "wanFirewallServiceTypeService: service",
7357
+ "alias": "serviceWanFirewallRule: service",
7358
7358
  "args": {},
7359
7359
  "deprecationReason": null,
7360
- "description": "Destination service traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
7360
+ "description": "Destination service traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
7361
7361
  "id_str": "wanFirewall___updatePolicy___policy___rules___rule___service",
7362
7362
  "isDeprecated": false,
7363
7363
  "name": "service",
@@ -7371,7 +7371,7 @@
7371
7371
  "enumValues": null,
7372
7372
  "fields": {
7373
7373
  "custom": {
7374
- "alias": "customServiceCustom: custom",
7374
+ "alias": "customWanFirewallServiceType: custom",
7375
7375
  "args": {},
7376
7376
  "deprecationReason": null,
7377
7377
  "description": null,
@@ -7410,7 +7410,7 @@
7410
7410
  "varName": "port"
7411
7411
  },
7412
7412
  "portRange": {
7413
- "alias": "portRangePortRange: portRange",
7413
+ "alias": "portRangeCustomService: portRange",
7414
7414
  "args": {},
7415
7415
  "deprecationReason": null,
7416
7416
  "description": null,
@@ -7485,7 +7485,7 @@
7485
7485
  "varName": "portRange"
7486
7486
  },
7487
7487
  "protocol": {
7488
- "alias": "ipProtocolProtocol: protocol",
7488
+ "alias": "protocolCustomService: protocol",
7489
7489
  "args": {},
7490
7490
  "deprecationReason": null,
7491
7491
  "description": null,
@@ -7568,7 +7568,7 @@
7568
7568
  "varName": "customService"
7569
7569
  },
7570
7570
  "standard": {
7571
- "alias": "serviceRefStandard: standard",
7571
+ "alias": "standardWanFirewallServiceType: standard",
7572
7572
  "args": {},
7573
7573
  "deprecationReason": null,
7574
7574
  "description": null,
@@ -7663,10 +7663,10 @@
7663
7663
  "varName": "wanFirewallServiceType"
7664
7664
  },
7665
7665
  "source": {
7666
- "alias": "wanFirewallSourceSource: source",
7666
+ "alias": "sourceWanFirewallRule: source",
7667
7667
  "args": {},
7668
7668
  "deprecationReason": null,
7669
- "description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
7669
+ "description": "Source traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
7670
7670
  "id_str": "wanFirewall___updatePolicy___policy___rules___rule___source",
7671
7671
  "isDeprecated": false,
7672
7672
  "name": "source",
@@ -7680,7 +7680,7 @@
7680
7680
  "enumValues": null,
7681
7681
  "fields": {
7682
7682
  "floatingSubnet": {
7683
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
7683
+ "alias": "floatingSubnetWanFirewallSource: floatingSubnet",
7684
7684
  "args": {},
7685
7685
  "deprecationReason": null,
7686
7686
  "description": "Floating Subnets (ie. Floating Ranges) are used to identify traffic exactly matched to the route advertised by BGP.\nThey are not associated with a specific site.\nThis is useful in scenarios such as active-standby high availability routed via BGP.",
@@ -7758,7 +7758,7 @@
7758
7758
  "varName": "floatingSubnetRef"
7759
7759
  },
7760
7760
  "globalIpRange": {
7761
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
7761
+ "alias": "globalIpRangeWanFirewallSource: globalIpRange",
7762
7762
  "args": {},
7763
7763
  "deprecationReason": null,
7764
7764
  "description": "Globally defined IP range, IP and subnet objects",
@@ -7836,7 +7836,7 @@
7836
7836
  "varName": "globalIpRangeRef"
7837
7837
  },
7838
7838
  "group": {
7839
- "alias": "groupRefGroup: group",
7839
+ "alias": "groupWanFirewallSource: group",
7840
7840
  "args": {},
7841
7841
  "deprecationReason": null,
7842
7842
  "description": "Groups defined for your account",
@@ -7914,7 +7914,7 @@
7914
7914
  "varName": "groupRef"
7915
7915
  },
7916
7916
  "host": {
7917
- "alias": "hostRefHost: host",
7917
+ "alias": "hostWanFirewallSource: host",
7918
7918
  "args": {},
7919
7919
  "deprecationReason": null,
7920
7920
  "description": "Hosts and servers defined for your account",
@@ -8015,7 +8015,7 @@
8015
8015
  "varName": "ip"
8016
8016
  },
8017
8017
  "ipRange": {
8018
- "alias": "ipAddressRangeIpRange: ipRange",
8018
+ "alias": "ipRangeWanFirewallSource: ipRange",
8019
8019
  "args": {},
8020
8020
  "deprecationReason": null,
8021
8021
  "description": "Multiple separate IP addresses or an IP range",
@@ -8093,7 +8093,7 @@
8093
8093
  "varName": "ipAddressRange"
8094
8094
  },
8095
8095
  "networkInterface": {
8096
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
8096
+ "alias": "networkInterfaceWanFirewallSource: networkInterface",
8097
8097
  "args": {},
8098
8098
  "deprecationReason": null,
8099
8099
  "description": "Network range defined for a site",
@@ -8171,7 +8171,7 @@
8171
8171
  "varName": "networkInterfaceRef"
8172
8172
  },
8173
8173
  "site": {
8174
- "alias": "siteRefSite: site",
8174
+ "alias": "siteWanFirewallSource: site",
8175
8175
  "args": {},
8176
8176
  "deprecationReason": null,
8177
8177
  "description": "Site defined for the account",
@@ -8249,7 +8249,7 @@
8249
8249
  "varName": "siteRef"
8250
8250
  },
8251
8251
  "siteNetworkSubnet": {
8252
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
8252
+ "alias": "siteNetworkSubnetWanFirewallSource: siteNetworkSubnet",
8253
8253
  "args": {},
8254
8254
  "deprecationReason": null,
8255
8255
  "description": "GlobalRange + InterfaceSubnet",
@@ -8350,7 +8350,7 @@
8350
8350
  "varName": "subnet"
8351
8351
  },
8352
8352
  "systemGroup": {
8353
- "alias": "systemGroupRefSystemGroup: systemGroup",
8353
+ "alias": "systemGroupWanFirewallSource: systemGroup",
8354
8354
  "args": {},
8355
8355
  "deprecationReason": null,
8356
8356
  "description": "Predefined Cato groups",
@@ -8428,7 +8428,7 @@
8428
8428
  "varName": "systemGroupRef"
8429
8429
  },
8430
8430
  "user": {
8431
- "alias": "userRefUser: user",
8431
+ "alias": "userWanFirewallSource: user",
8432
8432
  "args": {},
8433
8433
  "deprecationReason": null,
8434
8434
  "description": "Individual users defined for the account",
@@ -8506,7 +8506,7 @@
8506
8506
  "varName": "userRef"
8507
8507
  },
8508
8508
  "usersGroup": {
8509
- "alias": "usersGroupRefUsersGroup: usersGroup",
8509
+ "alias": "usersGroupWanFirewallSource: usersGroup",
8510
8510
  "args": {},
8511
8511
  "deprecationReason": null,
8512
8512
  "description": "Group of users",
@@ -8601,7 +8601,7 @@
8601
8601
  "varName": "wanFirewallSource"
8602
8602
  },
8603
8603
  "tracking": {
8604
- "alias": "policyTrackingTracking: tracking",
8604
+ "alias": "trackingWanFirewallRule: tracking",
8605
8605
  "args": {},
8606
8606
  "deprecationReason": null,
8607
8607
  "description": "Tracking information when the rule is matched, such as events and notifications",
@@ -8618,7 +8618,7 @@
8618
8618
  "enumValues": null,
8619
8619
  "fields": {
8620
8620
  "alert": {
8621
- "alias": "policyRuleTrackingAlertAlert: alert",
8621
+ "alias": "alertPolicyTracking: alert",
8622
8622
  "args": {},
8623
8623
  "deprecationReason": null,
8624
8624
  "description": null,
@@ -8637,7 +8637,7 @@
8637
8637
  "enabled": {
8638
8638
  "args": {},
8639
8639
  "deprecationReason": null,
8640
- "description": "TRUE send alerts when the rule is matched, FALSE don’t send alerts when the rule is matched",
8640
+ "description": "TRUE \u2013 send alerts when the rule is matched, FALSE \u2013 don\u2019t send alerts when the rule is matched",
8641
8641
  "id_str": "wanFirewall___updatePolicy___policy___rules___rule___tracking___alert___enabled",
8642
8642
  "isDeprecated": false,
8643
8643
  "name": "enabled",
@@ -8656,7 +8656,7 @@
8656
8656
  "varName": "enabled"
8657
8657
  },
8658
8658
  "frequency": {
8659
- "alias": "policyRuleTrackingFrequencyEnumFrequency: frequency",
8659
+ "alias": "frequencyPolicyRuleTrackingAlert: frequency",
8660
8660
  "args": {},
8661
8661
  "deprecationReason": null,
8662
8662
  "description": "Returns data for the alert frequency",
@@ -8714,7 +8714,7 @@
8714
8714
  "varName": "frequency"
8715
8715
  },
8716
8716
  "mailingList": {
8717
- "alias": "subscriptionMailingListRefMailingList: mailingList",
8717
+ "alias": "mailingListPolicyRuleTrackingAlert: mailingList",
8718
8718
  "args": {},
8719
8719
  "deprecationReason": null,
8720
8720
  "description": "Returns data for the Mailing List that receives the alert",
@@ -8792,7 +8792,7 @@
8792
8792
  "varName": "subscriptionMailingListRef"
8793
8793
  },
8794
8794
  "subscriptionGroup": {
8795
- "alias": "subscriptionGroupRefSubscriptionGroup: subscriptionGroup",
8795
+ "alias": "subscriptionGroupPolicyRuleTrackingAlert: subscriptionGroup",
8796
8796
  "args": {},
8797
8797
  "deprecationReason": null,
8798
8798
  "description": "Returns data for the Subscription Group that receives the alert",
@@ -8870,7 +8870,7 @@
8870
8870
  "varName": "subscriptionGroupRef"
8871
8871
  },
8872
8872
  "webhook": {
8873
- "alias": "subscriptionWebhookRefWebhook: webhook",
8873
+ "alias": "webhookPolicyRuleTrackingAlert: webhook",
8874
8874
  "args": {},
8875
8875
  "deprecationReason": null,
8876
8876
  "description": "Returns data for the Webhook that receives the alert",
@@ -8965,7 +8965,7 @@
8965
8965
  "varName": "policyRuleTrackingAlert"
8966
8966
  },
8967
8967
  "event": {
8968
- "alias": "policyRuleTrackingEventEvent: event",
8968
+ "alias": "eventPolicyTracking: event",
8969
8969
  "args": {},
8970
8970
  "deprecationReason": null,
8971
8971
  "description": null,
@@ -9089,7 +9089,7 @@
9089
9089
  "enumValues": null,
9090
9090
  "fields": {
9091
9091
  "audit": {
9092
- "alias": "policyElementAuditAudit: audit",
9092
+ "alias": "auditPolicySectionPayload: audit",
9093
9093
  "args": {},
9094
9094
  "deprecationReason": null,
9095
9095
  "description": null,
@@ -9165,7 +9165,7 @@
9165
9165
  "varName": "policyElementAudit"
9166
9166
  },
9167
9167
  "properties": {
9168
- "alias": "policyElementPropertiesEnumProperties: properties",
9168
+ "alias": "propertiesPolicySectionPayload: properties",
9169
9169
  "args": {},
9170
9170
  "deprecationReason": null,
9171
9171
  "description": null,
@@ -9243,7 +9243,7 @@
9243
9243
  "varName": "properties"
9244
9244
  },
9245
9245
  "section": {
9246
- "alias": "policySectionInfoSection: section",
9246
+ "alias": "sectionPolicySectionPayload: section",
9247
9247
  "args": {},
9248
9248
  "deprecationReason": null,
9249
9249
  "description": null,
@@ -9354,7 +9354,7 @@
9354
9354
  "varName": "wanFirewallPolicy"
9355
9355
  },
9356
9356
  "status": {
9357
- "alias": "policyMutationStatusStatus: status",
9357
+ "alias": "statusWanFirewallPolicyMutationPayload: status",
9358
9358
  "args": {},
9359
9359
  "deprecationReason": null,
9360
9360
  "description": null,