catocli 2.0.4__py3-none-any.whl → 2.1.0__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 (300) hide show
  1. catocli/Utils/clidriver.py +11 -4
  2. catocli/__init__.py +1 -1
  3. catocli/parsers/custom/export_sites/export_sites.py +20 -3
  4. catocli/parsers/custom/import_sites_to_tf/__init__.py +3 -1
  5. catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +71 -5
  6. catocli/parsers/mutation_accountManagement/__init__.py +13 -0
  7. catocli/parsers/mutation_accountManagement_disableAccount/README.md +16 -0
  8. catocli/parsers/mutation_container/__init__.py +116 -0
  9. catocli/parsers/mutation_container_fqdn/README.md +7 -0
  10. catocli/parsers/mutation_container_fqdn_addValues/README.md +17 -0
  11. catocli/parsers/mutation_container_fqdn_createFromFile/README.md +17 -0
  12. catocli/parsers/mutation_container_fqdn_removeValues/README.md +17 -0
  13. catocli/parsers/mutation_container_fqdn_updateFromFile/README.md +17 -0
  14. catocli/parsers/mutation_container_ipAddressRange/README.md +7 -0
  15. catocli/parsers/mutation_container_ipAddressRange_addValues/README.md +17 -0
  16. catocli/parsers/mutation_container_ipAddressRange_createFromFile/README.md +17 -0
  17. catocli/parsers/mutation_container_ipAddressRange_removeValues/README.md +17 -0
  18. catocli/parsers/mutation_container_ipAddressRange_updateFromFile/README.md +17 -0
  19. catocli/parsers/mutation_groups/README.md +7 -0
  20. catocli/parsers/mutation_groups/__init__.py +48 -0
  21. catocli/parsers/mutation_groups_createGroup/README.md +18 -0
  22. catocli/parsers/mutation_groups_deleteGroup/README.md +18 -0
  23. catocli/parsers/mutation_groups_updateGroup/README.md +18 -0
  24. catocli/parsers/mutation_policy_internetFirewall_addRule/README.md +1 -1
  25. catocli/parsers/mutation_policy_internetFirewall_updateRule/README.md +1 -1
  26. catocli/parsers/mutation_policy_wanFirewall_addRule/README.md +1 -1
  27. catocli/parsers/mutation_policy_wanFirewall_updateRule/README.md +1 -1
  28. catocli/parsers/mutation_site/__init__.py +104 -0
  29. catocli/parsers/mutation_site_assignSiteBwLicense/README.md +17 -0
  30. catocli/parsers/mutation_site_removeSecondaryAwsVSocket/README.md +17 -0
  31. catocli/parsers/mutation_site_removeSecondaryAzureVSocket/README.md +17 -0
  32. catocli/parsers/mutation_site_removeSiteBwLicense/README.md +17 -0
  33. catocli/parsers/mutation_site_replaceSiteBwLicense/README.md +17 -0
  34. catocli/parsers/mutation_site_updateSecondaryAwsVSocket/README.md +17 -0
  35. catocli/parsers/mutation_site_updateSecondaryAzureVSocket/README.md +17 -0
  36. catocli/parsers/mutation_site_updateSiteBwLicense/README.md +17 -0
  37. catocli/parsers/mutation_site_updateSiteGeneralDetails/README.md +1 -1
  38. catocli/parsers/mutation_sites/__init__.py +104 -0
  39. catocli/parsers/mutation_sites_assignSiteBwLicense/README.md +17 -0
  40. catocli/parsers/mutation_sites_removeSecondaryAwsVSocket/README.md +17 -0
  41. catocli/parsers/mutation_sites_removeSecondaryAzureVSocket/README.md +17 -0
  42. catocli/parsers/mutation_sites_removeSiteBwLicense/README.md +17 -0
  43. catocli/parsers/mutation_sites_replaceSiteBwLicense/README.md +17 -0
  44. catocli/parsers/mutation_sites_updateSecondaryAwsVSocket/README.md +17 -0
  45. catocli/parsers/mutation_sites_updateSecondaryAzureVSocket/README.md +17 -0
  46. catocli/parsers/mutation_sites_updateSiteBwLicense/README.md +17 -0
  47. catocli/parsers/mutation_sites_updateSiteGeneralDetails/README.md +1 -1
  48. catocli/parsers/parserApiClient.py +42 -19
  49. catocli/parsers/query_eventsFeed/README.md +1 -1
  50. catocli/parsers/query_groups/README.md +7 -0
  51. catocli/parsers/query_groups/__init__.py +54 -0
  52. catocli/parsers/query_groups_group/README.md +7 -0
  53. catocli/parsers/query_groups_groupList/README.md +18 -0
  54. catocli/parsers/query_groups_group_members/README.md +18 -0
  55. catocli/parsers/query_groups_whereUsed/README.md +17 -0
  56. catocli/parsers/query_policy/README.md +0 -17
  57. catocli/parsers/query_policy/__init__.py +153 -8
  58. catocli/parsers/query_policy_appTenantRestriction/README.md +7 -0
  59. catocli/parsers/query_policy_appTenantRestriction_policy/README.md +17 -0
  60. catocli/parsers/query_policy_dynamicIpAllocation/README.md +7 -0
  61. catocli/parsers/query_policy_dynamicIpAllocation_policy/README.md +17 -0
  62. catocli/parsers/query_policy_internetFirewall/README.md +7 -0
  63. catocli/parsers/query_policy_internetFirewall_policy/README.md +17 -0
  64. catocli/parsers/query_policy_remotePortFwd/README.md +7 -0
  65. catocli/parsers/query_policy_remotePortFwd_policy/README.md +17 -0
  66. catocli/parsers/query_policy_socketLan/README.md +7 -0
  67. catocli/parsers/query_policy_socketLan_policy/README.md +17 -0
  68. catocli/parsers/query_policy_terminalServer/README.md +7 -0
  69. catocli/parsers/query_policy_terminalServer_policy/README.md +17 -0
  70. catocli/parsers/query_policy_wanFirewall/README.md +7 -0
  71. catocli/parsers/query_policy_wanFirewall_policy/README.md +17 -0
  72. catocli/parsers/query_policy_wanNetwork/README.md +7 -0
  73. catocli/parsers/query_policy_wanNetwork_policy/README.md +17 -0
  74. catocli/parsers/query_popLocations/README.md +17 -0
  75. catocli/parsers/query_popLocations/__init__.py +16 -0
  76. catocli/parsers/query_site/README.md +0 -16
  77. catocli/parsers/query_site/__init__.py +118 -8
  78. catocli/parsers/query_site_availableVersionList/README.md +17 -0
  79. catocli/parsers/query_site_bgpPeer/README.md +17 -0
  80. catocli/parsers/query_site_bgpPeerList/README.md +17 -0
  81. catocli/parsers/query_site_cloudInterconnectConnectionConnectivity/README.md +17 -0
  82. catocli/parsers/query_site_cloudInterconnectPhysicalConnection/README.md +17 -0
  83. catocli/parsers/query_site_cloudInterconnectPhysicalConnectionId/README.md +17 -0
  84. catocli/parsers/query_site_secondaryAwsVSocket/README.md +17 -0
  85. catocli/parsers/query_site_secondaryAzureVSocket/README.md +17 -0
  86. catocli/parsers/query_site_siteBgpStatus/README.md +17 -0
  87. catocli/parsers/query_socketPortMetrics/README.md +23 -0
  88. catocli/parsers/query_socketPortMetrics/__init__.py +16 -0
  89. catocli/parsers/query_socketPortMetricsTimeSeries/README.md +24 -0
  90. catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py +16 -0
  91. catocli/parsers/raw/README.md +0 -14
  92. catocli/parsers/raw/__init__.py +0 -2
  93. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/METADATA +3 -2
  94. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/RECORD +300 -178
  95. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/WHEEL +1 -1
  96. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/top_level.txt +0 -1
  97. graphql_client/api/call_api.py +4 -3
  98. models/mutation.accountManagement.addAccount.json +97 -0
  99. models/mutation.accountManagement.disableAccount.json +545 -0
  100. models/mutation.accountManagement.removeAccount.json +102 -3
  101. models/mutation.accountManagement.updateAccount.json +97 -0
  102. models/mutation.admin.addAdmin.json +6 -9
  103. models/mutation.container.delete.json +2 -2
  104. models/mutation.container.fqdn.addValues.json +866 -0
  105. models/mutation.container.fqdn.createFromFile.json +819 -0
  106. models/mutation.container.fqdn.removeValues.json +866 -0
  107. models/mutation.container.fqdn.updateFromFile.json +1045 -0
  108. models/mutation.container.ipAddressRange.addValues.json +1020 -0
  109. models/mutation.container.ipAddressRange.createFromFile.json +819 -0
  110. models/mutation.container.ipAddressRange.removeValues.json +1020 -0
  111. models/mutation.container.ipAddressRange.updateFromFile.json +1045 -0
  112. models/mutation.groups.createGroup.json +3178 -0
  113. models/mutation.groups.deleteGroup.json +2758 -0
  114. models/mutation.groups.updateGroup.json +4429 -0
  115. models/mutation.hardware.updateHardwareShipping.json +30 -10
  116. models/mutation.policy.appTenantRestriction.addRule.json +25 -25
  117. models/mutation.policy.appTenantRestriction.addSection.json +3 -3
  118. models/mutation.policy.appTenantRestriction.createPolicyRevision.json +31 -31
  119. models/mutation.policy.appTenantRestriction.discardPolicyRevision.json +31 -31
  120. models/mutation.policy.appTenantRestriction.moveRule.json +25 -25
  121. models/mutation.policy.appTenantRestriction.moveSection.json +3 -3
  122. models/mutation.policy.appTenantRestriction.publishPolicyRevision.json +31 -31
  123. models/mutation.policy.appTenantRestriction.removeRule.json +25 -25
  124. models/mutation.policy.appTenantRestriction.removeSection.json +3 -3
  125. models/mutation.policy.appTenantRestriction.updatePolicy.json +31 -31
  126. models/mutation.policy.appTenantRestriction.updateRule.json +25 -25
  127. models/mutation.policy.appTenantRestriction.updateSection.json +3 -3
  128. models/mutation.policy.dynamicIpAllocation.addRule.json +11 -11
  129. models/mutation.policy.dynamicIpAllocation.addSection.json +3 -3
  130. models/mutation.policy.dynamicIpAllocation.createPolicyRevision.json +17 -17
  131. models/mutation.policy.dynamicIpAllocation.discardPolicyRevision.json +17 -17
  132. models/mutation.policy.dynamicIpAllocation.moveRule.json +11 -11
  133. models/mutation.policy.dynamicIpAllocation.moveSection.json +3 -3
  134. models/mutation.policy.dynamicIpAllocation.publishPolicyRevision.json +17 -17
  135. models/mutation.policy.dynamicIpAllocation.removeRule.json +11 -11
  136. models/mutation.policy.dynamicIpAllocation.removeSection.json +3 -3
  137. models/mutation.policy.dynamicIpAllocation.updatePolicy.json +17 -17
  138. models/mutation.policy.dynamicIpAllocation.updateRule.json +11 -11
  139. models/mutation.policy.dynamicIpAllocation.updateSection.json +3 -3
  140. models/mutation.policy.internetFirewall.addRule.json +532 -85
  141. models/mutation.policy.internetFirewall.addSection.json +3 -3
  142. models/mutation.policy.internetFirewall.createPolicyRevision.json +208 -91
  143. models/mutation.policy.internetFirewall.discardPolicyRevision.json +208 -91
  144. models/mutation.policy.internetFirewall.moveRule.json +202 -85
  145. models/mutation.policy.internetFirewall.moveSection.json +3 -3
  146. models/mutation.policy.internetFirewall.publishPolicyRevision.json +208 -91
  147. models/mutation.policy.internetFirewall.removeRule.json +202 -85
  148. models/mutation.policy.internetFirewall.removeSection.json +3 -3
  149. models/mutation.policy.internetFirewall.updatePolicy.json +208 -91
  150. models/mutation.policy.internetFirewall.updateRule.json +523 -85
  151. models/mutation.policy.internetFirewall.updateSection.json +3 -3
  152. models/mutation.policy.remotePortFwd.addRule.json +16 -16
  153. models/mutation.policy.remotePortFwd.addSection.json +3 -3
  154. models/mutation.policy.remotePortFwd.createPolicyRevision.json +22 -22
  155. models/mutation.policy.remotePortFwd.discardPolicyRevision.json +22 -22
  156. models/mutation.policy.remotePortFwd.moveRule.json +16 -16
  157. models/mutation.policy.remotePortFwd.moveSection.json +3 -3
  158. models/mutation.policy.remotePortFwd.publishPolicyRevision.json +22 -22
  159. models/mutation.policy.remotePortFwd.removeRule.json +16 -16
  160. models/mutation.policy.remotePortFwd.removeSection.json +3 -3
  161. models/mutation.policy.remotePortFwd.updatePolicy.json +22 -22
  162. models/mutation.policy.remotePortFwd.updateRule.json +16 -16
  163. models/mutation.policy.remotePortFwd.updateSection.json +3 -3
  164. models/mutation.policy.socketLan.addRule.json +81 -81
  165. models/mutation.policy.socketLan.addSection.json +3 -3
  166. models/mutation.policy.socketLan.createPolicyRevision.json +87 -87
  167. models/mutation.policy.socketLan.discardPolicyRevision.json +87 -87
  168. models/mutation.policy.socketLan.moveRule.json +81 -81
  169. models/mutation.policy.socketLan.moveSection.json +3 -3
  170. models/mutation.policy.socketLan.publishPolicyRevision.json +87 -87
  171. models/mutation.policy.socketLan.removeRule.json +81 -81
  172. models/mutation.policy.socketLan.removeSection.json +3 -3
  173. models/mutation.policy.socketLan.updatePolicy.json +87 -87
  174. models/mutation.policy.socketLan.updateRule.json +81 -81
  175. models/mutation.policy.socketLan.updateSection.json +3 -3
  176. models/mutation.policy.terminalServer.addRule.json +6 -6
  177. models/mutation.policy.terminalServer.addSection.json +3 -3
  178. models/mutation.policy.terminalServer.createPolicyRevision.json +12 -12
  179. models/mutation.policy.terminalServer.discardPolicyRevision.json +12 -12
  180. models/mutation.policy.terminalServer.moveRule.json +6 -6
  181. models/mutation.policy.terminalServer.moveSection.json +3 -3
  182. models/mutation.policy.terminalServer.publishPolicyRevision.json +12 -12
  183. models/mutation.policy.terminalServer.removeRule.json +6 -6
  184. models/mutation.policy.terminalServer.removeSection.json +3 -3
  185. models/mutation.policy.terminalServer.updatePolicy.json +12 -12
  186. models/mutation.policy.terminalServer.updateRule.json +6 -6
  187. models/mutation.policy.terminalServer.updateSection.json +3 -3
  188. models/mutation.policy.wanFirewall.addRule.json +550 -103
  189. models/mutation.policy.wanFirewall.addSection.json +3 -3
  190. models/mutation.policy.wanFirewall.createPolicyRevision.json +226 -109
  191. models/mutation.policy.wanFirewall.discardPolicyRevision.json +226 -109
  192. models/mutation.policy.wanFirewall.moveRule.json +220 -103
  193. models/mutation.policy.wanFirewall.moveSection.json +3 -3
  194. models/mutation.policy.wanFirewall.publishPolicyRevision.json +226 -109
  195. models/mutation.policy.wanFirewall.removeRule.json +220 -103
  196. models/mutation.policy.wanFirewall.removeSection.json +3 -3
  197. models/mutation.policy.wanFirewall.updatePolicy.json +226 -109
  198. models/mutation.policy.wanFirewall.updateRule.json +541 -103
  199. models/mutation.policy.wanFirewall.updateSection.json +3 -3
  200. models/mutation.policy.wanNetwork.addRule.json +90 -90
  201. models/mutation.policy.wanNetwork.addSection.json +3 -3
  202. models/mutation.policy.wanNetwork.createPolicyRevision.json +96 -96
  203. models/mutation.policy.wanNetwork.discardPolicyRevision.json +96 -96
  204. models/mutation.policy.wanNetwork.moveRule.json +90 -90
  205. models/mutation.policy.wanNetwork.moveSection.json +3 -3
  206. models/mutation.policy.wanNetwork.publishPolicyRevision.json +96 -96
  207. models/mutation.policy.wanNetwork.removeRule.json +90 -90
  208. models/mutation.policy.wanNetwork.removeSection.json +3 -3
  209. models/mutation.policy.wanNetwork.updatePolicy.json +96 -96
  210. models/mutation.policy.wanNetwork.updateRule.json +90 -90
  211. models/mutation.policy.wanNetwork.updateSection.json +3 -3
  212. models/mutation.site.addBgpPeer.json +10 -10
  213. models/mutation.site.addIpsecIkeV2SiteTunnels.json +2 -2
  214. models/mutation.site.addSocketAddOnCard.json +2 -2
  215. models/mutation.site.assignSiteBwLicense.json +12879 -0
  216. models/mutation.site.removeBgpPeer.json +10 -10
  217. models/mutation.site.removeIpsecIkeV2SiteTunnels.json +2 -2
  218. models/mutation.site.removeSecondaryAwsVSocket.json +375 -0
  219. models/mutation.site.removeSecondaryAzureVSocket.json +354 -0
  220. models/mutation.site.removeSiteBwLicense.json +12822 -0
  221. models/mutation.site.removeSocketAddOnCard.json +2 -2
  222. models/mutation.site.replaceSiteBwLicense.json +12939 -0
  223. models/mutation.site.startSiteUpgrade.json +36 -15
  224. models/mutation.site.updateBgpPeer.json +10 -10
  225. models/mutation.site.updateIpsecIkeV2SiteTunnels.json +2 -2
  226. models/mutation.site.updateSecondaryAwsVSocket.json +643 -0
  227. models/mutation.site.updateSecondaryAzureVSocket.json +565 -0
  228. models/mutation.site.updateSiteBwLicense.json +12882 -0
  229. models/mutation.site.updateSiteGeneralDetails.json +724 -1
  230. models/mutation.sites.addBgpPeer.json +10 -10
  231. models/mutation.sites.addIpsecIkeV2SiteTunnels.json +2 -2
  232. models/mutation.sites.addSocketAddOnCard.json +2 -2
  233. models/mutation.sites.assignSiteBwLicense.json +12879 -0
  234. models/mutation.sites.removeBgpPeer.json +10 -10
  235. models/mutation.sites.removeIpsecIkeV2SiteTunnels.json +2 -2
  236. models/mutation.sites.removeSecondaryAwsVSocket.json +375 -0
  237. models/mutation.sites.removeSecondaryAzureVSocket.json +354 -0
  238. models/mutation.sites.removeSiteBwLicense.json +12822 -0
  239. models/mutation.sites.removeSocketAddOnCard.json +2 -2
  240. models/mutation.sites.replaceSiteBwLicense.json +12939 -0
  241. models/mutation.sites.startSiteUpgrade.json +36 -15
  242. models/mutation.sites.updateBgpPeer.json +10 -10
  243. models/mutation.sites.updateIpsecIkeV2SiteTunnels.json +2 -2
  244. models/mutation.sites.updateSecondaryAwsVSocket.json +643 -0
  245. models/mutation.sites.updateSecondaryAzureVSocket.json +565 -0
  246. models/mutation.sites.updateSiteBwLicense.json +12882 -0
  247. models/mutation.sites.updateSiteGeneralDetails.json +724 -1
  248. models/mutation.xdr.addStoryComment.json +1 -1
  249. models/mutation.xdr.analystFeedback.json +84 -84
  250. models/mutation.xdr.deleteStoryComment.json +1 -1
  251. models/query.accountManagement.json +97 -0
  252. models/query.accountMetrics.json +45 -45
  253. models/query.accountSnapshot.json +30 -30
  254. models/query.admin.json +6 -6
  255. models/query.admins.json +13 -13
  256. models/query.appStats.json +915 -867
  257. models/query.appStatsTimeSeries.json +692 -656
  258. models/query.auditFeed.json +6 -6
  259. models/query.catalogs.json +52 -52
  260. models/query.container.json +16 -16
  261. models/query.devices.json +20 -93
  262. models/query.entityLookup.json +2 -2
  263. models/query.events.json +288 -384
  264. models/query.eventsFeed.json +73 -97
  265. models/query.eventsTimeSeries.json +219 -291
  266. models/query.groups.group.members.json +3058 -0
  267. models/query.groups.groupList.json +6474 -0
  268. models/query.groups.whereUsed.json +697 -0
  269. models/query.hardware.json +27 -7
  270. models/query.hardwareManagement.json +8 -8
  271. models/query.licensing.json +3487 -1324
  272. models/query.policy.appTenantRestriction.policy.json +3086 -0
  273. models/query.policy.dynamicIpAllocation.policy.json +1934 -0
  274. models/query.policy.internetFirewall.policy.json +7833 -0
  275. models/query.policy.json +233 -0
  276. models/query.policy.remotePortFwd.policy.json +2387 -0
  277. models/query.policy.socketLan.policy.json +7140 -0
  278. models/query.policy.terminalServer.policy.json +1632 -0
  279. models/query.policy.wanFirewall.policy.json +9212 -0
  280. models/query.policy.wanNetwork.policy.json +8010 -0
  281. models/query.popLocations.json +2878 -0
  282. models/query.sandbox.json +5 -5
  283. models/query.site.availableVersionList.json +365 -0
  284. models/query.site.bgpPeer.json +1917 -0
  285. models/query.site.bgpPeerList.json +2076 -0
  286. models/query.site.cloudInterconnectConnectionConnectivity.json +298 -0
  287. models/query.site.cloudInterconnectPhysicalConnection.json +728 -0
  288. models/query.site.cloudInterconnectPhysicalConnectionId.json +660 -0
  289. models/query.site.secondaryAwsVSocket.json +340 -0
  290. models/query.site.secondaryAzureVSocket.json +319 -0
  291. models/query.site.siteBgpStatus.json +869 -0
  292. models/query.socketPortMetrics.json +2410 -0
  293. models/query.socketPortMetricsTimeSeries.json +2361 -0
  294. models/query.xdr.stories.json +104 -104
  295. models/query.xdr.story.json +93 -93
  296. schema/catolib.py +34 -18
  297. schema/remove_policyid.py +89 -0
  298. schema/remove_policyid_mutations.py +89 -0
  299. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info}/entry_points.txt +0 -0
  300. {catocli-2.0.4.dist-info → catocli-2.1.0.dist-info/licenses}/LICENSE +0 -0
@@ -615,7 +615,7 @@
615
615
  "enumValues": null,
616
616
  "fields": {
617
617
  "errors": {
618
- "alias": "policyMutationErrorErrors: errors",
618
+ "alias": "errorsSocketLanPolicyMutationPayload: errors",
619
619
  "args": {},
620
620
  "deprecationReason": null,
621
621
  "description": null,
@@ -691,7 +691,7 @@
691
691
  "varName": "policyMutationError"
692
692
  },
693
693
  "policy": {
694
- "alias": "socketLanPolicyPolicy: policy",
694
+ "alias": "policySocketLanPolicyMutationPayload: policy",
695
695
  "args": {},
696
696
  "deprecationReason": null,
697
697
  "description": null,
@@ -977,7 +977,7 @@
977
977
  "enumValues": null,
978
978
  "fields": {
979
979
  "audit": {
980
- "alias": "policyElementAuditAudit: audit",
980
+ "alias": "auditSocketLanRulePayload: audit",
981
981
  "args": {},
982
982
  "deprecationReason": null,
983
983
  "description": null,
@@ -1053,7 +1053,7 @@
1053
1053
  "varName": "policyElementAudit"
1054
1054
  },
1055
1055
  "properties": {
1056
- "alias": "policyElementPropertiesEnumProperties: properties",
1056
+ "alias": "propertiesSocketLanRulePayload: properties",
1057
1057
  "args": {},
1058
1058
  "deprecationReason": null,
1059
1059
  "description": null,
@@ -1131,7 +1131,7 @@
1131
1131
  "varName": "properties"
1132
1132
  },
1133
1133
  "rule": {
1134
- "alias": "socketLanRuleRule: rule",
1134
+ "alias": "ruleSocketLanRulePayload: rule",
1135
1135
  "args": {},
1136
1136
  "deprecationReason": null,
1137
1137
  "description": null,
@@ -1169,7 +1169,7 @@
1169
1169
  "varName": "description"
1170
1170
  },
1171
1171
  "destination": {
1172
- "alias": "socketLanDestinationDestination: destination",
1172
+ "alias": "destinationSocketLanRule: destination",
1173
1173
  "args": {},
1174
1174
  "deprecationReason": null,
1175
1175
  "description": "Destination traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -1186,7 +1186,7 @@
1186
1186
  "enumValues": null,
1187
1187
  "fields": {
1188
1188
  "floatingSubnet": {
1189
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
1189
+ "alias": "floatingSubnetSocketLanDestination: floatingSubnet",
1190
1190
  "args": {},
1191
1191
  "deprecationReason": null,
1192
1192
  "description": null,
@@ -1264,7 +1264,7 @@
1264
1264
  "varName": "floatingSubnetRef"
1265
1265
  },
1266
1266
  "globalIpRange": {
1267
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
1267
+ "alias": "globalIpRangeSocketLanDestination: globalIpRange",
1268
1268
  "args": {},
1269
1269
  "deprecationReason": null,
1270
1270
  "description": null,
@@ -1342,7 +1342,7 @@
1342
1342
  "varName": "globalIpRangeRef"
1343
1343
  },
1344
1344
  "group": {
1345
- "alias": "groupRefGroup: group",
1345
+ "alias": "groupSocketLanDestination: group",
1346
1346
  "args": {},
1347
1347
  "deprecationReason": null,
1348
1348
  "description": null,
@@ -1420,7 +1420,7 @@
1420
1420
  "varName": "groupRef"
1421
1421
  },
1422
1422
  "host": {
1423
- "alias": "hostRefHost: host",
1423
+ "alias": "hostSocketLanDestination: host",
1424
1424
  "args": {},
1425
1425
  "deprecationReason": null,
1426
1426
  "description": null,
@@ -1521,7 +1521,7 @@
1521
1521
  "varName": "ip"
1522
1522
  },
1523
1523
  "ipRange": {
1524
- "alias": "ipAddressRangeIpRange: ipRange",
1524
+ "alias": "ipRangeSocketLanDestination: ipRange",
1525
1525
  "args": {},
1526
1526
  "deprecationReason": null,
1527
1527
  "description": null,
@@ -1599,7 +1599,7 @@
1599
1599
  "varName": "ipAddressRange"
1600
1600
  },
1601
1601
  "networkInterface": {
1602
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
1602
+ "alias": "networkInterfaceSocketLanDestination: networkInterface",
1603
1603
  "args": {},
1604
1604
  "deprecationReason": null,
1605
1605
  "description": null,
@@ -1677,7 +1677,7 @@
1677
1677
  "varName": "networkInterfaceRef"
1678
1678
  },
1679
1679
  "siteNetworkSubnet": {
1680
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
1680
+ "alias": "siteNetworkSubnetSocketLanDestination: siteNetworkSubnet",
1681
1681
  "args": {},
1682
1682
  "deprecationReason": null,
1683
1683
  "description": null,
@@ -1778,7 +1778,7 @@
1778
1778
  "varName": "subnet"
1779
1779
  },
1780
1780
  "systemGroup": {
1781
- "alias": "systemGroupRefSystemGroup: systemGroup",
1781
+ "alias": "systemGroupSocketLanDestination: systemGroup",
1782
1782
  "args": {},
1783
1783
  "deprecationReason": null,
1784
1784
  "description": null,
@@ -1896,7 +1896,7 @@
1896
1896
  "varName": "socketLanDestination"
1897
1897
  },
1898
1898
  "direction": {
1899
- "alias": "socketLanDirectionDirection: direction",
1899
+ "alias": "directionSocketLanRule: direction",
1900
1900
  "args": {},
1901
1901
  "deprecationReason": null,
1902
1902
  "description": "Direction of the traffic initiator matching criteria. ",
@@ -1963,7 +1963,7 @@
1963
1963
  "varName": "enabled"
1964
1964
  },
1965
1965
  "firewall": {
1966
- "alias": "socketLanFirewallRulePayloadFirewall: firewall",
1966
+ "alias": "firewallSocketLanRule: firewall",
1967
1967
  "args": {},
1968
1968
  "deprecationReason": null,
1969
1969
  "description": null,
@@ -1980,7 +1980,7 @@
1980
1980
  "enumValues": null,
1981
1981
  "fields": {
1982
1982
  "audit": {
1983
- "alias": "policyElementAuditAudit: audit",
1983
+ "alias": "auditSocketLanFirewallRulePayload: audit",
1984
1984
  "args": {},
1985
1985
  "deprecationReason": null,
1986
1986
  "description": null,
@@ -2056,7 +2056,7 @@
2056
2056
  "varName": "policyElementAudit"
2057
2057
  },
2058
2058
  "properties": {
2059
- "alias": "policyElementPropertiesEnumProperties: properties",
2059
+ "alias": "propertiesSocketLanFirewallRulePayload: properties",
2060
2060
  "args": {},
2061
2061
  "deprecationReason": null,
2062
2062
  "description": null,
@@ -2134,7 +2134,7 @@
2134
2134
  "varName": "properties"
2135
2135
  },
2136
2136
  "rule": {
2137
- "alias": "socketLanFirewallRuleRule: rule",
2137
+ "alias": "ruleSocketLanFirewallRulePayload: rule",
2138
2138
  "args": {},
2139
2139
  "deprecationReason": null,
2140
2140
  "description": null,
@@ -2151,7 +2151,7 @@
2151
2151
  "enumValues": null,
2152
2152
  "fields": {
2153
2153
  "action": {
2154
- "alias": "socketLanFirewallActionAction: action",
2154
+ "alias": "actionSocketLanFirewallRule: action",
2155
2155
  "args": {},
2156
2156
  "deprecationReason": null,
2157
2157
  "description": "Action to take when the rule is matched (ALLOW or BLOCK).",
@@ -2197,7 +2197,7 @@
2197
2197
  "varName": "action"
2198
2198
  },
2199
2199
  "application": {
2200
- "alias": "socketLanFirewallApplicationApplication: application",
2200
+ "alias": "applicationSocketLanFirewallRule: application",
2201
2201
  "args": {},
2202
2202
  "deprecationReason": null,
2203
2203
  "description": "Application traffic matching criteria.",
@@ -2214,7 +2214,7 @@
2214
2214
  "enumValues": null,
2215
2215
  "fields": {
2216
2216
  "application": {
2217
- "alias": "applicationRefApplication: application",
2217
+ "alias": "applicationSocketLanFirewallApplication: application",
2218
2218
  "args": {},
2219
2219
  "deprecationReason": null,
2220
2220
  "description": "Applications matching criteria for this rule.",
@@ -2292,7 +2292,7 @@
2292
2292
  "varName": "applicationRef"
2293
2293
  },
2294
2294
  "customApp": {
2295
- "alias": "customApplicationRefCustomApp: customApp",
2295
+ "alias": "customAppSocketLanFirewallApplication: customApp",
2296
2296
  "args": {},
2297
2297
  "deprecationReason": null,
2298
2298
  "description": "Custom applications that can be matched by",
@@ -2416,7 +2416,7 @@
2416
2416
  "varName": "fqdn"
2417
2417
  },
2418
2418
  "globalIpRange": {
2419
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
2419
+ "alias": "globalIpRangeSocketLanFirewallApplication: globalIpRange",
2420
2420
  "args": {},
2421
2421
  "deprecationReason": null,
2422
2422
  "description": null,
@@ -2517,7 +2517,7 @@
2517
2517
  "varName": "ip"
2518
2518
  },
2519
2519
  "ipRange": {
2520
- "alias": "ipAddressRangeIpRange: ipRange",
2520
+ "alias": "ipRangeSocketLanFirewallApplication: ipRange",
2521
2521
  "args": {},
2522
2522
  "deprecationReason": null,
2523
2523
  "description": null,
@@ -2656,7 +2656,7 @@
2656
2656
  "varName": "description"
2657
2657
  },
2658
2658
  "destination": {
2659
- "alias": "socketLanFirewallDestinationDestination: destination",
2659
+ "alias": "destinationSocketLanFirewallRule: destination",
2660
2660
  "args": {},
2661
2661
  "deprecationReason": null,
2662
2662
  "description": "Defines destinations for the socket LAN firewall.\nAlso, inherited by Network Rule above.",
@@ -2673,7 +2673,7 @@
2673
2673
  "enumValues": null,
2674
2674
  "fields": {
2675
2675
  "floatingSubnet": {
2676
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
2676
+ "alias": "floatingSubnetSocketLanFirewallDestination: floatingSubnet",
2677
2677
  "args": {},
2678
2678
  "deprecationReason": null,
2679
2679
  "description": "Floating subnets used to identify traffic based on specific criteria.",
@@ -2751,7 +2751,7 @@
2751
2751
  "varName": "floatingSubnetRef"
2752
2752
  },
2753
2753
  "globalIpRange": {
2754
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
2754
+ "alias": "globalIpRangeSocketLanFirewallDestination: globalIpRange",
2755
2755
  "args": {},
2756
2756
  "deprecationReason": null,
2757
2757
  "description": "Global IP ranges defined for your account.",
@@ -2829,7 +2829,7 @@
2829
2829
  "varName": "globalIpRangeRef"
2830
2830
  },
2831
2831
  "group": {
2832
- "alias": "groupRefGroup: group",
2832
+ "alias": "groupSocketLanFirewallDestination: group",
2833
2833
  "args": {},
2834
2834
  "deprecationReason": null,
2835
2835
  "description": "Groups defined for your account.",
@@ -2907,7 +2907,7 @@
2907
2907
  "varName": "groupRef"
2908
2908
  },
2909
2909
  "host": {
2910
- "alias": "hostRefHost: host",
2910
+ "alias": "hostSocketLanFirewallDestination: host",
2911
2911
  "args": {},
2912
2912
  "deprecationReason": null,
2913
2913
  "description": "Hosts and servers defined for your account.",
@@ -3008,7 +3008,7 @@
3008
3008
  "varName": "ip"
3009
3009
  },
3010
3010
  "ipRange": {
3011
- "alias": "ipAddressRangeIpRange: ipRange",
3011
+ "alias": "ipRangeSocketLanFirewallDestination: ipRange",
3012
3012
  "args": {},
3013
3013
  "deprecationReason": null,
3014
3014
  "description": "Multiple separate IP addresses or an IP range.",
@@ -3086,7 +3086,7 @@
3086
3086
  "varName": "ipAddressRange"
3087
3087
  },
3088
3088
  "networkInterface": {
3089
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
3089
+ "alias": "networkInterfaceSocketLanFirewallDestination: networkInterface",
3090
3090
  "args": {},
3091
3091
  "deprecationReason": null,
3092
3092
  "description": "Network interfaces defined for your site.",
@@ -3164,7 +3164,7 @@
3164
3164
  "varName": "networkInterfaceRef"
3165
3165
  },
3166
3166
  "site": {
3167
- "alias": "siteRefSite: site",
3167
+ "alias": "siteSocketLanFirewallDestination: site",
3168
3168
  "args": {},
3169
3169
  "deprecationReason": null,
3170
3170
  "description": "Sites defined for your account.",
@@ -3242,7 +3242,7 @@
3242
3242
  "varName": "siteRef"
3243
3243
  },
3244
3244
  "siteNetworkSubnet": {
3245
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
3245
+ "alias": "siteNetworkSubnetSocketLanFirewallDestination: siteNetworkSubnet",
3246
3246
  "args": {},
3247
3247
  "deprecationReason": null,
3248
3248
  "description": "Subnets specific to a site defined for your account.",
@@ -3343,7 +3343,7 @@
3343
3343
  "varName": "subnet"
3344
3344
  },
3345
3345
  "systemGroup": {
3346
- "alias": "systemGroupRefSystemGroup: systemGroup",
3346
+ "alias": "systemGroupSocketLanFirewallDestination: systemGroup",
3347
3347
  "args": {},
3348
3348
  "deprecationReason": null,
3349
3349
  "description": "Predefined system groups in your account.",
@@ -3461,7 +3461,7 @@
3461
3461
  "varName": "socketLanFirewallDestination"
3462
3462
  },
3463
3463
  "direction": {
3464
- "alias": "socketLanFirewallDirectionDirection: direction",
3464
+ "alias": "directionSocketLanFirewallRule: direction",
3465
3465
  "args": {},
3466
3466
  "deprecationReason": null,
3467
3467
  "description": "Direction of the traffic (TO or BOTH).",
@@ -3591,7 +3591,7 @@
3591
3591
  "varName": "name"
3592
3592
  },
3593
3593
  "section": {
3594
- "alias": "policySectionInfoSection: section",
3594
+ "alias": "sectionSocketLanFirewallRule: section",
3595
3595
  "args": {},
3596
3596
  "deprecationReason": null,
3597
3597
  "description": "Policy section where the rule is located",
@@ -3667,7 +3667,7 @@
3667
3667
  "varName": "policySectionInfo"
3668
3668
  },
3669
3669
  "service": {
3670
- "alias": "socketLanFirewallServiceTypeService: service",
3670
+ "alias": "serviceSocketLanFirewallRule: service",
3671
3671
  "args": {},
3672
3672
  "deprecationReason": null,
3673
3673
  "description": "Service traffic matching criteria.",
@@ -3684,7 +3684,7 @@
3684
3684
  "enumValues": null,
3685
3685
  "fields": {
3686
3686
  "custom": {
3687
- "alias": "customServiceCustom: custom",
3687
+ "alias": "customSocketLanFirewallServiceType: custom",
3688
3688
  "args": {},
3689
3689
  "deprecationReason": null,
3690
3690
  "description": "Custom services defined for this rule.",
@@ -3723,7 +3723,7 @@
3723
3723
  "varName": "port"
3724
3724
  },
3725
3725
  "portRange": {
3726
- "alias": "portRangePortRange: portRange",
3726
+ "alias": "portRangeCustomService: portRange",
3727
3727
  "args": {},
3728
3728
  "deprecationReason": null,
3729
3729
  "description": null,
@@ -3798,7 +3798,7 @@
3798
3798
  "varName": "portRange"
3799
3799
  },
3800
3800
  "protocol": {
3801
- "alias": "ipProtocolProtocol: protocol",
3801
+ "alias": "protocolCustomService: protocol",
3802
3802
  "args": {},
3803
3803
  "deprecationReason": null,
3804
3804
  "description": null,
@@ -3881,7 +3881,7 @@
3881
3881
  "varName": "customService"
3882
3882
  },
3883
3883
  "simple": {
3884
- "alias": "simpleServiceSimple: simple",
3884
+ "alias": "simpleSocketLanFirewallServiceType: simple",
3885
3885
  "args": {},
3886
3886
  "deprecationReason": null,
3887
3887
  "description": "Simple services allowed by the firewall rule.",
@@ -3898,7 +3898,7 @@
3898
3898
  "enumValues": null,
3899
3899
  "fields": {
3900
3900
  "name": {
3901
- "alias": "simpleServiceTypeName: name",
3901
+ "alias": "nameSimpleService: name",
3902
3902
  "args": {},
3903
3903
  "deprecationReason": null,
3904
3904
  "description": null,
@@ -4005,7 +4005,7 @@
4005
4005
  "varName": "simpleService"
4006
4006
  },
4007
4007
  "standard": {
4008
- "alias": "serviceRefStandard: standard",
4008
+ "alias": "standardSocketLanFirewallServiceType: standard",
4009
4009
  "args": {},
4010
4010
  "deprecationReason": null,
4011
4011
  "description": "Standard services allowed by the firewall rule.",
@@ -4100,7 +4100,7 @@
4100
4100
  "varName": "socketLanFirewallServiceType"
4101
4101
  },
4102
4102
  "source": {
4103
- "alias": "socketLanFirewallSourceSource: source",
4103
+ "alias": "sourceSocketLanFirewallRule: source",
4104
4104
  "args": {},
4105
4105
  "deprecationReason": null,
4106
4106
  "description": "Defines sources for the socket LAN firewall.\nAlso, inherited by Network Rule above.",
@@ -4117,7 +4117,7 @@
4117
4117
  "enumValues": null,
4118
4118
  "fields": {
4119
4119
  "floatingSubnet": {
4120
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
4120
+ "alias": "floatingSubnetSocketLanFirewallSource: floatingSubnet",
4121
4121
  "args": {},
4122
4122
  "deprecationReason": null,
4123
4123
  "description": "Floating subnets used to identify traffic based on specific criteria.",
@@ -4195,7 +4195,7 @@
4195
4195
  "varName": "floatingSubnetRef"
4196
4196
  },
4197
4197
  "globalIpRange": {
4198
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
4198
+ "alias": "globalIpRangeSocketLanFirewallSource: globalIpRange",
4199
4199
  "args": {},
4200
4200
  "deprecationReason": null,
4201
4201
  "description": "Global IP ranges defined for your account.",
@@ -4273,7 +4273,7 @@
4273
4273
  "varName": "globalIpRangeRef"
4274
4274
  },
4275
4275
  "group": {
4276
- "alias": "groupRefGroup: group",
4276
+ "alias": "groupSocketLanFirewallSource: group",
4277
4277
  "args": {},
4278
4278
  "deprecationReason": null,
4279
4279
  "description": "Groups defined for your account.",
@@ -4351,7 +4351,7 @@
4351
4351
  "varName": "groupRef"
4352
4352
  },
4353
4353
  "host": {
4354
- "alias": "hostRefHost: host",
4354
+ "alias": "hostSocketLanFirewallSource: host",
4355
4355
  "args": {},
4356
4356
  "deprecationReason": null,
4357
4357
  "description": "Hosts and servers defined for your account.",
@@ -4452,7 +4452,7 @@
4452
4452
  "varName": "ip"
4453
4453
  },
4454
4454
  "ipRange": {
4455
- "alias": "ipAddressRangeIpRange: ipRange",
4455
+ "alias": "ipRangeSocketLanFirewallSource: ipRange",
4456
4456
  "args": {},
4457
4457
  "deprecationReason": null,
4458
4458
  "description": "Multiple separate IP addresses or an IP range.",
@@ -4553,7 +4553,7 @@
4553
4553
  "varName": "mac"
4554
4554
  },
4555
4555
  "networkInterface": {
4556
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
4556
+ "alias": "networkInterfaceSocketLanFirewallSource: networkInterface",
4557
4557
  "args": {},
4558
4558
  "deprecationReason": null,
4559
4559
  "description": "Network interfaces defined for your site.",
@@ -4631,7 +4631,7 @@
4631
4631
  "varName": "networkInterfaceRef"
4632
4632
  },
4633
4633
  "site": {
4634
- "alias": "siteRefSite: site",
4634
+ "alias": "siteSocketLanFirewallSource: site",
4635
4635
  "args": {},
4636
4636
  "deprecationReason": null,
4637
4637
  "description": "Sites defined for your account.",
@@ -4709,7 +4709,7 @@
4709
4709
  "varName": "siteRef"
4710
4710
  },
4711
4711
  "siteNetworkSubnet": {
4712
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
4712
+ "alias": "siteNetworkSubnetSocketLanFirewallSource: siteNetworkSubnet",
4713
4713
  "args": {},
4714
4714
  "deprecationReason": null,
4715
4715
  "description": "Subnets specific to a site defined for your account.",
@@ -4810,7 +4810,7 @@
4810
4810
  "varName": "subnet"
4811
4811
  },
4812
4812
  "systemGroup": {
4813
- "alias": "systemGroupRefSystemGroup: systemGroup",
4813
+ "alias": "systemGroupSocketLanFirewallSource: systemGroup",
4814
4814
  "args": {},
4815
4815
  "deprecationReason": null,
4816
4816
  "description": "Predefined system groups in your account.",
@@ -4928,7 +4928,7 @@
4928
4928
  "varName": "socketLanFirewallSource"
4929
4929
  },
4930
4930
  "tracking": {
4931
- "alias": "policyTrackingTracking: tracking",
4931
+ "alias": "trackingSocketLanFirewallRule: tracking",
4932
4932
  "args": {},
4933
4933
  "deprecationReason": null,
4934
4934
  "description": "Tracking information when the rule is matched, such as events and notifications.",
@@ -4945,7 +4945,7 @@
4945
4945
  "enumValues": null,
4946
4946
  "fields": {
4947
4947
  "alert": {
4948
- "alias": "policyRuleTrackingAlertAlert: alert",
4948
+ "alias": "alertPolicyTracking: alert",
4949
4949
  "args": {},
4950
4950
  "deprecationReason": null,
4951
4951
  "description": null,
@@ -4983,7 +4983,7 @@
4983
4983
  "varName": "enabled"
4984
4984
  },
4985
4985
  "frequency": {
4986
- "alias": "policyRuleTrackingFrequencyEnumFrequency: frequency",
4986
+ "alias": "frequencyPolicyRuleTrackingAlert: frequency",
4987
4987
  "args": {},
4988
4988
  "deprecationReason": null,
4989
4989
  "description": "Returns data for the alert frequency",
@@ -5041,7 +5041,7 @@
5041
5041
  "varName": "frequency"
5042
5042
  },
5043
5043
  "mailingList": {
5044
- "alias": "subscriptionMailingListRefMailingList: mailingList",
5044
+ "alias": "mailingListPolicyRuleTrackingAlert: mailingList",
5045
5045
  "args": {},
5046
5046
  "deprecationReason": null,
5047
5047
  "description": "Returns data for the Mailing List that receives the alert",
@@ -5119,7 +5119,7 @@
5119
5119
  "varName": "subscriptionMailingListRef"
5120
5120
  },
5121
5121
  "subscriptionGroup": {
5122
- "alias": "subscriptionGroupRefSubscriptionGroup: subscriptionGroup",
5122
+ "alias": "subscriptionGroupPolicyRuleTrackingAlert: subscriptionGroup",
5123
5123
  "args": {},
5124
5124
  "deprecationReason": null,
5125
5125
  "description": "Returns data for the Subscription Group that receives the alert",
@@ -5197,7 +5197,7 @@
5197
5197
  "varName": "subscriptionGroupRef"
5198
5198
  },
5199
5199
  "webhook": {
5200
- "alias": "subscriptionWebhookRefWebhook: webhook",
5200
+ "alias": "webhookPolicyRuleTrackingAlert: webhook",
5201
5201
  "args": {},
5202
5202
  "deprecationReason": null,
5203
5203
  "description": "Returns data for the Webhook that receives the alert",
@@ -5292,7 +5292,7 @@
5292
5292
  "varName": "policyRuleTrackingAlert"
5293
5293
  },
5294
5294
  "event": {
5295
- "alias": "policyRuleTrackingEventEvent: event",
5295
+ "alias": "eventPolicyTracking: event",
5296
5296
  "args": {},
5297
5297
  "deprecationReason": null,
5298
5298
  "description": null,
@@ -5463,7 +5463,7 @@
5463
5463
  "varName": "name"
5464
5464
  },
5465
5465
  "nat": {
5466
- "alias": "socketLanNatSettingsNat: nat",
5466
+ "alias": "natSocketLanRule: nat",
5467
5467
  "args": {},
5468
5468
  "deprecationReason": null,
5469
5469
  "description": "Optionally, enable NAT on the outgoing interface. This translates all originating IPs to one NAT IP.",
@@ -5501,7 +5501,7 @@
5501
5501
  "varName": "enabled"
5502
5502
  },
5503
5503
  "natType": {
5504
- "alias": "socketLanNatTypeNatType: natType",
5504
+ "alias": "natTypeSocketLanNatSettings: natType",
5505
5505
  "args": {},
5506
5506
  "deprecationReason": null,
5507
5507
  "description": null,
@@ -5558,7 +5558,7 @@
5558
5558
  "varName": "socketLanNatSettings"
5559
5559
  },
5560
5560
  "section": {
5561
- "alias": "policySectionInfoSection: section",
5561
+ "alias": "sectionSocketLanRule: section",
5562
5562
  "args": {},
5563
5563
  "deprecationReason": null,
5564
5564
  "description": "Policy section where the rule is located",
@@ -5634,7 +5634,7 @@
5634
5634
  "varName": "policySectionInfo"
5635
5635
  },
5636
5636
  "service": {
5637
- "alias": "socketLanServiceService: service",
5637
+ "alias": "serviceSocketLanRule: service",
5638
5638
  "args": {},
5639
5639
  "deprecationReason": null,
5640
5640
  "description": "Destination service matching criteria for the rule. Port/Protocol based.",
@@ -5651,7 +5651,7 @@
5651
5651
  "enumValues": null,
5652
5652
  "fields": {
5653
5653
  "custom": {
5654
- "alias": "customServiceCustom: custom",
5654
+ "alias": "customSocketLanService: custom",
5655
5655
  "args": {},
5656
5656
  "deprecationReason": null,
5657
5657
  "description": "Custom Port/Protocol service.",
@@ -5690,7 +5690,7 @@
5690
5690
  "varName": "port"
5691
5691
  },
5692
5692
  "portRange": {
5693
- "alias": "portRangePortRange: portRange",
5693
+ "alias": "portRangeCustomService: portRange",
5694
5694
  "args": {},
5695
5695
  "deprecationReason": null,
5696
5696
  "description": null,
@@ -5765,7 +5765,7 @@
5765
5765
  "varName": "portRange"
5766
5766
  },
5767
5767
  "protocol": {
5768
- "alias": "ipProtocolProtocol: protocol",
5768
+ "alias": "protocolCustomService: protocol",
5769
5769
  "args": {},
5770
5770
  "deprecationReason": null,
5771
5771
  "description": null,
@@ -5848,7 +5848,7 @@
5848
5848
  "varName": "customService"
5849
5849
  },
5850
5850
  "simple": {
5851
- "alias": "simpleServiceSimple: simple",
5851
+ "alias": "simpleSocketLanService: simple",
5852
5852
  "args": {},
5853
5853
  "deprecationReason": null,
5854
5854
  "description": "List of L4 based services.",
@@ -5865,7 +5865,7 @@
5865
5865
  "enumValues": null,
5866
5866
  "fields": {
5867
5867
  "name": {
5868
- "alias": "simpleServiceTypeName: name",
5868
+ "alias": "nameSimpleService: name",
5869
5869
  "args": {},
5870
5870
  "deprecationReason": null,
5871
5871
  "description": null,
@@ -5989,7 +5989,7 @@
5989
5989
  "varName": "socketLanService"
5990
5990
  },
5991
5991
  "site": {
5992
- "alias": "socketLanSiteSite: site",
5992
+ "alias": "siteSocketLanRule: site",
5993
5993
  "args": {},
5994
5994
  "deprecationReason": null,
5995
5995
  "description": "The sites the policy will be enforced on.\nSocket sites only, with Socket v22 onwards.",
@@ -6006,7 +6006,7 @@
6006
6006
  "enumValues": null,
6007
6007
  "fields": {
6008
6008
  "group": {
6009
- "alias": "groupRefGroup: group",
6009
+ "alias": "groupSocketLanSite: group",
6010
6010
  "args": {},
6011
6011
  "deprecationReason": null,
6012
6012
  "description": "The group of sites the policy will be enforced on.\nSocket sites only, with Socket v22 onwards.",
@@ -6084,7 +6084,7 @@
6084
6084
  "varName": "groupRef"
6085
6085
  },
6086
6086
  "site": {
6087
- "alias": "siteRefSite: site",
6087
+ "alias": "siteSocketLanSite: site",
6088
6088
  "args": {},
6089
6089
  "deprecationReason": null,
6090
6090
  "description": "The sites the policy will be enforced on.\nSocket sites only, with Socket v22 onwards.",
@@ -6179,7 +6179,7 @@
6179
6179
  "varName": "socketLanSite"
6180
6180
  },
6181
6181
  "source": {
6182
- "alias": "socketLanSourceSource: source",
6182
+ "alias": "sourceSocketLanRule: source",
6183
6183
  "args": {},
6184
6184
  "deprecationReason": null,
6185
6185
  "description": "Source traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -6196,7 +6196,7 @@
6196
6196
  "enumValues": null,
6197
6197
  "fields": {
6198
6198
  "floatingSubnet": {
6199
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
6199
+ "alias": "floatingSubnetSocketLanSource: floatingSubnet",
6200
6200
  "args": {},
6201
6201
  "deprecationReason": null,
6202
6202
  "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.",
@@ -6274,7 +6274,7 @@
6274
6274
  "varName": "floatingSubnetRef"
6275
6275
  },
6276
6276
  "globalIpRange": {
6277
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
6277
+ "alias": "globalIpRangeSocketLanSource: globalIpRange",
6278
6278
  "args": {},
6279
6279
  "deprecationReason": null,
6280
6280
  "description": "Globally defined IP range, IP and subnet objects.",
@@ -6352,7 +6352,7 @@
6352
6352
  "varName": "globalIpRangeRef"
6353
6353
  },
6354
6354
  "group": {
6355
- "alias": "groupRefGroup: group",
6355
+ "alias": "groupSocketLanSource: group",
6356
6356
  "args": {},
6357
6357
  "deprecationReason": null,
6358
6358
  "description": "Predefined Cato groups, Socket sites/objects only.",
@@ -6430,7 +6430,7 @@
6430
6430
  "varName": "groupRef"
6431
6431
  },
6432
6432
  "host": {
6433
- "alias": "hostRefHost: host",
6433
+ "alias": "hostSocketLanSource: host",
6434
6434
  "args": {},
6435
6435
  "deprecationReason": null,
6436
6436
  "description": "Hosts and servers defined for your under Socket sites.",
@@ -6531,7 +6531,7 @@
6531
6531
  "varName": "ip"
6532
6532
  },
6533
6533
  "ipRange": {
6534
- "alias": "ipAddressRangeIpRange: ipRange",
6534
+ "alias": "ipRangeSocketLanSource: ipRange",
6535
6535
  "args": {},
6536
6536
  "deprecationReason": null,
6537
6537
  "description": "Multiple separate IP addresses or an IP range.",
@@ -6609,7 +6609,7 @@
6609
6609
  "varName": "ipAddressRange"
6610
6610
  },
6611
6611
  "networkInterface": {
6612
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
6612
+ "alias": "networkInterfaceSocketLanSource: networkInterface",
6613
6613
  "args": {},
6614
6614
  "deprecationReason": null,
6615
6615
  "description": "Network range defined for a site.",
@@ -6687,7 +6687,7 @@
6687
6687
  "varName": "networkInterfaceRef"
6688
6688
  },
6689
6689
  "siteNetworkSubnet": {
6690
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
6690
+ "alias": "siteNetworkSubnetSocketLanSource: siteNetworkSubnet",
6691
6691
  "args": {},
6692
6692
  "deprecationReason": null,
6693
6693
  "description": "GlobalRange + InterfaceSubnet",
@@ -6788,7 +6788,7 @@
6788
6788
  "varName": "subnet"
6789
6789
  },
6790
6790
  "systemGroup": {
6791
- "alias": "systemGroupRefSystemGroup: systemGroup",
6791
+ "alias": "systemGroupSocketLanSource: systemGroup",
6792
6792
  "args": {},
6793
6793
  "deprecationReason": null,
6794
6794
  "description": "Predefined Cato groups.",
@@ -6906,7 +6906,7 @@
6906
6906
  "varName": "socketLanSource"
6907
6907
  },
6908
6908
  "transport": {
6909
- "alias": "socketLanTransportTypeTransport: transport",
6909
+ "alias": "transportSocketLanRule: transport",
6910
6910
  "args": {},
6911
6911
  "deprecationReason": null,
6912
6912
  "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.",
@@ -7004,7 +7004,7 @@
7004
7004
  "enumValues": null,
7005
7005
  "fields": {
7006
7006
  "audit": {
7007
- "alias": "policyElementAuditAudit: audit",
7007
+ "alias": "auditPolicySectionPayload: audit",
7008
7008
  "args": {},
7009
7009
  "deprecationReason": null,
7010
7010
  "description": null,
@@ -7080,7 +7080,7 @@
7080
7080
  "varName": "policyElementAudit"
7081
7081
  },
7082
7082
  "properties": {
7083
- "alias": "policyElementPropertiesEnumProperties: properties",
7083
+ "alias": "propertiesPolicySectionPayload: properties",
7084
7084
  "args": {},
7085
7085
  "deprecationReason": null,
7086
7086
  "description": null,
@@ -7158,7 +7158,7 @@
7158
7158
  "varName": "properties"
7159
7159
  },
7160
7160
  "section": {
7161
- "alias": "policySectionInfoSection: section",
7161
+ "alias": "sectionPolicySectionPayload: section",
7162
7162
  "args": {},
7163
7163
  "deprecationReason": null,
7164
7164
  "description": null,
@@ -7269,7 +7269,7 @@
7269
7269
  "varName": "socketLanPolicy"
7270
7270
  },
7271
7271
  "status": {
7272
- "alias": "policyMutationStatusStatus: status",
7272
+ "alias": "statusSocketLanPolicyMutationPayload: status",
7273
7273
  "args": {},
7274
7274
  "deprecationReason": null,
7275
7275
  "description": null,