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
@@ -7878,7 +7878,7 @@
7878
7878
  "enumValues": null,
7879
7879
  "fields": {
7880
7880
  "errors": {
7881
- "alias": "policyMutationErrorErrors: errors",
7881
+ "alias": "errorsSocketLanRuleMutationPayload: errors",
7882
7882
  "args": {},
7883
7883
  "deprecationReason": null,
7884
7884
  "description": null,
@@ -7954,7 +7954,7 @@
7954
7954
  "varName": "policyMutationError"
7955
7955
  },
7956
7956
  "rule": {
7957
- "alias": "socketLanRulePayloadRule: rule",
7957
+ "alias": "ruleSocketLanRuleMutationPayload: rule",
7958
7958
  "args": {},
7959
7959
  "deprecationReason": null,
7960
7960
  "description": null,
@@ -8160,7 +8160,7 @@
8160
8160
  "varName": "description"
8161
8161
  },
8162
8162
  "destination": {
8163
- "alias": "socketLanDestinationDestination: destination",
8163
+ "alias": "destinationSocketLanRule: destination",
8164
8164
  "args": {},
8165
8165
  "deprecationReason": null,
8166
8166
  "description": "Destination traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -8177,7 +8177,7 @@
8177
8177
  "enumValues": null,
8178
8178
  "fields": {
8179
8179
  "floatingSubnet": {
8180
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
8180
+ "alias": "floatingSubnetSocketLanDestination: floatingSubnet",
8181
8181
  "args": {},
8182
8182
  "deprecationReason": null,
8183
8183
  "description": null,
@@ -8255,7 +8255,7 @@
8255
8255
  "varName": "floatingSubnetRef"
8256
8256
  },
8257
8257
  "globalIpRange": {
8258
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
8258
+ "alias": "globalIpRangeSocketLanDestination: globalIpRange",
8259
8259
  "args": {},
8260
8260
  "deprecationReason": null,
8261
8261
  "description": null,
@@ -8333,7 +8333,7 @@
8333
8333
  "varName": "globalIpRangeRef"
8334
8334
  },
8335
8335
  "group": {
8336
- "alias": "groupRefGroup: group",
8336
+ "alias": "groupSocketLanDestination: group",
8337
8337
  "args": {},
8338
8338
  "deprecationReason": null,
8339
8339
  "description": null,
@@ -8411,7 +8411,7 @@
8411
8411
  "varName": "groupRef"
8412
8412
  },
8413
8413
  "host": {
8414
- "alias": "hostRefHost: host",
8414
+ "alias": "hostSocketLanDestination: host",
8415
8415
  "args": {},
8416
8416
  "deprecationReason": null,
8417
8417
  "description": null,
@@ -8512,7 +8512,7 @@
8512
8512
  "varName": "ip"
8513
8513
  },
8514
8514
  "ipRange": {
8515
- "alias": "ipAddressRangeIpRange: ipRange",
8515
+ "alias": "ipRangeSocketLanDestination: ipRange",
8516
8516
  "args": {},
8517
8517
  "deprecationReason": null,
8518
8518
  "description": null,
@@ -8590,7 +8590,7 @@
8590
8590
  "varName": "ipAddressRange"
8591
8591
  },
8592
8592
  "networkInterface": {
8593
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
8593
+ "alias": "networkInterfaceSocketLanDestination: networkInterface",
8594
8594
  "args": {},
8595
8595
  "deprecationReason": null,
8596
8596
  "description": null,
@@ -8668,7 +8668,7 @@
8668
8668
  "varName": "networkInterfaceRef"
8669
8669
  },
8670
8670
  "siteNetworkSubnet": {
8671
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
8671
+ "alias": "siteNetworkSubnetSocketLanDestination: siteNetworkSubnet",
8672
8672
  "args": {},
8673
8673
  "deprecationReason": null,
8674
8674
  "description": null,
@@ -8769,7 +8769,7 @@
8769
8769
  "varName": "subnet"
8770
8770
  },
8771
8771
  "systemGroup": {
8772
- "alias": "systemGroupRefSystemGroup: systemGroup",
8772
+ "alias": "systemGroupSocketLanDestination: systemGroup",
8773
8773
  "args": {},
8774
8774
  "deprecationReason": null,
8775
8775
  "description": null,
@@ -8887,7 +8887,7 @@
8887
8887
  "varName": "socketLanDestination"
8888
8888
  },
8889
8889
  "direction": {
8890
- "alias": "socketLanDirectionDirection: direction",
8890
+ "alias": "directionSocketLanRule: direction",
8891
8891
  "args": {},
8892
8892
  "deprecationReason": null,
8893
8893
  "description": "Direction of the traffic initiator matching criteria. ",
@@ -8954,7 +8954,7 @@
8954
8954
  "varName": "enabled"
8955
8955
  },
8956
8956
  "firewall": {
8957
- "alias": "socketLanFirewallRulePayloadFirewall: firewall",
8957
+ "alias": "firewallSocketLanRule: firewall",
8958
8958
  "args": {},
8959
8959
  "deprecationReason": null,
8960
8960
  "description": null,
@@ -8971,7 +8971,7 @@
8971
8971
  "enumValues": null,
8972
8972
  "fields": {
8973
8973
  "audit": {
8974
- "alias": "policyElementAuditAudit: audit",
8974
+ "alias": "auditSocketLanFirewallRulePayload: audit",
8975
8975
  "args": {},
8976
8976
  "deprecationReason": null,
8977
8977
  "description": null,
@@ -9047,7 +9047,7 @@
9047
9047
  "varName": "policyElementAudit"
9048
9048
  },
9049
9049
  "properties": {
9050
- "alias": "policyElementPropertiesEnumProperties: properties",
9050
+ "alias": "propertiesSocketLanFirewallRulePayload: properties",
9051
9051
  "args": {},
9052
9052
  "deprecationReason": null,
9053
9053
  "description": null,
@@ -9125,7 +9125,7 @@
9125
9125
  "varName": "properties"
9126
9126
  },
9127
9127
  "rule": {
9128
- "alias": "socketLanFirewallRuleRule: rule",
9128
+ "alias": "ruleSocketLanFirewallRulePayload: rule",
9129
9129
  "args": {},
9130
9130
  "deprecationReason": null,
9131
9131
  "description": null,
@@ -9142,7 +9142,7 @@
9142
9142
  "enumValues": null,
9143
9143
  "fields": {
9144
9144
  "action": {
9145
- "alias": "socketLanFirewallActionAction: action",
9145
+ "alias": "actionSocketLanFirewallRule: action",
9146
9146
  "args": {},
9147
9147
  "deprecationReason": null,
9148
9148
  "description": "Action to take when the rule is matched (ALLOW or BLOCK).",
@@ -9188,7 +9188,7 @@
9188
9188
  "varName": "action"
9189
9189
  },
9190
9190
  "application": {
9191
- "alias": "socketLanFirewallApplicationApplication: application",
9191
+ "alias": "applicationSocketLanFirewallRule: application",
9192
9192
  "args": {},
9193
9193
  "deprecationReason": null,
9194
9194
  "description": "Application traffic matching criteria.",
@@ -9205,7 +9205,7 @@
9205
9205
  "enumValues": null,
9206
9206
  "fields": {
9207
9207
  "application": {
9208
- "alias": "applicationRefApplication: application",
9208
+ "alias": "applicationSocketLanFirewallApplication: application",
9209
9209
  "args": {},
9210
9210
  "deprecationReason": null,
9211
9211
  "description": "Applications matching criteria for this rule.",
@@ -9283,7 +9283,7 @@
9283
9283
  "varName": "applicationRef"
9284
9284
  },
9285
9285
  "customApp": {
9286
- "alias": "customApplicationRefCustomApp: customApp",
9286
+ "alias": "customAppSocketLanFirewallApplication: customApp",
9287
9287
  "args": {},
9288
9288
  "deprecationReason": null,
9289
9289
  "description": "Custom applications that can be matched by",
@@ -9407,7 +9407,7 @@
9407
9407
  "varName": "fqdn"
9408
9408
  },
9409
9409
  "globalIpRange": {
9410
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
9410
+ "alias": "globalIpRangeSocketLanFirewallApplication: globalIpRange",
9411
9411
  "args": {},
9412
9412
  "deprecationReason": null,
9413
9413
  "description": null,
@@ -9508,7 +9508,7 @@
9508
9508
  "varName": "ip"
9509
9509
  },
9510
9510
  "ipRange": {
9511
- "alias": "ipAddressRangeIpRange: ipRange",
9511
+ "alias": "ipRangeSocketLanFirewallApplication: ipRange",
9512
9512
  "args": {},
9513
9513
  "deprecationReason": null,
9514
9514
  "description": null,
@@ -9647,7 +9647,7 @@
9647
9647
  "varName": "description"
9648
9648
  },
9649
9649
  "destination": {
9650
- "alias": "socketLanFirewallDestinationDestination: destination",
9650
+ "alias": "destinationSocketLanFirewallRule: destination",
9651
9651
  "args": {},
9652
9652
  "deprecationReason": null,
9653
9653
  "description": "Defines destinations for the socket LAN firewall.\nAlso, inherited by Network Rule above.",
@@ -9664,7 +9664,7 @@
9664
9664
  "enumValues": null,
9665
9665
  "fields": {
9666
9666
  "floatingSubnet": {
9667
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
9667
+ "alias": "floatingSubnetSocketLanFirewallDestination: floatingSubnet",
9668
9668
  "args": {},
9669
9669
  "deprecationReason": null,
9670
9670
  "description": "Floating subnets used to identify traffic based on specific criteria.",
@@ -9742,7 +9742,7 @@
9742
9742
  "varName": "floatingSubnetRef"
9743
9743
  },
9744
9744
  "globalIpRange": {
9745
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
9745
+ "alias": "globalIpRangeSocketLanFirewallDestination: globalIpRange",
9746
9746
  "args": {},
9747
9747
  "deprecationReason": null,
9748
9748
  "description": "Global IP ranges defined for your account.",
@@ -9820,7 +9820,7 @@
9820
9820
  "varName": "globalIpRangeRef"
9821
9821
  },
9822
9822
  "group": {
9823
- "alias": "groupRefGroup: group",
9823
+ "alias": "groupSocketLanFirewallDestination: group",
9824
9824
  "args": {},
9825
9825
  "deprecationReason": null,
9826
9826
  "description": "Groups defined for your account.",
@@ -9898,7 +9898,7 @@
9898
9898
  "varName": "groupRef"
9899
9899
  },
9900
9900
  "host": {
9901
- "alias": "hostRefHost: host",
9901
+ "alias": "hostSocketLanFirewallDestination: host",
9902
9902
  "args": {},
9903
9903
  "deprecationReason": null,
9904
9904
  "description": "Hosts and servers defined for your account.",
@@ -9999,7 +9999,7 @@
9999
9999
  "varName": "ip"
10000
10000
  },
10001
10001
  "ipRange": {
10002
- "alias": "ipAddressRangeIpRange: ipRange",
10002
+ "alias": "ipRangeSocketLanFirewallDestination: ipRange",
10003
10003
  "args": {},
10004
10004
  "deprecationReason": null,
10005
10005
  "description": "Multiple separate IP addresses or an IP range.",
@@ -10077,7 +10077,7 @@
10077
10077
  "varName": "ipAddressRange"
10078
10078
  },
10079
10079
  "networkInterface": {
10080
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
10080
+ "alias": "networkInterfaceSocketLanFirewallDestination: networkInterface",
10081
10081
  "args": {},
10082
10082
  "deprecationReason": null,
10083
10083
  "description": "Network interfaces defined for your site.",
@@ -10155,7 +10155,7 @@
10155
10155
  "varName": "networkInterfaceRef"
10156
10156
  },
10157
10157
  "site": {
10158
- "alias": "siteRefSite: site",
10158
+ "alias": "siteSocketLanFirewallDestination: site",
10159
10159
  "args": {},
10160
10160
  "deprecationReason": null,
10161
10161
  "description": "Sites defined for your account.",
@@ -10233,7 +10233,7 @@
10233
10233
  "varName": "siteRef"
10234
10234
  },
10235
10235
  "siteNetworkSubnet": {
10236
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
10236
+ "alias": "siteNetworkSubnetSocketLanFirewallDestination: siteNetworkSubnet",
10237
10237
  "args": {},
10238
10238
  "deprecationReason": null,
10239
10239
  "description": "Subnets specific to a site defined for your account.",
@@ -10334,7 +10334,7 @@
10334
10334
  "varName": "subnet"
10335
10335
  },
10336
10336
  "systemGroup": {
10337
- "alias": "systemGroupRefSystemGroup: systemGroup",
10337
+ "alias": "systemGroupSocketLanFirewallDestination: systemGroup",
10338
10338
  "args": {},
10339
10339
  "deprecationReason": null,
10340
10340
  "description": "Predefined system groups in your account.",
@@ -10452,7 +10452,7 @@
10452
10452
  "varName": "socketLanFirewallDestination"
10453
10453
  },
10454
10454
  "direction": {
10455
- "alias": "socketLanFirewallDirectionDirection: direction",
10455
+ "alias": "directionSocketLanFirewallRule: direction",
10456
10456
  "args": {},
10457
10457
  "deprecationReason": null,
10458
10458
  "description": "Direction of the traffic (TO or BOTH).",
@@ -10582,7 +10582,7 @@
10582
10582
  "varName": "name"
10583
10583
  },
10584
10584
  "section": {
10585
- "alias": "policySectionInfoSection: section",
10585
+ "alias": "sectionSocketLanFirewallRule: section",
10586
10586
  "args": {},
10587
10587
  "deprecationReason": null,
10588
10588
  "description": "Policy section where the rule is located",
@@ -10658,7 +10658,7 @@
10658
10658
  "varName": "policySectionInfo"
10659
10659
  },
10660
10660
  "service": {
10661
- "alias": "socketLanFirewallServiceTypeService: service",
10661
+ "alias": "serviceSocketLanFirewallRule: service",
10662
10662
  "args": {},
10663
10663
  "deprecationReason": null,
10664
10664
  "description": "Service traffic matching criteria.",
@@ -10675,7 +10675,7 @@
10675
10675
  "enumValues": null,
10676
10676
  "fields": {
10677
10677
  "custom": {
10678
- "alias": "customServiceCustom: custom",
10678
+ "alias": "customSocketLanFirewallServiceType: custom",
10679
10679
  "args": {},
10680
10680
  "deprecationReason": null,
10681
10681
  "description": "Custom services defined for this rule.",
@@ -10714,7 +10714,7 @@
10714
10714
  "varName": "port"
10715
10715
  },
10716
10716
  "portRange": {
10717
- "alias": "portRangePortRange: portRange",
10717
+ "alias": "portRangeCustomService: portRange",
10718
10718
  "args": {},
10719
10719
  "deprecationReason": null,
10720
10720
  "description": null,
@@ -10789,7 +10789,7 @@
10789
10789
  "varName": "portRange"
10790
10790
  },
10791
10791
  "protocol": {
10792
- "alias": "ipProtocolProtocol: protocol",
10792
+ "alias": "protocolCustomService: protocol",
10793
10793
  "args": {},
10794
10794
  "deprecationReason": null,
10795
10795
  "description": null,
@@ -10872,7 +10872,7 @@
10872
10872
  "varName": "customService"
10873
10873
  },
10874
10874
  "simple": {
10875
- "alias": "simpleServiceSimple: simple",
10875
+ "alias": "simpleSocketLanFirewallServiceType: simple",
10876
10876
  "args": {},
10877
10877
  "deprecationReason": null,
10878
10878
  "description": "Simple services allowed by the firewall rule.",
@@ -10889,7 +10889,7 @@
10889
10889
  "enumValues": null,
10890
10890
  "fields": {
10891
10891
  "name": {
10892
- "alias": "simpleServiceTypeName: name",
10892
+ "alias": "nameSimpleService: name",
10893
10893
  "args": {},
10894
10894
  "deprecationReason": null,
10895
10895
  "description": null,
@@ -10996,7 +10996,7 @@
10996
10996
  "varName": "simpleService"
10997
10997
  },
10998
10998
  "standard": {
10999
- "alias": "serviceRefStandard: standard",
10999
+ "alias": "standardSocketLanFirewallServiceType: standard",
11000
11000
  "args": {},
11001
11001
  "deprecationReason": null,
11002
11002
  "description": "Standard services allowed by the firewall rule.",
@@ -11091,7 +11091,7 @@
11091
11091
  "varName": "socketLanFirewallServiceType"
11092
11092
  },
11093
11093
  "source": {
11094
- "alias": "socketLanFirewallSourceSource: source",
11094
+ "alias": "sourceSocketLanFirewallRule: source",
11095
11095
  "args": {},
11096
11096
  "deprecationReason": null,
11097
11097
  "description": "Defines sources for the socket LAN firewall.\nAlso, inherited by Network Rule above.",
@@ -11108,7 +11108,7 @@
11108
11108
  "enumValues": null,
11109
11109
  "fields": {
11110
11110
  "floatingSubnet": {
11111
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
11111
+ "alias": "floatingSubnetSocketLanFirewallSource: floatingSubnet",
11112
11112
  "args": {},
11113
11113
  "deprecationReason": null,
11114
11114
  "description": "Floating subnets used to identify traffic based on specific criteria.",
@@ -11186,7 +11186,7 @@
11186
11186
  "varName": "floatingSubnetRef"
11187
11187
  },
11188
11188
  "globalIpRange": {
11189
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
11189
+ "alias": "globalIpRangeSocketLanFirewallSource: globalIpRange",
11190
11190
  "args": {},
11191
11191
  "deprecationReason": null,
11192
11192
  "description": "Global IP ranges defined for your account.",
@@ -11264,7 +11264,7 @@
11264
11264
  "varName": "globalIpRangeRef"
11265
11265
  },
11266
11266
  "group": {
11267
- "alias": "groupRefGroup: group",
11267
+ "alias": "groupSocketLanFirewallSource: group",
11268
11268
  "args": {},
11269
11269
  "deprecationReason": null,
11270
11270
  "description": "Groups defined for your account.",
@@ -11342,7 +11342,7 @@
11342
11342
  "varName": "groupRef"
11343
11343
  },
11344
11344
  "host": {
11345
- "alias": "hostRefHost: host",
11345
+ "alias": "hostSocketLanFirewallSource: host",
11346
11346
  "args": {},
11347
11347
  "deprecationReason": null,
11348
11348
  "description": "Hosts and servers defined for your account.",
@@ -11443,7 +11443,7 @@
11443
11443
  "varName": "ip"
11444
11444
  },
11445
11445
  "ipRange": {
11446
- "alias": "ipAddressRangeIpRange: ipRange",
11446
+ "alias": "ipRangeSocketLanFirewallSource: ipRange",
11447
11447
  "args": {},
11448
11448
  "deprecationReason": null,
11449
11449
  "description": "Multiple separate IP addresses or an IP range.",
@@ -11544,7 +11544,7 @@
11544
11544
  "varName": "mac"
11545
11545
  },
11546
11546
  "networkInterface": {
11547
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
11547
+ "alias": "networkInterfaceSocketLanFirewallSource: networkInterface",
11548
11548
  "args": {},
11549
11549
  "deprecationReason": null,
11550
11550
  "description": "Network interfaces defined for your site.",
@@ -11622,7 +11622,7 @@
11622
11622
  "varName": "networkInterfaceRef"
11623
11623
  },
11624
11624
  "site": {
11625
- "alias": "siteRefSite: site",
11625
+ "alias": "siteSocketLanFirewallSource: site",
11626
11626
  "args": {},
11627
11627
  "deprecationReason": null,
11628
11628
  "description": "Sites defined for your account.",
@@ -11700,7 +11700,7 @@
11700
11700
  "varName": "siteRef"
11701
11701
  },
11702
11702
  "siteNetworkSubnet": {
11703
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
11703
+ "alias": "siteNetworkSubnetSocketLanFirewallSource: siteNetworkSubnet",
11704
11704
  "args": {},
11705
11705
  "deprecationReason": null,
11706
11706
  "description": "Subnets specific to a site defined for your account.",
@@ -11801,7 +11801,7 @@
11801
11801
  "varName": "subnet"
11802
11802
  },
11803
11803
  "systemGroup": {
11804
- "alias": "systemGroupRefSystemGroup: systemGroup",
11804
+ "alias": "systemGroupSocketLanFirewallSource: systemGroup",
11805
11805
  "args": {},
11806
11806
  "deprecationReason": null,
11807
11807
  "description": "Predefined system groups in your account.",
@@ -11919,7 +11919,7 @@
11919
11919
  "varName": "socketLanFirewallSource"
11920
11920
  },
11921
11921
  "tracking": {
11922
- "alias": "policyTrackingTracking: tracking",
11922
+ "alias": "trackingSocketLanFirewallRule: tracking",
11923
11923
  "args": {},
11924
11924
  "deprecationReason": null,
11925
11925
  "description": "Tracking information when the rule is matched, such as events and notifications.",
@@ -11936,7 +11936,7 @@
11936
11936
  "enumValues": null,
11937
11937
  "fields": {
11938
11938
  "alert": {
11939
- "alias": "policyRuleTrackingAlertAlert: alert",
11939
+ "alias": "alertPolicyTracking: alert",
11940
11940
  "args": {},
11941
11941
  "deprecationReason": null,
11942
11942
  "description": null,
@@ -11974,7 +11974,7 @@
11974
11974
  "varName": "enabled"
11975
11975
  },
11976
11976
  "frequency": {
11977
- "alias": "policyRuleTrackingFrequencyEnumFrequency: frequency",
11977
+ "alias": "frequencyPolicyRuleTrackingAlert: frequency",
11978
11978
  "args": {},
11979
11979
  "deprecationReason": null,
11980
11980
  "description": "Returns data for the alert frequency",
@@ -12032,7 +12032,7 @@
12032
12032
  "varName": "frequency"
12033
12033
  },
12034
12034
  "mailingList": {
12035
- "alias": "subscriptionMailingListRefMailingList: mailingList",
12035
+ "alias": "mailingListPolicyRuleTrackingAlert: mailingList",
12036
12036
  "args": {},
12037
12037
  "deprecationReason": null,
12038
12038
  "description": "Returns data for the Mailing List that receives the alert",
@@ -12110,7 +12110,7 @@
12110
12110
  "varName": "subscriptionMailingListRef"
12111
12111
  },
12112
12112
  "subscriptionGroup": {
12113
- "alias": "subscriptionGroupRefSubscriptionGroup: subscriptionGroup",
12113
+ "alias": "subscriptionGroupPolicyRuleTrackingAlert: subscriptionGroup",
12114
12114
  "args": {},
12115
12115
  "deprecationReason": null,
12116
12116
  "description": "Returns data for the Subscription Group that receives the alert",
@@ -12188,7 +12188,7 @@
12188
12188
  "varName": "subscriptionGroupRef"
12189
12189
  },
12190
12190
  "webhook": {
12191
- "alias": "subscriptionWebhookRefWebhook: webhook",
12191
+ "alias": "webhookPolicyRuleTrackingAlert: webhook",
12192
12192
  "args": {},
12193
12193
  "deprecationReason": null,
12194
12194
  "description": "Returns data for the Webhook that receives the alert",
@@ -12283,7 +12283,7 @@
12283
12283
  "varName": "policyRuleTrackingAlert"
12284
12284
  },
12285
12285
  "event": {
12286
- "alias": "policyRuleTrackingEventEvent: event",
12286
+ "alias": "eventPolicyTracking: event",
12287
12287
  "args": {},
12288
12288
  "deprecationReason": null,
12289
12289
  "description": null,
@@ -12454,7 +12454,7 @@
12454
12454
  "varName": "name"
12455
12455
  },
12456
12456
  "nat": {
12457
- "alias": "socketLanNatSettingsNat: nat",
12457
+ "alias": "natSocketLanRule: nat",
12458
12458
  "args": {},
12459
12459
  "deprecationReason": null,
12460
12460
  "description": "Optionally, enable NAT on the outgoing interface. This translates all originating IPs to one NAT IP.",
@@ -12492,7 +12492,7 @@
12492
12492
  "varName": "enabled"
12493
12493
  },
12494
12494
  "natType": {
12495
- "alias": "socketLanNatTypeNatType: natType",
12495
+ "alias": "natTypeSocketLanNatSettings: natType",
12496
12496
  "args": {},
12497
12497
  "deprecationReason": null,
12498
12498
  "description": null,
@@ -12549,7 +12549,7 @@
12549
12549
  "varName": "socketLanNatSettings"
12550
12550
  },
12551
12551
  "section": {
12552
- "alias": "policySectionInfoSection: section",
12552
+ "alias": "sectionSocketLanRule: section",
12553
12553
  "args": {},
12554
12554
  "deprecationReason": null,
12555
12555
  "description": "Policy section where the rule is located",
@@ -12625,7 +12625,7 @@
12625
12625
  "varName": "policySectionInfo"
12626
12626
  },
12627
12627
  "service": {
12628
- "alias": "socketLanServiceService: service",
12628
+ "alias": "serviceSocketLanRule: service",
12629
12629
  "args": {},
12630
12630
  "deprecationReason": null,
12631
12631
  "description": "Destination service matching criteria for the rule. Port/Protocol based.",
@@ -12642,7 +12642,7 @@
12642
12642
  "enumValues": null,
12643
12643
  "fields": {
12644
12644
  "custom": {
12645
- "alias": "customServiceCustom: custom",
12645
+ "alias": "customSocketLanService: custom",
12646
12646
  "args": {},
12647
12647
  "deprecationReason": null,
12648
12648
  "description": "Custom Port/Protocol service.",
@@ -12681,7 +12681,7 @@
12681
12681
  "varName": "port"
12682
12682
  },
12683
12683
  "portRange": {
12684
- "alias": "portRangePortRange: portRange",
12684
+ "alias": "portRangeCustomService: portRange",
12685
12685
  "args": {},
12686
12686
  "deprecationReason": null,
12687
12687
  "description": null,
@@ -12756,7 +12756,7 @@
12756
12756
  "varName": "portRange"
12757
12757
  },
12758
12758
  "protocol": {
12759
- "alias": "ipProtocolProtocol: protocol",
12759
+ "alias": "protocolCustomService: protocol",
12760
12760
  "args": {},
12761
12761
  "deprecationReason": null,
12762
12762
  "description": null,
@@ -12839,7 +12839,7 @@
12839
12839
  "varName": "customService"
12840
12840
  },
12841
12841
  "simple": {
12842
- "alias": "simpleServiceSimple: simple",
12842
+ "alias": "simpleSocketLanService: simple",
12843
12843
  "args": {},
12844
12844
  "deprecationReason": null,
12845
12845
  "description": "List of L4 based services.",
@@ -12856,7 +12856,7 @@
12856
12856
  "enumValues": null,
12857
12857
  "fields": {
12858
12858
  "name": {
12859
- "alias": "simpleServiceTypeName: name",
12859
+ "alias": "nameSimpleService: name",
12860
12860
  "args": {},
12861
12861
  "deprecationReason": null,
12862
12862
  "description": null,
@@ -12980,7 +12980,7 @@
12980
12980
  "varName": "socketLanService"
12981
12981
  },
12982
12982
  "site": {
12983
- "alias": "socketLanSiteSite: site",
12983
+ "alias": "siteSocketLanRule: site",
12984
12984
  "args": {},
12985
12985
  "deprecationReason": null,
12986
12986
  "description": "The sites the policy will be enforced on.\nSocket sites only, with Socket v22 onwards.",
@@ -12997,7 +12997,7 @@
12997
12997
  "enumValues": null,
12998
12998
  "fields": {
12999
12999
  "group": {
13000
- "alias": "groupRefGroup: group",
13000
+ "alias": "groupSocketLanSite: group",
13001
13001
  "args": {},
13002
13002
  "deprecationReason": null,
13003
13003
  "description": "The group of sites the policy will be enforced on.\nSocket sites only, with Socket v22 onwards.",
@@ -13075,7 +13075,7 @@
13075
13075
  "varName": "groupRef"
13076
13076
  },
13077
13077
  "site": {
13078
- "alias": "siteRefSite: site",
13078
+ "alias": "siteSocketLanSite: site",
13079
13079
  "args": {},
13080
13080
  "deprecationReason": null,
13081
13081
  "description": "The sites the policy will be enforced on.\nSocket sites only, with Socket v22 onwards.",
@@ -13170,7 +13170,7 @@
13170
13170
  "varName": "socketLanSite"
13171
13171
  },
13172
13172
  "source": {
13173
- "alias": "socketLanSourceSource: source",
13173
+ "alias": "sourceSocketLanRule: source",
13174
13174
  "args": {},
13175
13175
  "deprecationReason": null,
13176
13176
  "description": "Source traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -13187,7 +13187,7 @@
13187
13187
  "enumValues": null,
13188
13188
  "fields": {
13189
13189
  "floatingSubnet": {
13190
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
13190
+ "alias": "floatingSubnetSocketLanSource: floatingSubnet",
13191
13191
  "args": {},
13192
13192
  "deprecationReason": null,
13193
13193
  "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.",
@@ -13265,7 +13265,7 @@
13265
13265
  "varName": "floatingSubnetRef"
13266
13266
  },
13267
13267
  "globalIpRange": {
13268
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
13268
+ "alias": "globalIpRangeSocketLanSource: globalIpRange",
13269
13269
  "args": {},
13270
13270
  "deprecationReason": null,
13271
13271
  "description": "Globally defined IP range, IP and subnet objects.",
@@ -13343,7 +13343,7 @@
13343
13343
  "varName": "globalIpRangeRef"
13344
13344
  },
13345
13345
  "group": {
13346
- "alias": "groupRefGroup: group",
13346
+ "alias": "groupSocketLanSource: group",
13347
13347
  "args": {},
13348
13348
  "deprecationReason": null,
13349
13349
  "description": "Predefined Cato groups, Socket sites/objects only.",
@@ -13421,7 +13421,7 @@
13421
13421
  "varName": "groupRef"
13422
13422
  },
13423
13423
  "host": {
13424
- "alias": "hostRefHost: host",
13424
+ "alias": "hostSocketLanSource: host",
13425
13425
  "args": {},
13426
13426
  "deprecationReason": null,
13427
13427
  "description": "Hosts and servers defined for your under Socket sites.",
@@ -13522,7 +13522,7 @@
13522
13522
  "varName": "ip"
13523
13523
  },
13524
13524
  "ipRange": {
13525
- "alias": "ipAddressRangeIpRange: ipRange",
13525
+ "alias": "ipRangeSocketLanSource: ipRange",
13526
13526
  "args": {},
13527
13527
  "deprecationReason": null,
13528
13528
  "description": "Multiple separate IP addresses or an IP range.",
@@ -13600,7 +13600,7 @@
13600
13600
  "varName": "ipAddressRange"
13601
13601
  },
13602
13602
  "networkInterface": {
13603
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
13603
+ "alias": "networkInterfaceSocketLanSource: networkInterface",
13604
13604
  "args": {},
13605
13605
  "deprecationReason": null,
13606
13606
  "description": "Network range defined for a site.",
@@ -13678,7 +13678,7 @@
13678
13678
  "varName": "networkInterfaceRef"
13679
13679
  },
13680
13680
  "siteNetworkSubnet": {
13681
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
13681
+ "alias": "siteNetworkSubnetSocketLanSource: siteNetworkSubnet",
13682
13682
  "args": {},
13683
13683
  "deprecationReason": null,
13684
13684
  "description": "GlobalRange + InterfaceSubnet",
@@ -13779,7 +13779,7 @@
13779
13779
  "varName": "subnet"
13780
13780
  },
13781
13781
  "systemGroup": {
13782
- "alias": "systemGroupRefSystemGroup: systemGroup",
13782
+ "alias": "systemGroupSocketLanSource: systemGroup",
13783
13783
  "args": {},
13784
13784
  "deprecationReason": null,
13785
13785
  "description": "Predefined Cato groups.",
@@ -13897,7 +13897,7 @@
13897
13897
  "varName": "socketLanSource"
13898
13898
  },
13899
13899
  "transport": {
13900
- "alias": "socketLanTransportTypeTransport: transport",
13900
+ "alias": "transportSocketLanRule: transport",
13901
13901
  "args": {},
13902
13902
  "deprecationReason": null,
13903
13903
  "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.",
@@ -13976,7 +13976,7 @@
13976
13976
  "varName": "socketLanRulePayload"
13977
13977
  },
13978
13978
  "status": {
13979
- "alias": "policyMutationStatusStatus: status",
13979
+ "alias": "statusSocketLanRuleMutationPayload: status",
13980
13980
  "args": {},
13981
13981
  "deprecationReason": null,
13982
13982
  "description": null,