catocli 3.0.14__py3-none-any.whl → 3.0.22__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 (192) hide show
  1. catocli/Utils/clidriver.py +16 -8
  2. catocli/Utils/formatter_account_metrics.py +544 -0
  3. catocli/Utils/formatter_app_stats.py +184 -0
  4. catocli/Utils/formatter_app_stats_timeseries.py +377 -0
  5. catocli/Utils/formatter_events_timeseries.py +459 -0
  6. catocli/Utils/formatter_socket_port_metrics.py +189 -0
  7. catocli/Utils/formatter_socket_port_metrics_timeseries.py +339 -0
  8. catocli/Utils/formatter_utils.py +251 -0
  9. catocli/Utils/help_formatter.py +1 -1
  10. catocli/__init__.py +1 -1
  11. catocli/clisettings.json +37 -5
  12. catocli/parsers/custom/query_eventsFeed/README.md +94 -0
  13. catocli/parsers/custom/scim/README.md +346 -0
  14. catocli/parsers/custom/scim/scim_client.py +132 -26
  15. catocli/parsers/custom/scim/scim_commands.py +14 -56
  16. catocli/parsers/customParserApiClient.py +213 -65
  17. catocli/parsers/mutation_policy/__init__.py +405 -405
  18. catocli/parsers/mutation_site/__init__.py +15 -15
  19. catocli/parsers/mutation_sites/__init__.py +15 -15
  20. catocli/parsers/query_accountMetrics/README.md +99 -9
  21. catocli/parsers/query_accountMetrics/__init__.py +6 -0
  22. catocli/parsers/query_appStats/README.md +11 -11
  23. catocli/parsers/query_appStats/__init__.py +4 -2
  24. catocli/parsers/query_appStatsTimeSeries/README.md +10 -10
  25. catocli/parsers/query_appStatsTimeSeries/__init__.py +4 -2
  26. catocli/parsers/query_auditFeed/README.md +9 -9
  27. catocli/parsers/query_events/README.md +9 -9
  28. catocli/parsers/query_eventsTimeSeries/README.md +289 -9
  29. catocli/parsers/query_eventsTimeSeries/__init__.py +6 -0
  30. catocli/parsers/query_policy/__init__.py +42 -42
  31. catocli/parsers/query_socketPortMetrics/README.md +53 -9
  32. catocli/parsers/query_socketPortMetrics/__init__.py +6 -0
  33. catocli/parsers/query_socketPortMetricsTimeSeries/README.md +92 -9
  34. catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py +4 -2
  35. {catocli-3.0.14.dist-info → catocli-3.0.22.dist-info}/METADATA +1 -1
  36. {catocli-3.0.14.dist-info → catocli-3.0.22.dist-info}/RECORD +187 -183
  37. {catocli-3.0.14.dist-info → catocli-3.0.22.dist-info}/top_level.txt +0 -1
  38. models/mutation.policy.antiMalwareFileHash.addRule.json +20 -0
  39. models/mutation.policy.antiMalwareFileHash.addSection.json +103 -0
  40. models/mutation.policy.antiMalwareFileHash.createPolicyRevision.json +123 -0
  41. models/mutation.policy.antiMalwareFileHash.discardPolicyRevision.json +123 -0
  42. models/mutation.policy.antiMalwareFileHash.moveRule.json +20 -0
  43. models/mutation.policy.antiMalwareFileHash.moveSection.json +103 -0
  44. models/mutation.policy.antiMalwareFileHash.publishPolicyRevision.json +123 -0
  45. models/mutation.policy.antiMalwareFileHash.removeRule.json +20 -0
  46. models/mutation.policy.antiMalwareFileHash.removeSection.json +103 -0
  47. models/mutation.policy.antiMalwareFileHash.updatePolicy.json +123 -0
  48. models/mutation.policy.antiMalwareFileHash.updateRule.json +20 -0
  49. models/mutation.policy.antiMalwareFileHash.updateSection.json +103 -0
  50. models/mutation.policy.appTenantRestriction.addRule.json +20 -0
  51. models/mutation.policy.appTenantRestriction.addSection.json +103 -0
  52. models/mutation.policy.appTenantRestriction.createPolicyRevision.json +123 -0
  53. models/mutation.policy.appTenantRestriction.discardPolicyRevision.json +123 -0
  54. models/mutation.policy.appTenantRestriction.moveRule.json +20 -0
  55. models/mutation.policy.appTenantRestriction.moveSection.json +103 -0
  56. models/mutation.policy.appTenantRestriction.publishPolicyRevision.json +123 -0
  57. models/mutation.policy.appTenantRestriction.removeRule.json +20 -0
  58. models/mutation.policy.appTenantRestriction.removeSection.json +103 -0
  59. models/mutation.policy.appTenantRestriction.updatePolicy.json +123 -0
  60. models/mutation.policy.appTenantRestriction.updateRule.json +20 -0
  61. models/mutation.policy.appTenantRestriction.updateSection.json +103 -0
  62. models/mutation.policy.applicationControl.addRule.json +20 -0
  63. models/mutation.policy.applicationControl.addSection.json +103 -0
  64. models/mutation.policy.applicationControl.createPolicyRevision.json +123 -0
  65. models/mutation.policy.applicationControl.discardPolicyRevision.json +123 -0
  66. models/mutation.policy.applicationControl.moveRule.json +20 -0
  67. models/mutation.policy.applicationControl.moveSection.json +103 -0
  68. models/mutation.policy.applicationControl.publishPolicyRevision.json +123 -0
  69. models/mutation.policy.applicationControl.removeRule.json +20 -0
  70. models/mutation.policy.applicationControl.removeSection.json +103 -0
  71. models/mutation.policy.applicationControl.updatePolicy.json +123 -0
  72. models/mutation.policy.applicationControl.updateRule.json +20 -0
  73. models/mutation.policy.applicationControl.updateSection.json +103 -0
  74. models/mutation.policy.dynamicIpAllocation.addRule.json +20 -0
  75. models/mutation.policy.dynamicIpAllocation.addSection.json +103 -0
  76. models/mutation.policy.dynamicIpAllocation.createPolicyRevision.json +123 -0
  77. models/mutation.policy.dynamicIpAllocation.discardPolicyRevision.json +123 -0
  78. models/mutation.policy.dynamicIpAllocation.moveRule.json +20 -0
  79. models/mutation.policy.dynamicIpAllocation.moveSection.json +103 -0
  80. models/mutation.policy.dynamicIpAllocation.publishPolicyRevision.json +123 -0
  81. models/mutation.policy.dynamicIpAllocation.removeRule.json +20 -0
  82. models/mutation.policy.dynamicIpAllocation.removeSection.json +103 -0
  83. models/mutation.policy.dynamicIpAllocation.updatePolicy.json +123 -0
  84. models/mutation.policy.dynamicIpAllocation.updateRule.json +20 -0
  85. models/mutation.policy.dynamicIpAllocation.updateSection.json +103 -0
  86. models/mutation.policy.internetFirewall.addRule.json +20 -0
  87. models/mutation.policy.internetFirewall.addSection.json +103 -0
  88. models/mutation.policy.internetFirewall.createPolicyRevision.json +123 -0
  89. models/mutation.policy.internetFirewall.discardPolicyRevision.json +123 -0
  90. models/mutation.policy.internetFirewall.moveRule.json +20 -0
  91. models/mutation.policy.internetFirewall.moveSection.json +103 -0
  92. models/mutation.policy.internetFirewall.publishPolicyRevision.json +123 -0
  93. models/mutation.policy.internetFirewall.removeRule.json +20 -0
  94. models/mutation.policy.internetFirewall.removeSection.json +103 -0
  95. models/mutation.policy.internetFirewall.updatePolicy.json +123 -0
  96. models/mutation.policy.internetFirewall.updateRule.json +20 -0
  97. models/mutation.policy.internetFirewall.updateSection.json +103 -0
  98. models/mutation.policy.remotePortFwd.addRule.json +20 -0
  99. models/mutation.policy.remotePortFwd.addSection.json +103 -0
  100. models/mutation.policy.remotePortFwd.createPolicyRevision.json +123 -0
  101. models/mutation.policy.remotePortFwd.discardPolicyRevision.json +123 -0
  102. models/mutation.policy.remotePortFwd.moveRule.json +20 -0
  103. models/mutation.policy.remotePortFwd.moveSection.json +103 -0
  104. models/mutation.policy.remotePortFwd.publishPolicyRevision.json +123 -0
  105. models/mutation.policy.remotePortFwd.removeRule.json +20 -0
  106. models/mutation.policy.remotePortFwd.removeSection.json +103 -0
  107. models/mutation.policy.remotePortFwd.updatePolicy.json +123 -0
  108. models/mutation.policy.remotePortFwd.updateRule.json +20 -0
  109. models/mutation.policy.remotePortFwd.updateSection.json +103 -0
  110. models/mutation.policy.socketLan.addRule.json +40 -0
  111. models/mutation.policy.socketLan.addSection.json +103 -0
  112. models/mutation.policy.socketLan.createPolicyRevision.json +143 -0
  113. models/mutation.policy.socketLan.discardPolicyRevision.json +143 -0
  114. models/mutation.policy.socketLan.moveRule.json +40 -0
  115. models/mutation.policy.socketLan.moveSection.json +103 -0
  116. models/mutation.policy.socketLan.publishPolicyRevision.json +143 -0
  117. models/mutation.policy.socketLan.removeRule.json +40 -0
  118. models/mutation.policy.socketLan.removeSection.json +103 -0
  119. models/mutation.policy.socketLan.updatePolicy.json +143 -0
  120. models/mutation.policy.socketLan.updateRule.json +40 -0
  121. models/mutation.policy.socketLan.updateSection.json +103 -0
  122. models/mutation.policy.terminalServer.addRule.json +20 -0
  123. models/mutation.policy.terminalServer.addSection.json +103 -0
  124. models/mutation.policy.terminalServer.createPolicyRevision.json +123 -0
  125. models/mutation.policy.terminalServer.discardPolicyRevision.json +123 -0
  126. models/mutation.policy.terminalServer.moveRule.json +20 -0
  127. models/mutation.policy.terminalServer.moveSection.json +103 -0
  128. models/mutation.policy.terminalServer.publishPolicyRevision.json +123 -0
  129. models/mutation.policy.terminalServer.removeRule.json +20 -0
  130. models/mutation.policy.terminalServer.removeSection.json +103 -0
  131. models/mutation.policy.terminalServer.updatePolicy.json +123 -0
  132. models/mutation.policy.terminalServer.updateRule.json +20 -0
  133. models/mutation.policy.terminalServer.updateSection.json +103 -0
  134. models/mutation.policy.tlsInspect.addRule.json +20 -0
  135. models/mutation.policy.tlsInspect.addSection.json +103 -0
  136. models/mutation.policy.tlsInspect.createPolicyRevision.json +123 -0
  137. models/mutation.policy.tlsInspect.discardPolicyRevision.json +123 -0
  138. models/mutation.policy.tlsInspect.moveRule.json +20 -0
  139. models/mutation.policy.tlsInspect.moveSection.json +103 -0
  140. models/mutation.policy.tlsInspect.publishPolicyRevision.json +123 -0
  141. models/mutation.policy.tlsInspect.removeRule.json +20 -0
  142. models/mutation.policy.tlsInspect.removeSection.json +103 -0
  143. models/mutation.policy.tlsInspect.updatePolicy.json +123 -0
  144. models/mutation.policy.tlsInspect.updateRule.json +20 -0
  145. models/mutation.policy.tlsInspect.updateSection.json +103 -0
  146. models/mutation.policy.wanFirewall.addRule.json +20 -0
  147. models/mutation.policy.wanFirewall.addSection.json +103 -0
  148. models/mutation.policy.wanFirewall.createPolicyRevision.json +123 -0
  149. models/mutation.policy.wanFirewall.discardPolicyRevision.json +123 -0
  150. models/mutation.policy.wanFirewall.moveRule.json +20 -0
  151. models/mutation.policy.wanFirewall.moveSection.json +103 -0
  152. models/mutation.policy.wanFirewall.publishPolicyRevision.json +123 -0
  153. models/mutation.policy.wanFirewall.removeRule.json +20 -0
  154. models/mutation.policy.wanFirewall.removeSection.json +103 -0
  155. models/mutation.policy.wanFirewall.updatePolicy.json +123 -0
  156. models/mutation.policy.wanFirewall.updateRule.json +20 -0
  157. models/mutation.policy.wanFirewall.updateSection.json +103 -0
  158. models/mutation.policy.wanNetwork.addRule.json +20 -0
  159. models/mutation.policy.wanNetwork.addSection.json +103 -0
  160. models/mutation.policy.wanNetwork.createPolicyRevision.json +123 -0
  161. models/mutation.policy.wanNetwork.discardPolicyRevision.json +123 -0
  162. models/mutation.policy.wanNetwork.moveRule.json +20 -0
  163. models/mutation.policy.wanNetwork.moveSection.json +103 -0
  164. models/mutation.policy.wanNetwork.publishPolicyRevision.json +123 -0
  165. models/mutation.policy.wanNetwork.removeRule.json +20 -0
  166. models/mutation.policy.wanNetwork.removeSection.json +103 -0
  167. models/mutation.policy.wanNetwork.updatePolicy.json +123 -0
  168. models/mutation.policy.wanNetwork.updateRule.json +20 -0
  169. models/mutation.policy.wanNetwork.updateSection.json +103 -0
  170. models/mutation.xdr.analystFeedback.json +822 -87
  171. models/query.policy.antiMalwareFileHash.policy.json +123 -0
  172. models/query.policy.appTenantRestriction.policy.json +123 -0
  173. models/query.policy.applicationControl.policy.json +123 -0
  174. models/query.policy.dynamicIpAllocation.policy.json +123 -0
  175. models/query.policy.internetFirewall.policy.json +123 -0
  176. models/query.policy.remotePortFwd.policy.json +123 -0
  177. models/query.policy.socketLan.policy.json +143 -0
  178. models/query.policy.terminalServer.policy.json +123 -0
  179. models/query.policy.tlsInspect.policy.json +123 -0
  180. models/query.policy.wanFirewall.policy.json +123 -0
  181. models/query.policy.wanNetwork.policy.json +123 -0
  182. models/query.xdr.stories.json +822 -87
  183. models/query.xdr.story.json +822 -87
  184. schema/catolib.py +34 -17
  185. catocli/Utils/csv_formatter.py +0 -663
  186. scripts/catolib.py +0 -62
  187. scripts/export_if_rules_to_json.py +0 -188
  188. scripts/export_wf_rules_to_json.py +0 -111
  189. scripts/import_wf_rules_to_tfstate.py +0 -331
  190. {catocli-3.0.14.dist-info → catocli-3.0.22.dist-info}/WHEEL +0 -0
  191. {catocli-3.0.14.dist-info → catocli-3.0.22.dist-info}/entry_points.txt +0 -0
  192. {catocli-3.0.14.dist-info → catocli-3.0.22.dist-info}/licenses/LICENSE +0 -0
@@ -13564,6 +13564,26 @@
13564
13564
  "non_null": false
13565
13565
  },
13566
13566
  "varName": "name"
13567
+ },
13568
+ "subPolicyId": {
13569
+ "args": {},
13570
+ "deprecationReason": null,
13571
+ "description": null,
13572
+ "id_str": "applicationControl___createPolicyRevision___policy___rules___rule___section___subPolicyId",
13573
+ "isDeprecated": false,
13574
+ "name": "subPolicyId",
13575
+ "path": "applicationControl.createPolicyRevision.policy.rules.rule.section.subPolicyId",
13576
+ "requestStr": "$subPolicyId:ID ",
13577
+ "required": false,
13578
+ "responseStr": "subPolicyId:$subPolicyId ",
13579
+ "type": {
13580
+ "kind": [
13581
+ "SCALAR"
13582
+ ],
13583
+ "name": "ID",
13584
+ "non_null": false
13585
+ },
13586
+ "varName": "subPolicyId"
13567
13587
  }
13568
13588
  },
13569
13589
  "inputFields": null,
@@ -13646,6 +13666,89 @@
13646
13666
  "description": null,
13647
13667
  "enumValues": null,
13648
13668
  "fields": {
13669
+ "access": {
13670
+ "args": {},
13671
+ "deprecationReason": null,
13672
+ "description": null,
13673
+ "id_str": "applicationControl___createPolicyRevision___policy___sections___access",
13674
+ "isDeprecated": false,
13675
+ "name": "access",
13676
+ "path": "applicationControl.createPolicyRevision.policy.sections.access",
13677
+ "requestStr": "$entityAccess:EntityAccess ",
13678
+ "required": false,
13679
+ "responseStr": "access:$entityAccess ",
13680
+ "type": {
13681
+ "definition": {
13682
+ "description": null,
13683
+ "enumValues": null,
13684
+ "fields": {
13685
+ "action": {
13686
+ "args": {},
13687
+ "deprecationReason": null,
13688
+ "description": null,
13689
+ "id_str": "applicationControl___createPolicyRevision___policy___sections___access___action",
13690
+ "isDeprecated": false,
13691
+ "name": "action",
13692
+ "path": "applicationControl.createPolicyRevision.policy.sections.access.action",
13693
+ "requestStr": "$action:RBACAction! ",
13694
+ "required": true,
13695
+ "responseStr": "action:$action ",
13696
+ "type": {
13697
+ "definition": {
13698
+ "description": null,
13699
+ "enumValues": [
13700
+ {
13701
+ "deprecationReason": null,
13702
+ "description": null,
13703
+ "isDeprecated": false,
13704
+ "name": "NONE"
13705
+ },
13706
+ {
13707
+ "deprecationReason": null,
13708
+ "description": null,
13709
+ "isDeprecated": false,
13710
+ "name": "VIEW"
13711
+ },
13712
+ {
13713
+ "deprecationReason": null,
13714
+ "description": null,
13715
+ "isDeprecated": false,
13716
+ "name": "EDIT"
13717
+ }
13718
+ ],
13719
+ "fields": null,
13720
+ "inputFields": null,
13721
+ "interfaces": null,
13722
+ "kind": "ENUM",
13723
+ "name": "RBACAction",
13724
+ "possibleTypes": null
13725
+ },
13726
+ "indexType": "enum",
13727
+ "kind": [
13728
+ "NON_NULL",
13729
+ "ENUM"
13730
+ ],
13731
+ "name": "RBACAction",
13732
+ "non_null": false
13733
+ },
13734
+ "varName": "action"
13735
+ }
13736
+ },
13737
+ "inputFields": null,
13738
+ "interfaces": [],
13739
+ "kind": "OBJECT",
13740
+ "name": "EntityAccess",
13741
+ "possibleTypes": null
13742
+ },
13743
+ "indexType": "object",
13744
+ "kind": [
13745
+ "OBJECT"
13746
+ ],
13747
+ "name": "EntityAccess",
13748
+ "non_null": false
13749
+ },
13750
+ "varName": "entityAccess"
13751
+ },
13649
13752
  "audit": {
13650
13753
  "args": {},
13651
13754
  "deprecationReason": null,
@@ -13855,6 +13958,26 @@
13855
13958
  "non_null": false
13856
13959
  },
13857
13960
  "varName": "name"
13961
+ },
13962
+ "subPolicyId": {
13963
+ "args": {},
13964
+ "deprecationReason": null,
13965
+ "description": null,
13966
+ "id_str": "applicationControl___createPolicyRevision___policy___sections___section___subPolicyId",
13967
+ "isDeprecated": false,
13968
+ "name": "subPolicyId",
13969
+ "path": "applicationControl.createPolicyRevision.policy.sections.section.subPolicyId",
13970
+ "requestStr": "$subPolicyId:ID ",
13971
+ "required": false,
13972
+ "responseStr": "subPolicyId:$subPolicyId ",
13973
+ "type": {
13974
+ "kind": [
13975
+ "SCALAR"
13976
+ ],
13977
+ "name": "ID",
13978
+ "non_null": false
13979
+ },
13980
+ "varName": "subPolicyId"
13858
13981
  }
13859
13982
  },
13860
13983
  "inputFields": null,
@@ -13501,6 +13501,26 @@
13501
13501
  "non_null": false
13502
13502
  },
13503
13503
  "varName": "name"
13504
+ },
13505
+ "subPolicyId": {
13506
+ "args": {},
13507
+ "deprecationReason": null,
13508
+ "description": null,
13509
+ "id_str": "applicationControl___discardPolicyRevision___policy___rules___rule___section___subPolicyId",
13510
+ "isDeprecated": false,
13511
+ "name": "subPolicyId",
13512
+ "path": "applicationControl.discardPolicyRevision.policy.rules.rule.section.subPolicyId",
13513
+ "requestStr": "$subPolicyId:ID ",
13514
+ "required": false,
13515
+ "responseStr": "subPolicyId:$subPolicyId ",
13516
+ "type": {
13517
+ "kind": [
13518
+ "SCALAR"
13519
+ ],
13520
+ "name": "ID",
13521
+ "non_null": false
13522
+ },
13523
+ "varName": "subPolicyId"
13504
13524
  }
13505
13525
  },
13506
13526
  "inputFields": null,
@@ -13583,6 +13603,89 @@
13583
13603
  "description": null,
13584
13604
  "enumValues": null,
13585
13605
  "fields": {
13606
+ "access": {
13607
+ "args": {},
13608
+ "deprecationReason": null,
13609
+ "description": null,
13610
+ "id_str": "applicationControl___discardPolicyRevision___policy___sections___access",
13611
+ "isDeprecated": false,
13612
+ "name": "access",
13613
+ "path": "applicationControl.discardPolicyRevision.policy.sections.access",
13614
+ "requestStr": "$entityAccess:EntityAccess ",
13615
+ "required": false,
13616
+ "responseStr": "access:$entityAccess ",
13617
+ "type": {
13618
+ "definition": {
13619
+ "description": null,
13620
+ "enumValues": null,
13621
+ "fields": {
13622
+ "action": {
13623
+ "args": {},
13624
+ "deprecationReason": null,
13625
+ "description": null,
13626
+ "id_str": "applicationControl___discardPolicyRevision___policy___sections___access___action",
13627
+ "isDeprecated": false,
13628
+ "name": "action",
13629
+ "path": "applicationControl.discardPolicyRevision.policy.sections.access.action",
13630
+ "requestStr": "$action:RBACAction! ",
13631
+ "required": true,
13632
+ "responseStr": "action:$action ",
13633
+ "type": {
13634
+ "definition": {
13635
+ "description": null,
13636
+ "enumValues": [
13637
+ {
13638
+ "deprecationReason": null,
13639
+ "description": null,
13640
+ "isDeprecated": false,
13641
+ "name": "NONE"
13642
+ },
13643
+ {
13644
+ "deprecationReason": null,
13645
+ "description": null,
13646
+ "isDeprecated": false,
13647
+ "name": "VIEW"
13648
+ },
13649
+ {
13650
+ "deprecationReason": null,
13651
+ "description": null,
13652
+ "isDeprecated": false,
13653
+ "name": "EDIT"
13654
+ }
13655
+ ],
13656
+ "fields": null,
13657
+ "inputFields": null,
13658
+ "interfaces": null,
13659
+ "kind": "ENUM",
13660
+ "name": "RBACAction",
13661
+ "possibleTypes": null
13662
+ },
13663
+ "indexType": "enum",
13664
+ "kind": [
13665
+ "NON_NULL",
13666
+ "ENUM"
13667
+ ],
13668
+ "name": "RBACAction",
13669
+ "non_null": false
13670
+ },
13671
+ "varName": "action"
13672
+ }
13673
+ },
13674
+ "inputFields": null,
13675
+ "interfaces": [],
13676
+ "kind": "OBJECT",
13677
+ "name": "EntityAccess",
13678
+ "possibleTypes": null
13679
+ },
13680
+ "indexType": "object",
13681
+ "kind": [
13682
+ "OBJECT"
13683
+ ],
13684
+ "name": "EntityAccess",
13685
+ "non_null": false
13686
+ },
13687
+ "varName": "entityAccess"
13688
+ },
13586
13689
  "audit": {
13587
13690
  "args": {},
13588
13691
  "deprecationReason": null,
@@ -13792,6 +13895,26 @@
13792
13895
  "non_null": false
13793
13896
  },
13794
13897
  "varName": "name"
13898
+ },
13899
+ "subPolicyId": {
13900
+ "args": {},
13901
+ "deprecationReason": null,
13902
+ "description": null,
13903
+ "id_str": "applicationControl___discardPolicyRevision___policy___sections___section___subPolicyId",
13904
+ "isDeprecated": false,
13905
+ "name": "subPolicyId",
13906
+ "path": "applicationControl.discardPolicyRevision.policy.sections.section.subPolicyId",
13907
+ "requestStr": "$subPolicyId:ID ",
13908
+ "required": false,
13909
+ "responseStr": "subPolicyId:$subPolicyId ",
13910
+ "type": {
13911
+ "kind": [
13912
+ "SCALAR"
13913
+ ],
13914
+ "name": "ID",
13915
+ "non_null": false
13916
+ },
13917
+ "varName": "subPolicyId"
13795
13918
  }
13796
13919
  },
13797
13920
  "inputFields": null,
@@ -13503,6 +13503,26 @@
13503
13503
  "non_null": false
13504
13504
  },
13505
13505
  "varName": "name"
13506
+ },
13507
+ "subPolicyId": {
13508
+ "args": {},
13509
+ "deprecationReason": null,
13510
+ "description": null,
13511
+ "id_str": "applicationControl___moveRule___rule___rule___section___subPolicyId",
13512
+ "isDeprecated": false,
13513
+ "name": "subPolicyId",
13514
+ "path": "applicationControl.moveRule.rule.rule.section.subPolicyId",
13515
+ "requestStr": "$subPolicyId:ID ",
13516
+ "required": false,
13517
+ "responseStr": "subPolicyId:$subPolicyId ",
13518
+ "type": {
13519
+ "kind": [
13520
+ "SCALAR"
13521
+ ],
13522
+ "name": "ID",
13523
+ "non_null": false
13524
+ },
13525
+ "varName": "subPolicyId"
13506
13526
  }
13507
13527
  },
13508
13528
  "inputFields": null,
@@ -884,6 +884,89 @@
884
884
  "description": null,
885
885
  "enumValues": null,
886
886
  "fields": {
887
+ "access": {
888
+ "args": {},
889
+ "deprecationReason": null,
890
+ "description": null,
891
+ "id_str": "applicationControl___moveSection___section___access",
892
+ "isDeprecated": false,
893
+ "name": "access",
894
+ "path": "applicationControl.moveSection.section.access",
895
+ "requestStr": "$entityAccess:EntityAccess ",
896
+ "required": false,
897
+ "responseStr": "access:$entityAccess ",
898
+ "type": {
899
+ "definition": {
900
+ "description": null,
901
+ "enumValues": null,
902
+ "fields": {
903
+ "action": {
904
+ "args": {},
905
+ "deprecationReason": null,
906
+ "description": null,
907
+ "id_str": "applicationControl___moveSection___section___access___action",
908
+ "isDeprecated": false,
909
+ "name": "action",
910
+ "path": "applicationControl.moveSection.section.access.action",
911
+ "requestStr": "$action:RBACAction! ",
912
+ "required": true,
913
+ "responseStr": "action:$action ",
914
+ "type": {
915
+ "definition": {
916
+ "description": null,
917
+ "enumValues": [
918
+ {
919
+ "deprecationReason": null,
920
+ "description": null,
921
+ "isDeprecated": false,
922
+ "name": "NONE"
923
+ },
924
+ {
925
+ "deprecationReason": null,
926
+ "description": null,
927
+ "isDeprecated": false,
928
+ "name": "VIEW"
929
+ },
930
+ {
931
+ "deprecationReason": null,
932
+ "description": null,
933
+ "isDeprecated": false,
934
+ "name": "EDIT"
935
+ }
936
+ ],
937
+ "fields": null,
938
+ "inputFields": null,
939
+ "interfaces": null,
940
+ "kind": "ENUM",
941
+ "name": "RBACAction",
942
+ "possibleTypes": null
943
+ },
944
+ "indexType": "enum",
945
+ "kind": [
946
+ "NON_NULL",
947
+ "ENUM"
948
+ ],
949
+ "name": "RBACAction",
950
+ "non_null": false
951
+ },
952
+ "varName": "action"
953
+ }
954
+ },
955
+ "inputFields": null,
956
+ "interfaces": [],
957
+ "kind": "OBJECT",
958
+ "name": "EntityAccess",
959
+ "possibleTypes": null
960
+ },
961
+ "indexType": "object",
962
+ "kind": [
963
+ "OBJECT"
964
+ ],
965
+ "name": "EntityAccess",
966
+ "non_null": false
967
+ },
968
+ "varName": "entityAccess"
969
+ },
887
970
  "audit": {
888
971
  "args": {},
889
972
  "deprecationReason": null,
@@ -1093,6 +1176,26 @@
1093
1176
  "non_null": false
1094
1177
  },
1095
1178
  "varName": "name"
1179
+ },
1180
+ "subPolicyId": {
1181
+ "args": {},
1182
+ "deprecationReason": null,
1183
+ "description": null,
1184
+ "id_str": "applicationControl___moveSection___section___section___subPolicyId",
1185
+ "isDeprecated": false,
1186
+ "name": "subPolicyId",
1187
+ "path": "applicationControl.moveSection.section.section.subPolicyId",
1188
+ "requestStr": "$subPolicyId:ID ",
1189
+ "required": false,
1190
+ "responseStr": "subPolicyId:$subPolicyId ",
1191
+ "type": {
1192
+ "kind": [
1193
+ "SCALAR"
1194
+ ],
1195
+ "name": "ID",
1196
+ "non_null": false
1197
+ },
1198
+ "varName": "subPolicyId"
1096
1199
  }
1097
1200
  },
1098
1201
  "inputFields": null,