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
@@ -216,6 +216,111 @@
216
216
  },
217
217
  "varName": "action"
218
218
  },
219
+ "activePeriod": {
220
+ "defaultValue": "{useEffectiveFrom: false, useExpiresAt: false}",
221
+ "description": "The time period during which the rule is active, outside this period, the rule is inactive",
222
+ "id_str": "addRule___input___rule___activePeriod",
223
+ "name": "activePeriod",
224
+ "path": "addRule.input.rule.activePeriod",
225
+ "requestStr": "$policyRuleActivePeriodInput:PolicyRuleActivePeriodInput! ",
226
+ "required": true,
227
+ "responseStr": "activePeriod:$policyRuleActivePeriodInput ",
228
+ "type": {
229
+ "definition": {
230
+ "description": "Input of the time period during which the rule is active, outside this period, the rule is inactive",
231
+ "enumValues": null,
232
+ "fields": null,
233
+ "inputFields": {
234
+ "effectiveFrom": {
235
+ "defaultValue": null,
236
+ "description": "The time the rule becomes active, if not used, default null",
237
+ "id_str": "addRule___input___rule___activePeriod___effectiveFrom",
238
+ "name": "effectiveFrom",
239
+ "path": "addRule.input.rule.activePeriod.effectiveFrom",
240
+ "requestStr": "$effectiveFrom:DateTime ",
241
+ "required": false,
242
+ "responseStr": "effectiveFrom:$effectiveFrom ",
243
+ "type": {
244
+ "kind": [
245
+ "SCALAR"
246
+ ],
247
+ "name": "DateTime",
248
+ "non_null": false
249
+ },
250
+ "varName": "effectiveFrom"
251
+ },
252
+ "expiresAt": {
253
+ "defaultValue": null,
254
+ "description": "The time the rule expires, if not used, default null",
255
+ "id_str": "addRule___input___rule___activePeriod___expiresAt",
256
+ "name": "expiresAt",
257
+ "path": "addRule.input.rule.activePeriod.expiresAt",
258
+ "requestStr": "$expiresAt:DateTime ",
259
+ "required": false,
260
+ "responseStr": "expiresAt:$expiresAt ",
261
+ "type": {
262
+ "kind": [
263
+ "SCALAR"
264
+ ],
265
+ "name": "DateTime",
266
+ "non_null": false
267
+ },
268
+ "varName": "expiresAt"
269
+ },
270
+ "useEffectiveFrom": {
271
+ "defaultValue": "false",
272
+ "description": null,
273
+ "id_str": "addRule___input___rule___activePeriod___useEffectiveFrom",
274
+ "name": "useEffectiveFrom",
275
+ "path": "addRule.input.rule.activePeriod.useEffectiveFrom",
276
+ "requestStr": "$useEffectiveFrom:Boolean! ",
277
+ "required": true,
278
+ "responseStr": "useEffectiveFrom:$useEffectiveFrom ",
279
+ "type": {
280
+ "kind": [
281
+ "NON_NULL",
282
+ "SCALAR"
283
+ ],
284
+ "name": "Boolean",
285
+ "non_null": false
286
+ },
287
+ "varName": "useEffectiveFrom"
288
+ },
289
+ "useExpiresAt": {
290
+ "defaultValue": "false",
291
+ "description": null,
292
+ "id_str": "addRule___input___rule___activePeriod___useExpiresAt",
293
+ "name": "useExpiresAt",
294
+ "path": "addRule.input.rule.activePeriod.useExpiresAt",
295
+ "requestStr": "$useExpiresAt:Boolean! ",
296
+ "required": true,
297
+ "responseStr": "useExpiresAt:$useExpiresAt ",
298
+ "type": {
299
+ "kind": [
300
+ "NON_NULL",
301
+ "SCALAR"
302
+ ],
303
+ "name": "Boolean",
304
+ "non_null": false
305
+ },
306
+ "varName": "useExpiresAt"
307
+ }
308
+ },
309
+ "interfaces": null,
310
+ "kind": "INPUT_OBJECT",
311
+ "name": "PolicyRuleActivePeriodInput",
312
+ "possibleTypes": null
313
+ },
314
+ "indexType": "input_object",
315
+ "kind": [
316
+ "NON_NULL",
317
+ "INPUT_OBJECT"
318
+ ],
319
+ "name": "PolicyRuleActivePeriodInput",
320
+ "non_null": false
321
+ },
322
+ "varName": "policyRuleActivePeriodInput"
323
+ },
219
324
  "application": {
220
325
  "defaultValue": "{application: [], appCategory: [], customApp: [], customCategory: [], sanctionedAppsCategory: [], domain: [], fqdn: [], ip: [], subnet: [], ipRange: [], globalIpRange: []}",
221
326
  "description": "Application traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -8798,6 +8903,8 @@
8798
8903
  "PolicyMutationError": true,
8799
8904
  "PolicyMutationRevisionInput": true,
8800
8905
  "PolicyMutationStatus": true,
8906
+ "PolicyRuleActivePeriod": true,
8907
+ "PolicyRuleActivePeriodInput": true,
8801
8908
  "PolicyRulePositionEnum": true,
8802
8909
  "PolicyRulePositionInput": true,
8803
8910
  "PolicyRuleTrackingAlert": true,
@@ -9065,6 +9172,111 @@
9065
9172
  },
9066
9173
  "varName": "action"
9067
9174
  },
9175
+ "activePeriod": {
9176
+ "defaultValue": "{useEffectiveFrom: false, useExpiresAt: false}",
9177
+ "description": "The time period during which the rule is active, outside this period, the rule is inactive",
9178
+ "id_str": "addRule___input___rule___activePeriod",
9179
+ "name": "activePeriod",
9180
+ "path": "addRule.input.rule.activePeriod",
9181
+ "requestStr": "$policyRuleActivePeriodInput:PolicyRuleActivePeriodInput! ",
9182
+ "required": true,
9183
+ "responseStr": "activePeriod:$policyRuleActivePeriodInput ",
9184
+ "type": {
9185
+ "definition": {
9186
+ "description": "Input of the time period during which the rule is active, outside this period, the rule is inactive",
9187
+ "enumValues": null,
9188
+ "fields": null,
9189
+ "inputFields": {
9190
+ "effectiveFrom": {
9191
+ "defaultValue": null,
9192
+ "description": "The time the rule becomes active, if not used, default null",
9193
+ "id_str": "addRule___input___rule___activePeriod___effectiveFrom",
9194
+ "name": "effectiveFrom",
9195
+ "path": "addRule.input.rule.activePeriod.effectiveFrom",
9196
+ "requestStr": "$effectiveFrom:DateTime ",
9197
+ "required": false,
9198
+ "responseStr": "effectiveFrom:$effectiveFrom ",
9199
+ "type": {
9200
+ "kind": [
9201
+ "SCALAR"
9202
+ ],
9203
+ "name": "DateTime",
9204
+ "non_null": false
9205
+ },
9206
+ "varName": "effectiveFrom"
9207
+ },
9208
+ "expiresAt": {
9209
+ "defaultValue": null,
9210
+ "description": "The time the rule expires, if not used, default null",
9211
+ "id_str": "addRule___input___rule___activePeriod___expiresAt",
9212
+ "name": "expiresAt",
9213
+ "path": "addRule.input.rule.activePeriod.expiresAt",
9214
+ "requestStr": "$expiresAt:DateTime ",
9215
+ "required": false,
9216
+ "responseStr": "expiresAt:$expiresAt ",
9217
+ "type": {
9218
+ "kind": [
9219
+ "SCALAR"
9220
+ ],
9221
+ "name": "DateTime",
9222
+ "non_null": false
9223
+ },
9224
+ "varName": "expiresAt"
9225
+ },
9226
+ "useEffectiveFrom": {
9227
+ "defaultValue": "false",
9228
+ "description": null,
9229
+ "id_str": "addRule___input___rule___activePeriod___useEffectiveFrom",
9230
+ "name": "useEffectiveFrom",
9231
+ "path": "addRule.input.rule.activePeriod.useEffectiveFrom",
9232
+ "requestStr": "$useEffectiveFrom:Boolean! ",
9233
+ "required": true,
9234
+ "responseStr": "useEffectiveFrom:$useEffectiveFrom ",
9235
+ "type": {
9236
+ "kind": [
9237
+ "NON_NULL",
9238
+ "SCALAR"
9239
+ ],
9240
+ "name": "Boolean",
9241
+ "non_null": false
9242
+ },
9243
+ "varName": "useEffectiveFrom"
9244
+ },
9245
+ "useExpiresAt": {
9246
+ "defaultValue": "false",
9247
+ "description": null,
9248
+ "id_str": "addRule___input___rule___activePeriod___useExpiresAt",
9249
+ "name": "useExpiresAt",
9250
+ "path": "addRule.input.rule.activePeriod.useExpiresAt",
9251
+ "requestStr": "$useExpiresAt:Boolean! ",
9252
+ "required": true,
9253
+ "responseStr": "useExpiresAt:$useExpiresAt ",
9254
+ "type": {
9255
+ "kind": [
9256
+ "NON_NULL",
9257
+ "SCALAR"
9258
+ ],
9259
+ "name": "Boolean",
9260
+ "non_null": false
9261
+ },
9262
+ "varName": "useExpiresAt"
9263
+ }
9264
+ },
9265
+ "interfaces": null,
9266
+ "kind": "INPUT_OBJECT",
9267
+ "name": "PolicyRuleActivePeriodInput",
9268
+ "possibleTypes": null
9269
+ },
9270
+ "indexType": "input_object",
9271
+ "kind": [
9272
+ "NON_NULL",
9273
+ "INPUT_OBJECT"
9274
+ ],
9275
+ "name": "PolicyRuleActivePeriodInput",
9276
+ "non_null": false
9277
+ },
9278
+ "varName": "policyRuleActivePeriodInput"
9279
+ },
9068
9280
  "application": {
9069
9281
  "defaultValue": "{application: [], appCategory: [], customApp: [], customCategory: [], sanctionedAppsCategory: [], domain: [], fqdn: [], ip: [], subnet: [], ipRange: [], globalIpRange: []}",
9070
9282
  "description": "Application traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -17869,6 +18081,111 @@
17869
18081
  },
17870
18082
  "varName": "action"
17871
18083
  },
18084
+ "activePeriod": {
18085
+ "defaultValue": "{useEffectiveFrom: false, useExpiresAt: false}",
18086
+ "description": "The time period during which the rule is active, outside this period, the rule is inactive",
18087
+ "id_str": "addRule___input___rule___activePeriod",
18088
+ "name": "activePeriod",
18089
+ "path": "addRule.input.rule.activePeriod",
18090
+ "requestStr": "$policyRuleActivePeriodInput:PolicyRuleActivePeriodInput! ",
18091
+ "required": true,
18092
+ "responseStr": "activePeriod:$policyRuleActivePeriodInput ",
18093
+ "type": {
18094
+ "definition": {
18095
+ "description": "Input of the time period during which the rule is active, outside this period, the rule is inactive",
18096
+ "enumValues": null,
18097
+ "fields": null,
18098
+ "inputFields": {
18099
+ "effectiveFrom": {
18100
+ "defaultValue": null,
18101
+ "description": "The time the rule becomes active, if not used, default null",
18102
+ "id_str": "addRule___input___rule___activePeriod___effectiveFrom",
18103
+ "name": "effectiveFrom",
18104
+ "path": "addRule.input.rule.activePeriod.effectiveFrom",
18105
+ "requestStr": "$effectiveFrom:DateTime ",
18106
+ "required": false,
18107
+ "responseStr": "effectiveFrom:$effectiveFrom ",
18108
+ "type": {
18109
+ "kind": [
18110
+ "SCALAR"
18111
+ ],
18112
+ "name": "DateTime",
18113
+ "non_null": false
18114
+ },
18115
+ "varName": "effectiveFrom"
18116
+ },
18117
+ "expiresAt": {
18118
+ "defaultValue": null,
18119
+ "description": "The time the rule expires, if not used, default null",
18120
+ "id_str": "addRule___input___rule___activePeriod___expiresAt",
18121
+ "name": "expiresAt",
18122
+ "path": "addRule.input.rule.activePeriod.expiresAt",
18123
+ "requestStr": "$expiresAt:DateTime ",
18124
+ "required": false,
18125
+ "responseStr": "expiresAt:$expiresAt ",
18126
+ "type": {
18127
+ "kind": [
18128
+ "SCALAR"
18129
+ ],
18130
+ "name": "DateTime",
18131
+ "non_null": false
18132
+ },
18133
+ "varName": "expiresAt"
18134
+ },
18135
+ "useEffectiveFrom": {
18136
+ "defaultValue": "false",
18137
+ "description": null,
18138
+ "id_str": "addRule___input___rule___activePeriod___useEffectiveFrom",
18139
+ "name": "useEffectiveFrom",
18140
+ "path": "addRule.input.rule.activePeriod.useEffectiveFrom",
18141
+ "requestStr": "$useEffectiveFrom:Boolean! ",
18142
+ "required": true,
18143
+ "responseStr": "useEffectiveFrom:$useEffectiveFrom ",
18144
+ "type": {
18145
+ "kind": [
18146
+ "NON_NULL",
18147
+ "SCALAR"
18148
+ ],
18149
+ "name": "Boolean",
18150
+ "non_null": false
18151
+ },
18152
+ "varName": "useEffectiveFrom"
18153
+ },
18154
+ "useExpiresAt": {
18155
+ "defaultValue": "false",
18156
+ "description": null,
18157
+ "id_str": "addRule___input___rule___activePeriod___useExpiresAt",
18158
+ "name": "useExpiresAt",
18159
+ "path": "addRule.input.rule.activePeriod.useExpiresAt",
18160
+ "requestStr": "$useExpiresAt:Boolean! ",
18161
+ "required": true,
18162
+ "responseStr": "useExpiresAt:$useExpiresAt ",
18163
+ "type": {
18164
+ "kind": [
18165
+ "NON_NULL",
18166
+ "SCALAR"
18167
+ ],
18168
+ "name": "Boolean",
18169
+ "non_null": false
18170
+ },
18171
+ "varName": "useExpiresAt"
18172
+ }
18173
+ },
18174
+ "interfaces": null,
18175
+ "kind": "INPUT_OBJECT",
18176
+ "name": "PolicyRuleActivePeriodInput",
18177
+ "possibleTypes": null
18178
+ },
18179
+ "indexType": "input_object",
18180
+ "kind": [
18181
+ "NON_NULL",
18182
+ "INPUT_OBJECT"
18183
+ ],
18184
+ "name": "PolicyRuleActivePeriodInput",
18185
+ "non_null": false
18186
+ },
18187
+ "varName": "policyRuleActivePeriodInput"
18188
+ },
17872
18189
  "application": {
17873
18190
  "defaultValue": "{application: [], appCategory: [], customApp: [], customCategory: [], sanctionedAppsCategory: [], domain: [], fqdn: [], ip: [], subnet: [], ipRange: [], globalIpRange: []}",
17874
18191
  "description": "Application traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -26314,7 +26631,7 @@
26314
26631
  "enumValues": null,
26315
26632
  "fields": {
26316
26633
  "errors": {
26317
- "alias": "policyMutationErrorErrors: errors",
26634
+ "alias": "errorsWanFirewallRuleMutationPayload: errors",
26318
26635
  "args": {},
26319
26636
  "deprecationReason": null,
26320
26637
  "description": null,
@@ -26390,7 +26707,7 @@
26390
26707
  "varName": "policyMutationError"
26391
26708
  },
26392
26709
  "rule": {
26393
- "alias": "wanFirewallRulePayloadRule: rule",
26710
+ "alias": "ruleWanFirewallRuleMutationPayload: rule",
26394
26711
  "args": {},
26395
26712
  "deprecationReason": null,
26396
26713
  "description": null,
@@ -26575,7 +26892,7 @@
26575
26892
  "enumValues": null,
26576
26893
  "fields": {
26577
26894
  "action": {
26578
- "alias": "wanFirewallActionEnumAction: action",
26895
+ "alias": "actionWanFirewallRule: action",
26579
26896
  "args": {},
26580
26897
  "deprecationReason": null,
26581
26898
  "description": "The action applied by the Internet Firewall if the rule is matched",
@@ -26626,8 +26943,124 @@
26626
26943
  },
26627
26944
  "varName": "action"
26628
26945
  },
26946
+ "activePeriod": {
26947
+ "alias": "activePeriodWanFirewallRule: activePeriod",
26948
+ "args": {},
26949
+ "deprecationReason": null,
26950
+ "description": "The time period during which the rule is active, outside this period, the rule is inactive",
26951
+ "id_str": "wanFirewall___addRule___rule___rule___activePeriod",
26952
+ "isDeprecated": false,
26953
+ "name": "activePeriod",
26954
+ "path": "wanFirewall.addRule.rule.rule.activePeriod",
26955
+ "requestStr": "$policyRuleActivePeriod:PolicyRuleActivePeriod! ",
26956
+ "required": true,
26957
+ "responseStr": "activePeriod:$policyRuleActivePeriod ",
26958
+ "type": {
26959
+ "definition": {
26960
+ "description": "Returns the time period during which the rule is active, outside this period, the rule is inactive",
26961
+ "enumValues": null,
26962
+ "fields": {
26963
+ "effectiveFrom": {
26964
+ "args": {},
26965
+ "deprecationReason": null,
26966
+ "description": "The time the rule becomes active, if not used, default null",
26967
+ "id_str": "wanFirewall___addRule___rule___rule___activePeriod___effectiveFrom",
26968
+ "isDeprecated": false,
26969
+ "name": "effectiveFrom",
26970
+ "path": "wanFirewall.addRule.rule.rule.activePeriod.effectiveFrom",
26971
+ "requestStr": "$effectiveFrom:DateTime ",
26972
+ "required": false,
26973
+ "responseStr": "effectiveFrom:$effectiveFrom ",
26974
+ "type": {
26975
+ "kind": [
26976
+ "SCALAR"
26977
+ ],
26978
+ "name": "DateTime",
26979
+ "non_null": false
26980
+ },
26981
+ "varName": "effectiveFrom"
26982
+ },
26983
+ "expiresAt": {
26984
+ "args": {},
26985
+ "deprecationReason": null,
26986
+ "description": "The time the rule expires, if not used, default null",
26987
+ "id_str": "wanFirewall___addRule___rule___rule___activePeriod___expiresAt",
26988
+ "isDeprecated": false,
26989
+ "name": "expiresAt",
26990
+ "path": "wanFirewall.addRule.rule.rule.activePeriod.expiresAt",
26991
+ "requestStr": "$expiresAt:DateTime ",
26992
+ "required": false,
26993
+ "responseStr": "expiresAt:$expiresAt ",
26994
+ "type": {
26995
+ "kind": [
26996
+ "SCALAR"
26997
+ ],
26998
+ "name": "DateTime",
26999
+ "non_null": false
27000
+ },
27001
+ "varName": "expiresAt"
27002
+ },
27003
+ "useEffectiveFrom": {
27004
+ "args": {},
27005
+ "deprecationReason": null,
27006
+ "description": null,
27007
+ "id_str": "wanFirewall___addRule___rule___rule___activePeriod___useEffectiveFrom",
27008
+ "isDeprecated": false,
27009
+ "name": "useEffectiveFrom",
27010
+ "path": "wanFirewall.addRule.rule.rule.activePeriod.useEffectiveFrom",
27011
+ "requestStr": "$useEffectiveFrom:Boolean! ",
27012
+ "required": true,
27013
+ "responseStr": "useEffectiveFrom:$useEffectiveFrom ",
27014
+ "type": {
27015
+ "kind": [
27016
+ "NON_NULL",
27017
+ "SCALAR"
27018
+ ],
27019
+ "name": "Boolean",
27020
+ "non_null": false
27021
+ },
27022
+ "varName": "useEffectiveFrom"
27023
+ },
27024
+ "useExpiresAt": {
27025
+ "args": {},
27026
+ "deprecationReason": null,
27027
+ "description": null,
27028
+ "id_str": "wanFirewall___addRule___rule___rule___activePeriod___useExpiresAt",
27029
+ "isDeprecated": false,
27030
+ "name": "useExpiresAt",
27031
+ "path": "wanFirewall.addRule.rule.rule.activePeriod.useExpiresAt",
27032
+ "requestStr": "$useExpiresAt:Boolean! ",
27033
+ "required": true,
27034
+ "responseStr": "useExpiresAt:$useExpiresAt ",
27035
+ "type": {
27036
+ "kind": [
27037
+ "NON_NULL",
27038
+ "SCALAR"
27039
+ ],
27040
+ "name": "Boolean",
27041
+ "non_null": false
27042
+ },
27043
+ "varName": "useExpiresAt"
27044
+ }
27045
+ },
27046
+ "inputFields": null,
27047
+ "interfaces": {},
27048
+ "kind": "OBJECT",
27049
+ "name": "PolicyRuleActivePeriod",
27050
+ "possibleTypes": null
27051
+ },
27052
+ "indexType": "object",
27053
+ "kind": [
27054
+ "NON_NULL",
27055
+ "OBJECT"
27056
+ ],
27057
+ "name": "PolicyRuleActivePeriod",
27058
+ "non_null": false
27059
+ },
27060
+ "varName": "policyRuleActivePeriod"
27061
+ },
26629
27062
  "application": {
26630
- "alias": "wanFirewallApplicationApplication: application",
27063
+ "alias": "applicationWanFirewallRule: application",
26631
27064
  "args": {},
26632
27065
  "deprecationReason": null,
26633
27066
  "description": "Application traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -26644,7 +27077,7 @@
26644
27077
  "enumValues": null,
26645
27078
  "fields": {
26646
27079
  "appCategory": {
26647
- "alias": "applicationCategoryRefAppCategory: appCategory",
27080
+ "alias": "appCategoryWanFirewallApplication: appCategory",
26648
27081
  "args": {},
26649
27082
  "deprecationReason": null,
26650
27083
  "description": "Cato category of applications which are dynamically updated by Cato",
@@ -26722,7 +27155,7 @@
26722
27155
  "varName": "applicationCategoryRef"
26723
27156
  },
26724
27157
  "application": {
26725
- "alias": "applicationRefApplication: application",
27158
+ "alias": "applicationWanFirewallApplication: application",
26726
27159
  "args": {},
26727
27160
  "deprecationReason": null,
26728
27161
  "description": "Applications for the rule (pre-defined)",
@@ -26800,7 +27233,7 @@
26800
27233
  "varName": "applicationRef"
26801
27234
  },
26802
27235
  "customApp": {
26803
- "alias": "customApplicationRefCustomApp: customApp",
27236
+ "alias": "customAppWanFirewallApplication: customApp",
26804
27237
  "args": {},
26805
27238
  "deprecationReason": null,
26806
27239
  "description": "Custom (user-defined) applications",
@@ -26878,7 +27311,7 @@
26878
27311
  "varName": "customApplicationRef"
26879
27312
  },
26880
27313
  "customCategory": {
26881
- "alias": "customCategoryRefCustomCategory: customCategory",
27314
+ "alias": "customCategoryWanFirewallApplication: customCategory",
26882
27315
  "args": {},
26883
27316
  "deprecationReason": null,
26884
27317
  "description": "Custom Categories \u2013 Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
@@ -27002,7 +27435,7 @@
27002
27435
  "varName": "fqdn"
27003
27436
  },
27004
27437
  "globalIpRange": {
27005
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
27438
+ "alias": "globalIpRangeWanFirewallApplication: globalIpRange",
27006
27439
  "args": {},
27007
27440
  "deprecationReason": null,
27008
27441
  "description": "Globally defined IP range, IP and subnet objects",
@@ -27103,7 +27536,7 @@
27103
27536
  "varName": "ip"
27104
27537
  },
27105
27538
  "ipRange": {
27106
- "alias": "ipAddressRangeIpRange: ipRange",
27539
+ "alias": "ipRangeWanFirewallApplication: ipRange",
27107
27540
  "args": {},
27108
27541
  "deprecationReason": null,
27109
27542
  "description": "A range of IPs. Every IP within the range will be matched",
@@ -27181,7 +27614,7 @@
27181
27614
  "varName": "ipAddressRange"
27182
27615
  },
27183
27616
  "sanctionedAppsCategory": {
27184
- "alias": "sanctionedAppsCategoryRefSanctionedAppsCategory: sanctionedAppsCategory",
27617
+ "alias": "sanctionedAppsCategoryWanFirewallApplication: sanctionedAppsCategory",
27185
27618
  "args": {},
27186
27619
  "deprecationReason": null,
27187
27620
  "description": "Sanctioned Cloud Applications - apps that are approved and generally represent an understood and acceptable level of risk in your organization.",
@@ -27299,7 +27732,7 @@
27299
27732
  "varName": "wanFirewallApplication"
27300
27733
  },
27301
27734
  "connectionOrigin": {
27302
- "alias": "connectionOriginEnumConnectionOrigin: connectionOrigin",
27735
+ "alias": "connectionOriginWanFirewallRule: connectionOrigin",
27303
27736
  "args": {},
27304
27737
  "deprecationReason": null,
27305
27738
  "description": "Connection origin of the traffic",
@@ -27351,7 +27784,7 @@
27351
27784
  "varName": "connectionOrigin"
27352
27785
  },
27353
27786
  "country": {
27354
- "alias": "countryRefCountry: country",
27787
+ "alias": "countryWanFirewallRule: country",
27355
27788
  "args": {},
27356
27789
  "deprecationReason": null,
27357
27790
  "description": "Source country traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -27450,7 +27883,7 @@
27450
27883
  "varName": "description"
27451
27884
  },
27452
27885
  "destination": {
27453
- "alias": "wanFirewallDestinationDestination: destination",
27886
+ "alias": "destinationWanFirewallRule: destination",
27454
27887
  "args": {},
27455
27888
  "deprecationReason": null,
27456
27889
  "description": "Destination traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -27467,7 +27900,7 @@
27467
27900
  "enumValues": null,
27468
27901
  "fields": {
27469
27902
  "floatingSubnet": {
27470
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
27903
+ "alias": "floatingSubnetWanFirewallDestination: floatingSubnet",
27471
27904
  "args": {},
27472
27905
  "deprecationReason": null,
27473
27906
  "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.",
@@ -27545,7 +27978,7 @@
27545
27978
  "varName": "floatingSubnetRef"
27546
27979
  },
27547
27980
  "globalIpRange": {
27548
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
27981
+ "alias": "globalIpRangeWanFirewallDestination: globalIpRange",
27549
27982
  "args": {},
27550
27983
  "deprecationReason": null,
27551
27984
  "description": "Globally defined IP range, IP and subnet objects",
@@ -27623,7 +28056,7 @@
27623
28056
  "varName": "globalIpRangeRef"
27624
28057
  },
27625
28058
  "group": {
27626
- "alias": "groupRefGroup: group",
28059
+ "alias": "groupWanFirewallDestination: group",
27627
28060
  "args": {},
27628
28061
  "deprecationReason": null,
27629
28062
  "description": "Groups defined for your account",
@@ -27701,7 +28134,7 @@
27701
28134
  "varName": "groupRef"
27702
28135
  },
27703
28136
  "host": {
27704
- "alias": "hostRefHost: host",
28137
+ "alias": "hostWanFirewallDestination: host",
27705
28138
  "args": {},
27706
28139
  "deprecationReason": null,
27707
28140
  "description": "Hosts and servers defined for your account",
@@ -27802,7 +28235,7 @@
27802
28235
  "varName": "ip"
27803
28236
  },
27804
28237
  "ipRange": {
27805
- "alias": "ipAddressRangeIpRange: ipRange",
28238
+ "alias": "ipRangeWanFirewallDestination: ipRange",
27806
28239
  "args": {},
27807
28240
  "deprecationReason": null,
27808
28241
  "description": "Multiple separate IP addresses or an IP range",
@@ -27880,7 +28313,7 @@
27880
28313
  "varName": "ipAddressRange"
27881
28314
  },
27882
28315
  "networkInterface": {
27883
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
28316
+ "alias": "networkInterfaceWanFirewallDestination: networkInterface",
27884
28317
  "args": {},
27885
28318
  "deprecationReason": null,
27886
28319
  "description": "Network range defined for a site",
@@ -27958,7 +28391,7 @@
27958
28391
  "varName": "networkInterfaceRef"
27959
28392
  },
27960
28393
  "site": {
27961
- "alias": "siteRefSite: site",
28394
+ "alias": "siteWanFirewallDestination: site",
27962
28395
  "args": {},
27963
28396
  "deprecationReason": null,
27964
28397
  "description": "Site defined for the account",
@@ -28036,7 +28469,7 @@
28036
28469
  "varName": "siteRef"
28037
28470
  },
28038
28471
  "siteNetworkSubnet": {
28039
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
28472
+ "alias": "siteNetworkSubnetWanFirewallDestination: siteNetworkSubnet",
28040
28473
  "args": {},
28041
28474
  "deprecationReason": null,
28042
28475
  "description": "GlobalRange + InterfaceSubnet",
@@ -28137,7 +28570,7 @@
28137
28570
  "varName": "subnet"
28138
28571
  },
28139
28572
  "systemGroup": {
28140
- "alias": "systemGroupRefSystemGroup: systemGroup",
28573
+ "alias": "systemGroupWanFirewallDestination: systemGroup",
28141
28574
  "args": {},
28142
28575
  "deprecationReason": null,
28143
28576
  "description": "Predefined Cato groups",
@@ -28215,7 +28648,7 @@
28215
28648
  "varName": "systemGroupRef"
28216
28649
  },
28217
28650
  "user": {
28218
- "alias": "userRefUser: user",
28651
+ "alias": "userWanFirewallDestination: user",
28219
28652
  "args": {},
28220
28653
  "deprecationReason": null,
28221
28654
  "description": "Individual users defined for the account",
@@ -28293,7 +28726,7 @@
28293
28726
  "varName": "userRef"
28294
28727
  },
28295
28728
  "usersGroup": {
28296
- "alias": "usersGroupRefUsersGroup: usersGroup",
28729
+ "alias": "usersGroupWanFirewallDestination: usersGroup",
28297
28730
  "args": {},
28298
28731
  "deprecationReason": null,
28299
28732
  "description": "Group of users",
@@ -28388,7 +28821,7 @@
28388
28821
  "varName": "wanFirewallDestination"
28389
28822
  },
28390
28823
  "device": {
28391
- "alias": "deviceProfileRefDevice: device",
28824
+ "alias": "deviceWanFirewallRule: device",
28392
28825
  "args": {},
28393
28826
  "deprecationReason": null,
28394
28827
  "description": "Source Device Profile traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -28466,7 +28899,7 @@
28466
28899
  "varName": "deviceProfileRef"
28467
28900
  },
28468
28901
  "deviceAttributes": {
28469
- "alias": "deviceAttributesDeviceAttributes: deviceAttributes",
28902
+ "alias": "deviceAttributesWanFirewallRule: deviceAttributes",
28470
28903
  "args": {},
28471
28904
  "deprecationReason": null,
28472
28905
  "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.",
@@ -28638,7 +29071,7 @@
28638
29071
  "varName": "deviceAttributes"
28639
29072
  },
28640
29073
  "deviceOS": {
28641
- "alias": "operatingSystemDeviceOS: deviceOS",
29074
+ "alias": "deviceOSWanFirewallRule: deviceOS",
28642
29075
  "args": {},
28643
29076
  "deprecationReason": null,
28644
29077
  "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.",
@@ -28710,7 +29143,7 @@
28710
29143
  "varName": "deviceOS"
28711
29144
  },
28712
29145
  "direction": {
28713
- "alias": "wanFirewallDirectionEnumDirection: direction",
29146
+ "alias": "directionWanFirewallRule: direction",
28714
29147
  "args": {},
28715
29148
  "deprecationReason": null,
28716
29149
  "description": null,
@@ -28777,7 +29210,7 @@
28777
29210
  "varName": "enabled"
28778
29211
  },
28779
29212
  "exceptions": {
28780
- "alias": "wanFirewallRuleExceptionExceptions: exceptions",
29213
+ "alias": "exceptionsWanFirewallRule: exceptions",
28781
29214
  "args": {},
28782
29215
  "deprecationReason": null,
28783
29216
  "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.",
@@ -28794,7 +29227,7 @@
28794
29227
  "enumValues": null,
28795
29228
  "fields": {
28796
29229
  "application": {
28797
- "alias": "wanFirewallApplicationApplication: application",
29230
+ "alias": "applicationWanFirewallRuleException: application",
28798
29231
  "args": {},
28799
29232
  "deprecationReason": null,
28800
29233
  "description": "Application matching criteria for the exception.",
@@ -28811,7 +29244,7 @@
28811
29244
  "enumValues": null,
28812
29245
  "fields": {
28813
29246
  "appCategory": {
28814
- "alias": "applicationCategoryRefAppCategory: appCategory",
29247
+ "alias": "appCategoryWanFirewallApplication: appCategory",
28815
29248
  "args": {},
28816
29249
  "deprecationReason": null,
28817
29250
  "description": "Cato category of applications which are dynamically updated by Cato",
@@ -28889,7 +29322,7 @@
28889
29322
  "varName": "applicationCategoryRef"
28890
29323
  },
28891
29324
  "application": {
28892
- "alias": "applicationRefApplication: application",
29325
+ "alias": "applicationWanFirewallApplication: application",
28893
29326
  "args": {},
28894
29327
  "deprecationReason": null,
28895
29328
  "description": "Applications for the rule (pre-defined)",
@@ -28967,7 +29400,7 @@
28967
29400
  "varName": "applicationRef"
28968
29401
  },
28969
29402
  "customApp": {
28970
- "alias": "customApplicationRefCustomApp: customApp",
29403
+ "alias": "customAppWanFirewallApplication: customApp",
28971
29404
  "args": {},
28972
29405
  "deprecationReason": null,
28973
29406
  "description": "Custom (user-defined) applications",
@@ -29045,7 +29478,7 @@
29045
29478
  "varName": "customApplicationRef"
29046
29479
  },
29047
29480
  "customCategory": {
29048
- "alias": "customCategoryRefCustomCategory: customCategory",
29481
+ "alias": "customCategoryWanFirewallApplication: customCategory",
29049
29482
  "args": {},
29050
29483
  "deprecationReason": null,
29051
29484
  "description": "Custom Categories \u2013 Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
@@ -29169,7 +29602,7 @@
29169
29602
  "varName": "fqdn"
29170
29603
  },
29171
29604
  "globalIpRange": {
29172
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
29605
+ "alias": "globalIpRangeWanFirewallApplication: globalIpRange",
29173
29606
  "args": {},
29174
29607
  "deprecationReason": null,
29175
29608
  "description": "Globally defined IP range, IP and subnet objects",
@@ -29270,7 +29703,7 @@
29270
29703
  "varName": "ip"
29271
29704
  },
29272
29705
  "ipRange": {
29273
- "alias": "ipAddressRangeIpRange: ipRange",
29706
+ "alias": "ipRangeWanFirewallApplication: ipRange",
29274
29707
  "args": {},
29275
29708
  "deprecationReason": null,
29276
29709
  "description": "A range of IPs. Every IP within the range will be matched",
@@ -29348,7 +29781,7 @@
29348
29781
  "varName": "ipAddressRange"
29349
29782
  },
29350
29783
  "sanctionedAppsCategory": {
29351
- "alias": "sanctionedAppsCategoryRefSanctionedAppsCategory: sanctionedAppsCategory",
29784
+ "alias": "sanctionedAppsCategoryWanFirewallApplication: sanctionedAppsCategory",
29352
29785
  "args": {},
29353
29786
  "deprecationReason": null,
29354
29787
  "description": "Sanctioned Cloud Applications - apps that are approved and generally represent an understood and acceptable level of risk in your organization.",
@@ -29466,7 +29899,7 @@
29466
29899
  "varName": "wanFirewallApplication"
29467
29900
  },
29468
29901
  "connectionOrigin": {
29469
- "alias": "connectionOriginEnumConnectionOrigin: connectionOrigin",
29902
+ "alias": "connectionOriginWanFirewallRuleException: connectionOrigin",
29470
29903
  "args": {},
29471
29904
  "deprecationReason": null,
29472
29905
  "description": "Connection origin matching criteria for the exception.",
@@ -29518,7 +29951,7 @@
29518
29951
  "varName": "connectionOrigin"
29519
29952
  },
29520
29953
  "country": {
29521
- "alias": "countryRefCountry: country",
29954
+ "alias": "countryWanFirewallRuleException: country",
29522
29955
  "args": {},
29523
29956
  "deprecationReason": null,
29524
29957
  "description": "Source country matching criteria for the exception.",
@@ -29596,7 +30029,7 @@
29596
30029
  "varName": "countryRef"
29597
30030
  },
29598
30031
  "destination": {
29599
- "alias": "wanFirewallDestinationDestination: destination",
30032
+ "alias": "destinationWanFirewallRuleException: destination",
29600
30033
  "args": {},
29601
30034
  "deprecationReason": null,
29602
30035
  "description": "Destination matching criteria for the exception.",
@@ -29613,7 +30046,7 @@
29613
30046
  "enumValues": null,
29614
30047
  "fields": {
29615
30048
  "floatingSubnet": {
29616
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
30049
+ "alias": "floatingSubnetWanFirewallDestination: floatingSubnet",
29617
30050
  "args": {},
29618
30051
  "deprecationReason": null,
29619
30052
  "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.",
@@ -29691,7 +30124,7 @@
29691
30124
  "varName": "floatingSubnetRef"
29692
30125
  },
29693
30126
  "globalIpRange": {
29694
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
30127
+ "alias": "globalIpRangeWanFirewallDestination: globalIpRange",
29695
30128
  "args": {},
29696
30129
  "deprecationReason": null,
29697
30130
  "description": "Globally defined IP range, IP and subnet objects",
@@ -29769,7 +30202,7 @@
29769
30202
  "varName": "globalIpRangeRef"
29770
30203
  },
29771
30204
  "group": {
29772
- "alias": "groupRefGroup: group",
30205
+ "alias": "groupWanFirewallDestination: group",
29773
30206
  "args": {},
29774
30207
  "deprecationReason": null,
29775
30208
  "description": "Groups defined for your account",
@@ -29847,7 +30280,7 @@
29847
30280
  "varName": "groupRef"
29848
30281
  },
29849
30282
  "host": {
29850
- "alias": "hostRefHost: host",
30283
+ "alias": "hostWanFirewallDestination: host",
29851
30284
  "args": {},
29852
30285
  "deprecationReason": null,
29853
30286
  "description": "Hosts and servers defined for your account",
@@ -29948,7 +30381,7 @@
29948
30381
  "varName": "ip"
29949
30382
  },
29950
30383
  "ipRange": {
29951
- "alias": "ipAddressRangeIpRange: ipRange",
30384
+ "alias": "ipRangeWanFirewallDestination: ipRange",
29952
30385
  "args": {},
29953
30386
  "deprecationReason": null,
29954
30387
  "description": "Multiple separate IP addresses or an IP range",
@@ -30026,7 +30459,7 @@
30026
30459
  "varName": "ipAddressRange"
30027
30460
  },
30028
30461
  "networkInterface": {
30029
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
30462
+ "alias": "networkInterfaceWanFirewallDestination: networkInterface",
30030
30463
  "args": {},
30031
30464
  "deprecationReason": null,
30032
30465
  "description": "Network range defined for a site",
@@ -30104,7 +30537,7 @@
30104
30537
  "varName": "networkInterfaceRef"
30105
30538
  },
30106
30539
  "site": {
30107
- "alias": "siteRefSite: site",
30540
+ "alias": "siteWanFirewallDestination: site",
30108
30541
  "args": {},
30109
30542
  "deprecationReason": null,
30110
30543
  "description": "Site defined for the account",
@@ -30182,7 +30615,7 @@
30182
30615
  "varName": "siteRef"
30183
30616
  },
30184
30617
  "siteNetworkSubnet": {
30185
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
30618
+ "alias": "siteNetworkSubnetWanFirewallDestination: siteNetworkSubnet",
30186
30619
  "args": {},
30187
30620
  "deprecationReason": null,
30188
30621
  "description": "GlobalRange + InterfaceSubnet",
@@ -30283,7 +30716,7 @@
30283
30716
  "varName": "subnet"
30284
30717
  },
30285
30718
  "systemGroup": {
30286
- "alias": "systemGroupRefSystemGroup: systemGroup",
30719
+ "alias": "systemGroupWanFirewallDestination: systemGroup",
30287
30720
  "args": {},
30288
30721
  "deprecationReason": null,
30289
30722
  "description": "Predefined Cato groups",
@@ -30361,7 +30794,7 @@
30361
30794
  "varName": "systemGroupRef"
30362
30795
  },
30363
30796
  "user": {
30364
- "alias": "userRefUser: user",
30797
+ "alias": "userWanFirewallDestination: user",
30365
30798
  "args": {},
30366
30799
  "deprecationReason": null,
30367
30800
  "description": "Individual users defined for the account",
@@ -30439,7 +30872,7 @@
30439
30872
  "varName": "userRef"
30440
30873
  },
30441
30874
  "usersGroup": {
30442
- "alias": "usersGroupRefUsersGroup: usersGroup",
30875
+ "alias": "usersGroupWanFirewallDestination: usersGroup",
30443
30876
  "args": {},
30444
30877
  "deprecationReason": null,
30445
30878
  "description": "Group of users",
@@ -30534,7 +30967,7 @@
30534
30967
  "varName": "wanFirewallDestination"
30535
30968
  },
30536
30969
  "device": {
30537
- "alias": "deviceProfileRefDevice: device",
30970
+ "alias": "deviceWanFirewallRuleException: device",
30538
30971
  "args": {},
30539
30972
  "deprecationReason": null,
30540
30973
  "description": "Source Device Profile matching criteria for the exception.",
@@ -30612,7 +31045,7 @@
30612
31045
  "varName": "deviceProfileRef"
30613
31046
  },
30614
31047
  "deviceAttributes": {
30615
- "alias": "deviceAttributesDeviceAttributes: deviceAttributes",
31048
+ "alias": "deviceAttributesWanFirewallRuleException: deviceAttributes",
30616
31049
  "args": {},
30617
31050
  "deprecationReason": null,
30618
31051
  "description": "Source Device Attributes matching criteria for the exception.",
@@ -30784,7 +31217,7 @@
30784
31217
  "varName": "deviceAttributes"
30785
31218
  },
30786
31219
  "deviceOS": {
30787
- "alias": "operatingSystemDeviceOS: deviceOS",
31220
+ "alias": "deviceOSWanFirewallRuleException: deviceOS",
30788
31221
  "args": {},
30789
31222
  "deprecationReason": null,
30790
31223
  "description": "Source device OS matching criteria for the exception.",
@@ -30856,7 +31289,7 @@
30856
31289
  "varName": "deviceOS"
30857
31290
  },
30858
31291
  "direction": {
30859
- "alias": "wanFirewallDirectionEnumDirection: direction",
31292
+ "alias": "directionWanFirewallRuleException: direction",
30860
31293
  "args": {},
30861
31294
  "deprecationReason": null,
30862
31295
  "description": "Direction origin matching criteria for the exception",
@@ -30923,7 +31356,7 @@
30923
31356
  "varName": "name"
30924
31357
  },
30925
31358
  "service": {
30926
- "alias": "wanFirewallServiceTypeService: service",
31359
+ "alias": "serviceWanFirewallRuleException: service",
30927
31360
  "args": {},
30928
31361
  "deprecationReason": null,
30929
31362
  "description": "Destination service matching criteria for the exception.",
@@ -30940,7 +31373,7 @@
30940
31373
  "enumValues": null,
30941
31374
  "fields": {
30942
31375
  "custom": {
30943
- "alias": "customServiceCustom: custom",
31376
+ "alias": "customWanFirewallServiceType: custom",
30944
31377
  "args": {},
30945
31378
  "deprecationReason": null,
30946
31379
  "description": null,
@@ -30979,7 +31412,7 @@
30979
31412
  "varName": "port"
30980
31413
  },
30981
31414
  "portRange": {
30982
- "alias": "portRangePortRange: portRange",
31415
+ "alias": "portRangeCustomService: portRange",
30983
31416
  "args": {},
30984
31417
  "deprecationReason": null,
30985
31418
  "description": null,
@@ -31054,7 +31487,7 @@
31054
31487
  "varName": "portRange"
31055
31488
  },
31056
31489
  "protocol": {
31057
- "alias": "ipProtocolProtocol: protocol",
31490
+ "alias": "protocolCustomService: protocol",
31058
31491
  "args": {},
31059
31492
  "deprecationReason": null,
31060
31493
  "description": null,
@@ -31137,7 +31570,7 @@
31137
31570
  "varName": "customService"
31138
31571
  },
31139
31572
  "standard": {
31140
- "alias": "serviceRefStandard: standard",
31573
+ "alias": "standardWanFirewallServiceType: standard",
31141
31574
  "args": {},
31142
31575
  "deprecationReason": null,
31143
31576
  "description": null,
@@ -31232,7 +31665,7 @@
31232
31665
  "varName": "wanFirewallServiceType"
31233
31666
  },
31234
31667
  "source": {
31235
- "alias": "wanFirewallSourceSource: source",
31668
+ "alias": "sourceWanFirewallRuleException: source",
31236
31669
  "args": {},
31237
31670
  "deprecationReason": null,
31238
31671
  "description": "Source matching criteria for the exception.",
@@ -31249,7 +31682,7 @@
31249
31682
  "enumValues": null,
31250
31683
  "fields": {
31251
31684
  "floatingSubnet": {
31252
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
31685
+ "alias": "floatingSubnetWanFirewallSource: floatingSubnet",
31253
31686
  "args": {},
31254
31687
  "deprecationReason": null,
31255
31688
  "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.",
@@ -31327,7 +31760,7 @@
31327
31760
  "varName": "floatingSubnetRef"
31328
31761
  },
31329
31762
  "globalIpRange": {
31330
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
31763
+ "alias": "globalIpRangeWanFirewallSource: globalIpRange",
31331
31764
  "args": {},
31332
31765
  "deprecationReason": null,
31333
31766
  "description": "Globally defined IP range, IP and subnet objects",
@@ -31405,7 +31838,7 @@
31405
31838
  "varName": "globalIpRangeRef"
31406
31839
  },
31407
31840
  "group": {
31408
- "alias": "groupRefGroup: group",
31841
+ "alias": "groupWanFirewallSource: group",
31409
31842
  "args": {},
31410
31843
  "deprecationReason": null,
31411
31844
  "description": "Groups defined for your account",
@@ -31483,7 +31916,7 @@
31483
31916
  "varName": "groupRef"
31484
31917
  },
31485
31918
  "host": {
31486
- "alias": "hostRefHost: host",
31919
+ "alias": "hostWanFirewallSource: host",
31487
31920
  "args": {},
31488
31921
  "deprecationReason": null,
31489
31922
  "description": "Hosts and servers defined for your account",
@@ -31584,7 +32017,7 @@
31584
32017
  "varName": "ip"
31585
32018
  },
31586
32019
  "ipRange": {
31587
- "alias": "ipAddressRangeIpRange: ipRange",
32020
+ "alias": "ipRangeWanFirewallSource: ipRange",
31588
32021
  "args": {},
31589
32022
  "deprecationReason": null,
31590
32023
  "description": "Multiple separate IP addresses or an IP range",
@@ -31662,7 +32095,7 @@
31662
32095
  "varName": "ipAddressRange"
31663
32096
  },
31664
32097
  "networkInterface": {
31665
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
32098
+ "alias": "networkInterfaceWanFirewallSource: networkInterface",
31666
32099
  "args": {},
31667
32100
  "deprecationReason": null,
31668
32101
  "description": "Network range defined for a site",
@@ -31740,7 +32173,7 @@
31740
32173
  "varName": "networkInterfaceRef"
31741
32174
  },
31742
32175
  "site": {
31743
- "alias": "siteRefSite: site",
32176
+ "alias": "siteWanFirewallSource: site",
31744
32177
  "args": {},
31745
32178
  "deprecationReason": null,
31746
32179
  "description": "Site defined for the account",
@@ -31818,7 +32251,7 @@
31818
32251
  "varName": "siteRef"
31819
32252
  },
31820
32253
  "siteNetworkSubnet": {
31821
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
32254
+ "alias": "siteNetworkSubnetWanFirewallSource: siteNetworkSubnet",
31822
32255
  "args": {},
31823
32256
  "deprecationReason": null,
31824
32257
  "description": "GlobalRange + InterfaceSubnet",
@@ -31919,7 +32352,7 @@
31919
32352
  "varName": "subnet"
31920
32353
  },
31921
32354
  "systemGroup": {
31922
- "alias": "systemGroupRefSystemGroup: systemGroup",
32355
+ "alias": "systemGroupWanFirewallSource: systemGroup",
31923
32356
  "args": {},
31924
32357
  "deprecationReason": null,
31925
32358
  "description": "Predefined Cato groups",
@@ -31997,7 +32430,7 @@
31997
32430
  "varName": "systemGroupRef"
31998
32431
  },
31999
32432
  "user": {
32000
- "alias": "userRefUser: user",
32433
+ "alias": "userWanFirewallSource: user",
32001
32434
  "args": {},
32002
32435
  "deprecationReason": null,
32003
32436
  "description": "Individual users defined for the account",
@@ -32075,7 +32508,7 @@
32075
32508
  "varName": "userRef"
32076
32509
  },
32077
32510
  "usersGroup": {
32078
- "alias": "usersGroupRefUsersGroup: usersGroup",
32511
+ "alias": "usersGroupWanFirewallSource: usersGroup",
32079
32512
  "args": {},
32080
32513
  "deprecationReason": null,
32081
32514
  "description": "Group of users",
@@ -32252,7 +32685,7 @@
32252
32685
  "varName": "name"
32253
32686
  },
32254
32687
  "schedule": {
32255
- "alias": "policyScheduleSchedule: schedule",
32688
+ "alias": "scheduleWanFirewallRule: schedule",
32256
32689
  "args": {},
32257
32690
  "deprecationReason": null,
32258
32691
  "description": "The time period specifying when the rule is enabled, otherwise it is disabled.",
@@ -32269,7 +32702,7 @@
32269
32702
  "enumValues": null,
32270
32703
  "fields": {
32271
32704
  "activeOn": {
32272
- "alias": "policyActiveOnEnumActiveOn: activeOn",
32705
+ "alias": "activeOnPolicySchedule: activeOn",
32273
32706
  "args": {},
32274
32707
  "deprecationReason": null,
32275
32708
  "description": null,
@@ -32327,7 +32760,7 @@
32327
32760
  "varName": "activeOn"
32328
32761
  },
32329
32762
  "customRecurring": {
32330
- "alias": "policyCustomRecurringCustomRecurring: customRecurring",
32763
+ "alias": "customRecurringPolicySchedule: customRecurring",
32331
32764
  "args": {},
32332
32765
  "deprecationReason": null,
32333
32766
  "description": null,
@@ -32479,7 +32912,7 @@
32479
32912
  "varName": "policyCustomRecurring"
32480
32913
  },
32481
32914
  "customTimeframe": {
32482
- "alias": "policyCustomTimeframeCustomTimeframe: customTimeframe",
32915
+ "alias": "customTimeframePolicySchedule: customTimeframe",
32483
32916
  "args": {},
32484
32917
  "deprecationReason": null,
32485
32918
  "description": null,
@@ -32571,7 +33004,7 @@
32571
33004
  "varName": "policySchedule"
32572
33005
  },
32573
33006
  "section": {
32574
- "alias": "policySectionInfoSection: section",
33007
+ "alias": "sectionWanFirewallRule: section",
32575
33008
  "args": {},
32576
33009
  "deprecationReason": null,
32577
33010
  "description": "Policy section where the rule is located",
@@ -32647,7 +33080,7 @@
32647
33080
  "varName": "policySectionInfo"
32648
33081
  },
32649
33082
  "service": {
32650
- "alias": "wanFirewallServiceTypeService: service",
33083
+ "alias": "serviceWanFirewallRule: service",
32651
33084
  "args": {},
32652
33085
  "deprecationReason": null,
32653
33086
  "description": "Destination service traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -32664,7 +33097,7 @@
32664
33097
  "enumValues": null,
32665
33098
  "fields": {
32666
33099
  "custom": {
32667
- "alias": "customServiceCustom: custom",
33100
+ "alias": "customWanFirewallServiceType: custom",
32668
33101
  "args": {},
32669
33102
  "deprecationReason": null,
32670
33103
  "description": null,
@@ -32703,7 +33136,7 @@
32703
33136
  "varName": "port"
32704
33137
  },
32705
33138
  "portRange": {
32706
- "alias": "portRangePortRange: portRange",
33139
+ "alias": "portRangeCustomService: portRange",
32707
33140
  "args": {},
32708
33141
  "deprecationReason": null,
32709
33142
  "description": null,
@@ -32778,7 +33211,7 @@
32778
33211
  "varName": "portRange"
32779
33212
  },
32780
33213
  "protocol": {
32781
- "alias": "ipProtocolProtocol: protocol",
33214
+ "alias": "protocolCustomService: protocol",
32782
33215
  "args": {},
32783
33216
  "deprecationReason": null,
32784
33217
  "description": null,
@@ -32861,7 +33294,7 @@
32861
33294
  "varName": "customService"
32862
33295
  },
32863
33296
  "standard": {
32864
- "alias": "serviceRefStandard: standard",
33297
+ "alias": "standardWanFirewallServiceType: standard",
32865
33298
  "args": {},
32866
33299
  "deprecationReason": null,
32867
33300
  "description": null,
@@ -32956,7 +33389,7 @@
32956
33389
  "varName": "wanFirewallServiceType"
32957
33390
  },
32958
33391
  "source": {
32959
- "alias": "wanFirewallSourceSource: source",
33392
+ "alias": "sourceWanFirewallRule: source",
32960
33393
  "args": {},
32961
33394
  "deprecationReason": null,
32962
33395
  "description": "Source traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -32973,7 +33406,7 @@
32973
33406
  "enumValues": null,
32974
33407
  "fields": {
32975
33408
  "floatingSubnet": {
32976
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
33409
+ "alias": "floatingSubnetWanFirewallSource: floatingSubnet",
32977
33410
  "args": {},
32978
33411
  "deprecationReason": null,
32979
33412
  "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.",
@@ -33051,7 +33484,7 @@
33051
33484
  "varName": "floatingSubnetRef"
33052
33485
  },
33053
33486
  "globalIpRange": {
33054
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
33487
+ "alias": "globalIpRangeWanFirewallSource: globalIpRange",
33055
33488
  "args": {},
33056
33489
  "deprecationReason": null,
33057
33490
  "description": "Globally defined IP range, IP and subnet objects",
@@ -33129,7 +33562,7 @@
33129
33562
  "varName": "globalIpRangeRef"
33130
33563
  },
33131
33564
  "group": {
33132
- "alias": "groupRefGroup: group",
33565
+ "alias": "groupWanFirewallSource: group",
33133
33566
  "args": {},
33134
33567
  "deprecationReason": null,
33135
33568
  "description": "Groups defined for your account",
@@ -33207,7 +33640,7 @@
33207
33640
  "varName": "groupRef"
33208
33641
  },
33209
33642
  "host": {
33210
- "alias": "hostRefHost: host",
33643
+ "alias": "hostWanFirewallSource: host",
33211
33644
  "args": {},
33212
33645
  "deprecationReason": null,
33213
33646
  "description": "Hosts and servers defined for your account",
@@ -33308,7 +33741,7 @@
33308
33741
  "varName": "ip"
33309
33742
  },
33310
33743
  "ipRange": {
33311
- "alias": "ipAddressRangeIpRange: ipRange",
33744
+ "alias": "ipRangeWanFirewallSource: ipRange",
33312
33745
  "args": {},
33313
33746
  "deprecationReason": null,
33314
33747
  "description": "Multiple separate IP addresses or an IP range",
@@ -33386,7 +33819,7 @@
33386
33819
  "varName": "ipAddressRange"
33387
33820
  },
33388
33821
  "networkInterface": {
33389
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
33822
+ "alias": "networkInterfaceWanFirewallSource: networkInterface",
33390
33823
  "args": {},
33391
33824
  "deprecationReason": null,
33392
33825
  "description": "Network range defined for a site",
@@ -33464,7 +33897,7 @@
33464
33897
  "varName": "networkInterfaceRef"
33465
33898
  },
33466
33899
  "site": {
33467
- "alias": "siteRefSite: site",
33900
+ "alias": "siteWanFirewallSource: site",
33468
33901
  "args": {},
33469
33902
  "deprecationReason": null,
33470
33903
  "description": "Site defined for the account",
@@ -33542,7 +33975,7 @@
33542
33975
  "varName": "siteRef"
33543
33976
  },
33544
33977
  "siteNetworkSubnet": {
33545
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
33978
+ "alias": "siteNetworkSubnetWanFirewallSource: siteNetworkSubnet",
33546
33979
  "args": {},
33547
33980
  "deprecationReason": null,
33548
33981
  "description": "GlobalRange + InterfaceSubnet",
@@ -33643,7 +34076,7 @@
33643
34076
  "varName": "subnet"
33644
34077
  },
33645
34078
  "systemGroup": {
33646
- "alias": "systemGroupRefSystemGroup: systemGroup",
34079
+ "alias": "systemGroupWanFirewallSource: systemGroup",
33647
34080
  "args": {},
33648
34081
  "deprecationReason": null,
33649
34082
  "description": "Predefined Cato groups",
@@ -33721,7 +34154,7 @@
33721
34154
  "varName": "systemGroupRef"
33722
34155
  },
33723
34156
  "user": {
33724
- "alias": "userRefUser: user",
34157
+ "alias": "userWanFirewallSource: user",
33725
34158
  "args": {},
33726
34159
  "deprecationReason": null,
33727
34160
  "description": "Individual users defined for the account",
@@ -33799,7 +34232,7 @@
33799
34232
  "varName": "userRef"
33800
34233
  },
33801
34234
  "usersGroup": {
33802
- "alias": "usersGroupRefUsersGroup: usersGroup",
34235
+ "alias": "usersGroupWanFirewallSource: usersGroup",
33803
34236
  "args": {},
33804
34237
  "deprecationReason": null,
33805
34238
  "description": "Group of users",
@@ -33894,7 +34327,7 @@
33894
34327
  "varName": "wanFirewallSource"
33895
34328
  },
33896
34329
  "tracking": {
33897
- "alias": "policyTrackingTracking: tracking",
34330
+ "alias": "trackingWanFirewallRule: tracking",
33898
34331
  "args": {},
33899
34332
  "deprecationReason": null,
33900
34333
  "description": "Tracking information when the rule is matched, such as events and notifications",
@@ -33911,7 +34344,7 @@
33911
34344
  "enumValues": null,
33912
34345
  "fields": {
33913
34346
  "alert": {
33914
- "alias": "policyRuleTrackingAlertAlert: alert",
34347
+ "alias": "alertPolicyTracking: alert",
33915
34348
  "args": {},
33916
34349
  "deprecationReason": null,
33917
34350
  "description": null,
@@ -33949,7 +34382,7 @@
33949
34382
  "varName": "enabled"
33950
34383
  },
33951
34384
  "frequency": {
33952
- "alias": "policyRuleTrackingFrequencyEnumFrequency: frequency",
34385
+ "alias": "frequencyPolicyRuleTrackingAlert: frequency",
33953
34386
  "args": {},
33954
34387
  "deprecationReason": null,
33955
34388
  "description": "Returns data for the alert frequency",
@@ -34007,7 +34440,7 @@
34007
34440
  "varName": "frequency"
34008
34441
  },
34009
34442
  "mailingList": {
34010
- "alias": "subscriptionMailingListRefMailingList: mailingList",
34443
+ "alias": "mailingListPolicyRuleTrackingAlert: mailingList",
34011
34444
  "args": {},
34012
34445
  "deprecationReason": null,
34013
34446
  "description": "Returns data for the Mailing List that receives the alert",
@@ -34085,7 +34518,7 @@
34085
34518
  "varName": "subscriptionMailingListRef"
34086
34519
  },
34087
34520
  "subscriptionGroup": {
34088
- "alias": "subscriptionGroupRefSubscriptionGroup: subscriptionGroup",
34521
+ "alias": "subscriptionGroupPolicyRuleTrackingAlert: subscriptionGroup",
34089
34522
  "args": {},
34090
34523
  "deprecationReason": null,
34091
34524
  "description": "Returns data for the Subscription Group that receives the alert",
@@ -34163,7 +34596,7 @@
34163
34596
  "varName": "subscriptionGroupRef"
34164
34597
  },
34165
34598
  "webhook": {
34166
- "alias": "subscriptionWebhookRefWebhook: webhook",
34599
+ "alias": "webhookPolicyRuleTrackingAlert: webhook",
34167
34600
  "args": {},
34168
34601
  "deprecationReason": null,
34169
34602
  "description": "Returns data for the Webhook that receives the alert",
@@ -34258,7 +34691,7 @@
34258
34691
  "varName": "policyRuleTrackingAlert"
34259
34692
  },
34260
34693
  "event": {
34261
- "alias": "policyRuleTrackingEventEvent: event",
34694
+ "alias": "eventPolicyTracking: event",
34262
34695
  "args": {},
34263
34696
  "deprecationReason": null,
34264
34697
  "description": null,
@@ -34363,7 +34796,7 @@
34363
34796
  "varName": "wanFirewallRulePayload"
34364
34797
  },
34365
34798
  "status": {
34366
- "alias": "policyMutationStatusStatus: status",
34799
+ "alias": "statusWanFirewallRuleMutationPayload: status",
34367
34800
  "args": {},
34368
34801
  "deprecationReason": null,
34369
34802
  "description": null,
@@ -34469,6 +34902,20 @@
34469
34902
  "action": {
34470
34903
  "action": "enum(WanFirewallActionEnum)"
34471
34904
  },
34905
+ "activePeriod": {
34906
+ "effectiveFrom": {
34907
+ "effectiveFrom": "DateTime"
34908
+ },
34909
+ "expiresAt": {
34910
+ "expiresAt": "DateTime"
34911
+ },
34912
+ "useEffectiveFrom": {
34913
+ "useEffectiveFrom": "Boolean"
34914
+ },
34915
+ "useExpiresAt": {
34916
+ "useExpiresAt": "Boolean"
34917
+ }
34918
+ },
34472
34919
  "application": {
34473
34920
  "appCategory": {
34474
34921
  "by": {