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.
- catocli/Utils/clidriver.py +16 -8
- catocli/Utils/formatter_account_metrics.py +544 -0
- catocli/Utils/formatter_app_stats.py +184 -0
- catocli/Utils/formatter_app_stats_timeseries.py +377 -0
- catocli/Utils/formatter_events_timeseries.py +459 -0
- catocli/Utils/formatter_socket_port_metrics.py +189 -0
- catocli/Utils/formatter_socket_port_metrics_timeseries.py +339 -0
- catocli/Utils/formatter_utils.py +251 -0
- catocli/Utils/help_formatter.py +1 -1
- catocli/__init__.py +1 -1
- catocli/clisettings.json +37 -5
- catocli/parsers/custom/query_eventsFeed/README.md +94 -0
- catocli/parsers/custom/scim/README.md +346 -0
- catocli/parsers/custom/scim/scim_client.py +132 -26
- catocli/parsers/custom/scim/scim_commands.py +14 -56
- catocli/parsers/customParserApiClient.py +213 -65
- catocli/parsers/mutation_policy/__init__.py +405 -405
- catocli/parsers/mutation_site/__init__.py +15 -15
- catocli/parsers/mutation_sites/__init__.py +15 -15
- catocli/parsers/query_accountMetrics/README.md +99 -9
- catocli/parsers/query_accountMetrics/__init__.py +6 -0
- catocli/parsers/query_appStats/README.md +11 -11
- catocli/parsers/query_appStats/__init__.py +4 -2
- catocli/parsers/query_appStatsTimeSeries/README.md +10 -10
- catocli/parsers/query_appStatsTimeSeries/__init__.py +4 -2
- catocli/parsers/query_auditFeed/README.md +9 -9
- catocli/parsers/query_events/README.md +9 -9
- catocli/parsers/query_eventsTimeSeries/README.md +289 -9
- catocli/parsers/query_eventsTimeSeries/__init__.py +6 -0
- catocli/parsers/query_policy/__init__.py +42 -42
- catocli/parsers/query_socketPortMetrics/README.md +53 -9
- catocli/parsers/query_socketPortMetrics/__init__.py +6 -0
- catocli/parsers/query_socketPortMetricsTimeSeries/README.md +92 -9
- catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py +4 -2
- {catocli-3.0.14.dist-info → catocli-3.0.22.dist-info}/METADATA +1 -1
- {catocli-3.0.14.dist-info → catocli-3.0.22.dist-info}/RECORD +187 -183
- {catocli-3.0.14.dist-info → catocli-3.0.22.dist-info}/top_level.txt +0 -1
- models/mutation.policy.antiMalwareFileHash.addRule.json +20 -0
- models/mutation.policy.antiMalwareFileHash.addSection.json +103 -0
- models/mutation.policy.antiMalwareFileHash.createPolicyRevision.json +123 -0
- models/mutation.policy.antiMalwareFileHash.discardPolicyRevision.json +123 -0
- models/mutation.policy.antiMalwareFileHash.moveRule.json +20 -0
- models/mutation.policy.antiMalwareFileHash.moveSection.json +103 -0
- models/mutation.policy.antiMalwareFileHash.publishPolicyRevision.json +123 -0
- models/mutation.policy.antiMalwareFileHash.removeRule.json +20 -0
- models/mutation.policy.antiMalwareFileHash.removeSection.json +103 -0
- models/mutation.policy.antiMalwareFileHash.updatePolicy.json +123 -0
- models/mutation.policy.antiMalwareFileHash.updateRule.json +20 -0
- models/mutation.policy.antiMalwareFileHash.updateSection.json +103 -0
- models/mutation.policy.appTenantRestriction.addRule.json +20 -0
- models/mutation.policy.appTenantRestriction.addSection.json +103 -0
- models/mutation.policy.appTenantRestriction.createPolicyRevision.json +123 -0
- models/mutation.policy.appTenantRestriction.discardPolicyRevision.json +123 -0
- models/mutation.policy.appTenantRestriction.moveRule.json +20 -0
- models/mutation.policy.appTenantRestriction.moveSection.json +103 -0
- models/mutation.policy.appTenantRestriction.publishPolicyRevision.json +123 -0
- models/mutation.policy.appTenantRestriction.removeRule.json +20 -0
- models/mutation.policy.appTenantRestriction.removeSection.json +103 -0
- models/mutation.policy.appTenantRestriction.updatePolicy.json +123 -0
- models/mutation.policy.appTenantRestriction.updateRule.json +20 -0
- models/mutation.policy.appTenantRestriction.updateSection.json +103 -0
- models/mutation.policy.applicationControl.addRule.json +20 -0
- models/mutation.policy.applicationControl.addSection.json +103 -0
- models/mutation.policy.applicationControl.createPolicyRevision.json +123 -0
- models/mutation.policy.applicationControl.discardPolicyRevision.json +123 -0
- models/mutation.policy.applicationControl.moveRule.json +20 -0
- models/mutation.policy.applicationControl.moveSection.json +103 -0
- models/mutation.policy.applicationControl.publishPolicyRevision.json +123 -0
- models/mutation.policy.applicationControl.removeRule.json +20 -0
- models/mutation.policy.applicationControl.removeSection.json +103 -0
- models/mutation.policy.applicationControl.updatePolicy.json +123 -0
- models/mutation.policy.applicationControl.updateRule.json +20 -0
- models/mutation.policy.applicationControl.updateSection.json +103 -0
- models/mutation.policy.dynamicIpAllocation.addRule.json +20 -0
- models/mutation.policy.dynamicIpAllocation.addSection.json +103 -0
- models/mutation.policy.dynamicIpAllocation.createPolicyRevision.json +123 -0
- models/mutation.policy.dynamicIpAllocation.discardPolicyRevision.json +123 -0
- models/mutation.policy.dynamicIpAllocation.moveRule.json +20 -0
- models/mutation.policy.dynamicIpAllocation.moveSection.json +103 -0
- models/mutation.policy.dynamicIpAllocation.publishPolicyRevision.json +123 -0
- models/mutation.policy.dynamicIpAllocation.removeRule.json +20 -0
- models/mutation.policy.dynamicIpAllocation.removeSection.json +103 -0
- models/mutation.policy.dynamicIpAllocation.updatePolicy.json +123 -0
- models/mutation.policy.dynamicIpAllocation.updateRule.json +20 -0
- models/mutation.policy.dynamicIpAllocation.updateSection.json +103 -0
- models/mutation.policy.internetFirewall.addRule.json +20 -0
- models/mutation.policy.internetFirewall.addSection.json +103 -0
- models/mutation.policy.internetFirewall.createPolicyRevision.json +123 -0
- models/mutation.policy.internetFirewall.discardPolicyRevision.json +123 -0
- models/mutation.policy.internetFirewall.moveRule.json +20 -0
- models/mutation.policy.internetFirewall.moveSection.json +103 -0
- models/mutation.policy.internetFirewall.publishPolicyRevision.json +123 -0
- models/mutation.policy.internetFirewall.removeRule.json +20 -0
- models/mutation.policy.internetFirewall.removeSection.json +103 -0
- models/mutation.policy.internetFirewall.updatePolicy.json +123 -0
- models/mutation.policy.internetFirewall.updateRule.json +20 -0
- models/mutation.policy.internetFirewall.updateSection.json +103 -0
- models/mutation.policy.remotePortFwd.addRule.json +20 -0
- models/mutation.policy.remotePortFwd.addSection.json +103 -0
- models/mutation.policy.remotePortFwd.createPolicyRevision.json +123 -0
- models/mutation.policy.remotePortFwd.discardPolicyRevision.json +123 -0
- models/mutation.policy.remotePortFwd.moveRule.json +20 -0
- models/mutation.policy.remotePortFwd.moveSection.json +103 -0
- models/mutation.policy.remotePortFwd.publishPolicyRevision.json +123 -0
- models/mutation.policy.remotePortFwd.removeRule.json +20 -0
- models/mutation.policy.remotePortFwd.removeSection.json +103 -0
- models/mutation.policy.remotePortFwd.updatePolicy.json +123 -0
- models/mutation.policy.remotePortFwd.updateRule.json +20 -0
- models/mutation.policy.remotePortFwd.updateSection.json +103 -0
- models/mutation.policy.socketLan.addRule.json +40 -0
- models/mutation.policy.socketLan.addSection.json +103 -0
- models/mutation.policy.socketLan.createPolicyRevision.json +143 -0
- models/mutation.policy.socketLan.discardPolicyRevision.json +143 -0
- models/mutation.policy.socketLan.moveRule.json +40 -0
- models/mutation.policy.socketLan.moveSection.json +103 -0
- models/mutation.policy.socketLan.publishPolicyRevision.json +143 -0
- models/mutation.policy.socketLan.removeRule.json +40 -0
- models/mutation.policy.socketLan.removeSection.json +103 -0
- models/mutation.policy.socketLan.updatePolicy.json +143 -0
- models/mutation.policy.socketLan.updateRule.json +40 -0
- models/mutation.policy.socketLan.updateSection.json +103 -0
- models/mutation.policy.terminalServer.addRule.json +20 -0
- models/mutation.policy.terminalServer.addSection.json +103 -0
- models/mutation.policy.terminalServer.createPolicyRevision.json +123 -0
- models/mutation.policy.terminalServer.discardPolicyRevision.json +123 -0
- models/mutation.policy.terminalServer.moveRule.json +20 -0
- models/mutation.policy.terminalServer.moveSection.json +103 -0
- models/mutation.policy.terminalServer.publishPolicyRevision.json +123 -0
- models/mutation.policy.terminalServer.removeRule.json +20 -0
- models/mutation.policy.terminalServer.removeSection.json +103 -0
- models/mutation.policy.terminalServer.updatePolicy.json +123 -0
- models/mutation.policy.terminalServer.updateRule.json +20 -0
- models/mutation.policy.terminalServer.updateSection.json +103 -0
- models/mutation.policy.tlsInspect.addRule.json +20 -0
- models/mutation.policy.tlsInspect.addSection.json +103 -0
- models/mutation.policy.tlsInspect.createPolicyRevision.json +123 -0
- models/mutation.policy.tlsInspect.discardPolicyRevision.json +123 -0
- models/mutation.policy.tlsInspect.moveRule.json +20 -0
- models/mutation.policy.tlsInspect.moveSection.json +103 -0
- models/mutation.policy.tlsInspect.publishPolicyRevision.json +123 -0
- models/mutation.policy.tlsInspect.removeRule.json +20 -0
- models/mutation.policy.tlsInspect.removeSection.json +103 -0
- models/mutation.policy.tlsInspect.updatePolicy.json +123 -0
- models/mutation.policy.tlsInspect.updateRule.json +20 -0
- models/mutation.policy.tlsInspect.updateSection.json +103 -0
- models/mutation.policy.wanFirewall.addRule.json +20 -0
- models/mutation.policy.wanFirewall.addSection.json +103 -0
- models/mutation.policy.wanFirewall.createPolicyRevision.json +123 -0
- models/mutation.policy.wanFirewall.discardPolicyRevision.json +123 -0
- models/mutation.policy.wanFirewall.moveRule.json +20 -0
- models/mutation.policy.wanFirewall.moveSection.json +103 -0
- models/mutation.policy.wanFirewall.publishPolicyRevision.json +123 -0
- models/mutation.policy.wanFirewall.removeRule.json +20 -0
- models/mutation.policy.wanFirewall.removeSection.json +103 -0
- models/mutation.policy.wanFirewall.updatePolicy.json +123 -0
- models/mutation.policy.wanFirewall.updateRule.json +20 -0
- models/mutation.policy.wanFirewall.updateSection.json +103 -0
- models/mutation.policy.wanNetwork.addRule.json +20 -0
- models/mutation.policy.wanNetwork.addSection.json +103 -0
- models/mutation.policy.wanNetwork.createPolicyRevision.json +123 -0
- models/mutation.policy.wanNetwork.discardPolicyRevision.json +123 -0
- models/mutation.policy.wanNetwork.moveRule.json +20 -0
- models/mutation.policy.wanNetwork.moveSection.json +103 -0
- models/mutation.policy.wanNetwork.publishPolicyRevision.json +123 -0
- models/mutation.policy.wanNetwork.removeRule.json +20 -0
- models/mutation.policy.wanNetwork.removeSection.json +103 -0
- models/mutation.policy.wanNetwork.updatePolicy.json +123 -0
- models/mutation.policy.wanNetwork.updateRule.json +20 -0
- models/mutation.policy.wanNetwork.updateSection.json +103 -0
- models/mutation.xdr.analystFeedback.json +822 -87
- models/query.policy.antiMalwareFileHash.policy.json +123 -0
- models/query.policy.appTenantRestriction.policy.json +123 -0
- models/query.policy.applicationControl.policy.json +123 -0
- models/query.policy.dynamicIpAllocation.policy.json +123 -0
- models/query.policy.internetFirewall.policy.json +123 -0
- models/query.policy.remotePortFwd.policy.json +123 -0
- models/query.policy.socketLan.policy.json +143 -0
- models/query.policy.terminalServer.policy.json +123 -0
- models/query.policy.tlsInspect.policy.json +123 -0
- models/query.policy.wanFirewall.policy.json +123 -0
- models/query.policy.wanNetwork.policy.json +123 -0
- models/query.xdr.stories.json +822 -87
- models/query.xdr.story.json +822 -87
- schema/catolib.py +34 -17
- catocli/Utils/csv_formatter.py +0 -663
- scripts/catolib.py +0 -62
- scripts/export_if_rules_to_json.py +0 -188
- scripts/export_wf_rules_to_json.py +0 -111
- scripts/import_wf_rules_to_tfstate.py +0 -331
- {catocli-3.0.14.dist-info → catocli-3.0.22.dist-info}/WHEEL +0 -0
- {catocli-3.0.14.dist-info → catocli-3.0.22.dist-info}/entry_points.txt +0 -0
- {catocli-3.0.14.dist-info → catocli-3.0.22.dist-info}/licenses/LICENSE +0 -0
|
@@ -13555,6 +13555,26 @@
|
|
|
13555
13555
|
"non_null": false
|
|
13556
13556
|
},
|
|
13557
13557
|
"varName": "name"
|
|
13558
|
+
},
|
|
13559
|
+
"subPolicyId": {
|
|
13560
|
+
"args": {},
|
|
13561
|
+
"deprecationReason": null,
|
|
13562
|
+
"description": null,
|
|
13563
|
+
"id_str": "applicationControl___publishPolicyRevision___policy___rules___rule___section___subPolicyId",
|
|
13564
|
+
"isDeprecated": false,
|
|
13565
|
+
"name": "subPolicyId",
|
|
13566
|
+
"path": "applicationControl.publishPolicyRevision.policy.rules.rule.section.subPolicyId",
|
|
13567
|
+
"requestStr": "$subPolicyId:ID ",
|
|
13568
|
+
"required": false,
|
|
13569
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
13570
|
+
"type": {
|
|
13571
|
+
"kind": [
|
|
13572
|
+
"SCALAR"
|
|
13573
|
+
],
|
|
13574
|
+
"name": "ID",
|
|
13575
|
+
"non_null": false
|
|
13576
|
+
},
|
|
13577
|
+
"varName": "subPolicyId"
|
|
13558
13578
|
}
|
|
13559
13579
|
},
|
|
13560
13580
|
"inputFields": null,
|
|
@@ -13637,6 +13657,89 @@
|
|
|
13637
13657
|
"description": null,
|
|
13638
13658
|
"enumValues": null,
|
|
13639
13659
|
"fields": {
|
|
13660
|
+
"access": {
|
|
13661
|
+
"args": {},
|
|
13662
|
+
"deprecationReason": null,
|
|
13663
|
+
"description": null,
|
|
13664
|
+
"id_str": "applicationControl___publishPolicyRevision___policy___sections___access",
|
|
13665
|
+
"isDeprecated": false,
|
|
13666
|
+
"name": "access",
|
|
13667
|
+
"path": "applicationControl.publishPolicyRevision.policy.sections.access",
|
|
13668
|
+
"requestStr": "$entityAccess:EntityAccess ",
|
|
13669
|
+
"required": false,
|
|
13670
|
+
"responseStr": "access:$entityAccess ",
|
|
13671
|
+
"type": {
|
|
13672
|
+
"definition": {
|
|
13673
|
+
"description": null,
|
|
13674
|
+
"enumValues": null,
|
|
13675
|
+
"fields": {
|
|
13676
|
+
"action": {
|
|
13677
|
+
"args": {},
|
|
13678
|
+
"deprecationReason": null,
|
|
13679
|
+
"description": null,
|
|
13680
|
+
"id_str": "applicationControl___publishPolicyRevision___policy___sections___access___action",
|
|
13681
|
+
"isDeprecated": false,
|
|
13682
|
+
"name": "action",
|
|
13683
|
+
"path": "applicationControl.publishPolicyRevision.policy.sections.access.action",
|
|
13684
|
+
"requestStr": "$action:RBACAction! ",
|
|
13685
|
+
"required": true,
|
|
13686
|
+
"responseStr": "action:$action ",
|
|
13687
|
+
"type": {
|
|
13688
|
+
"definition": {
|
|
13689
|
+
"description": null,
|
|
13690
|
+
"enumValues": [
|
|
13691
|
+
{
|
|
13692
|
+
"deprecationReason": null,
|
|
13693
|
+
"description": null,
|
|
13694
|
+
"isDeprecated": false,
|
|
13695
|
+
"name": "NONE"
|
|
13696
|
+
},
|
|
13697
|
+
{
|
|
13698
|
+
"deprecationReason": null,
|
|
13699
|
+
"description": null,
|
|
13700
|
+
"isDeprecated": false,
|
|
13701
|
+
"name": "VIEW"
|
|
13702
|
+
},
|
|
13703
|
+
{
|
|
13704
|
+
"deprecationReason": null,
|
|
13705
|
+
"description": null,
|
|
13706
|
+
"isDeprecated": false,
|
|
13707
|
+
"name": "EDIT"
|
|
13708
|
+
}
|
|
13709
|
+
],
|
|
13710
|
+
"fields": null,
|
|
13711
|
+
"inputFields": null,
|
|
13712
|
+
"interfaces": null,
|
|
13713
|
+
"kind": "ENUM",
|
|
13714
|
+
"name": "RBACAction",
|
|
13715
|
+
"possibleTypes": null
|
|
13716
|
+
},
|
|
13717
|
+
"indexType": "enum",
|
|
13718
|
+
"kind": [
|
|
13719
|
+
"NON_NULL",
|
|
13720
|
+
"ENUM"
|
|
13721
|
+
],
|
|
13722
|
+
"name": "RBACAction",
|
|
13723
|
+
"non_null": false
|
|
13724
|
+
},
|
|
13725
|
+
"varName": "action"
|
|
13726
|
+
}
|
|
13727
|
+
},
|
|
13728
|
+
"inputFields": null,
|
|
13729
|
+
"interfaces": [],
|
|
13730
|
+
"kind": "OBJECT",
|
|
13731
|
+
"name": "EntityAccess",
|
|
13732
|
+
"possibleTypes": null
|
|
13733
|
+
},
|
|
13734
|
+
"indexType": "object",
|
|
13735
|
+
"kind": [
|
|
13736
|
+
"OBJECT"
|
|
13737
|
+
],
|
|
13738
|
+
"name": "EntityAccess",
|
|
13739
|
+
"non_null": false
|
|
13740
|
+
},
|
|
13741
|
+
"varName": "entityAccess"
|
|
13742
|
+
},
|
|
13640
13743
|
"audit": {
|
|
13641
13744
|
"args": {},
|
|
13642
13745
|
"deprecationReason": null,
|
|
@@ -13846,6 +13949,26 @@
|
|
|
13846
13949
|
"non_null": false
|
|
13847
13950
|
},
|
|
13848
13951
|
"varName": "name"
|
|
13952
|
+
},
|
|
13953
|
+
"subPolicyId": {
|
|
13954
|
+
"args": {},
|
|
13955
|
+
"deprecationReason": null,
|
|
13956
|
+
"description": null,
|
|
13957
|
+
"id_str": "applicationControl___publishPolicyRevision___policy___sections___section___subPolicyId",
|
|
13958
|
+
"isDeprecated": false,
|
|
13959
|
+
"name": "subPolicyId",
|
|
13960
|
+
"path": "applicationControl.publishPolicyRevision.policy.sections.section.subPolicyId",
|
|
13961
|
+
"requestStr": "$subPolicyId:ID ",
|
|
13962
|
+
"required": false,
|
|
13963
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
13964
|
+
"type": {
|
|
13965
|
+
"kind": [
|
|
13966
|
+
"SCALAR"
|
|
13967
|
+
],
|
|
13968
|
+
"name": "ID",
|
|
13969
|
+
"non_null": false
|
|
13970
|
+
},
|
|
13971
|
+
"varName": "subPolicyId"
|
|
13849
13972
|
}
|
|
13850
13973
|
},
|
|
13851
13974
|
"inputFields": null,
|
|
@@ -13161,6 +13161,26 @@
|
|
|
13161
13161
|
"non_null": false
|
|
13162
13162
|
},
|
|
13163
13163
|
"varName": "name"
|
|
13164
|
+
},
|
|
13165
|
+
"subPolicyId": {
|
|
13166
|
+
"args": {},
|
|
13167
|
+
"deprecationReason": null,
|
|
13168
|
+
"description": null,
|
|
13169
|
+
"id_str": "applicationControl___removeRule___rule___rule___section___subPolicyId",
|
|
13170
|
+
"isDeprecated": false,
|
|
13171
|
+
"name": "subPolicyId",
|
|
13172
|
+
"path": "applicationControl.removeRule.rule.rule.section.subPolicyId",
|
|
13173
|
+
"requestStr": "$subPolicyId:ID ",
|
|
13174
|
+
"required": false,
|
|
13175
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
13176
|
+
"type": {
|
|
13177
|
+
"kind": [
|
|
13178
|
+
"SCALAR"
|
|
13179
|
+
],
|
|
13180
|
+
"name": "ID",
|
|
13181
|
+
"non_null": false
|
|
13182
|
+
},
|
|
13183
|
+
"varName": "subPolicyId"
|
|
13164
13184
|
}
|
|
13165
13185
|
},
|
|
13166
13186
|
"inputFields": null,
|
|
@@ -593,6 +593,89 @@
|
|
|
593
593
|
"description": null,
|
|
594
594
|
"enumValues": null,
|
|
595
595
|
"fields": {
|
|
596
|
+
"access": {
|
|
597
|
+
"args": {},
|
|
598
|
+
"deprecationReason": null,
|
|
599
|
+
"description": null,
|
|
600
|
+
"id_str": "applicationControl___removeSection___section___access",
|
|
601
|
+
"isDeprecated": false,
|
|
602
|
+
"name": "access",
|
|
603
|
+
"path": "applicationControl.removeSection.section.access",
|
|
604
|
+
"requestStr": "$entityAccess:EntityAccess ",
|
|
605
|
+
"required": false,
|
|
606
|
+
"responseStr": "access:$entityAccess ",
|
|
607
|
+
"type": {
|
|
608
|
+
"definition": {
|
|
609
|
+
"description": null,
|
|
610
|
+
"enumValues": null,
|
|
611
|
+
"fields": {
|
|
612
|
+
"action": {
|
|
613
|
+
"args": {},
|
|
614
|
+
"deprecationReason": null,
|
|
615
|
+
"description": null,
|
|
616
|
+
"id_str": "applicationControl___removeSection___section___access___action",
|
|
617
|
+
"isDeprecated": false,
|
|
618
|
+
"name": "action",
|
|
619
|
+
"path": "applicationControl.removeSection.section.access.action",
|
|
620
|
+
"requestStr": "$action:RBACAction! ",
|
|
621
|
+
"required": true,
|
|
622
|
+
"responseStr": "action:$action ",
|
|
623
|
+
"type": {
|
|
624
|
+
"definition": {
|
|
625
|
+
"description": null,
|
|
626
|
+
"enumValues": [
|
|
627
|
+
{
|
|
628
|
+
"deprecationReason": null,
|
|
629
|
+
"description": null,
|
|
630
|
+
"isDeprecated": false,
|
|
631
|
+
"name": "NONE"
|
|
632
|
+
},
|
|
633
|
+
{
|
|
634
|
+
"deprecationReason": null,
|
|
635
|
+
"description": null,
|
|
636
|
+
"isDeprecated": false,
|
|
637
|
+
"name": "VIEW"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"deprecationReason": null,
|
|
641
|
+
"description": null,
|
|
642
|
+
"isDeprecated": false,
|
|
643
|
+
"name": "EDIT"
|
|
644
|
+
}
|
|
645
|
+
],
|
|
646
|
+
"fields": null,
|
|
647
|
+
"inputFields": null,
|
|
648
|
+
"interfaces": null,
|
|
649
|
+
"kind": "ENUM",
|
|
650
|
+
"name": "RBACAction",
|
|
651
|
+
"possibleTypes": null
|
|
652
|
+
},
|
|
653
|
+
"indexType": "enum",
|
|
654
|
+
"kind": [
|
|
655
|
+
"NON_NULL",
|
|
656
|
+
"ENUM"
|
|
657
|
+
],
|
|
658
|
+
"name": "RBACAction",
|
|
659
|
+
"non_null": false
|
|
660
|
+
},
|
|
661
|
+
"varName": "action"
|
|
662
|
+
}
|
|
663
|
+
},
|
|
664
|
+
"inputFields": null,
|
|
665
|
+
"interfaces": [],
|
|
666
|
+
"kind": "OBJECT",
|
|
667
|
+
"name": "EntityAccess",
|
|
668
|
+
"possibleTypes": null
|
|
669
|
+
},
|
|
670
|
+
"indexType": "object",
|
|
671
|
+
"kind": [
|
|
672
|
+
"OBJECT"
|
|
673
|
+
],
|
|
674
|
+
"name": "EntityAccess",
|
|
675
|
+
"non_null": false
|
|
676
|
+
},
|
|
677
|
+
"varName": "entityAccess"
|
|
678
|
+
},
|
|
596
679
|
"audit": {
|
|
597
680
|
"args": {},
|
|
598
681
|
"deprecationReason": null,
|
|
@@ -802,6 +885,26 @@
|
|
|
802
885
|
"non_null": false
|
|
803
886
|
},
|
|
804
887
|
"varName": "name"
|
|
888
|
+
},
|
|
889
|
+
"subPolicyId": {
|
|
890
|
+
"args": {},
|
|
891
|
+
"deprecationReason": null,
|
|
892
|
+
"description": null,
|
|
893
|
+
"id_str": "applicationControl___removeSection___section___section___subPolicyId",
|
|
894
|
+
"isDeprecated": false,
|
|
895
|
+
"name": "subPolicyId",
|
|
896
|
+
"path": "applicationControl.removeSection.section.section.subPolicyId",
|
|
897
|
+
"requestStr": "$subPolicyId:ID ",
|
|
898
|
+
"required": false,
|
|
899
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
900
|
+
"type": {
|
|
901
|
+
"kind": [
|
|
902
|
+
"SCALAR"
|
|
903
|
+
],
|
|
904
|
+
"name": "ID",
|
|
905
|
+
"non_null": false
|
|
906
|
+
},
|
|
907
|
+
"varName": "subPolicyId"
|
|
805
908
|
}
|
|
806
909
|
},
|
|
807
910
|
"inputFields": null,
|
|
@@ -13795,6 +13795,26 @@
|
|
|
13795
13795
|
"non_null": false
|
|
13796
13796
|
},
|
|
13797
13797
|
"varName": "name"
|
|
13798
|
+
},
|
|
13799
|
+
"subPolicyId": {
|
|
13800
|
+
"args": {},
|
|
13801
|
+
"deprecationReason": null,
|
|
13802
|
+
"description": null,
|
|
13803
|
+
"id_str": "applicationControl___updatePolicy___policy___rules___rule___section___subPolicyId",
|
|
13804
|
+
"isDeprecated": false,
|
|
13805
|
+
"name": "subPolicyId",
|
|
13806
|
+
"path": "applicationControl.updatePolicy.policy.rules.rule.section.subPolicyId",
|
|
13807
|
+
"requestStr": "$subPolicyId:ID ",
|
|
13808
|
+
"required": false,
|
|
13809
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
13810
|
+
"type": {
|
|
13811
|
+
"kind": [
|
|
13812
|
+
"SCALAR"
|
|
13813
|
+
],
|
|
13814
|
+
"name": "ID",
|
|
13815
|
+
"non_null": false
|
|
13816
|
+
},
|
|
13817
|
+
"varName": "subPolicyId"
|
|
13798
13818
|
}
|
|
13799
13819
|
},
|
|
13800
13820
|
"inputFields": null,
|
|
@@ -13877,6 +13897,89 @@
|
|
|
13877
13897
|
"description": null,
|
|
13878
13898
|
"enumValues": null,
|
|
13879
13899
|
"fields": {
|
|
13900
|
+
"access": {
|
|
13901
|
+
"args": {},
|
|
13902
|
+
"deprecationReason": null,
|
|
13903
|
+
"description": null,
|
|
13904
|
+
"id_str": "applicationControl___updatePolicy___policy___sections___access",
|
|
13905
|
+
"isDeprecated": false,
|
|
13906
|
+
"name": "access",
|
|
13907
|
+
"path": "applicationControl.updatePolicy.policy.sections.access",
|
|
13908
|
+
"requestStr": "$entityAccess:EntityAccess ",
|
|
13909
|
+
"required": false,
|
|
13910
|
+
"responseStr": "access:$entityAccess ",
|
|
13911
|
+
"type": {
|
|
13912
|
+
"definition": {
|
|
13913
|
+
"description": null,
|
|
13914
|
+
"enumValues": null,
|
|
13915
|
+
"fields": {
|
|
13916
|
+
"action": {
|
|
13917
|
+
"args": {},
|
|
13918
|
+
"deprecationReason": null,
|
|
13919
|
+
"description": null,
|
|
13920
|
+
"id_str": "applicationControl___updatePolicy___policy___sections___access___action",
|
|
13921
|
+
"isDeprecated": false,
|
|
13922
|
+
"name": "action",
|
|
13923
|
+
"path": "applicationControl.updatePolicy.policy.sections.access.action",
|
|
13924
|
+
"requestStr": "$action:RBACAction! ",
|
|
13925
|
+
"required": true,
|
|
13926
|
+
"responseStr": "action:$action ",
|
|
13927
|
+
"type": {
|
|
13928
|
+
"definition": {
|
|
13929
|
+
"description": null,
|
|
13930
|
+
"enumValues": [
|
|
13931
|
+
{
|
|
13932
|
+
"deprecationReason": null,
|
|
13933
|
+
"description": null,
|
|
13934
|
+
"isDeprecated": false,
|
|
13935
|
+
"name": "NONE"
|
|
13936
|
+
},
|
|
13937
|
+
{
|
|
13938
|
+
"deprecationReason": null,
|
|
13939
|
+
"description": null,
|
|
13940
|
+
"isDeprecated": false,
|
|
13941
|
+
"name": "VIEW"
|
|
13942
|
+
},
|
|
13943
|
+
{
|
|
13944
|
+
"deprecationReason": null,
|
|
13945
|
+
"description": null,
|
|
13946
|
+
"isDeprecated": false,
|
|
13947
|
+
"name": "EDIT"
|
|
13948
|
+
}
|
|
13949
|
+
],
|
|
13950
|
+
"fields": null,
|
|
13951
|
+
"inputFields": null,
|
|
13952
|
+
"interfaces": null,
|
|
13953
|
+
"kind": "ENUM",
|
|
13954
|
+
"name": "RBACAction",
|
|
13955
|
+
"possibleTypes": null
|
|
13956
|
+
},
|
|
13957
|
+
"indexType": "enum",
|
|
13958
|
+
"kind": [
|
|
13959
|
+
"NON_NULL",
|
|
13960
|
+
"ENUM"
|
|
13961
|
+
],
|
|
13962
|
+
"name": "RBACAction",
|
|
13963
|
+
"non_null": false
|
|
13964
|
+
},
|
|
13965
|
+
"varName": "action"
|
|
13966
|
+
}
|
|
13967
|
+
},
|
|
13968
|
+
"inputFields": null,
|
|
13969
|
+
"interfaces": [],
|
|
13970
|
+
"kind": "OBJECT",
|
|
13971
|
+
"name": "EntityAccess",
|
|
13972
|
+
"possibleTypes": null
|
|
13973
|
+
},
|
|
13974
|
+
"indexType": "object",
|
|
13975
|
+
"kind": [
|
|
13976
|
+
"OBJECT"
|
|
13977
|
+
],
|
|
13978
|
+
"name": "EntityAccess",
|
|
13979
|
+
"non_null": false
|
|
13980
|
+
},
|
|
13981
|
+
"varName": "entityAccess"
|
|
13982
|
+
},
|
|
13880
13983
|
"audit": {
|
|
13881
13984
|
"args": {},
|
|
13882
13985
|
"deprecationReason": null,
|
|
@@ -14086,6 +14189,26 @@
|
|
|
14086
14189
|
"non_null": false
|
|
14087
14190
|
},
|
|
14088
14191
|
"varName": "name"
|
|
14192
|
+
},
|
|
14193
|
+
"subPolicyId": {
|
|
14194
|
+
"args": {},
|
|
14195
|
+
"deprecationReason": null,
|
|
14196
|
+
"description": null,
|
|
14197
|
+
"id_str": "applicationControl___updatePolicy___policy___sections___section___subPolicyId",
|
|
14198
|
+
"isDeprecated": false,
|
|
14199
|
+
"name": "subPolicyId",
|
|
14200
|
+
"path": "applicationControl.updatePolicy.policy.sections.section.subPolicyId",
|
|
14201
|
+
"requestStr": "$subPolicyId:ID ",
|
|
14202
|
+
"required": false,
|
|
14203
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
14204
|
+
"type": {
|
|
14205
|
+
"kind": [
|
|
14206
|
+
"SCALAR"
|
|
14207
|
+
],
|
|
14208
|
+
"name": "ID",
|
|
14209
|
+
"non_null": false
|
|
14210
|
+
},
|
|
14211
|
+
"varName": "subPolicyId"
|
|
14089
14212
|
}
|
|
14090
14213
|
},
|
|
14091
14214
|
"inputFields": null,
|
|
@@ -51705,6 +51705,26 @@
|
|
|
51705
51705
|
"non_null": false
|
|
51706
51706
|
},
|
|
51707
51707
|
"varName": "name"
|
|
51708
|
+
},
|
|
51709
|
+
"subPolicyId": {
|
|
51710
|
+
"args": {},
|
|
51711
|
+
"deprecationReason": null,
|
|
51712
|
+
"description": null,
|
|
51713
|
+
"id_str": "applicationControl___updateRule___rule___rule___section___subPolicyId",
|
|
51714
|
+
"isDeprecated": false,
|
|
51715
|
+
"name": "subPolicyId",
|
|
51716
|
+
"path": "applicationControl.updateRule.rule.rule.section.subPolicyId",
|
|
51717
|
+
"requestStr": "$subPolicyId:ID ",
|
|
51718
|
+
"required": false,
|
|
51719
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
51720
|
+
"type": {
|
|
51721
|
+
"kind": [
|
|
51722
|
+
"SCALAR"
|
|
51723
|
+
],
|
|
51724
|
+
"name": "ID",
|
|
51725
|
+
"non_null": false
|
|
51726
|
+
},
|
|
51727
|
+
"varName": "subPolicyId"
|
|
51708
51728
|
}
|
|
51709
51729
|
},
|
|
51710
51730
|
"inputFields": null,
|