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
@@ -554,7 +554,7 @@
554
554
  "enumValues": null,
555
555
  "fields": {
556
556
  "errors": {
557
- "alias": "policyMutationErrorErrors: errors",
557
+ "alias": "errorsSocketLanRuleMutationPayload: errors",
558
558
  "args": {},
559
559
  "deprecationReason": null,
560
560
  "description": null,
@@ -630,7 +630,7 @@
630
630
  "varName": "policyMutationError"
631
631
  },
632
632
  "rule": {
633
- "alias": "socketLanRulePayloadRule: rule",
633
+ "alias": "ruleSocketLanRuleMutationPayload: rule",
634
634
  "args": {},
635
635
  "deprecationReason": null,
636
636
  "description": null,
@@ -836,7 +836,7 @@
836
836
  "varName": "description"
837
837
  },
838
838
  "destination": {
839
- "alias": "socketLanDestinationDestination: destination",
839
+ "alias": "destinationSocketLanRule: destination",
840
840
  "args": {},
841
841
  "deprecationReason": null,
842
842
  "description": "Destination traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -853,7 +853,7 @@
853
853
  "enumValues": null,
854
854
  "fields": {
855
855
  "floatingSubnet": {
856
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
856
+ "alias": "floatingSubnetSocketLanDestination: floatingSubnet",
857
857
  "args": {},
858
858
  "deprecationReason": null,
859
859
  "description": null,
@@ -931,7 +931,7 @@
931
931
  "varName": "floatingSubnetRef"
932
932
  },
933
933
  "globalIpRange": {
934
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
934
+ "alias": "globalIpRangeSocketLanDestination: globalIpRange",
935
935
  "args": {},
936
936
  "deprecationReason": null,
937
937
  "description": null,
@@ -1009,7 +1009,7 @@
1009
1009
  "varName": "globalIpRangeRef"
1010
1010
  },
1011
1011
  "group": {
1012
- "alias": "groupRefGroup: group",
1012
+ "alias": "groupSocketLanDestination: group",
1013
1013
  "args": {},
1014
1014
  "deprecationReason": null,
1015
1015
  "description": null,
@@ -1087,7 +1087,7 @@
1087
1087
  "varName": "groupRef"
1088
1088
  },
1089
1089
  "host": {
1090
- "alias": "hostRefHost: host",
1090
+ "alias": "hostSocketLanDestination: host",
1091
1091
  "args": {},
1092
1092
  "deprecationReason": null,
1093
1093
  "description": null,
@@ -1188,7 +1188,7 @@
1188
1188
  "varName": "ip"
1189
1189
  },
1190
1190
  "ipRange": {
1191
- "alias": "ipAddressRangeIpRange: ipRange",
1191
+ "alias": "ipRangeSocketLanDestination: ipRange",
1192
1192
  "args": {},
1193
1193
  "deprecationReason": null,
1194
1194
  "description": null,
@@ -1266,7 +1266,7 @@
1266
1266
  "varName": "ipAddressRange"
1267
1267
  },
1268
1268
  "networkInterface": {
1269
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
1269
+ "alias": "networkInterfaceSocketLanDestination: networkInterface",
1270
1270
  "args": {},
1271
1271
  "deprecationReason": null,
1272
1272
  "description": null,
@@ -1344,7 +1344,7 @@
1344
1344
  "varName": "networkInterfaceRef"
1345
1345
  },
1346
1346
  "siteNetworkSubnet": {
1347
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
1347
+ "alias": "siteNetworkSubnetSocketLanDestination: siteNetworkSubnet",
1348
1348
  "args": {},
1349
1349
  "deprecationReason": null,
1350
1350
  "description": null,
@@ -1445,7 +1445,7 @@
1445
1445
  "varName": "subnet"
1446
1446
  },
1447
1447
  "systemGroup": {
1448
- "alias": "systemGroupRefSystemGroup: systemGroup",
1448
+ "alias": "systemGroupSocketLanDestination: systemGroup",
1449
1449
  "args": {},
1450
1450
  "deprecationReason": null,
1451
1451
  "description": null,
@@ -1563,7 +1563,7 @@
1563
1563
  "varName": "socketLanDestination"
1564
1564
  },
1565
1565
  "direction": {
1566
- "alias": "socketLanDirectionDirection: direction",
1566
+ "alias": "directionSocketLanRule: direction",
1567
1567
  "args": {},
1568
1568
  "deprecationReason": null,
1569
1569
  "description": "Direction of the traffic initiator matching criteria. ",
@@ -1630,7 +1630,7 @@
1630
1630
  "varName": "enabled"
1631
1631
  },
1632
1632
  "firewall": {
1633
- "alias": "socketLanFirewallRulePayloadFirewall: firewall",
1633
+ "alias": "firewallSocketLanRule: firewall",
1634
1634
  "args": {},
1635
1635
  "deprecationReason": null,
1636
1636
  "description": null,
@@ -1647,7 +1647,7 @@
1647
1647
  "enumValues": null,
1648
1648
  "fields": {
1649
1649
  "audit": {
1650
- "alias": "policyElementAuditAudit: audit",
1650
+ "alias": "auditSocketLanFirewallRulePayload: audit",
1651
1651
  "args": {},
1652
1652
  "deprecationReason": null,
1653
1653
  "description": null,
@@ -1723,7 +1723,7 @@
1723
1723
  "varName": "policyElementAudit"
1724
1724
  },
1725
1725
  "properties": {
1726
- "alias": "policyElementPropertiesEnumProperties: properties",
1726
+ "alias": "propertiesSocketLanFirewallRulePayload: properties",
1727
1727
  "args": {},
1728
1728
  "deprecationReason": null,
1729
1729
  "description": null,
@@ -1801,7 +1801,7 @@
1801
1801
  "varName": "properties"
1802
1802
  },
1803
1803
  "rule": {
1804
- "alias": "socketLanFirewallRuleRule: rule",
1804
+ "alias": "ruleSocketLanFirewallRulePayload: rule",
1805
1805
  "args": {},
1806
1806
  "deprecationReason": null,
1807
1807
  "description": null,
@@ -1818,7 +1818,7 @@
1818
1818
  "enumValues": null,
1819
1819
  "fields": {
1820
1820
  "action": {
1821
- "alias": "socketLanFirewallActionAction: action",
1821
+ "alias": "actionSocketLanFirewallRule: action",
1822
1822
  "args": {},
1823
1823
  "deprecationReason": null,
1824
1824
  "description": "Action to take when the rule is matched (ALLOW or BLOCK).",
@@ -1864,7 +1864,7 @@
1864
1864
  "varName": "action"
1865
1865
  },
1866
1866
  "application": {
1867
- "alias": "socketLanFirewallApplicationApplication: application",
1867
+ "alias": "applicationSocketLanFirewallRule: application",
1868
1868
  "args": {},
1869
1869
  "deprecationReason": null,
1870
1870
  "description": "Application traffic matching criteria.",
@@ -1881,7 +1881,7 @@
1881
1881
  "enumValues": null,
1882
1882
  "fields": {
1883
1883
  "application": {
1884
- "alias": "applicationRefApplication: application",
1884
+ "alias": "applicationSocketLanFirewallApplication: application",
1885
1885
  "args": {},
1886
1886
  "deprecationReason": null,
1887
1887
  "description": "Applications matching criteria for this rule.",
@@ -1959,7 +1959,7 @@
1959
1959
  "varName": "applicationRef"
1960
1960
  },
1961
1961
  "customApp": {
1962
- "alias": "customApplicationRefCustomApp: customApp",
1962
+ "alias": "customAppSocketLanFirewallApplication: customApp",
1963
1963
  "args": {},
1964
1964
  "deprecationReason": null,
1965
1965
  "description": "Custom applications that can be matched by",
@@ -2083,7 +2083,7 @@
2083
2083
  "varName": "fqdn"
2084
2084
  },
2085
2085
  "globalIpRange": {
2086
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
2086
+ "alias": "globalIpRangeSocketLanFirewallApplication: globalIpRange",
2087
2087
  "args": {},
2088
2088
  "deprecationReason": null,
2089
2089
  "description": null,
@@ -2184,7 +2184,7 @@
2184
2184
  "varName": "ip"
2185
2185
  },
2186
2186
  "ipRange": {
2187
- "alias": "ipAddressRangeIpRange: ipRange",
2187
+ "alias": "ipRangeSocketLanFirewallApplication: ipRange",
2188
2188
  "args": {},
2189
2189
  "deprecationReason": null,
2190
2190
  "description": null,
@@ -2323,7 +2323,7 @@
2323
2323
  "varName": "description"
2324
2324
  },
2325
2325
  "destination": {
2326
- "alias": "socketLanFirewallDestinationDestination: destination",
2326
+ "alias": "destinationSocketLanFirewallRule: destination",
2327
2327
  "args": {},
2328
2328
  "deprecationReason": null,
2329
2329
  "description": "Defines destinations for the socket LAN firewall.\nAlso, inherited by Network Rule above.",
@@ -2340,7 +2340,7 @@
2340
2340
  "enumValues": null,
2341
2341
  "fields": {
2342
2342
  "floatingSubnet": {
2343
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
2343
+ "alias": "floatingSubnetSocketLanFirewallDestination: floatingSubnet",
2344
2344
  "args": {},
2345
2345
  "deprecationReason": null,
2346
2346
  "description": "Floating subnets used to identify traffic based on specific criteria.",
@@ -2418,7 +2418,7 @@
2418
2418
  "varName": "floatingSubnetRef"
2419
2419
  },
2420
2420
  "globalIpRange": {
2421
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
2421
+ "alias": "globalIpRangeSocketLanFirewallDestination: globalIpRange",
2422
2422
  "args": {},
2423
2423
  "deprecationReason": null,
2424
2424
  "description": "Global IP ranges defined for your account.",
@@ -2496,7 +2496,7 @@
2496
2496
  "varName": "globalIpRangeRef"
2497
2497
  },
2498
2498
  "group": {
2499
- "alias": "groupRefGroup: group",
2499
+ "alias": "groupSocketLanFirewallDestination: group",
2500
2500
  "args": {},
2501
2501
  "deprecationReason": null,
2502
2502
  "description": "Groups defined for your account.",
@@ -2574,7 +2574,7 @@
2574
2574
  "varName": "groupRef"
2575
2575
  },
2576
2576
  "host": {
2577
- "alias": "hostRefHost: host",
2577
+ "alias": "hostSocketLanFirewallDestination: host",
2578
2578
  "args": {},
2579
2579
  "deprecationReason": null,
2580
2580
  "description": "Hosts and servers defined for your account.",
@@ -2675,7 +2675,7 @@
2675
2675
  "varName": "ip"
2676
2676
  },
2677
2677
  "ipRange": {
2678
- "alias": "ipAddressRangeIpRange: ipRange",
2678
+ "alias": "ipRangeSocketLanFirewallDestination: ipRange",
2679
2679
  "args": {},
2680
2680
  "deprecationReason": null,
2681
2681
  "description": "Multiple separate IP addresses or an IP range.",
@@ -2753,7 +2753,7 @@
2753
2753
  "varName": "ipAddressRange"
2754
2754
  },
2755
2755
  "networkInterface": {
2756
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
2756
+ "alias": "networkInterfaceSocketLanFirewallDestination: networkInterface",
2757
2757
  "args": {},
2758
2758
  "deprecationReason": null,
2759
2759
  "description": "Network interfaces defined for your site.",
@@ -2831,7 +2831,7 @@
2831
2831
  "varName": "networkInterfaceRef"
2832
2832
  },
2833
2833
  "site": {
2834
- "alias": "siteRefSite: site",
2834
+ "alias": "siteSocketLanFirewallDestination: site",
2835
2835
  "args": {},
2836
2836
  "deprecationReason": null,
2837
2837
  "description": "Sites defined for your account.",
@@ -2909,7 +2909,7 @@
2909
2909
  "varName": "siteRef"
2910
2910
  },
2911
2911
  "siteNetworkSubnet": {
2912
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
2912
+ "alias": "siteNetworkSubnetSocketLanFirewallDestination: siteNetworkSubnet",
2913
2913
  "args": {},
2914
2914
  "deprecationReason": null,
2915
2915
  "description": "Subnets specific to a site defined for your account.",
@@ -3010,7 +3010,7 @@
3010
3010
  "varName": "subnet"
3011
3011
  },
3012
3012
  "systemGroup": {
3013
- "alias": "systemGroupRefSystemGroup: systemGroup",
3013
+ "alias": "systemGroupSocketLanFirewallDestination: systemGroup",
3014
3014
  "args": {},
3015
3015
  "deprecationReason": null,
3016
3016
  "description": "Predefined system groups in your account.",
@@ -3128,7 +3128,7 @@
3128
3128
  "varName": "socketLanFirewallDestination"
3129
3129
  },
3130
3130
  "direction": {
3131
- "alias": "socketLanFirewallDirectionDirection: direction",
3131
+ "alias": "directionSocketLanFirewallRule: direction",
3132
3132
  "args": {},
3133
3133
  "deprecationReason": null,
3134
3134
  "description": "Direction of the traffic (TO or BOTH).",
@@ -3258,7 +3258,7 @@
3258
3258
  "varName": "name"
3259
3259
  },
3260
3260
  "section": {
3261
- "alias": "policySectionInfoSection: section",
3261
+ "alias": "sectionSocketLanFirewallRule: section",
3262
3262
  "args": {},
3263
3263
  "deprecationReason": null,
3264
3264
  "description": "Policy section where the rule is located",
@@ -3334,7 +3334,7 @@
3334
3334
  "varName": "policySectionInfo"
3335
3335
  },
3336
3336
  "service": {
3337
- "alias": "socketLanFirewallServiceTypeService: service",
3337
+ "alias": "serviceSocketLanFirewallRule: service",
3338
3338
  "args": {},
3339
3339
  "deprecationReason": null,
3340
3340
  "description": "Service traffic matching criteria.",
@@ -3351,7 +3351,7 @@
3351
3351
  "enumValues": null,
3352
3352
  "fields": {
3353
3353
  "custom": {
3354
- "alias": "customServiceCustom: custom",
3354
+ "alias": "customSocketLanFirewallServiceType: custom",
3355
3355
  "args": {},
3356
3356
  "deprecationReason": null,
3357
3357
  "description": "Custom services defined for this rule.",
@@ -3390,7 +3390,7 @@
3390
3390
  "varName": "port"
3391
3391
  },
3392
3392
  "portRange": {
3393
- "alias": "portRangePortRange: portRange",
3393
+ "alias": "portRangeCustomService: portRange",
3394
3394
  "args": {},
3395
3395
  "deprecationReason": null,
3396
3396
  "description": null,
@@ -3465,7 +3465,7 @@
3465
3465
  "varName": "portRange"
3466
3466
  },
3467
3467
  "protocol": {
3468
- "alias": "ipProtocolProtocol: protocol",
3468
+ "alias": "protocolCustomService: protocol",
3469
3469
  "args": {},
3470
3470
  "deprecationReason": null,
3471
3471
  "description": null,
@@ -3548,7 +3548,7 @@
3548
3548
  "varName": "customService"
3549
3549
  },
3550
3550
  "simple": {
3551
- "alias": "simpleServiceSimple: simple",
3551
+ "alias": "simpleSocketLanFirewallServiceType: simple",
3552
3552
  "args": {},
3553
3553
  "deprecationReason": null,
3554
3554
  "description": "Simple services allowed by the firewall rule.",
@@ -3565,7 +3565,7 @@
3565
3565
  "enumValues": null,
3566
3566
  "fields": {
3567
3567
  "name": {
3568
- "alias": "simpleServiceTypeName: name",
3568
+ "alias": "nameSimpleService: name",
3569
3569
  "args": {},
3570
3570
  "deprecationReason": null,
3571
3571
  "description": null,
@@ -3672,7 +3672,7 @@
3672
3672
  "varName": "simpleService"
3673
3673
  },
3674
3674
  "standard": {
3675
- "alias": "serviceRefStandard: standard",
3675
+ "alias": "standardSocketLanFirewallServiceType: standard",
3676
3676
  "args": {},
3677
3677
  "deprecationReason": null,
3678
3678
  "description": "Standard services allowed by the firewall rule.",
@@ -3767,7 +3767,7 @@
3767
3767
  "varName": "socketLanFirewallServiceType"
3768
3768
  },
3769
3769
  "source": {
3770
- "alias": "socketLanFirewallSourceSource: source",
3770
+ "alias": "sourceSocketLanFirewallRule: source",
3771
3771
  "args": {},
3772
3772
  "deprecationReason": null,
3773
3773
  "description": "Defines sources for the socket LAN firewall.\nAlso, inherited by Network Rule above.",
@@ -3784,7 +3784,7 @@
3784
3784
  "enumValues": null,
3785
3785
  "fields": {
3786
3786
  "floatingSubnet": {
3787
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
3787
+ "alias": "floatingSubnetSocketLanFirewallSource: floatingSubnet",
3788
3788
  "args": {},
3789
3789
  "deprecationReason": null,
3790
3790
  "description": "Floating subnets used to identify traffic based on specific criteria.",
@@ -3862,7 +3862,7 @@
3862
3862
  "varName": "floatingSubnetRef"
3863
3863
  },
3864
3864
  "globalIpRange": {
3865
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
3865
+ "alias": "globalIpRangeSocketLanFirewallSource: globalIpRange",
3866
3866
  "args": {},
3867
3867
  "deprecationReason": null,
3868
3868
  "description": "Global IP ranges defined for your account.",
@@ -3940,7 +3940,7 @@
3940
3940
  "varName": "globalIpRangeRef"
3941
3941
  },
3942
3942
  "group": {
3943
- "alias": "groupRefGroup: group",
3943
+ "alias": "groupSocketLanFirewallSource: group",
3944
3944
  "args": {},
3945
3945
  "deprecationReason": null,
3946
3946
  "description": "Groups defined for your account.",
@@ -4018,7 +4018,7 @@
4018
4018
  "varName": "groupRef"
4019
4019
  },
4020
4020
  "host": {
4021
- "alias": "hostRefHost: host",
4021
+ "alias": "hostSocketLanFirewallSource: host",
4022
4022
  "args": {},
4023
4023
  "deprecationReason": null,
4024
4024
  "description": "Hosts and servers defined for your account.",
@@ -4119,7 +4119,7 @@
4119
4119
  "varName": "ip"
4120
4120
  },
4121
4121
  "ipRange": {
4122
- "alias": "ipAddressRangeIpRange: ipRange",
4122
+ "alias": "ipRangeSocketLanFirewallSource: ipRange",
4123
4123
  "args": {},
4124
4124
  "deprecationReason": null,
4125
4125
  "description": "Multiple separate IP addresses or an IP range.",
@@ -4220,7 +4220,7 @@
4220
4220
  "varName": "mac"
4221
4221
  },
4222
4222
  "networkInterface": {
4223
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
4223
+ "alias": "networkInterfaceSocketLanFirewallSource: networkInterface",
4224
4224
  "args": {},
4225
4225
  "deprecationReason": null,
4226
4226
  "description": "Network interfaces defined for your site.",
@@ -4298,7 +4298,7 @@
4298
4298
  "varName": "networkInterfaceRef"
4299
4299
  },
4300
4300
  "site": {
4301
- "alias": "siteRefSite: site",
4301
+ "alias": "siteSocketLanFirewallSource: site",
4302
4302
  "args": {},
4303
4303
  "deprecationReason": null,
4304
4304
  "description": "Sites defined for your account.",
@@ -4376,7 +4376,7 @@
4376
4376
  "varName": "siteRef"
4377
4377
  },
4378
4378
  "siteNetworkSubnet": {
4379
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
4379
+ "alias": "siteNetworkSubnetSocketLanFirewallSource: siteNetworkSubnet",
4380
4380
  "args": {},
4381
4381
  "deprecationReason": null,
4382
4382
  "description": "Subnets specific to a site defined for your account.",
@@ -4477,7 +4477,7 @@
4477
4477
  "varName": "subnet"
4478
4478
  },
4479
4479
  "systemGroup": {
4480
- "alias": "systemGroupRefSystemGroup: systemGroup",
4480
+ "alias": "systemGroupSocketLanFirewallSource: systemGroup",
4481
4481
  "args": {},
4482
4482
  "deprecationReason": null,
4483
4483
  "description": "Predefined system groups in your account.",
@@ -4595,7 +4595,7 @@
4595
4595
  "varName": "socketLanFirewallSource"
4596
4596
  },
4597
4597
  "tracking": {
4598
- "alias": "policyTrackingTracking: tracking",
4598
+ "alias": "trackingSocketLanFirewallRule: tracking",
4599
4599
  "args": {},
4600
4600
  "deprecationReason": null,
4601
4601
  "description": "Tracking information when the rule is matched, such as events and notifications.",
@@ -4612,7 +4612,7 @@
4612
4612
  "enumValues": null,
4613
4613
  "fields": {
4614
4614
  "alert": {
4615
- "alias": "policyRuleTrackingAlertAlert: alert",
4615
+ "alias": "alertPolicyTracking: alert",
4616
4616
  "args": {},
4617
4617
  "deprecationReason": null,
4618
4618
  "description": null,
@@ -4650,7 +4650,7 @@
4650
4650
  "varName": "enabled"
4651
4651
  },
4652
4652
  "frequency": {
4653
- "alias": "policyRuleTrackingFrequencyEnumFrequency: frequency",
4653
+ "alias": "frequencyPolicyRuleTrackingAlert: frequency",
4654
4654
  "args": {},
4655
4655
  "deprecationReason": null,
4656
4656
  "description": "Returns data for the alert frequency",
@@ -4708,7 +4708,7 @@
4708
4708
  "varName": "frequency"
4709
4709
  },
4710
4710
  "mailingList": {
4711
- "alias": "subscriptionMailingListRefMailingList: mailingList",
4711
+ "alias": "mailingListPolicyRuleTrackingAlert: mailingList",
4712
4712
  "args": {},
4713
4713
  "deprecationReason": null,
4714
4714
  "description": "Returns data for the Mailing List that receives the alert",
@@ -4786,7 +4786,7 @@
4786
4786
  "varName": "subscriptionMailingListRef"
4787
4787
  },
4788
4788
  "subscriptionGroup": {
4789
- "alias": "subscriptionGroupRefSubscriptionGroup: subscriptionGroup",
4789
+ "alias": "subscriptionGroupPolicyRuleTrackingAlert: subscriptionGroup",
4790
4790
  "args": {},
4791
4791
  "deprecationReason": null,
4792
4792
  "description": "Returns data for the Subscription Group that receives the alert",
@@ -4864,7 +4864,7 @@
4864
4864
  "varName": "subscriptionGroupRef"
4865
4865
  },
4866
4866
  "webhook": {
4867
- "alias": "subscriptionWebhookRefWebhook: webhook",
4867
+ "alias": "webhookPolicyRuleTrackingAlert: webhook",
4868
4868
  "args": {},
4869
4869
  "deprecationReason": null,
4870
4870
  "description": "Returns data for the Webhook that receives the alert",
@@ -4959,7 +4959,7 @@
4959
4959
  "varName": "policyRuleTrackingAlert"
4960
4960
  },
4961
4961
  "event": {
4962
- "alias": "policyRuleTrackingEventEvent: event",
4962
+ "alias": "eventPolicyTracking: event",
4963
4963
  "args": {},
4964
4964
  "deprecationReason": null,
4965
4965
  "description": null,
@@ -5130,7 +5130,7 @@
5130
5130
  "varName": "name"
5131
5131
  },
5132
5132
  "nat": {
5133
- "alias": "socketLanNatSettingsNat: nat",
5133
+ "alias": "natSocketLanRule: nat",
5134
5134
  "args": {},
5135
5135
  "deprecationReason": null,
5136
5136
  "description": "Optionally, enable NAT on the outgoing interface. This translates all originating IPs to one NAT IP.",
@@ -5168,7 +5168,7 @@
5168
5168
  "varName": "enabled"
5169
5169
  },
5170
5170
  "natType": {
5171
- "alias": "socketLanNatTypeNatType: natType",
5171
+ "alias": "natTypeSocketLanNatSettings: natType",
5172
5172
  "args": {},
5173
5173
  "deprecationReason": null,
5174
5174
  "description": null,
@@ -5225,7 +5225,7 @@
5225
5225
  "varName": "socketLanNatSettings"
5226
5226
  },
5227
5227
  "section": {
5228
- "alias": "policySectionInfoSection: section",
5228
+ "alias": "sectionSocketLanRule: section",
5229
5229
  "args": {},
5230
5230
  "deprecationReason": null,
5231
5231
  "description": "Policy section where the rule is located",
@@ -5301,7 +5301,7 @@
5301
5301
  "varName": "policySectionInfo"
5302
5302
  },
5303
5303
  "service": {
5304
- "alias": "socketLanServiceService: service",
5304
+ "alias": "serviceSocketLanRule: service",
5305
5305
  "args": {},
5306
5306
  "deprecationReason": null,
5307
5307
  "description": "Destination service matching criteria for the rule. Port/Protocol based.",
@@ -5318,7 +5318,7 @@
5318
5318
  "enumValues": null,
5319
5319
  "fields": {
5320
5320
  "custom": {
5321
- "alias": "customServiceCustom: custom",
5321
+ "alias": "customSocketLanService: custom",
5322
5322
  "args": {},
5323
5323
  "deprecationReason": null,
5324
5324
  "description": "Custom Port/Protocol service.",
@@ -5357,7 +5357,7 @@
5357
5357
  "varName": "port"
5358
5358
  },
5359
5359
  "portRange": {
5360
- "alias": "portRangePortRange: portRange",
5360
+ "alias": "portRangeCustomService: portRange",
5361
5361
  "args": {},
5362
5362
  "deprecationReason": null,
5363
5363
  "description": null,
@@ -5432,7 +5432,7 @@
5432
5432
  "varName": "portRange"
5433
5433
  },
5434
5434
  "protocol": {
5435
- "alias": "ipProtocolProtocol: protocol",
5435
+ "alias": "protocolCustomService: protocol",
5436
5436
  "args": {},
5437
5437
  "deprecationReason": null,
5438
5438
  "description": null,
@@ -5515,7 +5515,7 @@
5515
5515
  "varName": "customService"
5516
5516
  },
5517
5517
  "simple": {
5518
- "alias": "simpleServiceSimple: simple",
5518
+ "alias": "simpleSocketLanService: simple",
5519
5519
  "args": {},
5520
5520
  "deprecationReason": null,
5521
5521
  "description": "List of L4 based services.",
@@ -5532,7 +5532,7 @@
5532
5532
  "enumValues": null,
5533
5533
  "fields": {
5534
5534
  "name": {
5535
- "alias": "simpleServiceTypeName: name",
5535
+ "alias": "nameSimpleService: name",
5536
5536
  "args": {},
5537
5537
  "deprecationReason": null,
5538
5538
  "description": null,
@@ -5656,7 +5656,7 @@
5656
5656
  "varName": "socketLanService"
5657
5657
  },
5658
5658
  "site": {
5659
- "alias": "socketLanSiteSite: site",
5659
+ "alias": "siteSocketLanRule: site",
5660
5660
  "args": {},
5661
5661
  "deprecationReason": null,
5662
5662
  "description": "The sites the policy will be enforced on.\nSocket sites only, with Socket v22 onwards.",
@@ -5673,7 +5673,7 @@
5673
5673
  "enumValues": null,
5674
5674
  "fields": {
5675
5675
  "group": {
5676
- "alias": "groupRefGroup: group",
5676
+ "alias": "groupSocketLanSite: group",
5677
5677
  "args": {},
5678
5678
  "deprecationReason": null,
5679
5679
  "description": "The group of sites the policy will be enforced on.\nSocket sites only, with Socket v22 onwards.",
@@ -5751,7 +5751,7 @@
5751
5751
  "varName": "groupRef"
5752
5752
  },
5753
5753
  "site": {
5754
- "alias": "siteRefSite: site",
5754
+ "alias": "siteSocketLanSite: site",
5755
5755
  "args": {},
5756
5756
  "deprecationReason": null,
5757
5757
  "description": "The sites the policy will be enforced on.\nSocket sites only, with Socket v22 onwards.",
@@ -5846,7 +5846,7 @@
5846
5846
  "varName": "socketLanSite"
5847
5847
  },
5848
5848
  "source": {
5849
- "alias": "socketLanSourceSource: source",
5849
+ "alias": "sourceSocketLanRule: source",
5850
5850
  "args": {},
5851
5851
  "deprecationReason": null,
5852
5852
  "description": "Source traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -5863,7 +5863,7 @@
5863
5863
  "enumValues": null,
5864
5864
  "fields": {
5865
5865
  "floatingSubnet": {
5866
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
5866
+ "alias": "floatingSubnetSocketLanSource: floatingSubnet",
5867
5867
  "args": {},
5868
5868
  "deprecationReason": null,
5869
5869
  "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.",
@@ -5941,7 +5941,7 @@
5941
5941
  "varName": "floatingSubnetRef"
5942
5942
  },
5943
5943
  "globalIpRange": {
5944
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
5944
+ "alias": "globalIpRangeSocketLanSource: globalIpRange",
5945
5945
  "args": {},
5946
5946
  "deprecationReason": null,
5947
5947
  "description": "Globally defined IP range, IP and subnet objects.",
@@ -6019,7 +6019,7 @@
6019
6019
  "varName": "globalIpRangeRef"
6020
6020
  },
6021
6021
  "group": {
6022
- "alias": "groupRefGroup: group",
6022
+ "alias": "groupSocketLanSource: group",
6023
6023
  "args": {},
6024
6024
  "deprecationReason": null,
6025
6025
  "description": "Predefined Cato groups, Socket sites/objects only.",
@@ -6097,7 +6097,7 @@
6097
6097
  "varName": "groupRef"
6098
6098
  },
6099
6099
  "host": {
6100
- "alias": "hostRefHost: host",
6100
+ "alias": "hostSocketLanSource: host",
6101
6101
  "args": {},
6102
6102
  "deprecationReason": null,
6103
6103
  "description": "Hosts and servers defined for your under Socket sites.",
@@ -6198,7 +6198,7 @@
6198
6198
  "varName": "ip"
6199
6199
  },
6200
6200
  "ipRange": {
6201
- "alias": "ipAddressRangeIpRange: ipRange",
6201
+ "alias": "ipRangeSocketLanSource: ipRange",
6202
6202
  "args": {},
6203
6203
  "deprecationReason": null,
6204
6204
  "description": "Multiple separate IP addresses or an IP range.",
@@ -6276,7 +6276,7 @@
6276
6276
  "varName": "ipAddressRange"
6277
6277
  },
6278
6278
  "networkInterface": {
6279
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
6279
+ "alias": "networkInterfaceSocketLanSource: networkInterface",
6280
6280
  "args": {},
6281
6281
  "deprecationReason": null,
6282
6282
  "description": "Network range defined for a site.",
@@ -6354,7 +6354,7 @@
6354
6354
  "varName": "networkInterfaceRef"
6355
6355
  },
6356
6356
  "siteNetworkSubnet": {
6357
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
6357
+ "alias": "siteNetworkSubnetSocketLanSource: siteNetworkSubnet",
6358
6358
  "args": {},
6359
6359
  "deprecationReason": null,
6360
6360
  "description": "GlobalRange + InterfaceSubnet",
@@ -6455,7 +6455,7 @@
6455
6455
  "varName": "subnet"
6456
6456
  },
6457
6457
  "systemGroup": {
6458
- "alias": "systemGroupRefSystemGroup: systemGroup",
6458
+ "alias": "systemGroupSocketLanSource: systemGroup",
6459
6459
  "args": {},
6460
6460
  "deprecationReason": null,
6461
6461
  "description": "Predefined Cato groups.",
@@ -6573,7 +6573,7 @@
6573
6573
  "varName": "socketLanSource"
6574
6574
  },
6575
6575
  "transport": {
6576
- "alias": "socketLanTransportTypeTransport: transport",
6576
+ "alias": "transportSocketLanRule: transport",
6577
6577
  "args": {},
6578
6578
  "deprecationReason": null,
6579
6579
  "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.",
@@ -6652,7 +6652,7 @@
6652
6652
  "varName": "socketLanRulePayload"
6653
6653
  },
6654
6654
  "status": {
6655
- "alias": "policyMutationStatusStatus: status",
6655
+ "alias": "statusSocketLanRuleMutationPayload: status",
6656
6656
  "args": {},
6657
6657
  "deprecationReason": null,
6658
6658
  "description": null,