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
@@ -1239,6 +1239,26 @@
1239
1239
  "non_null": false
1240
1240
  },
1241
1241
  "varName": "name"
1242
+ },
1243
+ "subPolicyId": {
1244
+ "args": {},
1245
+ "deprecationReason": null,
1246
+ "description": null,
1247
+ "id_str": "terminalServer___policy___rules___rule___section___subPolicyId",
1248
+ "isDeprecated": false,
1249
+ "name": "subPolicyId",
1250
+ "path": "terminalServer.policy.rules.rule.section.subPolicyId",
1251
+ "requestStr": "$subPolicyId:ID ",
1252
+ "required": false,
1253
+ "responseStr": "subPolicyId:$subPolicyId ",
1254
+ "type": {
1255
+ "kind": [
1256
+ "SCALAR"
1257
+ ],
1258
+ "name": "ID",
1259
+ "non_null": false
1260
+ },
1261
+ "varName": "subPolicyId"
1242
1262
  }
1243
1263
  },
1244
1264
  "inputFields": null,
@@ -1321,6 +1341,89 @@
1321
1341
  "description": null,
1322
1342
  "enumValues": null,
1323
1343
  "fields": {
1344
+ "access": {
1345
+ "args": {},
1346
+ "deprecationReason": null,
1347
+ "description": null,
1348
+ "id_str": "terminalServer___policy___sections___access",
1349
+ "isDeprecated": false,
1350
+ "name": "access",
1351
+ "path": "terminalServer.policy.sections.access",
1352
+ "requestStr": "$entityAccess:EntityAccess ",
1353
+ "required": false,
1354
+ "responseStr": "access:$entityAccess ",
1355
+ "type": {
1356
+ "definition": {
1357
+ "description": null,
1358
+ "enumValues": null,
1359
+ "fields": {
1360
+ "action": {
1361
+ "args": {},
1362
+ "deprecationReason": null,
1363
+ "description": null,
1364
+ "id_str": "terminalServer___policy___sections___access___action",
1365
+ "isDeprecated": false,
1366
+ "name": "action",
1367
+ "path": "terminalServer.policy.sections.access.action",
1368
+ "requestStr": "$action:RBACAction! ",
1369
+ "required": true,
1370
+ "responseStr": "action:$action ",
1371
+ "type": {
1372
+ "definition": {
1373
+ "description": null,
1374
+ "enumValues": [
1375
+ {
1376
+ "deprecationReason": null,
1377
+ "description": null,
1378
+ "isDeprecated": false,
1379
+ "name": "NONE"
1380
+ },
1381
+ {
1382
+ "deprecationReason": null,
1383
+ "description": null,
1384
+ "isDeprecated": false,
1385
+ "name": "VIEW"
1386
+ },
1387
+ {
1388
+ "deprecationReason": null,
1389
+ "description": null,
1390
+ "isDeprecated": false,
1391
+ "name": "EDIT"
1392
+ }
1393
+ ],
1394
+ "fields": null,
1395
+ "inputFields": null,
1396
+ "interfaces": null,
1397
+ "kind": "ENUM",
1398
+ "name": "RBACAction",
1399
+ "possibleTypes": null
1400
+ },
1401
+ "indexType": "enum",
1402
+ "kind": [
1403
+ "NON_NULL",
1404
+ "ENUM"
1405
+ ],
1406
+ "name": "RBACAction",
1407
+ "non_null": false
1408
+ },
1409
+ "varName": "action"
1410
+ }
1411
+ },
1412
+ "inputFields": null,
1413
+ "interfaces": [],
1414
+ "kind": "OBJECT",
1415
+ "name": "EntityAccess",
1416
+ "possibleTypes": null
1417
+ },
1418
+ "indexType": "object",
1419
+ "kind": [
1420
+ "OBJECT"
1421
+ ],
1422
+ "name": "EntityAccess",
1423
+ "non_null": false
1424
+ },
1425
+ "varName": "entityAccess"
1426
+ },
1324
1427
  "audit": {
1325
1428
  "args": {},
1326
1429
  "deprecationReason": null,
@@ -1530,6 +1633,26 @@
1530
1633
  "non_null": false
1531
1634
  },
1532
1635
  "varName": "name"
1636
+ },
1637
+ "subPolicyId": {
1638
+ "args": {},
1639
+ "deprecationReason": null,
1640
+ "description": null,
1641
+ "id_str": "terminalServer___policy___sections___section___subPolicyId",
1642
+ "isDeprecated": false,
1643
+ "name": "subPolicyId",
1644
+ "path": "terminalServer.policy.sections.section.subPolicyId",
1645
+ "requestStr": "$subPolicyId:ID ",
1646
+ "required": false,
1647
+ "responseStr": "subPolicyId:$subPolicyId ",
1648
+ "type": {
1649
+ "kind": [
1650
+ "SCALAR"
1651
+ ],
1652
+ "name": "ID",
1653
+ "non_null": false
1654
+ },
1655
+ "varName": "subPolicyId"
1533
1656
  }
1534
1657
  },
1535
1658
  "inputFields": null,
@@ -2733,6 +2733,26 @@
2733
2733
  "non_null": false
2734
2734
  },
2735
2735
  "varName": "name"
2736
+ },
2737
+ "subPolicyId": {
2738
+ "args": {},
2739
+ "deprecationReason": null,
2740
+ "description": null,
2741
+ "id_str": "tlsInspect___policy___rules___rule___section___subPolicyId",
2742
+ "isDeprecated": false,
2743
+ "name": "subPolicyId",
2744
+ "path": "tlsInspect.policy.rules.rule.section.subPolicyId",
2745
+ "requestStr": "$subPolicyId:ID ",
2746
+ "required": false,
2747
+ "responseStr": "subPolicyId:$subPolicyId ",
2748
+ "type": {
2749
+ "kind": [
2750
+ "SCALAR"
2751
+ ],
2752
+ "name": "ID",
2753
+ "non_null": false
2754
+ },
2755
+ "varName": "subPolicyId"
2736
2756
  }
2737
2757
  },
2738
2758
  "inputFields": null,
@@ -3852,6 +3872,89 @@
3852
3872
  "description": null,
3853
3873
  "enumValues": null,
3854
3874
  "fields": {
3875
+ "access": {
3876
+ "args": {},
3877
+ "deprecationReason": null,
3878
+ "description": null,
3879
+ "id_str": "tlsInspect___policy___sections___access",
3880
+ "isDeprecated": false,
3881
+ "name": "access",
3882
+ "path": "tlsInspect.policy.sections.access",
3883
+ "requestStr": "$entityAccess:EntityAccess ",
3884
+ "required": false,
3885
+ "responseStr": "access:$entityAccess ",
3886
+ "type": {
3887
+ "definition": {
3888
+ "description": null,
3889
+ "enumValues": null,
3890
+ "fields": {
3891
+ "action": {
3892
+ "args": {},
3893
+ "deprecationReason": null,
3894
+ "description": null,
3895
+ "id_str": "tlsInspect___policy___sections___access___action",
3896
+ "isDeprecated": false,
3897
+ "name": "action",
3898
+ "path": "tlsInspect.policy.sections.access.action",
3899
+ "requestStr": "$action:RBACAction! ",
3900
+ "required": true,
3901
+ "responseStr": "action:$action ",
3902
+ "type": {
3903
+ "definition": {
3904
+ "description": null,
3905
+ "enumValues": [
3906
+ {
3907
+ "deprecationReason": null,
3908
+ "description": null,
3909
+ "isDeprecated": false,
3910
+ "name": "NONE"
3911
+ },
3912
+ {
3913
+ "deprecationReason": null,
3914
+ "description": null,
3915
+ "isDeprecated": false,
3916
+ "name": "VIEW"
3917
+ },
3918
+ {
3919
+ "deprecationReason": null,
3920
+ "description": null,
3921
+ "isDeprecated": false,
3922
+ "name": "EDIT"
3923
+ }
3924
+ ],
3925
+ "fields": null,
3926
+ "inputFields": null,
3927
+ "interfaces": null,
3928
+ "kind": "ENUM",
3929
+ "name": "RBACAction",
3930
+ "possibleTypes": null
3931
+ },
3932
+ "indexType": "enum",
3933
+ "kind": [
3934
+ "NON_NULL",
3935
+ "ENUM"
3936
+ ],
3937
+ "name": "RBACAction",
3938
+ "non_null": false
3939
+ },
3940
+ "varName": "action"
3941
+ }
3942
+ },
3943
+ "inputFields": null,
3944
+ "interfaces": [],
3945
+ "kind": "OBJECT",
3946
+ "name": "EntityAccess",
3947
+ "possibleTypes": null
3948
+ },
3949
+ "indexType": "object",
3950
+ "kind": [
3951
+ "OBJECT"
3952
+ ],
3953
+ "name": "EntityAccess",
3954
+ "non_null": false
3955
+ },
3956
+ "varName": "entityAccess"
3957
+ },
3855
3958
  "audit": {
3856
3959
  "args": {},
3857
3960
  "deprecationReason": null,
@@ -4061,6 +4164,26 @@
4061
4164
  "non_null": false
4062
4165
  },
4063
4166
  "varName": "name"
4167
+ },
4168
+ "subPolicyId": {
4169
+ "args": {},
4170
+ "deprecationReason": null,
4171
+ "description": null,
4172
+ "id_str": "tlsInspect___policy___sections___section___subPolicyId",
4173
+ "isDeprecated": false,
4174
+ "name": "subPolicyId",
4175
+ "path": "tlsInspect.policy.sections.section.subPolicyId",
4176
+ "requestStr": "$subPolicyId:ID ",
4177
+ "required": false,
4178
+ "responseStr": "subPolicyId:$subPolicyId ",
4179
+ "type": {
4180
+ "kind": [
4181
+ "SCALAR"
4182
+ ],
4183
+ "name": "ID",
4184
+ "non_null": false
4185
+ },
4186
+ "varName": "subPolicyId"
4064
4187
  }
4065
4188
  },
4066
4189
  "inputFields": null,
@@ -7288,6 +7288,26 @@
7288
7288
  "non_null": false
7289
7289
  },
7290
7290
  "varName": "name"
7291
+ },
7292
+ "subPolicyId": {
7293
+ "args": {},
7294
+ "deprecationReason": null,
7295
+ "description": null,
7296
+ "id_str": "wanFirewall___policy___rules___rule___section___subPolicyId",
7297
+ "isDeprecated": false,
7298
+ "name": "subPolicyId",
7299
+ "path": "wanFirewall.policy.rules.rule.section.subPolicyId",
7300
+ "requestStr": "$subPolicyId:ID ",
7301
+ "required": false,
7302
+ "responseStr": "subPolicyId:$subPolicyId ",
7303
+ "type": {
7304
+ "kind": [
7305
+ "SCALAR"
7306
+ ],
7307
+ "name": "ID",
7308
+ "non_null": false
7309
+ },
7310
+ "varName": "subPolicyId"
7291
7311
  }
7292
7312
  },
7293
7313
  "inputFields": null,
@@ -9113,6 +9133,89 @@
9113
9133
  "description": null,
9114
9134
  "enumValues": null,
9115
9135
  "fields": {
9136
+ "access": {
9137
+ "args": {},
9138
+ "deprecationReason": null,
9139
+ "description": null,
9140
+ "id_str": "wanFirewall___policy___sections___access",
9141
+ "isDeprecated": false,
9142
+ "name": "access",
9143
+ "path": "wanFirewall.policy.sections.access",
9144
+ "requestStr": "$entityAccess:EntityAccess ",
9145
+ "required": false,
9146
+ "responseStr": "access:$entityAccess ",
9147
+ "type": {
9148
+ "definition": {
9149
+ "description": null,
9150
+ "enumValues": null,
9151
+ "fields": {
9152
+ "action": {
9153
+ "args": {},
9154
+ "deprecationReason": null,
9155
+ "description": null,
9156
+ "id_str": "wanFirewall___policy___sections___access___action",
9157
+ "isDeprecated": false,
9158
+ "name": "action",
9159
+ "path": "wanFirewall.policy.sections.access.action",
9160
+ "requestStr": "$action:RBACAction! ",
9161
+ "required": true,
9162
+ "responseStr": "action:$action ",
9163
+ "type": {
9164
+ "definition": {
9165
+ "description": null,
9166
+ "enumValues": [
9167
+ {
9168
+ "deprecationReason": null,
9169
+ "description": null,
9170
+ "isDeprecated": false,
9171
+ "name": "NONE"
9172
+ },
9173
+ {
9174
+ "deprecationReason": null,
9175
+ "description": null,
9176
+ "isDeprecated": false,
9177
+ "name": "VIEW"
9178
+ },
9179
+ {
9180
+ "deprecationReason": null,
9181
+ "description": null,
9182
+ "isDeprecated": false,
9183
+ "name": "EDIT"
9184
+ }
9185
+ ],
9186
+ "fields": null,
9187
+ "inputFields": null,
9188
+ "interfaces": null,
9189
+ "kind": "ENUM",
9190
+ "name": "RBACAction",
9191
+ "possibleTypes": null
9192
+ },
9193
+ "indexType": "enum",
9194
+ "kind": [
9195
+ "NON_NULL",
9196
+ "ENUM"
9197
+ ],
9198
+ "name": "RBACAction",
9199
+ "non_null": false
9200
+ },
9201
+ "varName": "action"
9202
+ }
9203
+ },
9204
+ "inputFields": null,
9205
+ "interfaces": [],
9206
+ "kind": "OBJECT",
9207
+ "name": "EntityAccess",
9208
+ "possibleTypes": null
9209
+ },
9210
+ "indexType": "object",
9211
+ "kind": [
9212
+ "OBJECT"
9213
+ ],
9214
+ "name": "EntityAccess",
9215
+ "non_null": false
9216
+ },
9217
+ "varName": "entityAccess"
9218
+ },
9116
9219
  "audit": {
9117
9220
  "args": {},
9118
9221
  "deprecationReason": null,
@@ -9322,6 +9425,26 @@
9322
9425
  "non_null": false
9323
9426
  },
9324
9427
  "varName": "name"
9428
+ },
9429
+ "subPolicyId": {
9430
+ "args": {},
9431
+ "deprecationReason": null,
9432
+ "description": null,
9433
+ "id_str": "wanFirewall___policy___sections___section___subPolicyId",
9434
+ "isDeprecated": false,
9435
+ "name": "subPolicyId",
9436
+ "path": "wanFirewall.policy.sections.section.subPolicyId",
9437
+ "requestStr": "$subPolicyId:ID ",
9438
+ "required": false,
9439
+ "responseStr": "subPolicyId:$subPolicyId ",
9440
+ "type": {
9441
+ "kind": [
9442
+ "SCALAR"
9443
+ ],
9444
+ "name": "ID",
9445
+ "non_null": false
9446
+ },
9447
+ "varName": "subPolicyId"
9325
9448
  }
9326
9449
  },
9327
9450
  "inputFields": null,
@@ -6827,6 +6827,26 @@
6827
6827
  "non_null": false
6828
6828
  },
6829
6829
  "varName": "name"
6830
+ },
6831
+ "subPolicyId": {
6832
+ "args": {},
6833
+ "deprecationReason": null,
6834
+ "description": null,
6835
+ "id_str": "wanNetwork___policy___rules___rule___section___subPolicyId",
6836
+ "isDeprecated": false,
6837
+ "name": "subPolicyId",
6838
+ "path": "wanNetwork.policy.rules.rule.section.subPolicyId",
6839
+ "requestStr": "$subPolicyId:ID ",
6840
+ "required": false,
6841
+ "responseStr": "subPolicyId:$subPolicyId ",
6842
+ "type": {
6843
+ "kind": [
6844
+ "SCALAR"
6845
+ ],
6846
+ "name": "ID",
6847
+ "non_null": false
6848
+ },
6849
+ "varName": "subPolicyId"
6830
6850
  }
6831
6851
  },
6832
6852
  "inputFields": null,
@@ -7895,6 +7915,89 @@
7895
7915
  "description": null,
7896
7916
  "enumValues": null,
7897
7917
  "fields": {
7918
+ "access": {
7919
+ "args": {},
7920
+ "deprecationReason": null,
7921
+ "description": null,
7922
+ "id_str": "wanNetwork___policy___sections___access",
7923
+ "isDeprecated": false,
7924
+ "name": "access",
7925
+ "path": "wanNetwork.policy.sections.access",
7926
+ "requestStr": "$entityAccess:EntityAccess ",
7927
+ "required": false,
7928
+ "responseStr": "access:$entityAccess ",
7929
+ "type": {
7930
+ "definition": {
7931
+ "description": null,
7932
+ "enumValues": null,
7933
+ "fields": {
7934
+ "action": {
7935
+ "args": {},
7936
+ "deprecationReason": null,
7937
+ "description": null,
7938
+ "id_str": "wanNetwork___policy___sections___access___action",
7939
+ "isDeprecated": false,
7940
+ "name": "action",
7941
+ "path": "wanNetwork.policy.sections.access.action",
7942
+ "requestStr": "$action:RBACAction! ",
7943
+ "required": true,
7944
+ "responseStr": "action:$action ",
7945
+ "type": {
7946
+ "definition": {
7947
+ "description": null,
7948
+ "enumValues": [
7949
+ {
7950
+ "deprecationReason": null,
7951
+ "description": null,
7952
+ "isDeprecated": false,
7953
+ "name": "NONE"
7954
+ },
7955
+ {
7956
+ "deprecationReason": null,
7957
+ "description": null,
7958
+ "isDeprecated": false,
7959
+ "name": "VIEW"
7960
+ },
7961
+ {
7962
+ "deprecationReason": null,
7963
+ "description": null,
7964
+ "isDeprecated": false,
7965
+ "name": "EDIT"
7966
+ }
7967
+ ],
7968
+ "fields": null,
7969
+ "inputFields": null,
7970
+ "interfaces": null,
7971
+ "kind": "ENUM",
7972
+ "name": "RBACAction",
7973
+ "possibleTypes": null
7974
+ },
7975
+ "indexType": "enum",
7976
+ "kind": [
7977
+ "NON_NULL",
7978
+ "ENUM"
7979
+ ],
7980
+ "name": "RBACAction",
7981
+ "non_null": false
7982
+ },
7983
+ "varName": "action"
7984
+ }
7985
+ },
7986
+ "inputFields": null,
7987
+ "interfaces": [],
7988
+ "kind": "OBJECT",
7989
+ "name": "EntityAccess",
7990
+ "possibleTypes": null
7991
+ },
7992
+ "indexType": "object",
7993
+ "kind": [
7994
+ "OBJECT"
7995
+ ],
7996
+ "name": "EntityAccess",
7997
+ "non_null": false
7998
+ },
7999
+ "varName": "entityAccess"
8000
+ },
7898
8001
  "audit": {
7899
8002
  "args": {},
7900
8003
  "deprecationReason": null,
@@ -8104,6 +8207,26 @@
8104
8207
  "non_null": false
8105
8208
  },
8106
8209
  "varName": "name"
8210
+ },
8211
+ "subPolicyId": {
8212
+ "args": {},
8213
+ "deprecationReason": null,
8214
+ "description": null,
8215
+ "id_str": "wanNetwork___policy___sections___section___subPolicyId",
8216
+ "isDeprecated": false,
8217
+ "name": "subPolicyId",
8218
+ "path": "wanNetwork.policy.sections.section.subPolicyId",
8219
+ "requestStr": "$subPolicyId:ID ",
8220
+ "required": false,
8221
+ "responseStr": "subPolicyId:$subPolicyId ",
8222
+ "type": {
8223
+ "kind": [
8224
+ "SCALAR"
8225
+ ],
8226
+ "name": "ID",
8227
+ "non_null": false
8228
+ },
8229
+ "varName": "subPolicyId"
8107
8230
  }
8108
8231
  },
8109
8232
  "inputFields": null,