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
@@ -597,7 +597,7 @@
597
597
  "enumValues": null,
598
598
  "fields": {
599
599
  "errors": {
600
- "alias": "policyMutationErrorErrors: errors",
600
+ "alias": "errorsAppTenantRestrictionPolicyMutationPayload: errors",
601
601
  "args": {},
602
602
  "deprecationReason": null,
603
603
  "description": null,
@@ -673,7 +673,7 @@
673
673
  "varName": "policyMutationError"
674
674
  },
675
675
  "policy": {
676
- "alias": "appTenantRestrictionPolicyPolicy: policy",
676
+ "alias": "policyAppTenantRestrictionPolicyMutationPayload: policy",
677
677
  "args": {},
678
678
  "deprecationReason": null,
679
679
  "description": null,
@@ -959,7 +959,7 @@
959
959
  "enumValues": null,
960
960
  "fields": {
961
961
  "audit": {
962
- "alias": "policyElementAuditAudit: audit",
962
+ "alias": "auditAppTenantRestrictionRulePayload: audit",
963
963
  "args": {},
964
964
  "deprecationReason": null,
965
965
  "description": null,
@@ -1035,7 +1035,7 @@
1035
1035
  "varName": "policyElementAudit"
1036
1036
  },
1037
1037
  "properties": {
1038
- "alias": "policyElementPropertiesEnumProperties: properties",
1038
+ "alias": "propertiesAppTenantRestrictionRulePayload: properties",
1039
1039
  "args": {},
1040
1040
  "deprecationReason": null,
1041
1041
  "description": null,
@@ -1113,7 +1113,7 @@
1113
1113
  "varName": "properties"
1114
1114
  },
1115
1115
  "rule": {
1116
- "alias": "appTenantRestrictionRuleRule: rule",
1116
+ "alias": "ruleAppTenantRestrictionRulePayload: rule",
1117
1117
  "args": {},
1118
1118
  "deprecationReason": null,
1119
1119
  "description": null,
@@ -1130,7 +1130,7 @@
1130
1130
  "enumValues": null,
1131
1131
  "fields": {
1132
1132
  "action": {
1133
- "alias": "appTenantRestrictionActionEnumAction: action",
1133
+ "alias": "actionAppTenantRestrictionRule: action",
1134
1134
  "args": {},
1135
1135
  "deprecationReason": null,
1136
1136
  "description": "The action applied by the App Tenant Restriction if the rule is matched",
@@ -1176,7 +1176,7 @@
1176
1176
  "varName": "action"
1177
1177
  },
1178
1178
  "application": {
1179
- "alias": "applicationRefApplication: application",
1179
+ "alias": "applicationAppTenantRestrictionRule: application",
1180
1180
  "args": {},
1181
1181
  "deprecationReason": null,
1182
1182
  "description": "Applications for the rule (pre-defined)",
@@ -1294,7 +1294,7 @@
1294
1294
  "varName": "enabled"
1295
1295
  },
1296
1296
  "headers": {
1297
- "alias": "appTenantRestrictionHeaderValueHeaders: headers",
1297
+ "alias": "headersAppTenantRestrictionRule: headers",
1298
1298
  "args": {},
1299
1299
  "deprecationReason": null,
1300
1300
  "description": "Headers and Values to Inject",
@@ -1435,7 +1435,7 @@
1435
1435
  "varName": "name"
1436
1436
  },
1437
1437
  "schedule": {
1438
- "alias": "policyScheduleSchedule: schedule",
1438
+ "alias": "scheduleAppTenantRestrictionRule: schedule",
1439
1439
  "args": {},
1440
1440
  "deprecationReason": null,
1441
1441
  "description": "The time period specifying when the rule is enabled, otherwise it is disabled.",
@@ -1452,7 +1452,7 @@
1452
1452
  "enumValues": null,
1453
1453
  "fields": {
1454
1454
  "activeOn": {
1455
- "alias": "policyActiveOnEnumActiveOn: activeOn",
1455
+ "alias": "activeOnPolicySchedule: activeOn",
1456
1456
  "args": {},
1457
1457
  "deprecationReason": null,
1458
1458
  "description": null,
@@ -1510,7 +1510,7 @@
1510
1510
  "varName": "activeOn"
1511
1511
  },
1512
1512
  "customRecurring": {
1513
- "alias": "policyCustomRecurringCustomRecurring: customRecurring",
1513
+ "alias": "customRecurringPolicySchedule: customRecurring",
1514
1514
  "args": {},
1515
1515
  "deprecationReason": null,
1516
1516
  "description": null,
@@ -1662,7 +1662,7 @@
1662
1662
  "varName": "policyCustomRecurring"
1663
1663
  },
1664
1664
  "customTimeframe": {
1665
- "alias": "policyCustomTimeframeCustomTimeframe: customTimeframe",
1665
+ "alias": "customTimeframePolicySchedule: customTimeframe",
1666
1666
  "args": {},
1667
1667
  "deprecationReason": null,
1668
1668
  "description": null,
@@ -1754,7 +1754,7 @@
1754
1754
  "varName": "policySchedule"
1755
1755
  },
1756
1756
  "section": {
1757
- "alias": "policySectionInfoSection: section",
1757
+ "alias": "sectionAppTenantRestrictionRule: section",
1758
1758
  "args": {},
1759
1759
  "deprecationReason": null,
1760
1760
  "description": "Policy section where the rule is located",
@@ -1830,7 +1830,7 @@
1830
1830
  "varName": "policySectionInfo"
1831
1831
  },
1832
1832
  "severity": {
1833
- "alias": "appTenantRestrictionSeverityEnumSeverity: severity",
1833
+ "alias": "severityAppTenantRestrictionRule: severity",
1834
1834
  "args": {},
1835
1835
  "deprecationReason": null,
1836
1836
  "description": "Severity defined for the rule",
@@ -1882,7 +1882,7 @@
1882
1882
  "varName": "severity"
1883
1883
  },
1884
1884
  "source": {
1885
- "alias": "appTenantRestrictionSourceSource: source",
1885
+ "alias": "sourceAppTenantRestrictionRule: source",
1886
1886
  "args": {},
1887
1887
  "deprecationReason": null,
1888
1888
  "description": "Source traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -1899,7 +1899,7 @@
1899
1899
  "enumValues": null,
1900
1900
  "fields": {
1901
1901
  "country": {
1902
- "alias": "countryRefCountry: country",
1902
+ "alias": "countryAppTenantRestrictionSource: country",
1903
1903
  "args": {},
1904
1904
  "deprecationReason": null,
1905
1905
  "description": "Source country traffic matching criteria.",
@@ -1977,7 +1977,7 @@
1977
1977
  "varName": "countryRef"
1978
1978
  },
1979
1979
  "floatingSubnet": {
1980
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
1980
+ "alias": "floatingSubnetAppTenantRestrictionSource: floatingSubnet",
1981
1981
  "args": {},
1982
1982
  "deprecationReason": null,
1983
1983
  "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.",
@@ -2055,7 +2055,7 @@
2055
2055
  "varName": "floatingSubnetRef"
2056
2056
  },
2057
2057
  "globalIpRange": {
2058
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
2058
+ "alias": "globalIpRangeAppTenantRestrictionSource: globalIpRange",
2059
2059
  "args": {},
2060
2060
  "deprecationReason": null,
2061
2061
  "description": "Globally defined IP range, IP and subnet objects",
@@ -2133,7 +2133,7 @@
2133
2133
  "varName": "globalIpRangeRef"
2134
2134
  },
2135
2135
  "group": {
2136
- "alias": "groupRefGroup: group",
2136
+ "alias": "groupAppTenantRestrictionSource: group",
2137
2137
  "args": {},
2138
2138
  "deprecationReason": null,
2139
2139
  "description": "Groups defined for your account",
@@ -2211,7 +2211,7 @@
2211
2211
  "varName": "groupRef"
2212
2212
  },
2213
2213
  "host": {
2214
- "alias": "hostRefHost: host",
2214
+ "alias": "hostAppTenantRestrictionSource: host",
2215
2215
  "args": {},
2216
2216
  "deprecationReason": null,
2217
2217
  "description": "Hosts and servers defined for your account",
@@ -2312,7 +2312,7 @@
2312
2312
  "varName": "ip"
2313
2313
  },
2314
2314
  "ipRange": {
2315
- "alias": "ipAddressRangeIpRange: ipRange",
2315
+ "alias": "ipRangeAppTenantRestrictionSource: ipRange",
2316
2316
  "args": {},
2317
2317
  "deprecationReason": null,
2318
2318
  "description": "Multiple separate IP addresses or an IP range",
@@ -2390,7 +2390,7 @@
2390
2390
  "varName": "ipAddressRange"
2391
2391
  },
2392
2392
  "networkInterface": {
2393
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
2393
+ "alias": "networkInterfaceAppTenantRestrictionSource: networkInterface",
2394
2394
  "args": {},
2395
2395
  "deprecationReason": null,
2396
2396
  "description": "Network range defined for a site",
@@ -2468,7 +2468,7 @@
2468
2468
  "varName": "networkInterfaceRef"
2469
2469
  },
2470
2470
  "site": {
2471
- "alias": "siteRefSite: site",
2471
+ "alias": "siteAppTenantRestrictionSource: site",
2472
2472
  "args": {},
2473
2473
  "deprecationReason": null,
2474
2474
  "description": "Site defined for the account",
@@ -2546,7 +2546,7 @@
2546
2546
  "varName": "siteRef"
2547
2547
  },
2548
2548
  "siteNetworkSubnet": {
2549
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
2549
+ "alias": "siteNetworkSubnetAppTenantRestrictionSource: siteNetworkSubnet",
2550
2550
  "args": {},
2551
2551
  "deprecationReason": null,
2552
2552
  "description": "GlobalRange + InterfaceSubnet",
@@ -2647,7 +2647,7 @@
2647
2647
  "varName": "subnet"
2648
2648
  },
2649
2649
  "systemGroup": {
2650
- "alias": "systemGroupRefSystemGroup: systemGroup",
2650
+ "alias": "systemGroupAppTenantRestrictionSource: systemGroup",
2651
2651
  "args": {},
2652
2652
  "deprecationReason": null,
2653
2653
  "description": "Predefined Cato groups",
@@ -2725,7 +2725,7 @@
2725
2725
  "varName": "systemGroupRef"
2726
2726
  },
2727
2727
  "user": {
2728
- "alias": "userRefUser: user",
2728
+ "alias": "userAppTenantRestrictionSource: user",
2729
2729
  "args": {},
2730
2730
  "deprecationReason": null,
2731
2731
  "description": "Individual users defined for the account",
@@ -2803,7 +2803,7 @@
2803
2803
  "varName": "userRef"
2804
2804
  },
2805
2805
  "usersGroup": {
2806
- "alias": "usersGroupRefUsersGroup: usersGroup",
2806
+ "alias": "usersGroupAppTenantRestrictionSource: usersGroup",
2807
2807
  "args": {},
2808
2808
  "deprecationReason": null,
2809
2809
  "description": "Group of users",
@@ -2950,7 +2950,7 @@
2950
2950
  "enumValues": null,
2951
2951
  "fields": {
2952
2952
  "audit": {
2953
- "alias": "policyElementAuditAudit: audit",
2953
+ "alias": "auditPolicySectionPayload: audit",
2954
2954
  "args": {},
2955
2955
  "deprecationReason": null,
2956
2956
  "description": null,
@@ -3026,7 +3026,7 @@
3026
3026
  "varName": "policyElementAudit"
3027
3027
  },
3028
3028
  "properties": {
3029
- "alias": "policyElementPropertiesEnumProperties: properties",
3029
+ "alias": "propertiesPolicySectionPayload: properties",
3030
3030
  "args": {},
3031
3031
  "deprecationReason": null,
3032
3032
  "description": null,
@@ -3104,7 +3104,7 @@
3104
3104
  "varName": "properties"
3105
3105
  },
3106
3106
  "section": {
3107
- "alias": "policySectionInfoSection: section",
3107
+ "alias": "sectionPolicySectionPayload: section",
3108
3108
  "args": {},
3109
3109
  "deprecationReason": null,
3110
3110
  "description": null,
@@ -3215,7 +3215,7 @@
3215
3215
  "varName": "appTenantRestrictionPolicy"
3216
3216
  },
3217
3217
  "status": {
3218
- "alias": "policyMutationStatusStatus: status",
3218
+ "alias": "statusAppTenantRestrictionPolicyMutationPayload: status",
3219
3219
  "args": {},
3220
3220
  "deprecationReason": null,
3221
3221
  "description": null,
@@ -534,7 +534,7 @@
534
534
  "enumValues": null,
535
535
  "fields": {
536
536
  "errors": {
537
- "alias": "policyMutationErrorErrors: errors",
537
+ "alias": "errorsAppTenantRestrictionPolicyMutationPayload: errors",
538
538
  "args": {},
539
539
  "deprecationReason": null,
540
540
  "description": null,
@@ -610,7 +610,7 @@
610
610
  "varName": "policyMutationError"
611
611
  },
612
612
  "policy": {
613
- "alias": "appTenantRestrictionPolicyPolicy: policy",
613
+ "alias": "policyAppTenantRestrictionPolicyMutationPayload: policy",
614
614
  "args": {},
615
615
  "deprecationReason": null,
616
616
  "description": null,
@@ -896,7 +896,7 @@
896
896
  "enumValues": null,
897
897
  "fields": {
898
898
  "audit": {
899
- "alias": "policyElementAuditAudit: audit",
899
+ "alias": "auditAppTenantRestrictionRulePayload: audit",
900
900
  "args": {},
901
901
  "deprecationReason": null,
902
902
  "description": null,
@@ -972,7 +972,7 @@
972
972
  "varName": "policyElementAudit"
973
973
  },
974
974
  "properties": {
975
- "alias": "policyElementPropertiesEnumProperties: properties",
975
+ "alias": "propertiesAppTenantRestrictionRulePayload: properties",
976
976
  "args": {},
977
977
  "deprecationReason": null,
978
978
  "description": null,
@@ -1050,7 +1050,7 @@
1050
1050
  "varName": "properties"
1051
1051
  },
1052
1052
  "rule": {
1053
- "alias": "appTenantRestrictionRuleRule: rule",
1053
+ "alias": "ruleAppTenantRestrictionRulePayload: rule",
1054
1054
  "args": {},
1055
1055
  "deprecationReason": null,
1056
1056
  "description": null,
@@ -1067,7 +1067,7 @@
1067
1067
  "enumValues": null,
1068
1068
  "fields": {
1069
1069
  "action": {
1070
- "alias": "appTenantRestrictionActionEnumAction: action",
1070
+ "alias": "actionAppTenantRestrictionRule: action",
1071
1071
  "args": {},
1072
1072
  "deprecationReason": null,
1073
1073
  "description": "The action applied by the App Tenant Restriction if the rule is matched",
@@ -1113,7 +1113,7 @@
1113
1113
  "varName": "action"
1114
1114
  },
1115
1115
  "application": {
1116
- "alias": "applicationRefApplication: application",
1116
+ "alias": "applicationAppTenantRestrictionRule: application",
1117
1117
  "args": {},
1118
1118
  "deprecationReason": null,
1119
1119
  "description": "Applications for the rule (pre-defined)",
@@ -1231,7 +1231,7 @@
1231
1231
  "varName": "enabled"
1232
1232
  },
1233
1233
  "headers": {
1234
- "alias": "appTenantRestrictionHeaderValueHeaders: headers",
1234
+ "alias": "headersAppTenantRestrictionRule: headers",
1235
1235
  "args": {},
1236
1236
  "deprecationReason": null,
1237
1237
  "description": "Headers and Values to Inject",
@@ -1372,7 +1372,7 @@
1372
1372
  "varName": "name"
1373
1373
  },
1374
1374
  "schedule": {
1375
- "alias": "policyScheduleSchedule: schedule",
1375
+ "alias": "scheduleAppTenantRestrictionRule: schedule",
1376
1376
  "args": {},
1377
1377
  "deprecationReason": null,
1378
1378
  "description": "The time period specifying when the rule is enabled, otherwise it is disabled.",
@@ -1389,7 +1389,7 @@
1389
1389
  "enumValues": null,
1390
1390
  "fields": {
1391
1391
  "activeOn": {
1392
- "alias": "policyActiveOnEnumActiveOn: activeOn",
1392
+ "alias": "activeOnPolicySchedule: activeOn",
1393
1393
  "args": {},
1394
1394
  "deprecationReason": null,
1395
1395
  "description": null,
@@ -1447,7 +1447,7 @@
1447
1447
  "varName": "activeOn"
1448
1448
  },
1449
1449
  "customRecurring": {
1450
- "alias": "policyCustomRecurringCustomRecurring: customRecurring",
1450
+ "alias": "customRecurringPolicySchedule: customRecurring",
1451
1451
  "args": {},
1452
1452
  "deprecationReason": null,
1453
1453
  "description": null,
@@ -1599,7 +1599,7 @@
1599
1599
  "varName": "policyCustomRecurring"
1600
1600
  },
1601
1601
  "customTimeframe": {
1602
- "alias": "policyCustomTimeframeCustomTimeframe: customTimeframe",
1602
+ "alias": "customTimeframePolicySchedule: customTimeframe",
1603
1603
  "args": {},
1604
1604
  "deprecationReason": null,
1605
1605
  "description": null,
@@ -1691,7 +1691,7 @@
1691
1691
  "varName": "policySchedule"
1692
1692
  },
1693
1693
  "section": {
1694
- "alias": "policySectionInfoSection: section",
1694
+ "alias": "sectionAppTenantRestrictionRule: section",
1695
1695
  "args": {},
1696
1696
  "deprecationReason": null,
1697
1697
  "description": "Policy section where the rule is located",
@@ -1767,7 +1767,7 @@
1767
1767
  "varName": "policySectionInfo"
1768
1768
  },
1769
1769
  "severity": {
1770
- "alias": "appTenantRestrictionSeverityEnumSeverity: severity",
1770
+ "alias": "severityAppTenantRestrictionRule: severity",
1771
1771
  "args": {},
1772
1772
  "deprecationReason": null,
1773
1773
  "description": "Severity defined for the rule",
@@ -1819,7 +1819,7 @@
1819
1819
  "varName": "severity"
1820
1820
  },
1821
1821
  "source": {
1822
- "alias": "appTenantRestrictionSourceSource: source",
1822
+ "alias": "sourceAppTenantRestrictionRule: source",
1823
1823
  "args": {},
1824
1824
  "deprecationReason": null,
1825
1825
  "description": "Source traffic matching criteria.\nLogical \u2018OR\u2019 is applied within the criteria set.\nLogical \u2018AND\u2019 is applied between criteria sets.",
@@ -1836,7 +1836,7 @@
1836
1836
  "enumValues": null,
1837
1837
  "fields": {
1838
1838
  "country": {
1839
- "alias": "countryRefCountry: country",
1839
+ "alias": "countryAppTenantRestrictionSource: country",
1840
1840
  "args": {},
1841
1841
  "deprecationReason": null,
1842
1842
  "description": "Source country traffic matching criteria.",
@@ -1914,7 +1914,7 @@
1914
1914
  "varName": "countryRef"
1915
1915
  },
1916
1916
  "floatingSubnet": {
1917
- "alias": "floatingSubnetRefFloatingSubnet: floatingSubnet",
1917
+ "alias": "floatingSubnetAppTenantRestrictionSource: floatingSubnet",
1918
1918
  "args": {},
1919
1919
  "deprecationReason": null,
1920
1920
  "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.",
@@ -1992,7 +1992,7 @@
1992
1992
  "varName": "floatingSubnetRef"
1993
1993
  },
1994
1994
  "globalIpRange": {
1995
- "alias": "globalIpRangeRefGlobalIpRange: globalIpRange",
1995
+ "alias": "globalIpRangeAppTenantRestrictionSource: globalIpRange",
1996
1996
  "args": {},
1997
1997
  "deprecationReason": null,
1998
1998
  "description": "Globally defined IP range, IP and subnet objects",
@@ -2070,7 +2070,7 @@
2070
2070
  "varName": "globalIpRangeRef"
2071
2071
  },
2072
2072
  "group": {
2073
- "alias": "groupRefGroup: group",
2073
+ "alias": "groupAppTenantRestrictionSource: group",
2074
2074
  "args": {},
2075
2075
  "deprecationReason": null,
2076
2076
  "description": "Groups defined for your account",
@@ -2148,7 +2148,7 @@
2148
2148
  "varName": "groupRef"
2149
2149
  },
2150
2150
  "host": {
2151
- "alias": "hostRefHost: host",
2151
+ "alias": "hostAppTenantRestrictionSource: host",
2152
2152
  "args": {},
2153
2153
  "deprecationReason": null,
2154
2154
  "description": "Hosts and servers defined for your account",
@@ -2249,7 +2249,7 @@
2249
2249
  "varName": "ip"
2250
2250
  },
2251
2251
  "ipRange": {
2252
- "alias": "ipAddressRangeIpRange: ipRange",
2252
+ "alias": "ipRangeAppTenantRestrictionSource: ipRange",
2253
2253
  "args": {},
2254
2254
  "deprecationReason": null,
2255
2255
  "description": "Multiple separate IP addresses or an IP range",
@@ -2327,7 +2327,7 @@
2327
2327
  "varName": "ipAddressRange"
2328
2328
  },
2329
2329
  "networkInterface": {
2330
- "alias": "networkInterfaceRefNetworkInterface: networkInterface",
2330
+ "alias": "networkInterfaceAppTenantRestrictionSource: networkInterface",
2331
2331
  "args": {},
2332
2332
  "deprecationReason": null,
2333
2333
  "description": "Network range defined for a site",
@@ -2405,7 +2405,7 @@
2405
2405
  "varName": "networkInterfaceRef"
2406
2406
  },
2407
2407
  "site": {
2408
- "alias": "siteRefSite: site",
2408
+ "alias": "siteAppTenantRestrictionSource: site",
2409
2409
  "args": {},
2410
2410
  "deprecationReason": null,
2411
2411
  "description": "Site defined for the account",
@@ -2483,7 +2483,7 @@
2483
2483
  "varName": "siteRef"
2484
2484
  },
2485
2485
  "siteNetworkSubnet": {
2486
- "alias": "siteNetworkSubnetRefSiteNetworkSubnet: siteNetworkSubnet",
2486
+ "alias": "siteNetworkSubnetAppTenantRestrictionSource: siteNetworkSubnet",
2487
2487
  "args": {},
2488
2488
  "deprecationReason": null,
2489
2489
  "description": "GlobalRange + InterfaceSubnet",
@@ -2584,7 +2584,7 @@
2584
2584
  "varName": "subnet"
2585
2585
  },
2586
2586
  "systemGroup": {
2587
- "alias": "systemGroupRefSystemGroup: systemGroup",
2587
+ "alias": "systemGroupAppTenantRestrictionSource: systemGroup",
2588
2588
  "args": {},
2589
2589
  "deprecationReason": null,
2590
2590
  "description": "Predefined Cato groups",
@@ -2662,7 +2662,7 @@
2662
2662
  "varName": "systemGroupRef"
2663
2663
  },
2664
2664
  "user": {
2665
- "alias": "userRefUser: user",
2665
+ "alias": "userAppTenantRestrictionSource: user",
2666
2666
  "args": {},
2667
2667
  "deprecationReason": null,
2668
2668
  "description": "Individual users defined for the account",
@@ -2740,7 +2740,7 @@
2740
2740
  "varName": "userRef"
2741
2741
  },
2742
2742
  "usersGroup": {
2743
- "alias": "usersGroupRefUsersGroup: usersGroup",
2743
+ "alias": "usersGroupAppTenantRestrictionSource: usersGroup",
2744
2744
  "args": {},
2745
2745
  "deprecationReason": null,
2746
2746
  "description": "Group of users",
@@ -2887,7 +2887,7 @@
2887
2887
  "enumValues": null,
2888
2888
  "fields": {
2889
2889
  "audit": {
2890
- "alias": "policyElementAuditAudit: audit",
2890
+ "alias": "auditPolicySectionPayload: audit",
2891
2891
  "args": {},
2892
2892
  "deprecationReason": null,
2893
2893
  "description": null,
@@ -2963,7 +2963,7 @@
2963
2963
  "varName": "policyElementAudit"
2964
2964
  },
2965
2965
  "properties": {
2966
- "alias": "policyElementPropertiesEnumProperties: properties",
2966
+ "alias": "propertiesPolicySectionPayload: properties",
2967
2967
  "args": {},
2968
2968
  "deprecationReason": null,
2969
2969
  "description": null,
@@ -3041,7 +3041,7 @@
3041
3041
  "varName": "properties"
3042
3042
  },
3043
3043
  "section": {
3044
- "alias": "policySectionInfoSection: section",
3044
+ "alias": "sectionPolicySectionPayload: section",
3045
3045
  "args": {},
3046
3046
  "deprecationReason": null,
3047
3047
  "description": null,
@@ -3152,7 +3152,7 @@
3152
3152
  "varName": "appTenantRestrictionPolicy"
3153
3153
  },
3154
3154
  "status": {
3155
- "alias": "policyMutationStatusStatus: status",
3155
+ "alias": "statusAppTenantRestrictionPolicyMutationPayload: status",
3156
3156
  "args": {},
3157
3157
  "deprecationReason": null,
3158
3158
  "description": null,