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
@@ -335,6 +335,7 @@
335
335
  "PolicyMutationError": true,
336
336
  "PolicyMutationRevisionInput": true,
337
337
  "PolicyMutationStatus": true,
338
+ "PolicyRuleActivePeriod": true,
338
339
  "PolicyRulePositionEnum": true,
339
340
  "PolicyRulePositionInput": true,
340
341
  "PolicyRuleTrackingAlert": true,
@@ -903,7 +904,7 @@
903
904
  "enumValues": null,
904
905
  "fields": {
905
906
  "errors": {
906
- "alias": "policyMutationErrorErrors: errors",
907
+ "alias": "errorsInternetFirewallRuleMutationPayload: errors",
907
908
  "args": {},
908
909
  "deprecationReason": null,
909
910
  "description": null,
@@ -979,7 +980,7 @@
979
980
  "varName": "policyMutationError"
980
981
  },
981
982
  "rule": {
982
- "alias": "internetFirewallRulePayloadRule: rule",
983
+ "alias": "ruleInternetFirewallRuleMutationPayload: rule",
983
984
  "args": {},
984
985
  "deprecationReason": null,
985
986
  "description": null,
@@ -1164,7 +1165,7 @@
1164
1165
  "enumValues": null,
1165
1166
  "fields": {
1166
1167
  "action": {
1167
- "alias": "internetFirewallActionEnumAction: action",
1168
+ "alias": "actionInternetFirewallRule: action",
1168
1169
  "args": {},
1169
1170
  "deprecationReason": null,
1170
1171
  "description": "The action applied by the Internet Firewall if the rule is matched",
@@ -1221,8 +1222,124 @@
1221
1222
  },
1222
1223
  "varName": "action"
1223
1224
  },
1225
+ "activePeriod": {
1226
+ "alias": "activePeriodInternetFirewallRule: activePeriod",
1227
+ "args": {},
1228
+ "deprecationReason": null,
1229
+ "description": "The time period during which the rule is active, outside this period, the rule is inactive",
1230
+ "id_str": "internetFirewall___moveRule___rule___rule___activePeriod",
1231
+ "isDeprecated": false,
1232
+ "name": "activePeriod",
1233
+ "path": "internetFirewall.moveRule.rule.rule.activePeriod",
1234
+ "requestStr": "$policyRuleActivePeriod:PolicyRuleActivePeriod! ",
1235
+ "required": true,
1236
+ "responseStr": "activePeriod:$policyRuleActivePeriod ",
1237
+ "type": {
1238
+ "definition": {
1239
+ "description": "Returns the time period during which the rule is active, outside this period, the rule is inactive",
1240
+ "enumValues": null,
1241
+ "fields": {
1242
+ "effectiveFrom": {
1243
+ "args": {},
1244
+ "deprecationReason": null,
1245
+ "description": "The time the rule becomes active, if not used, default null",
1246
+ "id_str": "internetFirewall___moveRule___rule___rule___activePeriod___effectiveFrom",
1247
+ "isDeprecated": false,
1248
+ "name": "effectiveFrom",
1249
+ "path": "internetFirewall.moveRule.rule.rule.activePeriod.effectiveFrom",
1250
+ "requestStr": "$effectiveFrom:DateTime ",
1251
+ "required": false,
1252
+ "responseStr": "effectiveFrom:$effectiveFrom ",
1253
+ "type": {
1254
+ "kind": [
1255
+ "SCALAR"
1256
+ ],
1257
+ "name": "DateTime",
1258
+ "non_null": false
1259
+ },
1260
+ "varName": "effectiveFrom"
1261
+ },
1262
+ "expiresAt": {
1263
+ "args": {},
1264
+ "deprecationReason": null,
1265
+ "description": "The time the rule expires, if not used, default null",
1266
+ "id_str": "internetFirewall___moveRule___rule___rule___activePeriod___expiresAt",
1267
+ "isDeprecated": false,
1268
+ "name": "expiresAt",
1269
+ "path": "internetFirewall.moveRule.rule.rule.activePeriod.expiresAt",
1270
+ "requestStr": "$expiresAt:DateTime ",
1271
+ "required": false,
1272
+ "responseStr": "expiresAt:$expiresAt ",
1273
+ "type": {
1274
+ "kind": [
1275
+ "SCALAR"
1276
+ ],
1277
+ "name": "DateTime",
1278
+ "non_null": false
1279
+ },
1280
+ "varName": "expiresAt"
1281
+ },
1282
+ "useEffectiveFrom": {
1283
+ "args": {},
1284
+ "deprecationReason": null,
1285
+ "description": null,
1286
+ "id_str": "internetFirewall___moveRule___rule___rule___activePeriod___useEffectiveFrom",
1287
+ "isDeprecated": false,
1288
+ "name": "useEffectiveFrom",
1289
+ "path": "internetFirewall.moveRule.rule.rule.activePeriod.useEffectiveFrom",
1290
+ "requestStr": "$useEffectiveFrom:Boolean! ",
1291
+ "required": true,
1292
+ "responseStr": "useEffectiveFrom:$useEffectiveFrom ",
1293
+ "type": {
1294
+ "kind": [
1295
+ "NON_NULL",
1296
+ "SCALAR"
1297
+ ],
1298
+ "name": "Boolean",
1299
+ "non_null": false
1300
+ },
1301
+ "varName": "useEffectiveFrom"
1302
+ },
1303
+ "useExpiresAt": {
1304
+ "args": {},
1305
+ "deprecationReason": null,
1306
+ "description": null,
1307
+ "id_str": "internetFirewall___moveRule___rule___rule___activePeriod___useExpiresAt",
1308
+ "isDeprecated": false,
1309
+ "name": "useExpiresAt",
1310
+ "path": "internetFirewall.moveRule.rule.rule.activePeriod.useExpiresAt",
1311
+ "requestStr": "$useExpiresAt:Boolean! ",
1312
+ "required": true,
1313
+ "responseStr": "useExpiresAt:$useExpiresAt ",
1314
+ "type": {
1315
+ "kind": [
1316
+ "NON_NULL",
1317
+ "SCALAR"
1318
+ ],
1319
+ "name": "Boolean",
1320
+ "non_null": false
1321
+ },
1322
+ "varName": "useExpiresAt"
1323
+ }
1324
+ },
1325
+ "inputFields": null,
1326
+ "interfaces": {},
1327
+ "kind": "OBJECT",
1328
+ "name": "PolicyRuleActivePeriod",
1329
+ "possibleTypes": null
1330
+ },
1331
+ "indexType": "object",
1332
+ "kind": [
1333
+ "NON_NULL",
1334
+ "OBJECT"
1335
+ ],
1336
+ "name": "PolicyRuleActivePeriod",
1337
+ "non_null": false
1338
+ },
1339
+ "varName": "policyRuleActivePeriod"
1340
+ },
1224
1341
  "connectionOrigin": {
1225
- "alias": "connectionOriginEnumConnectionOrigin: connectionOrigin",
1342
+ "alias": "connectionOriginInternetFirewallRule: connectionOrigin",
1226
1343
  "args": {},
1227
1344
  "deprecationReason": null,
1228
1345
  "description": "Connection origin of the traffic",
@@ -1274,7 +1391,7 @@
1274
1391
  "varName": "connectionOrigin"
1275
1392
  },
1276
1393
  "country": {
1277
- "alias": "countryRefCountry: country",
1394
+ "alias": "countryInternetFirewallRule: country",
1278
1395
  "args": {},
1279
1396
  "deprecationReason": null,
1280
1397
  "description": "Source country traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -1373,7 +1490,7 @@
1373
1490
  "varName": "description"
1374
1491
  },
1375
1492
  "destination": {
1376
- "alias": "internetFirewallDestinationDestination: destination",
1493
+ "alias": "destinationInternetFirewallRule: destination",
1377
1494
  "args": {},
1378
1495
  "deprecationReason": null,
1379
1496
  "description": "Destination traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -1390,7 +1507,7 @@
1390
1507
  "enumValues": null,
1391
1508
  "fields": {
1392
1509
  "appCategory": {
1393
- "alias": "applicationCategoryRefAppCategory: appCategory",
1510
+ "alias": "appCategoryInternetFirewallDestination: appCategory",
1394
1511
  "args": {},
1395
1512
  "deprecationReason": null,
1396
1513
  "description": "Cato category of applications which are dynamically updated by Cato",
@@ -1468,7 +1585,7 @@
1468
1585
  "varName": "applicationCategoryRef"
1469
1586
  },
1470
1587
  "application": {
1471
- "alias": "applicationRefApplication: application",
1588
+ "alias": "applicationInternetFirewallDestination: application",
1472
1589
  "args": {},
1473
1590
  "deprecationReason": null,
1474
1591
  "description": "Applications for the rule (pre-defined)",
@@ -1546,7 +1663,7 @@
1546
1663
  "varName": "applicationRef"
1547
1664
  },
1548
1665
  "containers": {
1549
- "alias": "internetFirewallContainerContainers: containers",
1666
+ "alias": "containersInternetFirewallDestination: containers",
1550
1667
  "args": {},
1551
1668
  "deprecationReason": null,
1552
1669
  "description": null,
@@ -1563,7 +1680,7 @@
1563
1680
  "enumValues": null,
1564
1681
  "fields": {
1565
1682
  "fqdnContainer": {
1566
- "alias": "fqdnContainerRefFqdnContainer: fqdnContainer",
1683
+ "alias": "fqdnContainerInternetFirewallContainer: fqdnContainer",
1567
1684
  "args": {},
1568
1685
  "deprecationReason": null,
1569
1686
  "description": null,
@@ -1641,7 +1758,7 @@
1641
1758
  "varName": "fqdnContainerRef"
1642
1759
  },
1643
1760
  "ipAddressRangeContainer": {
1644
- "alias": "ipAddressRangeContainerRefIpAddressRangeContainer: ipAddressRangeContainer",
1761
+ "alias": "ipAddressRangeContainerInternetFirewallContainer: ipAddressRangeContainer",
1645
1762
  "args": {},
1646
1763
  "deprecationReason": null,
1647
1764
  "description": null,
@@ -1736,7 +1853,7 @@
1736
1853
  "varName": "internetFirewallContainer"
1737
1854
  },
1738
1855
  "country": {
1739
- "alias": "countryRefCountry: country",
1856
+ "alias": "countryInternetFirewallDestination: country",
1740
1857
  "args": {},
1741
1858
  "deprecationReason": null,
1742
1859
  "description": "Countries",
@@ -1814,7 +1931,7 @@
1814
1931
  "varName": "countryRef"
1815
1932
  },
1816
1933
  "customApp": {
1817
- "alias": "customApplicationRefCustomApp: customApp",
1934
+ "alias": "customAppInternetFirewallDestination: customApp",
1818
1935
  "args": {},
1819
1936
  "deprecationReason": null,
1820
1937
  "description": "Custom (user-defined) applications",
@@ -1892,7 +2009,7 @@
1892
2009
  "varName": "customApplicationRef"
1893
2010
  },
1894
2011
  "customCategory": {
1895
- "alias": "customCategoryRefCustomCategory: customCategory",
2012
+ "alias": "customCategoryInternetFirewallDestination: customCategory",
1896
2013
  "args": {},
1897
2014
  "deprecationReason": null,
1898
2015
  "description": "Custom Categories \u2013 Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
@@ -2016,7 +2133,7 @@
2016
2133
  "varName": "fqdn"
2017
2134
  },
2018
2135
  "globalIpRange": {
2019
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
2136
+ "alias": "globalIpRangeInternetFirewallDestination: globalIpRange",
2020
2137
  "args": {},
2021
2138
  "deprecationReason": null,
2022
2139
  "description": "Globally defined IP range, IP and subnet objects",
@@ -2117,7 +2234,7 @@
2117
2234
  "varName": "ip"
2118
2235
  },
2119
2236
  "ipRange": {
2120
- "alias": "ipAddressRangeIpRange: ipRange",
2237
+ "alias": "ipRangeInternetFirewallDestination: ipRange",
2121
2238
  "args": {},
2122
2239
  "deprecationReason": null,
2123
2240
  "description": "A range of IPs. Every IP within the range will be matched",
@@ -2218,7 +2335,7 @@
2218
2335
  "varName": "remoteAsn"
2219
2336
  },
2220
2337
  "sanctionedAppsCategory": {
2221
- "alias": "sanctionedAppsCategoryRefSanctionedAppsCategory: sanctionedAppsCategory",
2338
+ "alias": "sanctionedAppsCategoryInternetFirewallDestination: sanctionedAppsCategory",
2222
2339
  "args": {},
2223
2340
  "deprecationReason": null,
2224
2341
  "description": "Sanctioned Cloud Applications - apps that are approved and generally represent an understood and acceptable level of risk in your organization.",
@@ -2336,7 +2453,7 @@
2336
2453
  "varName": "internetFirewallDestination"
2337
2454
  },
2338
2455
  "device": {
2339
- "alias": "deviceProfileRefDevice: device",
2456
+ "alias": "deviceInternetFirewallRule: device",
2340
2457
  "args": {},
2341
2458
  "deprecationReason": null,
2342
2459
  "description": "Source Device Profile traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -2414,7 +2531,7 @@
2414
2531
  "varName": "deviceProfileRef"
2415
2532
  },
2416
2533
  "deviceAttributes": {
2417
- "alias": "deviceAttributesDeviceAttributes: deviceAttributes",
2534
+ "alias": "deviceAttributesInternetFirewallRule: deviceAttributes",
2418
2535
  "args": {},
2419
2536
  "deprecationReason": null,
2420
2537
  "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.",
@@ -2586,7 +2703,7 @@
2586
2703
  "varName": "deviceAttributes"
2587
2704
  },
2588
2705
  "deviceOS": {
2589
- "alias": "operatingSystemDeviceOS: deviceOS",
2706
+ "alias": "deviceOSInternetFirewallRule: deviceOS",
2590
2707
  "args": {},
2591
2708
  "deprecationReason": null,
2592
2709
  "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.",
@@ -2679,7 +2796,7 @@
2679
2796
  "varName": "enabled"
2680
2797
  },
2681
2798
  "exceptions": {
2682
- "alias": "internetFirewallRuleExceptionExceptions: exceptions",
2799
+ "alias": "exceptionsInternetFirewallRule: exceptions",
2683
2800
  "args": {},
2684
2801
  "deprecationReason": null,
2685
2802
  "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.",
@@ -2696,7 +2813,7 @@
2696
2813
  "enumValues": null,
2697
2814
  "fields": {
2698
2815
  "connectionOrigin": {
2699
- "alias": "connectionOriginEnumConnectionOrigin: connectionOrigin",
2816
+ "alias": "connectionOriginInternetFirewallRuleException: connectionOrigin",
2700
2817
  "args": {},
2701
2818
  "deprecationReason": null,
2702
2819
  "description": "Connection origin matching criteria for the exception.",
@@ -2748,7 +2865,7 @@
2748
2865
  "varName": "connectionOrigin"
2749
2866
  },
2750
2867
  "country": {
2751
- "alias": "countryRefCountry: country",
2868
+ "alias": "countryInternetFirewallRuleException: country",
2752
2869
  "args": {},
2753
2870
  "deprecationReason": null,
2754
2871
  "description": "Source country matching criteria for the exception.",
@@ -2826,7 +2943,7 @@
2826
2943
  "varName": "countryRef"
2827
2944
  },
2828
2945
  "destination": {
2829
- "alias": "internetFirewallDestinationDestination: destination",
2946
+ "alias": "destinationInternetFirewallRuleException: destination",
2830
2947
  "args": {},
2831
2948
  "deprecationReason": null,
2832
2949
  "description": "Destination matching criteria for the exception.",
@@ -2843,7 +2960,7 @@
2843
2960
  "enumValues": null,
2844
2961
  "fields": {
2845
2962
  "appCategory": {
2846
- "alias": "applicationCategoryRefAppCategory: appCategory",
2963
+ "alias": "appCategoryInternetFirewallDestination: appCategory",
2847
2964
  "args": {},
2848
2965
  "deprecationReason": null,
2849
2966
  "description": "Cato category of applications which are dynamically updated by Cato",
@@ -2921,7 +3038,7 @@
2921
3038
  "varName": "applicationCategoryRef"
2922
3039
  },
2923
3040
  "application": {
2924
- "alias": "applicationRefApplication: application",
3041
+ "alias": "applicationInternetFirewallDestination: application",
2925
3042
  "args": {},
2926
3043
  "deprecationReason": null,
2927
3044
  "description": "Applications for the rule (pre-defined)",
@@ -2999,7 +3116,7 @@
2999
3116
  "varName": "applicationRef"
3000
3117
  },
3001
3118
  "containers": {
3002
- "alias": "internetFirewallContainerContainers: containers",
3119
+ "alias": "containersInternetFirewallDestination: containers",
3003
3120
  "args": {},
3004
3121
  "deprecationReason": null,
3005
3122
  "description": null,
@@ -3016,7 +3133,7 @@
3016
3133
  "enumValues": null,
3017
3134
  "fields": {
3018
3135
  "fqdnContainer": {
3019
- "alias": "fqdnContainerRefFqdnContainer: fqdnContainer",
3136
+ "alias": "fqdnContainerInternetFirewallContainer: fqdnContainer",
3020
3137
  "args": {},
3021
3138
  "deprecationReason": null,
3022
3139
  "description": null,
@@ -3094,7 +3211,7 @@
3094
3211
  "varName": "fqdnContainerRef"
3095
3212
  },
3096
3213
  "ipAddressRangeContainer": {
3097
- "alias": "ipAddressRangeContainerRefIpAddressRangeContainer: ipAddressRangeContainer",
3214
+ "alias": "ipAddressRangeContainerInternetFirewallContainer: ipAddressRangeContainer",
3098
3215
  "args": {},
3099
3216
  "deprecationReason": null,
3100
3217
  "description": null,
@@ -3189,7 +3306,7 @@
3189
3306
  "varName": "internetFirewallContainer"
3190
3307
  },
3191
3308
  "country": {
3192
- "alias": "countryRefCountry: country",
3309
+ "alias": "countryInternetFirewallDestination: country",
3193
3310
  "args": {},
3194
3311
  "deprecationReason": null,
3195
3312
  "description": "Countries",
@@ -3267,7 +3384,7 @@
3267
3384
  "varName": "countryRef"
3268
3385
  },
3269
3386
  "customApp": {
3270
- "alias": "customApplicationRefCustomApp: customApp",
3387
+ "alias": "customAppInternetFirewallDestination: customApp",
3271
3388
  "args": {},
3272
3389
  "deprecationReason": null,
3273
3390
  "description": "Custom (user-defined) applications",
@@ -3345,7 +3462,7 @@
3345
3462
  "varName": "customApplicationRef"
3346
3463
  },
3347
3464
  "customCategory": {
3348
- "alias": "customCategoryRefCustomCategory: customCategory",
3465
+ "alias": "customCategoryInternetFirewallDestination: customCategory",
3349
3466
  "args": {},
3350
3467
  "deprecationReason": null,
3351
3468
  "description": "Custom Categories \u2013 Groups of objects such as predefined and custom applications, predefined and custom services, domains, FQDNs etc.",
@@ -3469,7 +3586,7 @@
3469
3586
  "varName": "fqdn"
3470
3587
  },
3471
3588
  "globalIpRange": {
3472
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
3589
+ "alias": "globalIpRangeInternetFirewallDestination: globalIpRange",
3473
3590
  "args": {},
3474
3591
  "deprecationReason": null,
3475
3592
  "description": "Globally defined IP range, IP and subnet objects",
@@ -3570,7 +3687,7 @@
3570
3687
  "varName": "ip"
3571
3688
  },
3572
3689
  "ipRange": {
3573
- "alias": "ipAddressRangeIpRange: ipRange",
3690
+ "alias": "ipRangeInternetFirewallDestination: ipRange",
3574
3691
  "args": {},
3575
3692
  "deprecationReason": null,
3576
3693
  "description": "A range of IPs. Every IP within the range will be matched",
@@ -3671,7 +3788,7 @@
3671
3788
  "varName": "remoteAsn"
3672
3789
  },
3673
3790
  "sanctionedAppsCategory": {
3674
- "alias": "sanctionedAppsCategoryRefSanctionedAppsCategory: sanctionedAppsCategory",
3791
+ "alias": "sanctionedAppsCategoryInternetFirewallDestination: sanctionedAppsCategory",
3675
3792
  "args": {},
3676
3793
  "deprecationReason": null,
3677
3794
  "description": "Sanctioned Cloud Applications - apps that are approved and generally represent an understood and acceptable level of risk in your organization.",
@@ -3789,7 +3906,7 @@
3789
3906
  "varName": "internetFirewallDestination"
3790
3907
  },
3791
3908
  "device": {
3792
- "alias": "deviceProfileRefDevice: device",
3909
+ "alias": "deviceInternetFirewallRuleException: device",
3793
3910
  "args": {},
3794
3911
  "deprecationReason": null,
3795
3912
  "description": "Source Device Profile matching criteria for the exception.",
@@ -3867,7 +3984,7 @@
3867
3984
  "varName": "deviceProfileRef"
3868
3985
  },
3869
3986
  "deviceAttributes": {
3870
- "alias": "deviceAttributesDeviceAttributes: deviceAttributes",
3987
+ "alias": "deviceAttributesInternetFirewallRuleException: deviceAttributes",
3871
3988
  "args": {},
3872
3989
  "deprecationReason": null,
3873
3990
  "description": "Source Device Attributes matching criteria for the exception.",
@@ -4039,7 +4156,7 @@
4039
4156
  "varName": "deviceAttributes"
4040
4157
  },
4041
4158
  "deviceOS": {
4042
- "alias": "operatingSystemDeviceOS: deviceOS",
4159
+ "alias": "deviceOSInternetFirewallRuleException: deviceOS",
4043
4160
  "args": {},
4044
4161
  "deprecationReason": null,
4045
4162
  "description": "Source device OS matching criteria for the exception.",
@@ -4132,7 +4249,7 @@
4132
4249
  "varName": "name"
4133
4250
  },
4134
4251
  "service": {
4135
- "alias": "internetFirewallServiceTypeService: service",
4252
+ "alias": "serviceInternetFirewallRuleException: service",
4136
4253
  "args": {},
4137
4254
  "deprecationReason": null,
4138
4255
  "description": "Destination service matching criteria for the exception.",
@@ -4149,7 +4266,7 @@
4149
4266
  "enumValues": null,
4150
4267
  "fields": {
4151
4268
  "custom": {
4152
- "alias": "customServiceCustom: custom",
4269
+ "alias": "customInternetFirewallServiceType: custom",
4153
4270
  "args": {},
4154
4271
  "deprecationReason": null,
4155
4272
  "description": null,
@@ -4188,7 +4305,7 @@
4188
4305
  "varName": "port"
4189
4306
  },
4190
4307
  "portRange": {
4191
- "alias": "portRangePortRange: portRange",
4308
+ "alias": "portRangeCustomService: portRange",
4192
4309
  "args": {},
4193
4310
  "deprecationReason": null,
4194
4311
  "description": null,
@@ -4263,7 +4380,7 @@
4263
4380
  "varName": "portRange"
4264
4381
  },
4265
4382
  "protocol": {
4266
- "alias": "ipProtocolProtocol: protocol",
4383
+ "alias": "protocolCustomService: protocol",
4267
4384
  "args": {},
4268
4385
  "deprecationReason": null,
4269
4386
  "description": null,
@@ -4346,7 +4463,7 @@
4346
4463
  "varName": "customService"
4347
4464
  },
4348
4465
  "standard": {
4349
- "alias": "serviceRefStandard: standard",
4466
+ "alias": "standardInternetFirewallServiceType: standard",
4350
4467
  "args": {},
4351
4468
  "deprecationReason": null,
4352
4469
  "description": null,
@@ -4441,7 +4558,7 @@
4441
4558
  "varName": "internetFirewallServiceType"
4442
4559
  },
4443
4560
  "source": {
4444
- "alias": "internetFirewallSourceSource: source",
4561
+ "alias": "sourceInternetFirewallRuleException: source",
4445
4562
  "args": {},
4446
4563
  "deprecationReason": null,
4447
4564
  "description": "Source traffic matching criteria for the exception.",
@@ -4458,7 +4575,7 @@
4458
4575
  "enumValues": null,
4459
4576
  "fields": {
4460
4577
  "floatingSubnet": {
4461
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
4578
+ "alias": "floatingSubnetInternetFirewallSource: floatingSubnet",
4462
4579
  "args": {},
4463
4580
  "deprecationReason": null,
4464
4581
  "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.",
@@ -4536,7 +4653,7 @@
4536
4653
  "varName": "floatingSubnetRef"
4537
4654
  },
4538
4655
  "globalIpRange": {
4539
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
4656
+ "alias": "globalIpRangeInternetFirewallSource: globalIpRange",
4540
4657
  "args": {},
4541
4658
  "deprecationReason": null,
4542
4659
  "description": "Globally defined IP range, IP and subnet objects",
@@ -4614,7 +4731,7 @@
4614
4731
  "varName": "globalIpRangeRef"
4615
4732
  },
4616
4733
  "group": {
4617
- "alias": "groupRefGroup: group",
4734
+ "alias": "groupInternetFirewallSource: group",
4618
4735
  "args": {},
4619
4736
  "deprecationReason": null,
4620
4737
  "description": "Groups defined for your account",
@@ -4692,7 +4809,7 @@
4692
4809
  "varName": "groupRef"
4693
4810
  },
4694
4811
  "host": {
4695
- "alias": "hostRefHost: host",
4812
+ "alias": "hostInternetFirewallSource: host",
4696
4813
  "args": {},
4697
4814
  "deprecationReason": null,
4698
4815
  "description": "Hosts and servers defined for your account",
@@ -4793,7 +4910,7 @@
4793
4910
  "varName": "ip"
4794
4911
  },
4795
4912
  "ipRange": {
4796
- "alias": "ipAddressRangeIpRange: ipRange",
4913
+ "alias": "ipRangeInternetFirewallSource: ipRange",
4797
4914
  "args": {},
4798
4915
  "deprecationReason": null,
4799
4916
  "description": "Multiple separate IP addresses or an IP range",
@@ -4871,7 +4988,7 @@
4871
4988
  "varName": "ipAddressRange"
4872
4989
  },
4873
4990
  "networkInterface": {
4874
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
4991
+ "alias": "networkInterfaceInternetFirewallSource: networkInterface",
4875
4992
  "args": {},
4876
4993
  "deprecationReason": null,
4877
4994
  "description": "Network range defined for a site",
@@ -4949,7 +5066,7 @@
4949
5066
  "varName": "networkInterfaceRef"
4950
5067
  },
4951
5068
  "site": {
4952
- "alias": "siteRefSite: site",
5069
+ "alias": "siteInternetFirewallSource: site",
4953
5070
  "args": {},
4954
5071
  "deprecationReason": null,
4955
5072
  "description": "Site defined for the account",
@@ -5027,7 +5144,7 @@
5027
5144
  "varName": "siteRef"
5028
5145
  },
5029
5146
  "siteNetworkSubnet": {
5030
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
5147
+ "alias": "siteNetworkSubnetInternetFirewallSource: siteNetworkSubnet",
5031
5148
  "args": {},
5032
5149
  "deprecationReason": null,
5033
5150
  "description": "GlobalRange + InterfaceSubnet",
@@ -5128,7 +5245,7 @@
5128
5245
  "varName": "subnet"
5129
5246
  },
5130
5247
  "systemGroup": {
5131
- "alias": "systemGroupRefSystemGroup: systemGroup",
5248
+ "alias": "systemGroupInternetFirewallSource: systemGroup",
5132
5249
  "args": {},
5133
5250
  "deprecationReason": null,
5134
5251
  "description": "Predefined Cato groups",
@@ -5206,7 +5323,7 @@
5206
5323
  "varName": "systemGroupRef"
5207
5324
  },
5208
5325
  "user": {
5209
- "alias": "userRefUser: user",
5326
+ "alias": "userInternetFirewallSource: user",
5210
5327
  "args": {},
5211
5328
  "deprecationReason": null,
5212
5329
  "description": "Individual users defined for the account",
@@ -5284,7 +5401,7 @@
5284
5401
  "varName": "userRef"
5285
5402
  },
5286
5403
  "usersGroup": {
5287
- "alias": "usersGroupRefUsersGroup: usersGroup",
5404
+ "alias": "usersGroupInternetFirewallSource: usersGroup",
5288
5405
  "args": {},
5289
5406
  "deprecationReason": null,
5290
5407
  "description": "Group of users",
@@ -5461,7 +5578,7 @@
5461
5578
  "varName": "name"
5462
5579
  },
5463
5580
  "schedule": {
5464
- "alias": "policyScheduleSchedule: schedule",
5581
+ "alias": "scheduleInternetFirewallRule: schedule",
5465
5582
  "args": {},
5466
5583
  "deprecationReason": null,
5467
5584
  "description": "The time period specifying when the rule is enabled, otherwise it is disabled.",
@@ -5478,7 +5595,7 @@
5478
5595
  "enumValues": null,
5479
5596
  "fields": {
5480
5597
  "activeOn": {
5481
- "alias": "policyActiveOnEnumActiveOn: activeOn",
5598
+ "alias": "activeOnPolicySchedule: activeOn",
5482
5599
  "args": {},
5483
5600
  "deprecationReason": null,
5484
5601
  "description": null,
@@ -5536,7 +5653,7 @@
5536
5653
  "varName": "activeOn"
5537
5654
  },
5538
5655
  "customRecurring": {
5539
- "alias": "policyCustomRecurringCustomRecurring: customRecurring",
5656
+ "alias": "customRecurringPolicySchedule: customRecurring",
5540
5657
  "args": {},
5541
5658
  "deprecationReason": null,
5542
5659
  "description": null,
@@ -5688,7 +5805,7 @@
5688
5805
  "varName": "policyCustomRecurring"
5689
5806
  },
5690
5807
  "customTimeframe": {
5691
- "alias": "policyCustomTimeframeCustomTimeframe: customTimeframe",
5808
+ "alias": "customTimeframePolicySchedule: customTimeframe",
5692
5809
  "args": {},
5693
5810
  "deprecationReason": null,
5694
5811
  "description": null,
@@ -5780,7 +5897,7 @@
5780
5897
  "varName": "policySchedule"
5781
5898
  },
5782
5899
  "section": {
5783
- "alias": "policySectionInfoSection: section",
5900
+ "alias": "sectionInternetFirewallRule: section",
5784
5901
  "args": {},
5785
5902
  "deprecationReason": null,
5786
5903
  "description": "Policy section where the rule is located",
@@ -5856,7 +5973,7 @@
5856
5973
  "varName": "policySectionInfo"
5857
5974
  },
5858
5975
  "service": {
5859
- "alias": "internetFirewallServiceTypeService: service",
5976
+ "alias": "serviceInternetFirewallRule: service",
5860
5977
  "args": {},
5861
5978
  "deprecationReason": null,
5862
5979
  "description": "Destination service traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -5873,7 +5990,7 @@
5873
5990
  "enumValues": null,
5874
5991
  "fields": {
5875
5992
  "custom": {
5876
- "alias": "customServiceCustom: custom",
5993
+ "alias": "customInternetFirewallServiceType: custom",
5877
5994
  "args": {},
5878
5995
  "deprecationReason": null,
5879
5996
  "description": null,
@@ -5912,7 +6029,7 @@
5912
6029
  "varName": "port"
5913
6030
  },
5914
6031
  "portRange": {
5915
- "alias": "portRangePortRange: portRange",
6032
+ "alias": "portRangeCustomService: portRange",
5916
6033
  "args": {},
5917
6034
  "deprecationReason": null,
5918
6035
  "description": null,
@@ -5987,7 +6104,7 @@
5987
6104
  "varName": "portRange"
5988
6105
  },
5989
6106
  "protocol": {
5990
- "alias": "ipProtocolProtocol: protocol",
6107
+ "alias": "protocolCustomService: protocol",
5991
6108
  "args": {},
5992
6109
  "deprecationReason": null,
5993
6110
  "description": null,
@@ -6070,7 +6187,7 @@
6070
6187
  "varName": "customService"
6071
6188
  },
6072
6189
  "standard": {
6073
- "alias": "serviceRefStandard: standard",
6190
+ "alias": "standardInternetFirewallServiceType: standard",
6074
6191
  "args": {},
6075
6192
  "deprecationReason": null,
6076
6193
  "description": null,
@@ -6165,7 +6282,7 @@
6165
6282
  "varName": "internetFirewallServiceType"
6166
6283
  },
6167
6284
  "source": {
6168
- "alias": "internetFirewallSourceSource: source",
6285
+ "alias": "sourceInternetFirewallRule: source",
6169
6286
  "args": {},
6170
6287
  "deprecationReason": null,
6171
6288
  "description": "Source traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -6182,7 +6299,7 @@
6182
6299
  "enumValues": null,
6183
6300
  "fields": {
6184
6301
  "floatingSubnet": {
6185
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
6302
+ "alias": "floatingSubnetInternetFirewallSource: floatingSubnet",
6186
6303
  "args": {},
6187
6304
  "deprecationReason": null,
6188
6305
  "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.",
@@ -6260,7 +6377,7 @@
6260
6377
  "varName": "floatingSubnetRef"
6261
6378
  },
6262
6379
  "globalIpRange": {
6263
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
6380
+ "alias": "globalIpRangeInternetFirewallSource: globalIpRange",
6264
6381
  "args": {},
6265
6382
  "deprecationReason": null,
6266
6383
  "description": "Globally defined IP range, IP and subnet objects",
@@ -6338,7 +6455,7 @@
6338
6455
  "varName": "globalIpRangeRef"
6339
6456
  },
6340
6457
  "group": {
6341
- "alias": "groupRefGroup: group",
6458
+ "alias": "groupInternetFirewallSource: group",
6342
6459
  "args": {},
6343
6460
  "deprecationReason": null,
6344
6461
  "description": "Groups defined for your account",
@@ -6416,7 +6533,7 @@
6416
6533
  "varName": "groupRef"
6417
6534
  },
6418
6535
  "host": {
6419
- "alias": "hostRefHost: host",
6536
+ "alias": "hostInternetFirewallSource: host",
6420
6537
  "args": {},
6421
6538
  "deprecationReason": null,
6422
6539
  "description": "Hosts and servers defined for your account",
@@ -6517,7 +6634,7 @@
6517
6634
  "varName": "ip"
6518
6635
  },
6519
6636
  "ipRange": {
6520
- "alias": "ipAddressRangeIpRange: ipRange",
6637
+ "alias": "ipRangeInternetFirewallSource: ipRange",
6521
6638
  "args": {},
6522
6639
  "deprecationReason": null,
6523
6640
  "description": "Multiple separate IP addresses or an IP range",
@@ -6595,7 +6712,7 @@
6595
6712
  "varName": "ipAddressRange"
6596
6713
  },
6597
6714
  "networkInterface": {
6598
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
6715
+ "alias": "networkInterfaceInternetFirewallSource: networkInterface",
6599
6716
  "args": {},
6600
6717
  "deprecationReason": null,
6601
6718
  "description": "Network range defined for a site",
@@ -6673,7 +6790,7 @@
6673
6790
  "varName": "networkInterfaceRef"
6674
6791
  },
6675
6792
  "site": {
6676
- "alias": "siteRefSite: site",
6793
+ "alias": "siteInternetFirewallSource: site",
6677
6794
  "args": {},
6678
6795
  "deprecationReason": null,
6679
6796
  "description": "Site defined for the account",
@@ -6751,7 +6868,7 @@
6751
6868
  "varName": "siteRef"
6752
6869
  },
6753
6870
  "siteNetworkSubnet": {
6754
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
6871
+ "alias": "siteNetworkSubnetInternetFirewallSource: siteNetworkSubnet",
6755
6872
  "args": {},
6756
6873
  "deprecationReason": null,
6757
6874
  "description": "GlobalRange + InterfaceSubnet",
@@ -6852,7 +6969,7 @@
6852
6969
  "varName": "subnet"
6853
6970
  },
6854
6971
  "systemGroup": {
6855
- "alias": "systemGroupRefSystemGroup: systemGroup",
6972
+ "alias": "systemGroupInternetFirewallSource: systemGroup",
6856
6973
  "args": {},
6857
6974
  "deprecationReason": null,
6858
6975
  "description": "Predefined Cato groups",
@@ -6930,7 +7047,7 @@
6930
7047
  "varName": "systemGroupRef"
6931
7048
  },
6932
7049
  "user": {
6933
- "alias": "userRefUser: user",
7050
+ "alias": "userInternetFirewallSource: user",
6934
7051
  "args": {},
6935
7052
  "deprecationReason": null,
6936
7053
  "description": "Individual users defined for the account",
@@ -7008,7 +7125,7 @@
7008
7125
  "varName": "userRef"
7009
7126
  },
7010
7127
  "usersGroup": {
7011
- "alias": "usersGroupRefUsersGroup: usersGroup",
7128
+ "alias": "usersGroupInternetFirewallSource: usersGroup",
7012
7129
  "args": {},
7013
7130
  "deprecationReason": null,
7014
7131
  "description": "Group of users",
@@ -7103,7 +7220,7 @@
7103
7220
  "varName": "internetFirewallSource"
7104
7221
  },
7105
7222
  "tracking": {
7106
- "alias": "policyTrackingTracking: tracking",
7223
+ "alias": "trackingInternetFirewallRule: tracking",
7107
7224
  "args": {},
7108
7225
  "deprecationReason": null,
7109
7226
  "description": "Tracking information when the rule is matched, such as events and notifications",
@@ -7120,7 +7237,7 @@
7120
7237
  "enumValues": null,
7121
7238
  "fields": {
7122
7239
  "alert": {
7123
- "alias": "policyRuleTrackingAlertAlert: alert",
7240
+ "alias": "alertPolicyTracking: alert",
7124
7241
  "args": {},
7125
7242
  "deprecationReason": null,
7126
7243
  "description": null,
@@ -7158,7 +7275,7 @@
7158
7275
  "varName": "enabled"
7159
7276
  },
7160
7277
  "frequency": {
7161
- "alias": "policyRuleTrackingFrequencyEnumFrequency: frequency",
7278
+ "alias": "frequencyPolicyRuleTrackingAlert: frequency",
7162
7279
  "args": {},
7163
7280
  "deprecationReason": null,
7164
7281
  "description": "Returns data for the alert frequency",
@@ -7216,7 +7333,7 @@
7216
7333
  "varName": "frequency"
7217
7334
  },
7218
7335
  "mailingList": {
7219
- "alias": "subscriptionMailingListRefMailingList: mailingList",
7336
+ "alias": "mailingListPolicyRuleTrackingAlert: mailingList",
7220
7337
  "args": {},
7221
7338
  "deprecationReason": null,
7222
7339
  "description": "Returns data for the Mailing List that receives the alert",
@@ -7294,7 +7411,7 @@
7294
7411
  "varName": "subscriptionMailingListRef"
7295
7412
  },
7296
7413
  "subscriptionGroup": {
7297
- "alias": "subscriptionGroupRefSubscriptionGroup: subscriptionGroup",
7414
+ "alias": "subscriptionGroupPolicyRuleTrackingAlert: subscriptionGroup",
7298
7415
  "args": {},
7299
7416
  "deprecationReason": null,
7300
7417
  "description": "Returns data for the Subscription Group that receives the alert",
@@ -7372,7 +7489,7 @@
7372
7489
  "varName": "subscriptionGroupRef"
7373
7490
  },
7374
7491
  "webhook": {
7375
- "alias": "subscriptionWebhookRefWebhook: webhook",
7492
+ "alias": "webhookPolicyRuleTrackingAlert: webhook",
7376
7493
  "args": {},
7377
7494
  "deprecationReason": null,
7378
7495
  "description": "Returns data for the Webhook that receives the alert",
@@ -7467,7 +7584,7 @@
7467
7584
  "varName": "policyRuleTrackingAlert"
7468
7585
  },
7469
7586
  "event": {
7470
- "alias": "policyRuleTrackingEventEvent: event",
7587
+ "alias": "eventPolicyTracking: event",
7471
7588
  "args": {},
7472
7589
  "deprecationReason": null,
7473
7590
  "description": null,
@@ -7572,7 +7689,7 @@
7572
7689
  "varName": "internetFirewallRulePayload"
7573
7690
  },
7574
7691
  "status": {
7575
- "alias": "policyMutationStatusStatus: status",
7692
+ "alias": "statusInternetFirewallRuleMutationPayload: status",
7576
7693
  "args": {},
7577
7694
  "deprecationReason": null,
7578
7695
  "description": null,