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
@@ -898,7 +898,7 @@
898
898
  "enumValues": null,
899
899
  "fields": {
900
900
  "errors": {
901
- "alias": "policyMutationErrorErrors: errors",
901
+ "alias": "errorsSocketLanRuleMutationPayload: errors",
902
902
  "args": {},
903
903
  "deprecationReason": null,
904
904
  "description": null,
@@ -911,7 +911,7 @@
911
911
  "responseStr": "errors:$policyMutationError ",
912
912
  "type": {
913
913
  "definition": {
914
- "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\"",
914
+ "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\"",
915
915
  "enumValues": null,
916
916
  "fields": {
917
917
  "errorCode": {
@@ -974,7 +974,7 @@
974
974
  "varName": "policyMutationError"
975
975
  },
976
976
  "rule": {
977
- "alias": "socketLanRulePayloadRule: rule",
977
+ "alias": "ruleSocketLanRuleMutationPayload: rule",
978
978
  "args": {},
979
979
  "deprecationReason": null,
980
980
  "description": null,
@@ -1180,10 +1180,10 @@
1180
1180
  "varName": "description"
1181
1181
  },
1182
1182
  "destination": {
1183
- "alias": "socketLanDestinationDestination: destination",
1183
+ "alias": "destinationSocketLanRule: destination",
1184
1184
  "args": {},
1185
1185
  "deprecationReason": null,
1186
- "description": "Destination traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
1186
+ "description": "Destination traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
1187
1187
  "id_str": "socketLan___moveRule___rule___rule___destination",
1188
1188
  "isDeprecated": false,
1189
1189
  "name": "destination",
@@ -1197,7 +1197,7 @@
1197
1197
  "enumValues": null,
1198
1198
  "fields": {
1199
1199
  "floatingSubnet": {
1200
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
1200
+ "alias": "floatingSubnetSocketLanDestination: floatingSubnet",
1201
1201
  "args": {},
1202
1202
  "deprecationReason": null,
1203
1203
  "description": null,
@@ -1275,7 +1275,7 @@
1275
1275
  "varName": "floatingSubnetRef"
1276
1276
  },
1277
1277
  "globalIpRange": {
1278
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
1278
+ "alias": "globalIpRangeSocketLanDestination: globalIpRange",
1279
1279
  "args": {},
1280
1280
  "deprecationReason": null,
1281
1281
  "description": null,
@@ -1353,7 +1353,7 @@
1353
1353
  "varName": "globalIpRangeRef"
1354
1354
  },
1355
1355
  "group": {
1356
- "alias": "groupRefGroup: group",
1356
+ "alias": "groupSocketLanDestination: group",
1357
1357
  "args": {},
1358
1358
  "deprecationReason": null,
1359
1359
  "description": null,
@@ -1431,7 +1431,7 @@
1431
1431
  "varName": "groupRef"
1432
1432
  },
1433
1433
  "host": {
1434
- "alias": "hostRefHost: host",
1434
+ "alias": "hostSocketLanDestination: host",
1435
1435
  "args": {},
1436
1436
  "deprecationReason": null,
1437
1437
  "description": null,
@@ -1532,7 +1532,7 @@
1532
1532
  "varName": "ip"
1533
1533
  },
1534
1534
  "ipRange": {
1535
- "alias": "ipAddressRangeIpRange: ipRange",
1535
+ "alias": "ipRangeSocketLanDestination: ipRange",
1536
1536
  "args": {},
1537
1537
  "deprecationReason": null,
1538
1538
  "description": null,
@@ -1610,7 +1610,7 @@
1610
1610
  "varName": "ipAddressRange"
1611
1611
  },
1612
1612
  "networkInterface": {
1613
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
1613
+ "alias": "networkInterfaceSocketLanDestination: networkInterface",
1614
1614
  "args": {},
1615
1615
  "deprecationReason": null,
1616
1616
  "description": null,
@@ -1688,7 +1688,7 @@
1688
1688
  "varName": "networkInterfaceRef"
1689
1689
  },
1690
1690
  "siteNetworkSubnet": {
1691
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
1691
+ "alias": "siteNetworkSubnetSocketLanDestination: siteNetworkSubnet",
1692
1692
  "args": {},
1693
1693
  "deprecationReason": null,
1694
1694
  "description": null,
@@ -1789,7 +1789,7 @@
1789
1789
  "varName": "subnet"
1790
1790
  },
1791
1791
  "systemGroup": {
1792
- "alias": "systemGroupRefSystemGroup: systemGroup",
1792
+ "alias": "systemGroupSocketLanDestination: systemGroup",
1793
1793
  "args": {},
1794
1794
  "deprecationReason": null,
1795
1795
  "description": null,
@@ -1907,7 +1907,7 @@
1907
1907
  "varName": "socketLanDestination"
1908
1908
  },
1909
1909
  "direction": {
1910
- "alias": "socketLanDirectionDirection: direction",
1910
+ "alias": "directionSocketLanRule: direction",
1911
1911
  "args": {},
1912
1912
  "deprecationReason": null,
1913
1913
  "description": "Direction of the traffic initiator matching criteria. ",
@@ -1974,7 +1974,7 @@
1974
1974
  "varName": "enabled"
1975
1975
  },
1976
1976
  "firewall": {
1977
- "alias": "socketLanFirewallRulePayloadFirewall: firewall",
1977
+ "alias": "firewallSocketLanRule: firewall",
1978
1978
  "args": {},
1979
1979
  "deprecationReason": null,
1980
1980
  "description": null,
@@ -1991,7 +1991,7 @@
1991
1991
  "enumValues": null,
1992
1992
  "fields": {
1993
1993
  "audit": {
1994
- "alias": "policyElementAuditAudit: audit",
1994
+ "alias": "auditSocketLanFirewallRulePayload: audit",
1995
1995
  "args": {},
1996
1996
  "deprecationReason": null,
1997
1997
  "description": null,
@@ -2067,7 +2067,7 @@
2067
2067
  "varName": "policyElementAudit"
2068
2068
  },
2069
2069
  "properties": {
2070
- "alias": "policyElementPropertiesEnumProperties: properties",
2070
+ "alias": "propertiesSocketLanFirewallRulePayload: properties",
2071
2071
  "args": {},
2072
2072
  "deprecationReason": null,
2073
2073
  "description": null,
@@ -2145,7 +2145,7 @@
2145
2145
  "varName": "properties"
2146
2146
  },
2147
2147
  "rule": {
2148
- "alias": "socketLanFirewallRuleRule: rule",
2148
+ "alias": "ruleSocketLanFirewallRulePayload: rule",
2149
2149
  "args": {},
2150
2150
  "deprecationReason": null,
2151
2151
  "description": null,
@@ -2162,7 +2162,7 @@
2162
2162
  "enumValues": null,
2163
2163
  "fields": {
2164
2164
  "action": {
2165
- "alias": "socketLanFirewallActionAction: action",
2165
+ "alias": "actionSocketLanFirewallRule: action",
2166
2166
  "args": {},
2167
2167
  "deprecationReason": null,
2168
2168
  "description": "Action to take when the rule is matched (ALLOW or BLOCK).",
@@ -2208,7 +2208,7 @@
2208
2208
  "varName": "action"
2209
2209
  },
2210
2210
  "application": {
2211
- "alias": "socketLanFirewallApplicationApplication: application",
2211
+ "alias": "applicationSocketLanFirewallRule: application",
2212
2212
  "args": {},
2213
2213
  "deprecationReason": null,
2214
2214
  "description": "Application traffic matching criteria.",
@@ -2225,7 +2225,7 @@
2225
2225
  "enumValues": null,
2226
2226
  "fields": {
2227
2227
  "application": {
2228
- "alias": "applicationRefApplication: application",
2228
+ "alias": "applicationSocketLanFirewallApplication: application",
2229
2229
  "args": {},
2230
2230
  "deprecationReason": null,
2231
2231
  "description": "Applications matching criteria for this rule.",
@@ -2303,7 +2303,7 @@
2303
2303
  "varName": "applicationRef"
2304
2304
  },
2305
2305
  "customApp": {
2306
- "alias": "customApplicationRefCustomApp: customApp",
2306
+ "alias": "customAppSocketLanFirewallApplication: customApp",
2307
2307
  "args": {},
2308
2308
  "deprecationReason": null,
2309
2309
  "description": "Custom applications that can be matched by",
@@ -2427,7 +2427,7 @@
2427
2427
  "varName": "fqdn"
2428
2428
  },
2429
2429
  "globalIpRange": {
2430
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
2430
+ "alias": "globalIpRangeSocketLanFirewallApplication: globalIpRange",
2431
2431
  "args": {},
2432
2432
  "deprecationReason": null,
2433
2433
  "description": null,
@@ -2528,7 +2528,7 @@
2528
2528
  "varName": "ip"
2529
2529
  },
2530
2530
  "ipRange": {
2531
- "alias": "ipAddressRangeIpRange: ipRange",
2531
+ "alias": "ipRangeSocketLanFirewallApplication: ipRange",
2532
2532
  "args": {},
2533
2533
  "deprecationReason": null,
2534
2534
  "description": null,
@@ -2667,7 +2667,7 @@
2667
2667
  "varName": "description"
2668
2668
  },
2669
2669
  "destination": {
2670
- "alias": "socketLanFirewallDestinationDestination: destination",
2670
+ "alias": "destinationSocketLanFirewallRule: destination",
2671
2671
  "args": {},
2672
2672
  "deprecationReason": null,
2673
2673
  "description": "Defines destinations for the socket LAN firewall.\nAlso, inherited by Network Rule above.",
@@ -2684,7 +2684,7 @@
2684
2684
  "enumValues": null,
2685
2685
  "fields": {
2686
2686
  "floatingSubnet": {
2687
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
2687
+ "alias": "floatingSubnetSocketLanFirewallDestination: floatingSubnet",
2688
2688
  "args": {},
2689
2689
  "deprecationReason": null,
2690
2690
  "description": "Floating subnets used to identify traffic based on specific criteria.",
@@ -2762,7 +2762,7 @@
2762
2762
  "varName": "floatingSubnetRef"
2763
2763
  },
2764
2764
  "globalIpRange": {
2765
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
2765
+ "alias": "globalIpRangeSocketLanFirewallDestination: globalIpRange",
2766
2766
  "args": {},
2767
2767
  "deprecationReason": null,
2768
2768
  "description": "Global IP ranges defined for your account.",
@@ -2840,7 +2840,7 @@
2840
2840
  "varName": "globalIpRangeRef"
2841
2841
  },
2842
2842
  "group": {
2843
- "alias": "groupRefGroup: group",
2843
+ "alias": "groupSocketLanFirewallDestination: group",
2844
2844
  "args": {},
2845
2845
  "deprecationReason": null,
2846
2846
  "description": "Groups defined for your account.",
@@ -2918,7 +2918,7 @@
2918
2918
  "varName": "groupRef"
2919
2919
  },
2920
2920
  "host": {
2921
- "alias": "hostRefHost: host",
2921
+ "alias": "hostSocketLanFirewallDestination: host",
2922
2922
  "args": {},
2923
2923
  "deprecationReason": null,
2924
2924
  "description": "Hosts and servers defined for your account.",
@@ -3019,7 +3019,7 @@
3019
3019
  "varName": "ip"
3020
3020
  },
3021
3021
  "ipRange": {
3022
- "alias": "ipAddressRangeIpRange: ipRange",
3022
+ "alias": "ipRangeSocketLanFirewallDestination: ipRange",
3023
3023
  "args": {},
3024
3024
  "deprecationReason": null,
3025
3025
  "description": "Multiple separate IP addresses or an IP range.",
@@ -3097,7 +3097,7 @@
3097
3097
  "varName": "ipAddressRange"
3098
3098
  },
3099
3099
  "networkInterface": {
3100
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
3100
+ "alias": "networkInterfaceSocketLanFirewallDestination: networkInterface",
3101
3101
  "args": {},
3102
3102
  "deprecationReason": null,
3103
3103
  "description": "Network interfaces defined for your site.",
@@ -3175,7 +3175,7 @@
3175
3175
  "varName": "networkInterfaceRef"
3176
3176
  },
3177
3177
  "site": {
3178
- "alias": "siteRefSite: site",
3178
+ "alias": "siteSocketLanFirewallDestination: site",
3179
3179
  "args": {},
3180
3180
  "deprecationReason": null,
3181
3181
  "description": "Sites defined for your account.",
@@ -3253,7 +3253,7 @@
3253
3253
  "varName": "siteRef"
3254
3254
  },
3255
3255
  "siteNetworkSubnet": {
3256
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
3256
+ "alias": "siteNetworkSubnetSocketLanFirewallDestination: siteNetworkSubnet",
3257
3257
  "args": {},
3258
3258
  "deprecationReason": null,
3259
3259
  "description": "Subnets specific to a site defined for your account.",
@@ -3354,7 +3354,7 @@
3354
3354
  "varName": "subnet"
3355
3355
  },
3356
3356
  "systemGroup": {
3357
- "alias": "systemGroupRefSystemGroup: systemGroup",
3357
+ "alias": "systemGroupSocketLanFirewallDestination: systemGroup",
3358
3358
  "args": {},
3359
3359
  "deprecationReason": null,
3360
3360
  "description": "Predefined system groups in your account.",
@@ -3472,7 +3472,7 @@
3472
3472
  "varName": "socketLanFirewallDestination"
3473
3473
  },
3474
3474
  "direction": {
3475
- "alias": "socketLanFirewallDirectionDirection: direction",
3475
+ "alias": "directionSocketLanFirewallRule: direction",
3476
3476
  "args": {},
3477
3477
  "deprecationReason": null,
3478
3478
  "description": "Direction of the traffic (TO or BOTH).",
@@ -3602,7 +3602,7 @@
3602
3602
  "varName": "name"
3603
3603
  },
3604
3604
  "section": {
3605
- "alias": "policySectionInfoSection: section",
3605
+ "alias": "sectionSocketLanFirewallRule: section",
3606
3606
  "args": {},
3607
3607
  "deprecationReason": null,
3608
3608
  "description": "Policy section where the rule is located",
@@ -3678,7 +3678,7 @@
3678
3678
  "varName": "policySectionInfo"
3679
3679
  },
3680
3680
  "service": {
3681
- "alias": "socketLanFirewallServiceTypeService: service",
3681
+ "alias": "serviceSocketLanFirewallRule: service",
3682
3682
  "args": {},
3683
3683
  "deprecationReason": null,
3684
3684
  "description": "Service traffic matching criteria.",
@@ -3695,7 +3695,7 @@
3695
3695
  "enumValues": null,
3696
3696
  "fields": {
3697
3697
  "custom": {
3698
- "alias": "customServiceCustom: custom",
3698
+ "alias": "customSocketLanFirewallServiceType: custom",
3699
3699
  "args": {},
3700
3700
  "deprecationReason": null,
3701
3701
  "description": "Custom services defined for this rule.",
@@ -3734,7 +3734,7 @@
3734
3734
  "varName": "port"
3735
3735
  },
3736
3736
  "portRange": {
3737
- "alias": "portRangePortRange: portRange",
3737
+ "alias": "portRangeCustomService: portRange",
3738
3738
  "args": {},
3739
3739
  "deprecationReason": null,
3740
3740
  "description": null,
@@ -3809,7 +3809,7 @@
3809
3809
  "varName": "portRange"
3810
3810
  },
3811
3811
  "protocol": {
3812
- "alias": "ipProtocolProtocol: protocol",
3812
+ "alias": "protocolCustomService: protocol",
3813
3813
  "args": {},
3814
3814
  "deprecationReason": null,
3815
3815
  "description": null,
@@ -3892,7 +3892,7 @@
3892
3892
  "varName": "customService"
3893
3893
  },
3894
3894
  "simple": {
3895
- "alias": "simpleServiceSimple: simple",
3895
+ "alias": "simpleSocketLanFirewallServiceType: simple",
3896
3896
  "args": {},
3897
3897
  "deprecationReason": null,
3898
3898
  "description": "Simple services allowed by the firewall rule.",
@@ -3909,7 +3909,7 @@
3909
3909
  "enumValues": null,
3910
3910
  "fields": {
3911
3911
  "name": {
3912
- "alias": "simpleServiceTypeName: name",
3912
+ "alias": "nameSimpleService: name",
3913
3913
  "args": {},
3914
3914
  "deprecationReason": null,
3915
3915
  "description": null,
@@ -4016,7 +4016,7 @@
4016
4016
  "varName": "simpleService"
4017
4017
  },
4018
4018
  "standard": {
4019
- "alias": "serviceRefStandard: standard",
4019
+ "alias": "standardSocketLanFirewallServiceType: standard",
4020
4020
  "args": {},
4021
4021
  "deprecationReason": null,
4022
4022
  "description": "Standard services allowed by the firewall rule.",
@@ -4111,7 +4111,7 @@
4111
4111
  "varName": "socketLanFirewallServiceType"
4112
4112
  },
4113
4113
  "source": {
4114
- "alias": "socketLanFirewallSourceSource: source",
4114
+ "alias": "sourceSocketLanFirewallRule: source",
4115
4115
  "args": {},
4116
4116
  "deprecationReason": null,
4117
4117
  "description": "Defines sources for the socket LAN firewall.\nAlso, inherited by Network Rule above.",
@@ -4128,7 +4128,7 @@
4128
4128
  "enumValues": null,
4129
4129
  "fields": {
4130
4130
  "floatingSubnet": {
4131
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
4131
+ "alias": "floatingSubnetSocketLanFirewallSource: floatingSubnet",
4132
4132
  "args": {},
4133
4133
  "deprecationReason": null,
4134
4134
  "description": "Floating subnets used to identify traffic based on specific criteria.",
@@ -4206,7 +4206,7 @@
4206
4206
  "varName": "floatingSubnetRef"
4207
4207
  },
4208
4208
  "globalIpRange": {
4209
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
4209
+ "alias": "globalIpRangeSocketLanFirewallSource: globalIpRange",
4210
4210
  "args": {},
4211
4211
  "deprecationReason": null,
4212
4212
  "description": "Global IP ranges defined for your account.",
@@ -4284,7 +4284,7 @@
4284
4284
  "varName": "globalIpRangeRef"
4285
4285
  },
4286
4286
  "group": {
4287
- "alias": "groupRefGroup: group",
4287
+ "alias": "groupSocketLanFirewallSource: group",
4288
4288
  "args": {},
4289
4289
  "deprecationReason": null,
4290
4290
  "description": "Groups defined for your account.",
@@ -4362,7 +4362,7 @@
4362
4362
  "varName": "groupRef"
4363
4363
  },
4364
4364
  "host": {
4365
- "alias": "hostRefHost: host",
4365
+ "alias": "hostSocketLanFirewallSource: host",
4366
4366
  "args": {},
4367
4367
  "deprecationReason": null,
4368
4368
  "description": "Hosts and servers defined for your account.",
@@ -4463,7 +4463,7 @@
4463
4463
  "varName": "ip"
4464
4464
  },
4465
4465
  "ipRange": {
4466
- "alias": "ipAddressRangeIpRange: ipRange",
4466
+ "alias": "ipRangeSocketLanFirewallSource: ipRange",
4467
4467
  "args": {},
4468
4468
  "deprecationReason": null,
4469
4469
  "description": "Multiple separate IP addresses or an IP range.",
@@ -4564,7 +4564,7 @@
4564
4564
  "varName": "mac"
4565
4565
  },
4566
4566
  "networkInterface": {
4567
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
4567
+ "alias": "networkInterfaceSocketLanFirewallSource: networkInterface",
4568
4568
  "args": {},
4569
4569
  "deprecationReason": null,
4570
4570
  "description": "Network interfaces defined for your site.",
@@ -4642,7 +4642,7 @@
4642
4642
  "varName": "networkInterfaceRef"
4643
4643
  },
4644
4644
  "site": {
4645
- "alias": "siteRefSite: site",
4645
+ "alias": "siteSocketLanFirewallSource: site",
4646
4646
  "args": {},
4647
4647
  "deprecationReason": null,
4648
4648
  "description": "Sites defined for your account.",
@@ -4720,7 +4720,7 @@
4720
4720
  "varName": "siteRef"
4721
4721
  },
4722
4722
  "siteNetworkSubnet": {
4723
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
4723
+ "alias": "siteNetworkSubnetSocketLanFirewallSource: siteNetworkSubnet",
4724
4724
  "args": {},
4725
4725
  "deprecationReason": null,
4726
4726
  "description": "Subnets specific to a site defined for your account.",
@@ -4821,7 +4821,7 @@
4821
4821
  "varName": "subnet"
4822
4822
  },
4823
4823
  "systemGroup": {
4824
- "alias": "systemGroupRefSystemGroup: systemGroup",
4824
+ "alias": "systemGroupSocketLanFirewallSource: systemGroup",
4825
4825
  "args": {},
4826
4826
  "deprecationReason": null,
4827
4827
  "description": "Predefined system groups in your account.",
@@ -4939,7 +4939,7 @@
4939
4939
  "varName": "socketLanFirewallSource"
4940
4940
  },
4941
4941
  "tracking": {
4942
- "alias": "policyTrackingTracking: tracking",
4942
+ "alias": "trackingSocketLanFirewallRule: tracking",
4943
4943
  "args": {},
4944
4944
  "deprecationReason": null,
4945
4945
  "description": "Tracking information when the rule is matched, such as events and notifications.",
@@ -4956,7 +4956,7 @@
4956
4956
  "enumValues": null,
4957
4957
  "fields": {
4958
4958
  "alert": {
4959
- "alias": "policyRuleTrackingAlertAlert: alert",
4959
+ "alias": "alertPolicyTracking: alert",
4960
4960
  "args": {},
4961
4961
  "deprecationReason": null,
4962
4962
  "description": null,
@@ -4975,7 +4975,7 @@
4975
4975
  "enabled": {
4976
4976
  "args": {},
4977
4977
  "deprecationReason": null,
4978
- "description": "TRUE send alerts when the rule is matched, FALSE don’t send alerts when the rule is matched",
4978
+ "description": "TRUE \u2013 send alerts when the rule is matched, FALSE \u2013 don\u2019t send alerts when the rule is matched",
4979
4979
  "id_str": "socketLan___moveRule___rule___rule___firewall___rule___tracking___alert___enabled",
4980
4980
  "isDeprecated": false,
4981
4981
  "name": "enabled",
@@ -4994,7 +4994,7 @@
4994
4994
  "varName": "enabled"
4995
4995
  },
4996
4996
  "frequency": {
4997
- "alias": "policyRuleTrackingFrequencyEnumFrequency: frequency",
4997
+ "alias": "frequencyPolicyRuleTrackingAlert: frequency",
4998
4998
  "args": {},
4999
4999
  "deprecationReason": null,
5000
5000
  "description": "Returns data for the alert frequency",
@@ -5052,7 +5052,7 @@
5052
5052
  "varName": "frequency"
5053
5053
  },
5054
5054
  "mailingList": {
5055
- "alias": "subscriptionMailingListRefMailingList: mailingList",
5055
+ "alias": "mailingListPolicyRuleTrackingAlert: mailingList",
5056
5056
  "args": {},
5057
5057
  "deprecationReason": null,
5058
5058
  "description": "Returns data for the Mailing List that receives the alert",
@@ -5130,7 +5130,7 @@
5130
5130
  "varName": "subscriptionMailingListRef"
5131
5131
  },
5132
5132
  "subscriptionGroup": {
5133
- "alias": "subscriptionGroupRefSubscriptionGroup: subscriptionGroup",
5133
+ "alias": "subscriptionGroupPolicyRuleTrackingAlert: subscriptionGroup",
5134
5134
  "args": {},
5135
5135
  "deprecationReason": null,
5136
5136
  "description": "Returns data for the Subscription Group that receives the alert",
@@ -5208,7 +5208,7 @@
5208
5208
  "varName": "subscriptionGroupRef"
5209
5209
  },
5210
5210
  "webhook": {
5211
- "alias": "subscriptionWebhookRefWebhook: webhook",
5211
+ "alias": "webhookPolicyRuleTrackingAlert: webhook",
5212
5212
  "args": {},
5213
5213
  "deprecationReason": null,
5214
5214
  "description": "Returns data for the Webhook that receives the alert",
@@ -5303,7 +5303,7 @@
5303
5303
  "varName": "policyRuleTrackingAlert"
5304
5304
  },
5305
5305
  "event": {
5306
- "alias": "policyRuleTrackingEventEvent: event",
5306
+ "alias": "eventPolicyTracking: event",
5307
5307
  "args": {},
5308
5308
  "deprecationReason": null,
5309
5309
  "description": null,
@@ -5474,7 +5474,7 @@
5474
5474
  "varName": "name"
5475
5475
  },
5476
5476
  "nat": {
5477
- "alias": "socketLanNatSettingsNat: nat",
5477
+ "alias": "natSocketLanRule: nat",
5478
5478
  "args": {},
5479
5479
  "deprecationReason": null,
5480
5480
  "description": "Optionally, enable NAT on the outgoing interface. This translates all originating IPs to one NAT IP.",
@@ -5512,7 +5512,7 @@
5512
5512
  "varName": "enabled"
5513
5513
  },
5514
5514
  "natType": {
5515
- "alias": "socketLanNatTypeNatType: natType",
5515
+ "alias": "natTypeSocketLanNatSettings: natType",
5516
5516
  "args": {},
5517
5517
  "deprecationReason": null,
5518
5518
  "description": null,
@@ -5569,7 +5569,7 @@
5569
5569
  "varName": "socketLanNatSettings"
5570
5570
  },
5571
5571
  "section": {
5572
- "alias": "policySectionInfoSection: section",
5572
+ "alias": "sectionSocketLanRule: section",
5573
5573
  "args": {},
5574
5574
  "deprecationReason": null,
5575
5575
  "description": "Policy section where the rule is located",
@@ -5645,7 +5645,7 @@
5645
5645
  "varName": "policySectionInfo"
5646
5646
  },
5647
5647
  "service": {
5648
- "alias": "socketLanServiceService: service",
5648
+ "alias": "serviceSocketLanRule: service",
5649
5649
  "args": {},
5650
5650
  "deprecationReason": null,
5651
5651
  "description": "Destination service matching criteria for the rule. Port/Protocol based.",
@@ -5662,7 +5662,7 @@
5662
5662
  "enumValues": null,
5663
5663
  "fields": {
5664
5664
  "custom": {
5665
- "alias": "customServiceCustom: custom",
5665
+ "alias": "customSocketLanService: custom",
5666
5666
  "args": {},
5667
5667
  "deprecationReason": null,
5668
5668
  "description": "Custom Port/Protocol service.",
@@ -5701,7 +5701,7 @@
5701
5701
  "varName": "port"
5702
5702
  },
5703
5703
  "portRange": {
5704
- "alias": "portRangePortRange: portRange",
5704
+ "alias": "portRangeCustomService: portRange",
5705
5705
  "args": {},
5706
5706
  "deprecationReason": null,
5707
5707
  "description": null,
@@ -5776,7 +5776,7 @@
5776
5776
  "varName": "portRange"
5777
5777
  },
5778
5778
  "protocol": {
5779
- "alias": "ipProtocolProtocol: protocol",
5779
+ "alias": "protocolCustomService: protocol",
5780
5780
  "args": {},
5781
5781
  "deprecationReason": null,
5782
5782
  "description": null,
@@ -5859,7 +5859,7 @@
5859
5859
  "varName": "customService"
5860
5860
  },
5861
5861
  "simple": {
5862
- "alias": "simpleServiceSimple: simple",
5862
+ "alias": "simpleSocketLanService: simple",
5863
5863
  "args": {},
5864
5864
  "deprecationReason": null,
5865
5865
  "description": "List of L4 based services.",
@@ -5876,7 +5876,7 @@
5876
5876
  "enumValues": null,
5877
5877
  "fields": {
5878
5878
  "name": {
5879
- "alias": "simpleServiceTypeName: name",
5879
+ "alias": "nameSimpleService: name",
5880
5880
  "args": {},
5881
5881
  "deprecationReason": null,
5882
5882
  "description": null,
@@ -6000,7 +6000,7 @@
6000
6000
  "varName": "socketLanService"
6001
6001
  },
6002
6002
  "site": {
6003
- "alias": "socketLanSiteSite: site",
6003
+ "alias": "siteSocketLanRule: site",
6004
6004
  "args": {},
6005
6005
  "deprecationReason": null,
6006
6006
  "description": "The sites the policy will be enforced on.\nSocket sites only, with Socket v22 onwards.",
@@ -6017,7 +6017,7 @@
6017
6017
  "enumValues": null,
6018
6018
  "fields": {
6019
6019
  "group": {
6020
- "alias": "groupRefGroup: group",
6020
+ "alias": "groupSocketLanSite: group",
6021
6021
  "args": {},
6022
6022
  "deprecationReason": null,
6023
6023
  "description": "The group of sites the policy will be enforced on.\nSocket sites only, with Socket v22 onwards.",
@@ -6095,7 +6095,7 @@
6095
6095
  "varName": "groupRef"
6096
6096
  },
6097
6097
  "site": {
6098
- "alias": "siteRefSite: site",
6098
+ "alias": "siteSocketLanSite: site",
6099
6099
  "args": {},
6100
6100
  "deprecationReason": null,
6101
6101
  "description": "The sites the policy will be enforced on.\nSocket sites only, with Socket v22 onwards.",
@@ -6190,10 +6190,10 @@
6190
6190
  "varName": "socketLanSite"
6191
6191
  },
6192
6192
  "source": {
6193
- "alias": "socketLanSourceSource: source",
6193
+ "alias": "sourceSocketLanRule: source",
6194
6194
  "args": {},
6195
6195
  "deprecationReason": null,
6196
- "description": "Source traffic matching criteria.\nLogical ‘OR’ is applied within the criteria set.\nLogical ‘AND’ is applied between criteria sets.",
6196
+ "description": "Source traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
6197
6197
  "id_str": "socketLan___moveRule___rule___rule___source",
6198
6198
  "isDeprecated": false,
6199
6199
  "name": "source",
@@ -6207,7 +6207,7 @@
6207
6207
  "enumValues": null,
6208
6208
  "fields": {
6209
6209
  "floatingSubnet": {
6210
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
6210
+ "alias": "floatingSubnetSocketLanSource: floatingSubnet",
6211
6211
  "args": {},
6212
6212
  "deprecationReason": null,
6213
6213
  "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.",
@@ -6285,7 +6285,7 @@
6285
6285
  "varName": "floatingSubnetRef"
6286
6286
  },
6287
6287
  "globalIpRange": {
6288
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
6288
+ "alias": "globalIpRangeSocketLanSource: globalIpRange",
6289
6289
  "args": {},
6290
6290
  "deprecationReason": null,
6291
6291
  "description": "Globally defined IP range, IP and subnet objects.",
@@ -6363,7 +6363,7 @@
6363
6363
  "varName": "globalIpRangeRef"
6364
6364
  },
6365
6365
  "group": {
6366
- "alias": "groupRefGroup: group",
6366
+ "alias": "groupSocketLanSource: group",
6367
6367
  "args": {},
6368
6368
  "deprecationReason": null,
6369
6369
  "description": "Predefined Cato groups, Socket sites/objects only.",
@@ -6441,7 +6441,7 @@
6441
6441
  "varName": "groupRef"
6442
6442
  },
6443
6443
  "host": {
6444
- "alias": "hostRefHost: host",
6444
+ "alias": "hostSocketLanSource: host",
6445
6445
  "args": {},
6446
6446
  "deprecationReason": null,
6447
6447
  "description": "Hosts and servers defined for your under Socket sites.",
@@ -6542,7 +6542,7 @@
6542
6542
  "varName": "ip"
6543
6543
  },
6544
6544
  "ipRange": {
6545
- "alias": "ipAddressRangeIpRange: ipRange",
6545
+ "alias": "ipRangeSocketLanSource: ipRange",
6546
6546
  "args": {},
6547
6547
  "deprecationReason": null,
6548
6548
  "description": "Multiple separate IP addresses or an IP range.",
@@ -6620,7 +6620,7 @@
6620
6620
  "varName": "ipAddressRange"
6621
6621
  },
6622
6622
  "networkInterface": {
6623
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
6623
+ "alias": "networkInterfaceSocketLanSource: networkInterface",
6624
6624
  "args": {},
6625
6625
  "deprecationReason": null,
6626
6626
  "description": "Network range defined for a site.",
@@ -6698,7 +6698,7 @@
6698
6698
  "varName": "networkInterfaceRef"
6699
6699
  },
6700
6700
  "siteNetworkSubnet": {
6701
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
6701
+ "alias": "siteNetworkSubnetSocketLanSource: siteNetworkSubnet",
6702
6702
  "args": {},
6703
6703
  "deprecationReason": null,
6704
6704
  "description": "GlobalRange + InterfaceSubnet",
@@ -6799,7 +6799,7 @@
6799
6799
  "varName": "subnet"
6800
6800
  },
6801
6801
  "systemGroup": {
6802
- "alias": "systemGroupRefSystemGroup: systemGroup",
6802
+ "alias": "systemGroupSocketLanSource: systemGroup",
6803
6803
  "args": {},
6804
6804
  "deprecationReason": null,
6805
6805
  "description": "Predefined Cato groups.",
@@ -6917,7 +6917,7 @@
6917
6917
  "varName": "socketLanSource"
6918
6918
  },
6919
6919
  "transport": {
6920
- "alias": "socketLanTransportTypeTransport: transport",
6920
+ "alias": "transportSocketLanRule: transport",
6921
6921
  "args": {},
6922
6922
  "deprecationReason": null,
6923
6923
  "description": "The transport of the matching traffic.\nEither govern traffic to be routed locally (LAN), or to the PoP(WAN).\nTraffic is send to the WAN by default.\nTraffic routed in the LAN, enforced by the LAN Firewall rules.",
@@ -6996,7 +6996,7 @@
6996
6996
  "varName": "socketLanRulePayload"
6997
6997
  },
6998
6998
  "status": {
6999
- "alias": "policyMutationStatusStatus: status",
6999
+ "alias": "statusSocketLanRuleMutationPayload: status",
7000
7000
  "args": {},
7001
7001
  "deprecationReason": null,
7002
7002
  "description": null,