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
@@ -545,7 +545,7 @@
545
545
  "enumValues": null,
546
546
  "fields": {
547
547
  "errors": {
548
- "alias": "policyMutationErrorErrors: errors",
548
+ "alias": "errorsWanNetworkPolicyMutationPayload: errors",
549
549
  "args": {},
550
550
  "deprecationReason": null,
551
551
  "description": null,
@@ -558,7 +558,7 @@
558
558
  "responseStr": "errors:$policyMutationError ",
559
559
  "type": {
560
560
  "definition": {
561
- "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\"",
561
+ "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\"",
562
562
  "enumValues": null,
563
563
  "fields": {
564
564
  "errorCode": {
@@ -621,7 +621,7 @@
621
621
  "varName": "policyMutationError"
622
622
  },
623
623
  "policy": {
624
- "alias": "wanNetworkPolicyPolicy: policy",
624
+ "alias": "policyWanNetworkPolicyMutationPayload: policy",
625
625
  "args": {},
626
626
  "deprecationReason": null,
627
627
  "description": null,
@@ -907,7 +907,7 @@
907
907
  "enumValues": null,
908
908
  "fields": {
909
909
  "audit": {
910
- "alias": "policyElementAuditAudit: audit",
910
+ "alias": "auditWanNetworkRulePayload: audit",
911
911
  "args": {},
912
912
  "deprecationReason": null,
913
913
  "description": null,
@@ -983,7 +983,7 @@
983
983
  "varName": "policyElementAudit"
984
984
  },
985
985
  "properties": {
986
- "alias": "policyElementPropertiesEnumProperties: properties",
986
+ "alias": "propertiesWanNetworkRulePayload: properties",
987
987
  "args": {},
988
988
  "deprecationReason": null,
989
989
  "description": null,
@@ -1061,7 +1061,7 @@
1061
1061
  "varName": "properties"
1062
1062
  },
1063
1063
  "rule": {
1064
- "alias": "wanNetworkRuleRule: rule",
1064
+ "alias": "ruleWanNetworkRulePayload: rule",
1065
1065
  "args": {},
1066
1066
  "deprecationReason": null,
1067
1067
  "description": null,
@@ -1078,7 +1078,7 @@
1078
1078
  "enumValues": null,
1079
1079
  "fields": {
1080
1080
  "application": {
1081
- "alias": "wanNetworkRuleApplicationApplication: application",
1081
+ "alias": "applicationWanNetworkRule: application",
1082
1082
  "args": {},
1083
1083
  "deprecationReason": null,
1084
1084
  "description": "The application or category of traffic for the rule.",
@@ -1095,7 +1095,7 @@
1095
1095
  "enumValues": null,
1096
1096
  "fields": {
1097
1097
  "appCategory": {
1098
- "alias": "applicationCategoryRefAppCategory: appCategory",
1098
+ "alias": "appCategoryWanNetworkRuleApplication: appCategory",
1099
1099
  "args": {},
1100
1100
  "deprecationReason": null,
1101
1101
  "description": null,
@@ -1173,7 +1173,7 @@
1173
1173
  "varName": "applicationCategoryRef"
1174
1174
  },
1175
1175
  "application": {
1176
- "alias": "applicationRefApplication: application",
1176
+ "alias": "applicationWanNetworkRuleApplication: application",
1177
1177
  "args": {},
1178
1178
  "deprecationReason": null,
1179
1179
  "description": null,
@@ -1251,7 +1251,7 @@
1251
1251
  "varName": "applicationRef"
1252
1252
  },
1253
1253
  "customApp": {
1254
- "alias": "customApplicationRefCustomApp: customApp",
1254
+ "alias": "customAppWanNetworkRuleApplication: customApp",
1255
1255
  "args": {},
1256
1256
  "deprecationReason": null,
1257
1257
  "description": null,
@@ -1329,7 +1329,7 @@
1329
1329
  "varName": "customApplicationRef"
1330
1330
  },
1331
1331
  "customCategory": {
1332
- "alias": "customCategoryRefCustomCategory: customCategory",
1332
+ "alias": "customCategoryWanNetworkRuleApplication: customCategory",
1333
1333
  "args": {},
1334
1334
  "deprecationReason": null,
1335
1335
  "description": null,
@@ -1407,7 +1407,7 @@
1407
1407
  "varName": "customCategoryRef"
1408
1408
  },
1409
1409
  "customService": {
1410
- "alias": "customServiceCustomService: customService",
1410
+ "alias": "customServiceWanNetworkRuleApplication: customService",
1411
1411
  "args": {},
1412
1412
  "deprecationReason": null,
1413
1413
  "description": null,
@@ -1446,7 +1446,7 @@
1446
1446
  "varName": "port"
1447
1447
  },
1448
1448
  "portRange": {
1449
- "alias": "portRangePortRange: portRange",
1449
+ "alias": "portRangeCustomService: portRange",
1450
1450
  "args": {},
1451
1451
  "deprecationReason": null,
1452
1452
  "description": null,
@@ -1521,7 +1521,7 @@
1521
1521
  "varName": "portRange"
1522
1522
  },
1523
1523
  "protocol": {
1524
- "alias": "ipProtocolProtocol: protocol",
1524
+ "alias": "protocolCustomService: protocol",
1525
1525
  "args": {},
1526
1526
  "deprecationReason": null,
1527
1527
  "description": null,
@@ -1604,7 +1604,7 @@
1604
1604
  "varName": "customService"
1605
1605
  },
1606
1606
  "customServiceIp": {
1607
- "alias": "customServiceIpCustomServiceIp: customServiceIp",
1607
+ "alias": "customServiceIpWanNetworkRuleApplication: customServiceIp",
1608
1608
  "args": {},
1609
1609
  "deprecationReason": null,
1610
1610
  "description": null,
@@ -1641,7 +1641,7 @@
1641
1641
  "varName": "ip"
1642
1642
  },
1643
1643
  "ipRange": {
1644
- "alias": "ipAddressRangeIpRange: ipRange",
1644
+ "alias": "ipRangeCustomServiceIp: ipRange",
1645
1645
  "args": {},
1646
1646
  "deprecationReason": null,
1647
1647
  "description": null,
@@ -1802,7 +1802,7 @@
1802
1802
  "varName": "fqdn"
1803
1803
  },
1804
1804
  "service": {
1805
- "alias": "serviceRefService: service",
1805
+ "alias": "serviceWanNetworkRuleApplication: service",
1806
1806
  "args": {},
1807
1807
  "deprecationReason": null,
1808
1808
  "description": null,
@@ -1897,7 +1897,7 @@
1897
1897
  "varName": "wanNetworkRuleApplication"
1898
1898
  },
1899
1899
  "bandwidthPriority": {
1900
- "alias": "bandwidthManagementRefBandwidthPriority: bandwidthPriority",
1900
+ "alias": "bandwidthPriorityWanNetworkRule: bandwidthPriority",
1901
1901
  "args": {},
1902
1902
  "deprecationReason": null,
1903
1903
  "description": "The bandwidth priority (QoS) for the rule.",
@@ -1973,7 +1973,7 @@
1973
1973
  "varName": "bandwidthManagementRef"
1974
1974
  },
1975
1975
  "configuration": {
1976
- "alias": "wanNetworkRuleConfigurationConfiguration: configuration",
1976
+ "alias": "configurationWanNetworkRule: configuration",
1977
1977
  "args": {},
1978
1978
  "deprecationReason": null,
1979
1979
  "description": "The configuration of the rule.",
@@ -2011,7 +2011,7 @@
2011
2011
  "varName": "activeTcpAcceleration"
2012
2012
  },
2013
2013
  "allocationIp": {
2014
- "alias": "allocatedIpRefAllocationIp: allocationIp",
2014
+ "alias": "allocationIpWanNetworkRuleConfiguration: allocationIp",
2015
2015
  "args": {},
2016
2016
  "deprecationReason": null,
2017
2017
  "description": "The allocated IP for NAT routing. Taken from IP Allocation, per PoP.",
@@ -2089,7 +2089,7 @@
2089
2089
  "varName": "allocatedIpRef"
2090
2090
  },
2091
2091
  "backhaulingSite": {
2092
- "alias": "siteRefBackhaulingSite: backhaulingSite",
2092
+ "alias": "backhaulingSiteWanNetworkRuleConfiguration: backhaulingSite",
2093
2093
  "args": {},
2094
2094
  "deprecationReason": null,
2095
2095
  "description": "The site for backhaul routing option.",
@@ -2188,7 +2188,7 @@
2188
2188
  "varName": "packetLossMitigation"
2189
2189
  },
2190
2190
  "popLocation": {
2191
- "alias": "popLocationRefPopLocation: popLocation",
2191
+ "alias": "popLocationWanNetworkRuleConfiguration: popLocation",
2192
2192
  "args": {},
2193
2193
  "deprecationReason": null,
2194
2194
  "description": "The PoP location for routing and egressing from Cato Cloud.",
@@ -2287,7 +2287,7 @@
2287
2287
  "varName": "preserveSourcePort"
2288
2288
  },
2289
2289
  "primaryTransport": {
2290
- "alias": "wanNetworkRuleTransportPrimaryTransport: primaryTransport",
2290
+ "alias": "primaryTransportWanNetworkRuleConfiguration: primaryTransport",
2291
2291
  "args": {},
2292
2292
  "deprecationReason": null,
2293
2293
  "description": "The primary transport method.",
@@ -2304,7 +2304,7 @@
2304
2304
  "enumValues": null,
2305
2305
  "fields": {
2306
2306
  "primaryInterfaceRole": {
2307
- "alias": "wanNetworkRuleInterfaceRolePrimaryInterfaceRole: primaryInterfaceRole",
2307
+ "alias": "primaryInterfaceRoleWanNetworkRuleTransport: primaryInterfaceRole",
2308
2308
  "args": {},
2309
2309
  "deprecationReason": null,
2310
2310
  "description": "The primary interface role.",
@@ -2386,7 +2386,7 @@
2386
2386
  "varName": "primaryInterfaceRole"
2387
2387
  },
2388
2388
  "secondaryInterfaceRole": {
2389
- "alias": "wanNetworkRuleInterfaceRoleSecondaryInterfaceRole: secondaryInterfaceRole",
2389
+ "alias": "secondaryInterfaceRoleWanNetworkRuleTransport: secondaryInterfaceRole",
2390
2390
  "args": {},
2391
2391
  "deprecationReason": null,
2392
2392
  "description": "The secondary interface role.",
@@ -2468,7 +2468,7 @@
2468
2468
  "varName": "secondaryInterfaceRole"
2469
2469
  },
2470
2470
  "transportType": {
2471
- "alias": "wanNetworkRuleTransportTypeTransportType: transportType",
2471
+ "alias": "transportTypeWanNetworkRuleTransport: transportType",
2472
2472
  "args": {},
2473
2473
  "deprecationReason": null,
2474
2474
  "description": null,
@@ -2549,7 +2549,7 @@
2549
2549
  "varName": "wanNetworkRuleTransport"
2550
2550
  },
2551
2551
  "secondaryTransport": {
2552
- "alias": "wanNetworkRuleTransportSecondaryTransport: secondaryTransport",
2552
+ "alias": "secondaryTransportWanNetworkRuleConfiguration: secondaryTransport",
2553
2553
  "args": {},
2554
2554
  "deprecationReason": null,
2555
2555
  "description": "The secondary transport method.",
@@ -2566,7 +2566,7 @@
2566
2566
  "enumValues": null,
2567
2567
  "fields": {
2568
2568
  "primaryInterfaceRole": {
2569
- "alias": "wanNetworkRuleInterfaceRolePrimaryInterfaceRole: primaryInterfaceRole",
2569
+ "alias": "primaryInterfaceRoleWanNetworkRuleTransport: primaryInterfaceRole",
2570
2570
  "args": {},
2571
2571
  "deprecationReason": null,
2572
2572
  "description": "The primary interface role.",
@@ -2648,7 +2648,7 @@
2648
2648
  "varName": "primaryInterfaceRole"
2649
2649
  },
2650
2650
  "secondaryInterfaceRole": {
2651
- "alias": "wanNetworkRuleInterfaceRoleSecondaryInterfaceRole: secondaryInterfaceRole",
2651
+ "alias": "secondaryInterfaceRoleWanNetworkRuleTransport: secondaryInterfaceRole",
2652
2652
  "args": {},
2653
2653
  "deprecationReason": null,
2654
2654
  "description": "The secondary interface role.",
@@ -2730,7 +2730,7 @@
2730
2730
  "varName": "secondaryInterfaceRole"
2731
2731
  },
2732
2732
  "transportType": {
2733
- "alias": "wanNetworkRuleTransportTypeTransportType: transportType",
2733
+ "alias": "transportTypeWanNetworkRuleTransport: transportType",
2734
2734
  "args": {},
2735
2735
  "deprecationReason": null,
2736
2736
  "description": null,
@@ -2849,7 +2849,7 @@
2849
2849
  "varName": "description"
2850
2850
  },
2851
2851
  "destination": {
2852
- "alias": "wanNetworkRuleDestinationDestination: destination",
2852
+ "alias": "destinationWanNetworkRule: destination",
2853
2853
  "args": {},
2854
2854
  "deprecationReason": null,
2855
2855
  "description": "The destination of the traffic for the rule.",
@@ -2866,7 +2866,7 @@
2866
2866
  "enumValues": null,
2867
2867
  "fields": {
2868
2868
  "floatingSubnet": {
2869
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
2869
+ "alias": "floatingSubnetWanNetworkRuleDestination: floatingSubnet",
2870
2870
  "args": {},
2871
2871
  "deprecationReason": null,
2872
2872
  "description": null,
@@ -2944,7 +2944,7 @@
2944
2944
  "varName": "floatingSubnetRef"
2945
2945
  },
2946
2946
  "globalIpRange": {
2947
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
2947
+ "alias": "globalIpRangeWanNetworkRuleDestination: globalIpRange",
2948
2948
  "args": {},
2949
2949
  "deprecationReason": null,
2950
2950
  "description": null,
@@ -3022,7 +3022,7 @@
3022
3022
  "varName": "globalIpRangeRef"
3023
3023
  },
3024
3024
  "group": {
3025
- "alias": "groupRefGroup: group",
3025
+ "alias": "groupWanNetworkRuleDestination: group",
3026
3026
  "args": {},
3027
3027
  "deprecationReason": null,
3028
3028
  "description": null,
@@ -3100,7 +3100,7 @@
3100
3100
  "varName": "groupRef"
3101
3101
  },
3102
3102
  "host": {
3103
- "alias": "hostRefHost: host",
3103
+ "alias": "hostWanNetworkRuleDestination: host",
3104
3104
  "args": {},
3105
3105
  "deprecationReason": null,
3106
3106
  "description": null,
@@ -3201,7 +3201,7 @@
3201
3201
  "varName": "ip"
3202
3202
  },
3203
3203
  "ipRange": {
3204
- "alias": "ipAddressRangeIpRange: ipRange",
3204
+ "alias": "ipRangeWanNetworkRuleDestination: ipRange",
3205
3205
  "args": {},
3206
3206
  "deprecationReason": null,
3207
3207
  "description": null,
@@ -3279,7 +3279,7 @@
3279
3279
  "varName": "ipAddressRange"
3280
3280
  },
3281
3281
  "networkInterface": {
3282
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
3282
+ "alias": "networkInterfaceWanNetworkRuleDestination: networkInterface",
3283
3283
  "args": {},
3284
3284
  "deprecationReason": null,
3285
3285
  "description": null,
@@ -3357,7 +3357,7 @@
3357
3357
  "varName": "networkInterfaceRef"
3358
3358
  },
3359
3359
  "site": {
3360
- "alias": "siteRefSite: site",
3360
+ "alias": "siteWanNetworkRuleDestination: site",
3361
3361
  "args": {},
3362
3362
  "deprecationReason": null,
3363
3363
  "description": null,
@@ -3435,7 +3435,7 @@
3435
3435
  "varName": "siteRef"
3436
3436
  },
3437
3437
  "siteNetworkSubnet": {
3438
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
3438
+ "alias": "siteNetworkSubnetWanNetworkRuleDestination: siteNetworkSubnet",
3439
3439
  "args": {},
3440
3440
  "deprecationReason": null,
3441
3441
  "description": null,
@@ -3536,7 +3536,7 @@
3536
3536
  "varName": "subnet"
3537
3537
  },
3538
3538
  "systemGroup": {
3539
- "alias": "systemGroupRefSystemGroup: systemGroup",
3539
+ "alias": "systemGroupWanNetworkRuleDestination: systemGroup",
3540
3540
  "args": {},
3541
3541
  "deprecationReason": null,
3542
3542
  "description": null,
@@ -3614,7 +3614,7 @@
3614
3614
  "varName": "systemGroupRef"
3615
3615
  },
3616
3616
  "user": {
3617
- "alias": "userRefUser: user",
3617
+ "alias": "userWanNetworkRuleDestination: user",
3618
3618
  "args": {},
3619
3619
  "deprecationReason": null,
3620
3620
  "description": null,
@@ -3692,7 +3692,7 @@
3692
3692
  "varName": "userRef"
3693
3693
  },
3694
3694
  "usersGroup": {
3695
- "alias": "usersGroupRefUsersGroup: usersGroup",
3695
+ "alias": "usersGroupWanNetworkRuleDestination: usersGroup",
3696
3696
  "args": {},
3697
3697
  "deprecationReason": null,
3698
3698
  "description": null,
@@ -3808,7 +3808,7 @@
3808
3808
  "varName": "enabled"
3809
3809
  },
3810
3810
  "exceptions": {
3811
- "alias": "wanNetworkRuleExceptionExceptions: exceptions",
3811
+ "alias": "exceptionsWanNetworkRule: exceptions",
3812
3812
  "args": {},
3813
3813
  "deprecationReason": null,
3814
3814
  "description": "Exceptions to the rule.",
@@ -3825,7 +3825,7 @@
3825
3825
  "enumValues": null,
3826
3826
  "fields": {
3827
3827
  "application": {
3828
- "alias": "wanNetworkRuleApplicationApplication: application",
3828
+ "alias": "applicationWanNetworkRuleException: application",
3829
3829
  "args": {},
3830
3830
  "deprecationReason": null,
3831
3831
  "description": "The application or category of traffic for the rule.",
@@ -3842,7 +3842,7 @@
3842
3842
  "enumValues": null,
3843
3843
  "fields": {
3844
3844
  "appCategory": {
3845
- "alias": "applicationCategoryRefAppCategory: appCategory",
3845
+ "alias": "appCategoryWanNetworkRuleApplication: appCategory",
3846
3846
  "args": {},
3847
3847
  "deprecationReason": null,
3848
3848
  "description": null,
@@ -3920,7 +3920,7 @@
3920
3920
  "varName": "applicationCategoryRef"
3921
3921
  },
3922
3922
  "application": {
3923
- "alias": "applicationRefApplication: application",
3923
+ "alias": "applicationWanNetworkRuleApplication: application",
3924
3924
  "args": {},
3925
3925
  "deprecationReason": null,
3926
3926
  "description": null,
@@ -3998,7 +3998,7 @@
3998
3998
  "varName": "applicationRef"
3999
3999
  },
4000
4000
  "customApp": {
4001
- "alias": "customApplicationRefCustomApp: customApp",
4001
+ "alias": "customAppWanNetworkRuleApplication: customApp",
4002
4002
  "args": {},
4003
4003
  "deprecationReason": null,
4004
4004
  "description": null,
@@ -4076,7 +4076,7 @@
4076
4076
  "varName": "customApplicationRef"
4077
4077
  },
4078
4078
  "customCategory": {
4079
- "alias": "customCategoryRefCustomCategory: customCategory",
4079
+ "alias": "customCategoryWanNetworkRuleApplication: customCategory",
4080
4080
  "args": {},
4081
4081
  "deprecationReason": null,
4082
4082
  "description": null,
@@ -4154,7 +4154,7 @@
4154
4154
  "varName": "customCategoryRef"
4155
4155
  },
4156
4156
  "customService": {
4157
- "alias": "customServiceCustomService: customService",
4157
+ "alias": "customServiceWanNetworkRuleApplication: customService",
4158
4158
  "args": {},
4159
4159
  "deprecationReason": null,
4160
4160
  "description": null,
@@ -4193,7 +4193,7 @@
4193
4193
  "varName": "port"
4194
4194
  },
4195
4195
  "portRange": {
4196
- "alias": "portRangePortRange: portRange",
4196
+ "alias": "portRangeCustomService: portRange",
4197
4197
  "args": {},
4198
4198
  "deprecationReason": null,
4199
4199
  "description": null,
@@ -4268,7 +4268,7 @@
4268
4268
  "varName": "portRange"
4269
4269
  },
4270
4270
  "protocol": {
4271
- "alias": "ipProtocolProtocol: protocol",
4271
+ "alias": "protocolCustomService: protocol",
4272
4272
  "args": {},
4273
4273
  "deprecationReason": null,
4274
4274
  "description": null,
@@ -4351,7 +4351,7 @@
4351
4351
  "varName": "customService"
4352
4352
  },
4353
4353
  "customServiceIp": {
4354
- "alias": "customServiceIpCustomServiceIp: customServiceIp",
4354
+ "alias": "customServiceIpWanNetworkRuleApplication: customServiceIp",
4355
4355
  "args": {},
4356
4356
  "deprecationReason": null,
4357
4357
  "description": null,
@@ -4388,7 +4388,7 @@
4388
4388
  "varName": "ip"
4389
4389
  },
4390
4390
  "ipRange": {
4391
- "alias": "ipAddressRangeIpRange: ipRange",
4391
+ "alias": "ipRangeCustomServiceIp: ipRange",
4392
4392
  "args": {},
4393
4393
  "deprecationReason": null,
4394
4394
  "description": null,
@@ -4549,7 +4549,7 @@
4549
4549
  "varName": "fqdn"
4550
4550
  },
4551
4551
  "service": {
4552
- "alias": "serviceRefService: service",
4552
+ "alias": "serviceWanNetworkRuleApplication: service",
4553
4553
  "args": {},
4554
4554
  "deprecationReason": null,
4555
4555
  "description": null,
@@ -4644,7 +4644,7 @@
4644
4644
  "varName": "wanNetworkRuleApplication"
4645
4645
  },
4646
4646
  "destination": {
4647
- "alias": "wanNetworkRuleDestinationDestination: destination",
4647
+ "alias": "destinationWanNetworkRuleException: destination",
4648
4648
  "args": {},
4649
4649
  "deprecationReason": null,
4650
4650
  "description": "The destination of the traffic for the rule.",
@@ -4661,7 +4661,7 @@
4661
4661
  "enumValues": null,
4662
4662
  "fields": {
4663
4663
  "floatingSubnet": {
4664
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
4664
+ "alias": "floatingSubnetWanNetworkRuleDestination: floatingSubnet",
4665
4665
  "args": {},
4666
4666
  "deprecationReason": null,
4667
4667
  "description": null,
@@ -4739,7 +4739,7 @@
4739
4739
  "varName": "floatingSubnetRef"
4740
4740
  },
4741
4741
  "globalIpRange": {
4742
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
4742
+ "alias": "globalIpRangeWanNetworkRuleDestination: globalIpRange",
4743
4743
  "args": {},
4744
4744
  "deprecationReason": null,
4745
4745
  "description": null,
@@ -4817,7 +4817,7 @@
4817
4817
  "varName": "globalIpRangeRef"
4818
4818
  },
4819
4819
  "group": {
4820
- "alias": "groupRefGroup: group",
4820
+ "alias": "groupWanNetworkRuleDestination: group",
4821
4821
  "args": {},
4822
4822
  "deprecationReason": null,
4823
4823
  "description": null,
@@ -4895,7 +4895,7 @@
4895
4895
  "varName": "groupRef"
4896
4896
  },
4897
4897
  "host": {
4898
- "alias": "hostRefHost: host",
4898
+ "alias": "hostWanNetworkRuleDestination: host",
4899
4899
  "args": {},
4900
4900
  "deprecationReason": null,
4901
4901
  "description": null,
@@ -4996,7 +4996,7 @@
4996
4996
  "varName": "ip"
4997
4997
  },
4998
4998
  "ipRange": {
4999
- "alias": "ipAddressRangeIpRange: ipRange",
4999
+ "alias": "ipRangeWanNetworkRuleDestination: ipRange",
5000
5000
  "args": {},
5001
5001
  "deprecationReason": null,
5002
5002
  "description": null,
@@ -5074,7 +5074,7 @@
5074
5074
  "varName": "ipAddressRange"
5075
5075
  },
5076
5076
  "networkInterface": {
5077
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
5077
+ "alias": "networkInterfaceWanNetworkRuleDestination: networkInterface",
5078
5078
  "args": {},
5079
5079
  "deprecationReason": null,
5080
5080
  "description": null,
@@ -5152,7 +5152,7 @@
5152
5152
  "varName": "networkInterfaceRef"
5153
5153
  },
5154
5154
  "site": {
5155
- "alias": "siteRefSite: site",
5155
+ "alias": "siteWanNetworkRuleDestination: site",
5156
5156
  "args": {},
5157
5157
  "deprecationReason": null,
5158
5158
  "description": null,
@@ -5230,7 +5230,7 @@
5230
5230
  "varName": "siteRef"
5231
5231
  },
5232
5232
  "siteNetworkSubnet": {
5233
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
5233
+ "alias": "siteNetworkSubnetWanNetworkRuleDestination: siteNetworkSubnet",
5234
5234
  "args": {},
5235
5235
  "deprecationReason": null,
5236
5236
  "description": null,
@@ -5331,7 +5331,7 @@
5331
5331
  "varName": "subnet"
5332
5332
  },
5333
5333
  "systemGroup": {
5334
- "alias": "systemGroupRefSystemGroup: systemGroup",
5334
+ "alias": "systemGroupWanNetworkRuleDestination: systemGroup",
5335
5335
  "args": {},
5336
5336
  "deprecationReason": null,
5337
5337
  "description": null,
@@ -5409,7 +5409,7 @@
5409
5409
  "varName": "systemGroupRef"
5410
5410
  },
5411
5411
  "user": {
5412
- "alias": "userRefUser: user",
5412
+ "alias": "userWanNetworkRuleDestination: user",
5413
5413
  "args": {},
5414
5414
  "deprecationReason": null,
5415
5415
  "description": null,
@@ -5487,7 +5487,7 @@
5487
5487
  "varName": "userRef"
5488
5488
  },
5489
5489
  "usersGroup": {
5490
- "alias": "usersGroupRefUsersGroup: usersGroup",
5490
+ "alias": "usersGroupWanNetworkRuleDestination: usersGroup",
5491
5491
  "args": {},
5492
5492
  "deprecationReason": null,
5493
5493
  "description": null,
@@ -5603,7 +5603,7 @@
5603
5603
  "varName": "name"
5604
5604
  },
5605
5605
  "source": {
5606
- "alias": "wanNetworkRuleSourceSource: source",
5606
+ "alias": "sourceWanNetworkRuleException: source",
5607
5607
  "args": {},
5608
5608
  "deprecationReason": null,
5609
5609
  "description": "The source of the traffic for the rule.",
@@ -5620,7 +5620,7 @@
5620
5620
  "enumValues": null,
5621
5621
  "fields": {
5622
5622
  "floatingSubnet": {
5623
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
5623
+ "alias": "floatingSubnetWanNetworkRuleSource: floatingSubnet",
5624
5624
  "args": {},
5625
5625
  "deprecationReason": null,
5626
5626
  "description": null,
@@ -5698,7 +5698,7 @@
5698
5698
  "varName": "floatingSubnetRef"
5699
5699
  },
5700
5700
  "globalIpRange": {
5701
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
5701
+ "alias": "globalIpRangeWanNetworkRuleSource: globalIpRange",
5702
5702
  "args": {},
5703
5703
  "deprecationReason": null,
5704
5704
  "description": null,
@@ -5776,7 +5776,7 @@
5776
5776
  "varName": "globalIpRangeRef"
5777
5777
  },
5778
5778
  "group": {
5779
- "alias": "groupRefGroup: group",
5779
+ "alias": "groupWanNetworkRuleSource: group",
5780
5780
  "args": {},
5781
5781
  "deprecationReason": null,
5782
5782
  "description": null,
@@ -5854,7 +5854,7 @@
5854
5854
  "varName": "groupRef"
5855
5855
  },
5856
5856
  "host": {
5857
- "alias": "hostRefHost: host",
5857
+ "alias": "hostWanNetworkRuleSource: host",
5858
5858
  "args": {},
5859
5859
  "deprecationReason": null,
5860
5860
  "description": null,
@@ -5955,7 +5955,7 @@
5955
5955
  "varName": "ip"
5956
5956
  },
5957
5957
  "ipRange": {
5958
- "alias": "ipAddressRangeIpRange: ipRange",
5958
+ "alias": "ipRangeWanNetworkRuleSource: ipRange",
5959
5959
  "args": {},
5960
5960
  "deprecationReason": null,
5961
5961
  "description": null,
@@ -6033,7 +6033,7 @@
6033
6033
  "varName": "ipAddressRange"
6034
6034
  },
6035
6035
  "networkInterface": {
6036
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
6036
+ "alias": "networkInterfaceWanNetworkRuleSource: networkInterface",
6037
6037
  "args": {},
6038
6038
  "deprecationReason": null,
6039
6039
  "description": null,
@@ -6111,7 +6111,7 @@
6111
6111
  "varName": "networkInterfaceRef"
6112
6112
  },
6113
6113
  "site": {
6114
- "alias": "siteRefSite: site",
6114
+ "alias": "siteWanNetworkRuleSource: site",
6115
6115
  "args": {},
6116
6116
  "deprecationReason": null,
6117
6117
  "description": null,
@@ -6189,7 +6189,7 @@
6189
6189
  "varName": "siteRef"
6190
6190
  },
6191
6191
  "siteNetworkSubnet": {
6192
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
6192
+ "alias": "siteNetworkSubnetWanNetworkRuleSource: siteNetworkSubnet",
6193
6193
  "args": {},
6194
6194
  "deprecationReason": null,
6195
6195
  "description": null,
@@ -6290,7 +6290,7 @@
6290
6290
  "varName": "subnet"
6291
6291
  },
6292
6292
  "systemGroup": {
6293
- "alias": "systemGroupRefSystemGroup: systemGroup",
6293
+ "alias": "systemGroupWanNetworkRuleSource: systemGroup",
6294
6294
  "args": {},
6295
6295
  "deprecationReason": null,
6296
6296
  "description": null,
@@ -6368,7 +6368,7 @@
6368
6368
  "varName": "systemGroupRef"
6369
6369
  },
6370
6370
  "user": {
6371
- "alias": "userRefUser: user",
6371
+ "alias": "userWanNetworkRuleSource: user",
6372
6372
  "args": {},
6373
6373
  "deprecationReason": null,
6374
6374
  "description": null,
@@ -6446,7 +6446,7 @@
6446
6446
  "varName": "userRef"
6447
6447
  },
6448
6448
  "usersGroup": {
6449
- "alias": "usersGroupRefUsersGroup: usersGroup",
6449
+ "alias": "usersGroupWanNetworkRuleSource: usersGroup",
6450
6450
  "args": {},
6451
6451
  "deprecationReason": null,
6452
6452
  "description": null,
@@ -6623,7 +6623,7 @@
6623
6623
  "varName": "name"
6624
6624
  },
6625
6625
  "routeType": {
6626
- "alias": "wanNetworkRuleRouteTypeRouteType: routeType",
6626
+ "alias": "routeTypeWanNetworkRule: routeType",
6627
6627
  "args": {},
6628
6628
  "deprecationReason": null,
6629
6629
  "description": "Defines the routing method for the rule. By default, traffic will egress from connected PoP.",
@@ -6693,7 +6693,7 @@
6693
6693
  "varName": "routeType"
6694
6694
  },
6695
6695
  "ruleType": {
6696
- "alias": "wanNetworkRuleTypeRuleType: ruleType",
6696
+ "alias": "ruleTypeWanNetworkRule: ruleType",
6697
6697
  "args": {},
6698
6698
  "deprecationReason": null,
6699
6699
  "description": "Specifies if the rule is for Internet (outbound) or WAN (wanbound) traffic.",
@@ -6745,7 +6745,7 @@
6745
6745
  "varName": "ruleType"
6746
6746
  },
6747
6747
  "section": {
6748
- "alias": "policySectionInfoSection: section",
6748
+ "alias": "sectionWanNetworkRule: section",
6749
6749
  "args": {},
6750
6750
  "deprecationReason": null,
6751
6751
  "description": "Policy section where the rule is located",
@@ -6821,7 +6821,7 @@
6821
6821
  "varName": "policySectionInfo"
6822
6822
  },
6823
6823
  "source": {
6824
- "alias": "wanNetworkRuleSourceSource: source",
6824
+ "alias": "sourceWanNetworkRule: source",
6825
6825
  "args": {},
6826
6826
  "deprecationReason": null,
6827
6827
  "description": "The source of the traffic for the rule.",
@@ -6838,7 +6838,7 @@
6838
6838
  "enumValues": null,
6839
6839
  "fields": {
6840
6840
  "floatingSubnet": {
6841
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
6841
+ "alias": "floatingSubnetWanNetworkRuleSource: floatingSubnet",
6842
6842
  "args": {},
6843
6843
  "deprecationReason": null,
6844
6844
  "description": null,
@@ -6916,7 +6916,7 @@
6916
6916
  "varName": "floatingSubnetRef"
6917
6917
  },
6918
6918
  "globalIpRange": {
6919
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
6919
+ "alias": "globalIpRangeWanNetworkRuleSource: globalIpRange",
6920
6920
  "args": {},
6921
6921
  "deprecationReason": null,
6922
6922
  "description": null,
@@ -6994,7 +6994,7 @@
6994
6994
  "varName": "globalIpRangeRef"
6995
6995
  },
6996
6996
  "group": {
6997
- "alias": "groupRefGroup: group",
6997
+ "alias": "groupWanNetworkRuleSource: group",
6998
6998
  "args": {},
6999
6999
  "deprecationReason": null,
7000
7000
  "description": null,
@@ -7072,7 +7072,7 @@
7072
7072
  "varName": "groupRef"
7073
7073
  },
7074
7074
  "host": {
7075
- "alias": "hostRefHost: host",
7075
+ "alias": "hostWanNetworkRuleSource: host",
7076
7076
  "args": {},
7077
7077
  "deprecationReason": null,
7078
7078
  "description": null,
@@ -7173,7 +7173,7 @@
7173
7173
  "varName": "ip"
7174
7174
  },
7175
7175
  "ipRange": {
7176
- "alias": "ipAddressRangeIpRange: ipRange",
7176
+ "alias": "ipRangeWanNetworkRuleSource: ipRange",
7177
7177
  "args": {},
7178
7178
  "deprecationReason": null,
7179
7179
  "description": null,
@@ -7251,7 +7251,7 @@
7251
7251
  "varName": "ipAddressRange"
7252
7252
  },
7253
7253
  "networkInterface": {
7254
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
7254
+ "alias": "networkInterfaceWanNetworkRuleSource: networkInterface",
7255
7255
  "args": {},
7256
7256
  "deprecationReason": null,
7257
7257
  "description": null,
@@ -7329,7 +7329,7 @@
7329
7329
  "varName": "networkInterfaceRef"
7330
7330
  },
7331
7331
  "site": {
7332
- "alias": "siteRefSite: site",
7332
+ "alias": "siteWanNetworkRuleSource: site",
7333
7333
  "args": {},
7334
7334
  "deprecationReason": null,
7335
7335
  "description": null,
@@ -7407,7 +7407,7 @@
7407
7407
  "varName": "siteRef"
7408
7408
  },
7409
7409
  "siteNetworkSubnet": {
7410
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
7410
+ "alias": "siteNetworkSubnetWanNetworkRuleSource: siteNetworkSubnet",
7411
7411
  "args": {},
7412
7412
  "deprecationReason": null,
7413
7413
  "description": null,
@@ -7508,7 +7508,7 @@
7508
7508
  "varName": "subnet"
7509
7509
  },
7510
7510
  "systemGroup": {
7511
- "alias": "systemGroupRefSystemGroup: systemGroup",
7511
+ "alias": "systemGroupWanNetworkRuleSource: systemGroup",
7512
7512
  "args": {},
7513
7513
  "deprecationReason": null,
7514
7514
  "description": null,
@@ -7586,7 +7586,7 @@
7586
7586
  "varName": "systemGroupRef"
7587
7587
  },
7588
7588
  "user": {
7589
- "alias": "userRefUser: user",
7589
+ "alias": "userWanNetworkRuleSource: user",
7590
7590
  "args": {},
7591
7591
  "deprecationReason": null,
7592
7592
  "description": null,
@@ -7664,7 +7664,7 @@
7664
7664
  "varName": "userRef"
7665
7665
  },
7666
7666
  "usersGroup": {
7667
- "alias": "usersGroupRefUsersGroup: usersGroup",
7667
+ "alias": "usersGroupWanNetworkRuleSource: usersGroup",
7668
7668
  "args": {},
7669
7669
  "deprecationReason": null,
7670
7670
  "description": null,
@@ -7811,7 +7811,7 @@
7811
7811
  "enumValues": null,
7812
7812
  "fields": {
7813
7813
  "audit": {
7814
- "alias": "policyElementAuditAudit: audit",
7814
+ "alias": "auditPolicySectionPayload: audit",
7815
7815
  "args": {},
7816
7816
  "deprecationReason": null,
7817
7817
  "description": null,
@@ -7887,7 +7887,7 @@
7887
7887
  "varName": "policyElementAudit"
7888
7888
  },
7889
7889
  "properties": {
7890
- "alias": "policyElementPropertiesEnumProperties: properties",
7890
+ "alias": "propertiesPolicySectionPayload: properties",
7891
7891
  "args": {},
7892
7892
  "deprecationReason": null,
7893
7893
  "description": null,
@@ -7965,7 +7965,7 @@
7965
7965
  "varName": "properties"
7966
7966
  },
7967
7967
  "section": {
7968
- "alias": "policySectionInfoSection: section",
7968
+ "alias": "sectionPolicySectionPayload: section",
7969
7969
  "args": {},
7970
7970
  "deprecationReason": null,
7971
7971
  "description": null,
@@ -8076,7 +8076,7 @@
8076
8076
  "varName": "wanNetworkPolicy"
8077
8077
  },
8078
8078
  "status": {
8079
- "alias": "policyMutationStatusStatus: status",
8079
+ "alias": "statusWanNetworkPolicyMutationPayload: status",
8080
8080
  "args": {},
8081
8081
  "deprecationReason": null,
8082
8082
  "description": null,