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
@@ -247,6 +247,7 @@
247
247
  "PolicyMutationRevisionInput": true,
248
248
  "PolicyMutationStatus": true,
249
249
  "PolicyRevision": true,
250
+ "PolicyRuleActivePeriod": true,
250
251
  "PolicyRuleTrackingAlert": true,
251
252
  "PolicyRuleTrackingEvent": true,
252
253
  "PolicyRuleTrackingFrequencyEnum": true,
@@ -633,7 +634,7 @@
633
634
  "enumValues": null,
634
635
  "fields": {
635
636
  "errors": {
636
- "alias": "policyMutationErrorErrors: errors",
637
+ "alias": "errorsInternetFirewallPolicyMutationPayload: errors",
637
638
  "args": {},
638
639
  "deprecationReason": null,
639
640
  "description": null,
@@ -709,7 +710,7 @@
709
710
  "varName": "policyMutationError"
710
711
  },
711
712
  "policy": {
712
- "alias": "internetFirewallPolicyPolicy: policy",
713
+ "alias": "policyInternetFirewallPolicyMutationPayload: policy",
713
714
  "args": {},
714
715
  "deprecationReason": null,
715
716
  "description": null,
@@ -995,7 +996,7 @@
995
996
  "enumValues": null,
996
997
  "fields": {
997
998
  "audit": {
998
- "alias": "policyElementAuditAudit: audit",
999
+ "alias": "auditInternetFirewallRulePayload: audit",
999
1000
  "args": {},
1000
1001
  "deprecationReason": null,
1001
1002
  "description": null,
@@ -1071,7 +1072,7 @@
1071
1072
  "varName": "policyElementAudit"
1072
1073
  },
1073
1074
  "properties": {
1074
- "alias": "policyElementPropertiesEnumProperties: properties",
1075
+ "alias": "propertiesInternetFirewallRulePayload: properties",
1075
1076
  "args": {},
1076
1077
  "deprecationReason": null,
1077
1078
  "description": null,
@@ -1149,7 +1150,7 @@
1149
1150
  "varName": "properties"
1150
1151
  },
1151
1152
  "rule": {
1152
- "alias": "internetFirewallRuleRule: rule",
1153
+ "alias": "ruleInternetFirewallRulePayload: rule",
1153
1154
  "args": {},
1154
1155
  "deprecationReason": null,
1155
1156
  "description": null,
@@ -1166,7 +1167,7 @@
1166
1167
  "enumValues": null,
1167
1168
  "fields": {
1168
1169
  "action": {
1169
- "alias": "internetFirewallActionEnumAction: action",
1170
+ "alias": "actionInternetFirewallRule: action",
1170
1171
  "args": {},
1171
1172
  "deprecationReason": null,
1172
1173
  "description": "The action applied by the Internet Firewall if the rule is matched",
@@ -1223,8 +1224,124 @@
1223
1224
  },
1224
1225
  "varName": "action"
1225
1226
  },
1227
+ "activePeriod": {
1228
+ "alias": "activePeriodInternetFirewallRule: activePeriod",
1229
+ "args": {},
1230
+ "deprecationReason": null,
1231
+ "description": "The time period during which the rule is active, outside this period, the rule is inactive",
1232
+ "id_str": "internetFirewall___updatePolicy___policy___rules___rule___activePeriod",
1233
+ "isDeprecated": false,
1234
+ "name": "activePeriod",
1235
+ "path": "internetFirewall.updatePolicy.policy.rules.rule.activePeriod",
1236
+ "requestStr": "$policyRuleActivePeriod:PolicyRuleActivePeriod! ",
1237
+ "required": true,
1238
+ "responseStr": "activePeriod:$policyRuleActivePeriod ",
1239
+ "type": {
1240
+ "definition": {
1241
+ "description": "Returns the time period during which the rule is active, outside this period, the rule is inactive",
1242
+ "enumValues": null,
1243
+ "fields": {
1244
+ "effectiveFrom": {
1245
+ "args": {},
1246
+ "deprecationReason": null,
1247
+ "description": "The time the rule becomes active, if not used, default null",
1248
+ "id_str": "internetFirewall___updatePolicy___policy___rules___rule___activePeriod___effectiveFrom",
1249
+ "isDeprecated": false,
1250
+ "name": "effectiveFrom",
1251
+ "path": "internetFirewall.updatePolicy.policy.rules.rule.activePeriod.effectiveFrom",
1252
+ "requestStr": "$effectiveFrom:DateTime ",
1253
+ "required": false,
1254
+ "responseStr": "effectiveFrom:$effectiveFrom ",
1255
+ "type": {
1256
+ "kind": [
1257
+ "SCALAR"
1258
+ ],
1259
+ "name": "DateTime",
1260
+ "non_null": false
1261
+ },
1262
+ "varName": "effectiveFrom"
1263
+ },
1264
+ "expiresAt": {
1265
+ "args": {},
1266
+ "deprecationReason": null,
1267
+ "description": "The time the rule expires, if not used, default null",
1268
+ "id_str": "internetFirewall___updatePolicy___policy___rules___rule___activePeriod___expiresAt",
1269
+ "isDeprecated": false,
1270
+ "name": "expiresAt",
1271
+ "path": "internetFirewall.updatePolicy.policy.rules.rule.activePeriod.expiresAt",
1272
+ "requestStr": "$expiresAt:DateTime ",
1273
+ "required": false,
1274
+ "responseStr": "expiresAt:$expiresAt ",
1275
+ "type": {
1276
+ "kind": [
1277
+ "SCALAR"
1278
+ ],
1279
+ "name": "DateTime",
1280
+ "non_null": false
1281
+ },
1282
+ "varName": "expiresAt"
1283
+ },
1284
+ "useEffectiveFrom": {
1285
+ "args": {},
1286
+ "deprecationReason": null,
1287
+ "description": null,
1288
+ "id_str": "internetFirewall___updatePolicy___policy___rules___rule___activePeriod___useEffectiveFrom",
1289
+ "isDeprecated": false,
1290
+ "name": "useEffectiveFrom",
1291
+ "path": "internetFirewall.updatePolicy.policy.rules.rule.activePeriod.useEffectiveFrom",
1292
+ "requestStr": "$useEffectiveFrom:Boolean! ",
1293
+ "required": true,
1294
+ "responseStr": "useEffectiveFrom:$useEffectiveFrom ",
1295
+ "type": {
1296
+ "kind": [
1297
+ "NON_NULL",
1298
+ "SCALAR"
1299
+ ],
1300
+ "name": "Boolean",
1301
+ "non_null": false
1302
+ },
1303
+ "varName": "useEffectiveFrom"
1304
+ },
1305
+ "useExpiresAt": {
1306
+ "args": {},
1307
+ "deprecationReason": null,
1308
+ "description": null,
1309
+ "id_str": "internetFirewall___updatePolicy___policy___rules___rule___activePeriod___useExpiresAt",
1310
+ "isDeprecated": false,
1311
+ "name": "useExpiresAt",
1312
+ "path": "internetFirewall.updatePolicy.policy.rules.rule.activePeriod.useExpiresAt",
1313
+ "requestStr": "$useExpiresAt:Boolean! ",
1314
+ "required": true,
1315
+ "responseStr": "useExpiresAt:$useExpiresAt ",
1316
+ "type": {
1317
+ "kind": [
1318
+ "NON_NULL",
1319
+ "SCALAR"
1320
+ ],
1321
+ "name": "Boolean",
1322
+ "non_null": false
1323
+ },
1324
+ "varName": "useExpiresAt"
1325
+ }
1326
+ },
1327
+ "inputFields": null,
1328
+ "interfaces": {},
1329
+ "kind": "OBJECT",
1330
+ "name": "PolicyRuleActivePeriod",
1331
+ "possibleTypes": null
1332
+ },
1333
+ "indexType": "object",
1334
+ "kind": [
1335
+ "NON_NULL",
1336
+ "OBJECT"
1337
+ ],
1338
+ "name": "PolicyRuleActivePeriod",
1339
+ "non_null": false
1340
+ },
1341
+ "varName": "policyRuleActivePeriod"
1342
+ },
1226
1343
  "connectionOrigin": {
1227
- "alias": "connectionOriginEnumConnectionOrigin: connectionOrigin",
1344
+ "alias": "connectionOriginInternetFirewallRule: connectionOrigin",
1228
1345
  "args": {},
1229
1346
  "deprecationReason": null,
1230
1347
  "description": "Connection origin of the traffic",
@@ -1276,7 +1393,7 @@
1276
1393
  "varName": "connectionOrigin"
1277
1394
  },
1278
1395
  "country": {
1279
- "alias": "countryRefCountry: country",
1396
+ "alias": "countryInternetFirewallRule: country",
1280
1397
  "args": {},
1281
1398
  "deprecationReason": null,
1282
1399
  "description": "Source country traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -1375,7 +1492,7 @@
1375
1492
  "varName": "description"
1376
1493
  },
1377
1494
  "destination": {
1378
- "alias": "internetFirewallDestinationDestination: destination",
1495
+ "alias": "destinationInternetFirewallRule: destination",
1379
1496
  "args": {},
1380
1497
  "deprecationReason": null,
1381
1498
  "description": "Destination traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -1392,7 +1509,7 @@
1392
1509
  "enumValues": null,
1393
1510
  "fields": {
1394
1511
  "appCategory": {
1395
- "alias": "applicationCategoryRefAppCategory: appCategory",
1512
+ "alias": "appCategoryInternetFirewallDestination: appCategory",
1396
1513
  "args": {},
1397
1514
  "deprecationReason": null,
1398
1515
  "description": "Cato category of applications which are dynamically updated by Cato",
@@ -1470,7 +1587,7 @@
1470
1587
  "varName": "applicationCategoryRef"
1471
1588
  },
1472
1589
  "application": {
1473
- "alias": "applicationRefApplication: application",
1590
+ "alias": "applicationInternetFirewallDestination: application",
1474
1591
  "args": {},
1475
1592
  "deprecationReason": null,
1476
1593
  "description": "Applications for the rule (pre-defined)",
@@ -1548,7 +1665,7 @@
1548
1665
  "varName": "applicationRef"
1549
1666
  },
1550
1667
  "containers": {
1551
- "alias": "internetFirewallContainerContainers: containers",
1668
+ "alias": "containersInternetFirewallDestination: containers",
1552
1669
  "args": {},
1553
1670
  "deprecationReason": null,
1554
1671
  "description": null,
@@ -1565,7 +1682,7 @@
1565
1682
  "enumValues": null,
1566
1683
  "fields": {
1567
1684
  "fqdnContainer": {
1568
- "alias": "fqdnContainerRefFqdnContainer: fqdnContainer",
1685
+ "alias": "fqdnContainerInternetFirewallContainer: fqdnContainer",
1569
1686
  "args": {},
1570
1687
  "deprecationReason": null,
1571
1688
  "description": null,
@@ -1643,7 +1760,7 @@
1643
1760
  "varName": "fqdnContainerRef"
1644
1761
  },
1645
1762
  "ipAddressRangeContainer": {
1646
- "alias": "ipAddressRangeContainerRefIpAddressRangeContainer: ipAddressRangeContainer",
1763
+ "alias": "ipAddressRangeContainerInternetFirewallContainer: ipAddressRangeContainer",
1647
1764
  "args": {},
1648
1765
  "deprecationReason": null,
1649
1766
  "description": null,
@@ -1738,7 +1855,7 @@
1738
1855
  "varName": "internetFirewallContainer"
1739
1856
  },
1740
1857
  "country": {
1741
- "alias": "countryRefCountry: country",
1858
+ "alias": "countryInternetFirewallDestination: country",
1742
1859
  "args": {},
1743
1860
  "deprecationReason": null,
1744
1861
  "description": "Countries",
@@ -1816,7 +1933,7 @@
1816
1933
  "varName": "countryRef"
1817
1934
  },
1818
1935
  "customApp": {
1819
- "alias": "customApplicationRefCustomApp: customApp",
1936
+ "alias": "customAppInternetFirewallDestination: customApp",
1820
1937
  "args": {},
1821
1938
  "deprecationReason": null,
1822
1939
  "description": "Custom (user-defined) applications",
@@ -1894,7 +2011,7 @@
1894
2011
  "varName": "customApplicationRef"
1895
2012
  },
1896
2013
  "customCategory": {
1897
- "alias": "customCategoryRefCustomCategory: customCategory",
2014
+ "alias": "customCategoryInternetFirewallDestination: customCategory",
1898
2015
  "args": {},
1899
2016
  "deprecationReason": null,
1900
2017
  "description": "Custom Categories \u2013 Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
@@ -2018,7 +2135,7 @@
2018
2135
  "varName": "fqdn"
2019
2136
  },
2020
2137
  "globalIpRange": {
2021
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
2138
+ "alias": "globalIpRangeInternetFirewallDestination: globalIpRange",
2022
2139
  "args": {},
2023
2140
  "deprecationReason": null,
2024
2141
  "description": "Globally defined IP range, IP and subnet objects",
@@ -2119,7 +2236,7 @@
2119
2236
  "varName": "ip"
2120
2237
  },
2121
2238
  "ipRange": {
2122
- "alias": "ipAddressRangeIpRange: ipRange",
2239
+ "alias": "ipRangeInternetFirewallDestination: ipRange",
2123
2240
  "args": {},
2124
2241
  "deprecationReason": null,
2125
2242
  "description": "A range of IPs. Every IP within the range will be matched",
@@ -2220,7 +2337,7 @@
2220
2337
  "varName": "remoteAsn"
2221
2338
  },
2222
2339
  "sanctionedAppsCategory": {
2223
- "alias": "sanctionedAppsCategoryRefSanctionedAppsCategory: sanctionedAppsCategory",
2340
+ "alias": "sanctionedAppsCategoryInternetFirewallDestination: sanctionedAppsCategory",
2224
2341
  "args": {},
2225
2342
  "deprecationReason": null,
2226
2343
  "description": "Sanctioned Cloud Applications - apps that are approved and generally represent an understood and acceptable level of risk in your organization.",
@@ -2338,7 +2455,7 @@
2338
2455
  "varName": "internetFirewallDestination"
2339
2456
  },
2340
2457
  "device": {
2341
- "alias": "deviceProfileRefDevice: device",
2458
+ "alias": "deviceInternetFirewallRule: device",
2342
2459
  "args": {},
2343
2460
  "deprecationReason": null,
2344
2461
  "description": "Source Device Profile traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -2416,7 +2533,7 @@
2416
2533
  "varName": "deviceProfileRef"
2417
2534
  },
2418
2535
  "deviceAttributes": {
2419
- "alias": "deviceAttributesDeviceAttributes: deviceAttributes",
2536
+ "alias": "deviceAttributesInternetFirewallRule: deviceAttributes",
2420
2537
  "args": {},
2421
2538
  "deprecationReason": null,
2422
2539
  "description": "Additional device attributes such as category, type, model, and manufacturer.\nLogical 'OR' is applied within the criteria set.\nLogical 'AND' is applied between criteria sets.",
@@ -2588,7 +2705,7 @@
2588
2705
  "varName": "deviceAttributes"
2589
2706
  },
2590
2707
  "deviceOS": {
2591
- "alias": "operatingSystemDeviceOS: deviceOS",
2708
+ "alias": "deviceOSInternetFirewallRule: deviceOS",
2592
2709
  "args": {},
2593
2710
  "deprecationReason": null,
2594
2711
  "description": "Source device Operating System traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -2681,7 +2798,7 @@
2681
2798
  "varName": "enabled"
2682
2799
  },
2683
2800
  "exceptions": {
2684
- "alias": "internetFirewallRuleExceptionExceptions: exceptions",
2801
+ "alias": "exceptionsInternetFirewallRule: exceptions",
2685
2802
  "args": {},
2686
2803
  "deprecationReason": null,
2687
2804
  "description": "The set of exceptions for the rule.\nExceptions define when the rule will be ignored and the firewall evaluation will continue with the lower priority rules.",
@@ -2698,7 +2815,7 @@
2698
2815
  "enumValues": null,
2699
2816
  "fields": {
2700
2817
  "connectionOrigin": {
2701
- "alias": "connectionOriginEnumConnectionOrigin: connectionOrigin",
2818
+ "alias": "connectionOriginInternetFirewallRuleException: connectionOrigin",
2702
2819
  "args": {},
2703
2820
  "deprecationReason": null,
2704
2821
  "description": "Connection origin matching criteria for the exception.",
@@ -2750,7 +2867,7 @@
2750
2867
  "varName": "connectionOrigin"
2751
2868
  },
2752
2869
  "country": {
2753
- "alias": "countryRefCountry: country",
2870
+ "alias": "countryInternetFirewallRuleException: country",
2754
2871
  "args": {},
2755
2872
  "deprecationReason": null,
2756
2873
  "description": "Source country matching criteria for the exception.",
@@ -2828,7 +2945,7 @@
2828
2945
  "varName": "countryRef"
2829
2946
  },
2830
2947
  "destination": {
2831
- "alias": "internetFirewallDestinationDestination: destination",
2948
+ "alias": "destinationInternetFirewallRuleException: destination",
2832
2949
  "args": {},
2833
2950
  "deprecationReason": null,
2834
2951
  "description": "Destination matching criteria for the exception.",
@@ -2845,7 +2962,7 @@
2845
2962
  "enumValues": null,
2846
2963
  "fields": {
2847
2964
  "appCategory": {
2848
- "alias": "applicationCategoryRefAppCategory: appCategory",
2965
+ "alias": "appCategoryInternetFirewallDestination: appCategory",
2849
2966
  "args": {},
2850
2967
  "deprecationReason": null,
2851
2968
  "description": "Cato category of applications which are dynamically updated by Cato",
@@ -2923,7 +3040,7 @@
2923
3040
  "varName": "applicationCategoryRef"
2924
3041
  },
2925
3042
  "application": {
2926
- "alias": "applicationRefApplication: application",
3043
+ "alias": "applicationInternetFirewallDestination: application",
2927
3044
  "args": {},
2928
3045
  "deprecationReason": null,
2929
3046
  "description": "Applications for the rule (pre-defined)",
@@ -3001,7 +3118,7 @@
3001
3118
  "varName": "applicationRef"
3002
3119
  },
3003
3120
  "containers": {
3004
- "alias": "internetFirewallContainerContainers: containers",
3121
+ "alias": "containersInternetFirewallDestination: containers",
3005
3122
  "args": {},
3006
3123
  "deprecationReason": null,
3007
3124
  "description": null,
@@ -3018,7 +3135,7 @@
3018
3135
  "enumValues": null,
3019
3136
  "fields": {
3020
3137
  "fqdnContainer": {
3021
- "alias": "fqdnContainerRefFqdnContainer: fqdnContainer",
3138
+ "alias": "fqdnContainerInternetFirewallContainer: fqdnContainer",
3022
3139
  "args": {},
3023
3140
  "deprecationReason": null,
3024
3141
  "description": null,
@@ -3096,7 +3213,7 @@
3096
3213
  "varName": "fqdnContainerRef"
3097
3214
  },
3098
3215
  "ipAddressRangeContainer": {
3099
- "alias": "ipAddressRangeContainerRefIpAddressRangeContainer: ipAddressRangeContainer",
3216
+ "alias": "ipAddressRangeContainerInternetFirewallContainer: ipAddressRangeContainer",
3100
3217
  "args": {},
3101
3218
  "deprecationReason": null,
3102
3219
  "description": null,
@@ -3191,7 +3308,7 @@
3191
3308
  "varName": "internetFirewallContainer"
3192
3309
  },
3193
3310
  "country": {
3194
- "alias": "countryRefCountry: country",
3311
+ "alias": "countryInternetFirewallDestination: country",
3195
3312
  "args": {},
3196
3313
  "deprecationReason": null,
3197
3314
  "description": "Countries",
@@ -3269,7 +3386,7 @@
3269
3386
  "varName": "countryRef"
3270
3387
  },
3271
3388
  "customApp": {
3272
- "alias": "customApplicationRefCustomApp: customApp",
3389
+ "alias": "customAppInternetFirewallDestination: customApp",
3273
3390
  "args": {},
3274
3391
  "deprecationReason": null,
3275
3392
  "description": "Custom (user-defined) applications",
@@ -3347,7 +3464,7 @@
3347
3464
  "varName": "customApplicationRef"
3348
3465
  },
3349
3466
  "customCategory": {
3350
- "alias": "customCategoryRefCustomCategory: customCategory",
3467
+ "alias": "customCategoryInternetFirewallDestination: customCategory",
3351
3468
  "args": {},
3352
3469
  "deprecationReason": null,
3353
3470
  "description": "Custom Categories \u2013 Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
@@ -3471,7 +3588,7 @@
3471
3588
  "varName": "fqdn"
3472
3589
  },
3473
3590
  "globalIpRange": {
3474
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
3591
+ "alias": "globalIpRangeInternetFirewallDestination: globalIpRange",
3475
3592
  "args": {},
3476
3593
  "deprecationReason": null,
3477
3594
  "description": "Globally defined IP range, IP and subnet objects",
@@ -3572,7 +3689,7 @@
3572
3689
  "varName": "ip"
3573
3690
  },
3574
3691
  "ipRange": {
3575
- "alias": "ipAddressRangeIpRange: ipRange",
3692
+ "alias": "ipRangeInternetFirewallDestination: ipRange",
3576
3693
  "args": {},
3577
3694
  "deprecationReason": null,
3578
3695
  "description": "A range of IPs. Every IP within the range will be matched",
@@ -3673,7 +3790,7 @@
3673
3790
  "varName": "remoteAsn"
3674
3791
  },
3675
3792
  "sanctionedAppsCategory": {
3676
- "alias": "sanctionedAppsCategoryRefSanctionedAppsCategory: sanctionedAppsCategory",
3793
+ "alias": "sanctionedAppsCategoryInternetFirewallDestination: sanctionedAppsCategory",
3677
3794
  "args": {},
3678
3795
  "deprecationReason": null,
3679
3796
  "description": "Sanctioned Cloud Applications - apps that are approved and generally represent an understood and acceptable level of risk in your organization.",
@@ -3791,7 +3908,7 @@
3791
3908
  "varName": "internetFirewallDestination"
3792
3909
  },
3793
3910
  "device": {
3794
- "alias": "deviceProfileRefDevice: device",
3911
+ "alias": "deviceInternetFirewallRuleException: device",
3795
3912
  "args": {},
3796
3913
  "deprecationReason": null,
3797
3914
  "description": "Source Device Profile matching criteria for the exception.",
@@ -3869,7 +3986,7 @@
3869
3986
  "varName": "deviceProfileRef"
3870
3987
  },
3871
3988
  "deviceAttributes": {
3872
- "alias": "deviceAttributesDeviceAttributes: deviceAttributes",
3989
+ "alias": "deviceAttributesInternetFirewallRuleException: deviceAttributes",
3873
3990
  "args": {},
3874
3991
  "deprecationReason": null,
3875
3992
  "description": "Source Device Attributes matching criteria for the exception.",
@@ -4041,7 +4158,7 @@
4041
4158
  "varName": "deviceAttributes"
4042
4159
  },
4043
4160
  "deviceOS": {
4044
- "alias": "operatingSystemDeviceOS: deviceOS",
4161
+ "alias": "deviceOSInternetFirewallRuleException: deviceOS",
4045
4162
  "args": {},
4046
4163
  "deprecationReason": null,
4047
4164
  "description": "Source device OS matching criteria for the exception.",
@@ -4134,7 +4251,7 @@
4134
4251
  "varName": "name"
4135
4252
  },
4136
4253
  "service": {
4137
- "alias": "internetFirewallServiceTypeService: service",
4254
+ "alias": "serviceInternetFirewallRuleException: service",
4138
4255
  "args": {},
4139
4256
  "deprecationReason": null,
4140
4257
  "description": "Destination service matching criteria for the exception.",
@@ -4151,7 +4268,7 @@
4151
4268
  "enumValues": null,
4152
4269
  "fields": {
4153
4270
  "custom": {
4154
- "alias": "customServiceCustom: custom",
4271
+ "alias": "customInternetFirewallServiceType: custom",
4155
4272
  "args": {},
4156
4273
  "deprecationReason": null,
4157
4274
  "description": null,
@@ -4190,7 +4307,7 @@
4190
4307
  "varName": "port"
4191
4308
  },
4192
4309
  "portRange": {
4193
- "alias": "portRangePortRange: portRange",
4310
+ "alias": "portRangeCustomService: portRange",
4194
4311
  "args": {},
4195
4312
  "deprecationReason": null,
4196
4313
  "description": null,
@@ -4265,7 +4382,7 @@
4265
4382
  "varName": "portRange"
4266
4383
  },
4267
4384
  "protocol": {
4268
- "alias": "ipProtocolProtocol: protocol",
4385
+ "alias": "protocolCustomService: protocol",
4269
4386
  "args": {},
4270
4387
  "deprecationReason": null,
4271
4388
  "description": null,
@@ -4348,7 +4465,7 @@
4348
4465
  "varName": "customService"
4349
4466
  },
4350
4467
  "standard": {
4351
- "alias": "serviceRefStandard: standard",
4468
+ "alias": "standardInternetFirewallServiceType: standard",
4352
4469
  "args": {},
4353
4470
  "deprecationReason": null,
4354
4471
  "description": null,
@@ -4443,7 +4560,7 @@
4443
4560
  "varName": "internetFirewallServiceType"
4444
4561
  },
4445
4562
  "source": {
4446
- "alias": "internetFirewallSourceSource: source",
4563
+ "alias": "sourceInternetFirewallRuleException: source",
4447
4564
  "args": {},
4448
4565
  "deprecationReason": null,
4449
4566
  "description": "Source traffic matching criteria for the exception.",
@@ -4460,7 +4577,7 @@
4460
4577
  "enumValues": null,
4461
4578
  "fields": {
4462
4579
  "floatingSubnet": {
4463
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
4580
+ "alias": "floatingSubnetInternetFirewallSource: floatingSubnet",
4464
4581
  "args": {},
4465
4582
  "deprecationReason": null,
4466
4583
  "description": "Floating Subnets (ie. Floating Ranges) are used to identify traffic exactly matched to the route advertised by BGP. They are not associated with a specific site. This is useful in scenarios such as active-standby high availability routed via BGP.",
@@ -4538,7 +4655,7 @@
4538
4655
  "varName": "floatingSubnetRef"
4539
4656
  },
4540
4657
  "globalIpRange": {
4541
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
4658
+ "alias": "globalIpRangeInternetFirewallSource: globalIpRange",
4542
4659
  "args": {},
4543
4660
  "deprecationReason": null,
4544
4661
  "description": "Globally defined IP range, IP and subnet objects",
@@ -4616,7 +4733,7 @@
4616
4733
  "varName": "globalIpRangeRef"
4617
4734
  },
4618
4735
  "group": {
4619
- "alias": "groupRefGroup: group",
4736
+ "alias": "groupInternetFirewallSource: group",
4620
4737
  "args": {},
4621
4738
  "deprecationReason": null,
4622
4739
  "description": "Groups defined for your account",
@@ -4694,7 +4811,7 @@
4694
4811
  "varName": "groupRef"
4695
4812
  },
4696
4813
  "host": {
4697
- "alias": "hostRefHost: host",
4814
+ "alias": "hostInternetFirewallSource: host",
4698
4815
  "args": {},
4699
4816
  "deprecationReason": null,
4700
4817
  "description": "Hosts and servers defined for your account",
@@ -4795,7 +4912,7 @@
4795
4912
  "varName": "ip"
4796
4913
  },
4797
4914
  "ipRange": {
4798
- "alias": "ipAddressRangeIpRange: ipRange",
4915
+ "alias": "ipRangeInternetFirewallSource: ipRange",
4799
4916
  "args": {},
4800
4917
  "deprecationReason": null,
4801
4918
  "description": "Multiple separate IP addresses or an IP range",
@@ -4873,7 +4990,7 @@
4873
4990
  "varName": "ipAddressRange"
4874
4991
  },
4875
4992
  "networkInterface": {
4876
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
4993
+ "alias": "networkInterfaceInternetFirewallSource: networkInterface",
4877
4994
  "args": {},
4878
4995
  "deprecationReason": null,
4879
4996
  "description": "Network range defined for a site",
@@ -4951,7 +5068,7 @@
4951
5068
  "varName": "networkInterfaceRef"
4952
5069
  },
4953
5070
  "site": {
4954
- "alias": "siteRefSite: site",
5071
+ "alias": "siteInternetFirewallSource: site",
4955
5072
  "args": {},
4956
5073
  "deprecationReason": null,
4957
5074
  "description": "Site defined for the account",
@@ -5029,7 +5146,7 @@
5029
5146
  "varName": "siteRef"
5030
5147
  },
5031
5148
  "siteNetworkSubnet": {
5032
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
5149
+ "alias": "siteNetworkSubnetInternetFirewallSource: siteNetworkSubnet",
5033
5150
  "args": {},
5034
5151
  "deprecationReason": null,
5035
5152
  "description": "GlobalRange + InterfaceSubnet",
@@ -5130,7 +5247,7 @@
5130
5247
  "varName": "subnet"
5131
5248
  },
5132
5249
  "systemGroup": {
5133
- "alias": "systemGroupRefSystemGroup: systemGroup",
5250
+ "alias": "systemGroupInternetFirewallSource: systemGroup",
5134
5251
  "args": {},
5135
5252
  "deprecationReason": null,
5136
5253
  "description": "Predefined Cato groups",
@@ -5208,7 +5325,7 @@
5208
5325
  "varName": "systemGroupRef"
5209
5326
  },
5210
5327
  "user": {
5211
- "alias": "userRefUser: user",
5328
+ "alias": "userInternetFirewallSource: user",
5212
5329
  "args": {},
5213
5330
  "deprecationReason": null,
5214
5331
  "description": "Individual users defined for the account",
@@ -5286,7 +5403,7 @@
5286
5403
  "varName": "userRef"
5287
5404
  },
5288
5405
  "usersGroup": {
5289
- "alias": "usersGroupRefUsersGroup: usersGroup",
5406
+ "alias": "usersGroupInternetFirewallSource: usersGroup",
5290
5407
  "args": {},
5291
5408
  "deprecationReason": null,
5292
5409
  "description": "Group of users",
@@ -5463,7 +5580,7 @@
5463
5580
  "varName": "name"
5464
5581
  },
5465
5582
  "schedule": {
5466
- "alias": "policyScheduleSchedule: schedule",
5583
+ "alias": "scheduleInternetFirewallRule: schedule",
5467
5584
  "args": {},
5468
5585
  "deprecationReason": null,
5469
5586
  "description": "The time period specifying when the rule is enabled, otherwise it is disabled.",
@@ -5480,7 +5597,7 @@
5480
5597
  "enumValues": null,
5481
5598
  "fields": {
5482
5599
  "activeOn": {
5483
- "alias": "policyActiveOnEnumActiveOn: activeOn",
5600
+ "alias": "activeOnPolicySchedule: activeOn",
5484
5601
  "args": {},
5485
5602
  "deprecationReason": null,
5486
5603
  "description": null,
@@ -5538,7 +5655,7 @@
5538
5655
  "varName": "activeOn"
5539
5656
  },
5540
5657
  "customRecurring": {
5541
- "alias": "policyCustomRecurringCustomRecurring: customRecurring",
5658
+ "alias": "customRecurringPolicySchedule: customRecurring",
5542
5659
  "args": {},
5543
5660
  "deprecationReason": null,
5544
5661
  "description": null,
@@ -5690,7 +5807,7 @@
5690
5807
  "varName": "policyCustomRecurring"
5691
5808
  },
5692
5809
  "customTimeframe": {
5693
- "alias": "policyCustomTimeframeCustomTimeframe: customTimeframe",
5810
+ "alias": "customTimeframePolicySchedule: customTimeframe",
5694
5811
  "args": {},
5695
5812
  "deprecationReason": null,
5696
5813
  "description": null,
@@ -5782,7 +5899,7 @@
5782
5899
  "varName": "policySchedule"
5783
5900
  },
5784
5901
  "section": {
5785
- "alias": "policySectionInfoSection: section",
5902
+ "alias": "sectionInternetFirewallRule: section",
5786
5903
  "args": {},
5787
5904
  "deprecationReason": null,
5788
5905
  "description": "Policy section where the rule is located",
@@ -5858,7 +5975,7 @@
5858
5975
  "varName": "policySectionInfo"
5859
5976
  },
5860
5977
  "service": {
5861
- "alias": "internetFirewallServiceTypeService: service",
5978
+ "alias": "serviceInternetFirewallRule: service",
5862
5979
  "args": {},
5863
5980
  "deprecationReason": null,
5864
5981
  "description": "Destination service traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -5875,7 +5992,7 @@
5875
5992
  "enumValues": null,
5876
5993
  "fields": {
5877
5994
  "custom": {
5878
- "alias": "customServiceCustom: custom",
5995
+ "alias": "customInternetFirewallServiceType: custom",
5879
5996
  "args": {},
5880
5997
  "deprecationReason": null,
5881
5998
  "description": null,
@@ -5914,7 +6031,7 @@
5914
6031
  "varName": "port"
5915
6032
  },
5916
6033
  "portRange": {
5917
- "alias": "portRangePortRange: portRange",
6034
+ "alias": "portRangeCustomService: portRange",
5918
6035
  "args": {},
5919
6036
  "deprecationReason": null,
5920
6037
  "description": null,
@@ -5989,7 +6106,7 @@
5989
6106
  "varName": "portRange"
5990
6107
  },
5991
6108
  "protocol": {
5992
- "alias": "ipProtocolProtocol: protocol",
6109
+ "alias": "protocolCustomService: protocol",
5993
6110
  "args": {},
5994
6111
  "deprecationReason": null,
5995
6112
  "description": null,
@@ -6072,7 +6189,7 @@
6072
6189
  "varName": "customService"
6073
6190
  },
6074
6191
  "standard": {
6075
- "alias": "serviceRefStandard: standard",
6192
+ "alias": "standardInternetFirewallServiceType: standard",
6076
6193
  "args": {},
6077
6194
  "deprecationReason": null,
6078
6195
  "description": null,
@@ -6167,7 +6284,7 @@
6167
6284
  "varName": "internetFirewallServiceType"
6168
6285
  },
6169
6286
  "source": {
6170
- "alias": "internetFirewallSourceSource: source",
6287
+ "alias": "sourceInternetFirewallRule: source",
6171
6288
  "args": {},
6172
6289
  "deprecationReason": null,
6173
6290
  "description": "Source traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -6184,7 +6301,7 @@
6184
6301
  "enumValues": null,
6185
6302
  "fields": {
6186
6303
  "floatingSubnet": {
6187
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
6304
+ "alias": "floatingSubnetInternetFirewallSource: floatingSubnet",
6188
6305
  "args": {},
6189
6306
  "deprecationReason": null,
6190
6307
  "description": "Floating Subnets (ie. Floating Ranges) are used to identify traffic exactly matched to the route advertised by BGP. They are not associated with a specific site. This is useful in scenarios such as active-standby high availability routed via BGP.",
@@ -6262,7 +6379,7 @@
6262
6379
  "varName": "floatingSubnetRef"
6263
6380
  },
6264
6381
  "globalIpRange": {
6265
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
6382
+ "alias": "globalIpRangeInternetFirewallSource: globalIpRange",
6266
6383
  "args": {},
6267
6384
  "deprecationReason": null,
6268
6385
  "description": "Globally defined IP range, IP and subnet objects",
@@ -6340,7 +6457,7 @@
6340
6457
  "varName": "globalIpRangeRef"
6341
6458
  },
6342
6459
  "group": {
6343
- "alias": "groupRefGroup: group",
6460
+ "alias": "groupInternetFirewallSource: group",
6344
6461
  "args": {},
6345
6462
  "deprecationReason": null,
6346
6463
  "description": "Groups defined for your account",
@@ -6418,7 +6535,7 @@
6418
6535
  "varName": "groupRef"
6419
6536
  },
6420
6537
  "host": {
6421
- "alias": "hostRefHost: host",
6538
+ "alias": "hostInternetFirewallSource: host",
6422
6539
  "args": {},
6423
6540
  "deprecationReason": null,
6424
6541
  "description": "Hosts and servers defined for your account",
@@ -6519,7 +6636,7 @@
6519
6636
  "varName": "ip"
6520
6637
  },
6521
6638
  "ipRange": {
6522
- "alias": "ipAddressRangeIpRange: ipRange",
6639
+ "alias": "ipRangeInternetFirewallSource: ipRange",
6523
6640
  "args": {},
6524
6641
  "deprecationReason": null,
6525
6642
  "description": "Multiple separate IP addresses or an IP range",
@@ -6597,7 +6714,7 @@
6597
6714
  "varName": "ipAddressRange"
6598
6715
  },
6599
6716
  "networkInterface": {
6600
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
6717
+ "alias": "networkInterfaceInternetFirewallSource: networkInterface",
6601
6718
  "args": {},
6602
6719
  "deprecationReason": null,
6603
6720
  "description": "Network range defined for a site",
@@ -6675,7 +6792,7 @@
6675
6792
  "varName": "networkInterfaceRef"
6676
6793
  },
6677
6794
  "site": {
6678
- "alias": "siteRefSite: site",
6795
+ "alias": "siteInternetFirewallSource: site",
6679
6796
  "args": {},
6680
6797
  "deprecationReason": null,
6681
6798
  "description": "Site defined for the account",
@@ -6753,7 +6870,7 @@
6753
6870
  "varName": "siteRef"
6754
6871
  },
6755
6872
  "siteNetworkSubnet": {
6756
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
6873
+ "alias": "siteNetworkSubnetInternetFirewallSource: siteNetworkSubnet",
6757
6874
  "args": {},
6758
6875
  "deprecationReason": null,
6759
6876
  "description": "GlobalRange + InterfaceSubnet",
@@ -6854,7 +6971,7 @@
6854
6971
  "varName": "subnet"
6855
6972
  },
6856
6973
  "systemGroup": {
6857
- "alias": "systemGroupRefSystemGroup: systemGroup",
6974
+ "alias": "systemGroupInternetFirewallSource: systemGroup",
6858
6975
  "args": {},
6859
6976
  "deprecationReason": null,
6860
6977
  "description": "Predefined Cato groups",
@@ -6932,7 +7049,7 @@
6932
7049
  "varName": "systemGroupRef"
6933
7050
  },
6934
7051
  "user": {
6935
- "alias": "userRefUser: user",
7052
+ "alias": "userInternetFirewallSource: user",
6936
7053
  "args": {},
6937
7054
  "deprecationReason": null,
6938
7055
  "description": "Individual users defined for the account",
@@ -7010,7 +7127,7 @@
7010
7127
  "varName": "userRef"
7011
7128
  },
7012
7129
  "usersGroup": {
7013
- "alias": "usersGroupRefUsersGroup: usersGroup",
7130
+ "alias": "usersGroupInternetFirewallSource: usersGroup",
7014
7131
  "args": {},
7015
7132
  "deprecationReason": null,
7016
7133
  "description": "Group of users",
@@ -7105,7 +7222,7 @@
7105
7222
  "varName": "internetFirewallSource"
7106
7223
  },
7107
7224
  "tracking": {
7108
- "alias": "policyTrackingTracking: tracking",
7225
+ "alias": "trackingInternetFirewallRule: tracking",
7109
7226
  "args": {},
7110
7227
  "deprecationReason": null,
7111
7228
  "description": "Tracking information when the rule is matched, such as events and notifications",
@@ -7122,7 +7239,7 @@
7122
7239
  "enumValues": null,
7123
7240
  "fields": {
7124
7241
  "alert": {
7125
- "alias": "policyRuleTrackingAlertAlert: alert",
7242
+ "alias": "alertPolicyTracking: alert",
7126
7243
  "args": {},
7127
7244
  "deprecationReason": null,
7128
7245
  "description": null,
@@ -7160,7 +7277,7 @@
7160
7277
  "varName": "enabled"
7161
7278
  },
7162
7279
  "frequency": {
7163
- "alias": "policyRuleTrackingFrequencyEnumFrequency: frequency",
7280
+ "alias": "frequencyPolicyRuleTrackingAlert: frequency",
7164
7281
  "args": {},
7165
7282
  "deprecationReason": null,
7166
7283
  "description": "Returns data for the alert frequency",
@@ -7218,7 +7335,7 @@
7218
7335
  "varName": "frequency"
7219
7336
  },
7220
7337
  "mailingList": {
7221
- "alias": "subscriptionMailingListRefMailingList: mailingList",
7338
+ "alias": "mailingListPolicyRuleTrackingAlert: mailingList",
7222
7339
  "args": {},
7223
7340
  "deprecationReason": null,
7224
7341
  "description": "Returns data for the Mailing List that receives the alert",
@@ -7296,7 +7413,7 @@
7296
7413
  "varName": "subscriptionMailingListRef"
7297
7414
  },
7298
7415
  "subscriptionGroup": {
7299
- "alias": "subscriptionGroupRefSubscriptionGroup: subscriptionGroup",
7416
+ "alias": "subscriptionGroupPolicyRuleTrackingAlert: subscriptionGroup",
7300
7417
  "args": {},
7301
7418
  "deprecationReason": null,
7302
7419
  "description": "Returns data for the Subscription Group that receives the alert",
@@ -7374,7 +7491,7 @@
7374
7491
  "varName": "subscriptionGroupRef"
7375
7492
  },
7376
7493
  "webhook": {
7377
- "alias": "subscriptionWebhookRefWebhook: webhook",
7494
+ "alias": "webhookPolicyRuleTrackingAlert: webhook",
7378
7495
  "args": {},
7379
7496
  "deprecationReason": null,
7380
7497
  "description": "Returns data for the Webhook that receives the alert",
@@ -7469,7 +7586,7 @@
7469
7586
  "varName": "policyRuleTrackingAlert"
7470
7587
  },
7471
7588
  "event": {
7472
- "alias": "policyRuleTrackingEventEvent: event",
7589
+ "alias": "eventPolicyTracking: event",
7473
7590
  "args": {},
7474
7591
  "deprecationReason": null,
7475
7592
  "description": null,
@@ -7593,7 +7710,7 @@
7593
7710
  "enumValues": null,
7594
7711
  "fields": {
7595
7712
  "audit": {
7596
- "alias": "policyElementAuditAudit: audit",
7713
+ "alias": "auditPolicySectionPayload: audit",
7597
7714
  "args": {},
7598
7715
  "deprecationReason": null,
7599
7716
  "description": null,
@@ -7669,7 +7786,7 @@
7669
7786
  "varName": "policyElementAudit"
7670
7787
  },
7671
7788
  "properties": {
7672
- "alias": "policyElementPropertiesEnumProperties: properties",
7789
+ "alias": "propertiesPolicySectionPayload: properties",
7673
7790
  "args": {},
7674
7791
  "deprecationReason": null,
7675
7792
  "description": null,
@@ -7747,7 +7864,7 @@
7747
7864
  "varName": "properties"
7748
7865
  },
7749
7866
  "section": {
7750
- "alias": "policySectionInfoSection: section",
7867
+ "alias": "sectionPolicySectionPayload: section",
7751
7868
  "args": {},
7752
7869
  "deprecationReason": null,
7753
7870
  "description": null,
@@ -7858,7 +7975,7 @@
7858
7975
  "varName": "internetFirewallPolicy"
7859
7976
  },
7860
7977
  "status": {
7861
- "alias": "policyMutationStatusStatus: status",
7978
+ "alias": "statusInternetFirewallPolicyMutationPayload: status",
7862
7979
  "args": {},
7863
7980
  "deprecationReason": null,
7864
7981
  "description": null,