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
|
@@ -5842,6 +5842,26 @@
|
|
|
5842
5842
|
"non_null": false
|
|
5843
5843
|
},
|
|
5844
5844
|
"varName": "name"
|
|
5845
|
+
},
|
|
5846
|
+
"subPolicyId": {
|
|
5847
|
+
"args": {},
|
|
5848
|
+
"deprecationReason": null,
|
|
5849
|
+
"description": null,
|
|
5850
|
+
"id_str": "internetFirewall___policy___rules___rule___section___subPolicyId",
|
|
5851
|
+
"isDeprecated": false,
|
|
5852
|
+
"name": "subPolicyId",
|
|
5853
|
+
"path": "internetFirewall.policy.rules.rule.section.subPolicyId",
|
|
5854
|
+
"requestStr": "$subPolicyId:ID ",
|
|
5855
|
+
"required": false,
|
|
5856
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
5857
|
+
"type": {
|
|
5858
|
+
"kind": [
|
|
5859
|
+
"SCALAR"
|
|
5860
|
+
],
|
|
5861
|
+
"name": "ID",
|
|
5862
|
+
"non_null": false
|
|
5863
|
+
},
|
|
5864
|
+
"varName": "subPolicyId"
|
|
5845
5865
|
}
|
|
5846
5866
|
},
|
|
5847
5867
|
"inputFields": null,
|
|
@@ -7667,6 +7687,89 @@
|
|
|
7667
7687
|
"description": null,
|
|
7668
7688
|
"enumValues": null,
|
|
7669
7689
|
"fields": {
|
|
7690
|
+
"access": {
|
|
7691
|
+
"args": {},
|
|
7692
|
+
"deprecationReason": null,
|
|
7693
|
+
"description": null,
|
|
7694
|
+
"id_str": "internetFirewall___policy___sections___access",
|
|
7695
|
+
"isDeprecated": false,
|
|
7696
|
+
"name": "access",
|
|
7697
|
+
"path": "internetFirewall.policy.sections.access",
|
|
7698
|
+
"requestStr": "$entityAccess:EntityAccess ",
|
|
7699
|
+
"required": false,
|
|
7700
|
+
"responseStr": "access:$entityAccess ",
|
|
7701
|
+
"type": {
|
|
7702
|
+
"definition": {
|
|
7703
|
+
"description": null,
|
|
7704
|
+
"enumValues": null,
|
|
7705
|
+
"fields": {
|
|
7706
|
+
"action": {
|
|
7707
|
+
"args": {},
|
|
7708
|
+
"deprecationReason": null,
|
|
7709
|
+
"description": null,
|
|
7710
|
+
"id_str": "internetFirewall___policy___sections___access___action",
|
|
7711
|
+
"isDeprecated": false,
|
|
7712
|
+
"name": "action",
|
|
7713
|
+
"path": "internetFirewall.policy.sections.access.action",
|
|
7714
|
+
"requestStr": "$action:RBACAction! ",
|
|
7715
|
+
"required": true,
|
|
7716
|
+
"responseStr": "action:$action ",
|
|
7717
|
+
"type": {
|
|
7718
|
+
"definition": {
|
|
7719
|
+
"description": null,
|
|
7720
|
+
"enumValues": [
|
|
7721
|
+
{
|
|
7722
|
+
"deprecationReason": null,
|
|
7723
|
+
"description": null,
|
|
7724
|
+
"isDeprecated": false,
|
|
7725
|
+
"name": "NONE"
|
|
7726
|
+
},
|
|
7727
|
+
{
|
|
7728
|
+
"deprecationReason": null,
|
|
7729
|
+
"description": null,
|
|
7730
|
+
"isDeprecated": false,
|
|
7731
|
+
"name": "VIEW"
|
|
7732
|
+
},
|
|
7733
|
+
{
|
|
7734
|
+
"deprecationReason": null,
|
|
7735
|
+
"description": null,
|
|
7736
|
+
"isDeprecated": false,
|
|
7737
|
+
"name": "EDIT"
|
|
7738
|
+
}
|
|
7739
|
+
],
|
|
7740
|
+
"fields": null,
|
|
7741
|
+
"inputFields": null,
|
|
7742
|
+
"interfaces": null,
|
|
7743
|
+
"kind": "ENUM",
|
|
7744
|
+
"name": "RBACAction",
|
|
7745
|
+
"possibleTypes": null
|
|
7746
|
+
},
|
|
7747
|
+
"indexType": "enum",
|
|
7748
|
+
"kind": [
|
|
7749
|
+
"NON_NULL",
|
|
7750
|
+
"ENUM"
|
|
7751
|
+
],
|
|
7752
|
+
"name": "RBACAction",
|
|
7753
|
+
"non_null": false
|
|
7754
|
+
},
|
|
7755
|
+
"varName": "action"
|
|
7756
|
+
}
|
|
7757
|
+
},
|
|
7758
|
+
"inputFields": null,
|
|
7759
|
+
"interfaces": [],
|
|
7760
|
+
"kind": "OBJECT",
|
|
7761
|
+
"name": "EntityAccess",
|
|
7762
|
+
"possibleTypes": null
|
|
7763
|
+
},
|
|
7764
|
+
"indexType": "object",
|
|
7765
|
+
"kind": [
|
|
7766
|
+
"OBJECT"
|
|
7767
|
+
],
|
|
7768
|
+
"name": "EntityAccess",
|
|
7769
|
+
"non_null": false
|
|
7770
|
+
},
|
|
7771
|
+
"varName": "entityAccess"
|
|
7772
|
+
},
|
|
7670
7773
|
"audit": {
|
|
7671
7774
|
"args": {},
|
|
7672
7775
|
"deprecationReason": null,
|
|
@@ -7876,6 +7979,26 @@
|
|
|
7876
7979
|
"non_null": false
|
|
7877
7980
|
},
|
|
7878
7981
|
"varName": "name"
|
|
7982
|
+
},
|
|
7983
|
+
"subPolicyId": {
|
|
7984
|
+
"args": {},
|
|
7985
|
+
"deprecationReason": null,
|
|
7986
|
+
"description": null,
|
|
7987
|
+
"id_str": "internetFirewall___policy___sections___section___subPolicyId",
|
|
7988
|
+
"isDeprecated": false,
|
|
7989
|
+
"name": "subPolicyId",
|
|
7990
|
+
"path": "internetFirewall.policy.sections.section.subPolicyId",
|
|
7991
|
+
"requestStr": "$subPolicyId:ID ",
|
|
7992
|
+
"required": false,
|
|
7993
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
7994
|
+
"type": {
|
|
7995
|
+
"kind": [
|
|
7996
|
+
"SCALAR"
|
|
7997
|
+
],
|
|
7998
|
+
"name": "ID",
|
|
7999
|
+
"non_null": false
|
|
8000
|
+
},
|
|
8001
|
+
"varName": "subPolicyId"
|
|
7879
8002
|
}
|
|
7880
8003
|
},
|
|
7881
8004
|
"inputFields": null,
|
|
@@ -1632,6 +1632,26 @@
|
|
|
1632
1632
|
"non_null": false
|
|
1633
1633
|
},
|
|
1634
1634
|
"varName": "name"
|
|
1635
|
+
},
|
|
1636
|
+
"subPolicyId": {
|
|
1637
|
+
"args": {},
|
|
1638
|
+
"deprecationReason": null,
|
|
1639
|
+
"description": null,
|
|
1640
|
+
"id_str": "remotePortFwd___policy___rules___rule___section___subPolicyId",
|
|
1641
|
+
"isDeprecated": false,
|
|
1642
|
+
"name": "subPolicyId",
|
|
1643
|
+
"path": "remotePortFwd.policy.rules.rule.section.subPolicyId",
|
|
1644
|
+
"requestStr": "$subPolicyId:ID ",
|
|
1645
|
+
"required": false,
|
|
1646
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
1647
|
+
"type": {
|
|
1648
|
+
"kind": [
|
|
1649
|
+
"SCALAR"
|
|
1650
|
+
],
|
|
1651
|
+
"name": "ID",
|
|
1652
|
+
"non_null": false
|
|
1653
|
+
},
|
|
1654
|
+
"varName": "subPolicyId"
|
|
1635
1655
|
}
|
|
1636
1656
|
},
|
|
1637
1657
|
"inputFields": null,
|
|
@@ -2074,6 +2094,89 @@
|
|
|
2074
2094
|
"description": null,
|
|
2075
2095
|
"enumValues": null,
|
|
2076
2096
|
"fields": {
|
|
2097
|
+
"access": {
|
|
2098
|
+
"args": {},
|
|
2099
|
+
"deprecationReason": null,
|
|
2100
|
+
"description": null,
|
|
2101
|
+
"id_str": "remotePortFwd___policy___sections___access",
|
|
2102
|
+
"isDeprecated": false,
|
|
2103
|
+
"name": "access",
|
|
2104
|
+
"path": "remotePortFwd.policy.sections.access",
|
|
2105
|
+
"requestStr": "$entityAccess:EntityAccess ",
|
|
2106
|
+
"required": false,
|
|
2107
|
+
"responseStr": "access:$entityAccess ",
|
|
2108
|
+
"type": {
|
|
2109
|
+
"definition": {
|
|
2110
|
+
"description": null,
|
|
2111
|
+
"enumValues": null,
|
|
2112
|
+
"fields": {
|
|
2113
|
+
"action": {
|
|
2114
|
+
"args": {},
|
|
2115
|
+
"deprecationReason": null,
|
|
2116
|
+
"description": null,
|
|
2117
|
+
"id_str": "remotePortFwd___policy___sections___access___action",
|
|
2118
|
+
"isDeprecated": false,
|
|
2119
|
+
"name": "action",
|
|
2120
|
+
"path": "remotePortFwd.policy.sections.access.action",
|
|
2121
|
+
"requestStr": "$action:RBACAction! ",
|
|
2122
|
+
"required": true,
|
|
2123
|
+
"responseStr": "action:$action ",
|
|
2124
|
+
"type": {
|
|
2125
|
+
"definition": {
|
|
2126
|
+
"description": null,
|
|
2127
|
+
"enumValues": [
|
|
2128
|
+
{
|
|
2129
|
+
"deprecationReason": null,
|
|
2130
|
+
"description": null,
|
|
2131
|
+
"isDeprecated": false,
|
|
2132
|
+
"name": "NONE"
|
|
2133
|
+
},
|
|
2134
|
+
{
|
|
2135
|
+
"deprecationReason": null,
|
|
2136
|
+
"description": null,
|
|
2137
|
+
"isDeprecated": false,
|
|
2138
|
+
"name": "VIEW"
|
|
2139
|
+
},
|
|
2140
|
+
{
|
|
2141
|
+
"deprecationReason": null,
|
|
2142
|
+
"description": null,
|
|
2143
|
+
"isDeprecated": false,
|
|
2144
|
+
"name": "EDIT"
|
|
2145
|
+
}
|
|
2146
|
+
],
|
|
2147
|
+
"fields": null,
|
|
2148
|
+
"inputFields": null,
|
|
2149
|
+
"interfaces": null,
|
|
2150
|
+
"kind": "ENUM",
|
|
2151
|
+
"name": "RBACAction",
|
|
2152
|
+
"possibleTypes": null
|
|
2153
|
+
},
|
|
2154
|
+
"indexType": "enum",
|
|
2155
|
+
"kind": [
|
|
2156
|
+
"NON_NULL",
|
|
2157
|
+
"ENUM"
|
|
2158
|
+
],
|
|
2159
|
+
"name": "RBACAction",
|
|
2160
|
+
"non_null": false
|
|
2161
|
+
},
|
|
2162
|
+
"varName": "action"
|
|
2163
|
+
}
|
|
2164
|
+
},
|
|
2165
|
+
"inputFields": null,
|
|
2166
|
+
"interfaces": [],
|
|
2167
|
+
"kind": "OBJECT",
|
|
2168
|
+
"name": "EntityAccess",
|
|
2169
|
+
"possibleTypes": null
|
|
2170
|
+
},
|
|
2171
|
+
"indexType": "object",
|
|
2172
|
+
"kind": [
|
|
2173
|
+
"OBJECT"
|
|
2174
|
+
],
|
|
2175
|
+
"name": "EntityAccess",
|
|
2176
|
+
"non_null": false
|
|
2177
|
+
},
|
|
2178
|
+
"varName": "entityAccess"
|
|
2179
|
+
},
|
|
2077
2180
|
"audit": {
|
|
2078
2181
|
"args": {},
|
|
2079
2182
|
"deprecationReason": null,
|
|
@@ -2283,6 +2386,26 @@
|
|
|
2283
2386
|
"non_null": false
|
|
2284
2387
|
},
|
|
2285
2388
|
"varName": "name"
|
|
2389
|
+
},
|
|
2390
|
+
"subPolicyId": {
|
|
2391
|
+
"args": {},
|
|
2392
|
+
"deprecationReason": null,
|
|
2393
|
+
"description": null,
|
|
2394
|
+
"id_str": "remotePortFwd___policy___sections___section___subPolicyId",
|
|
2395
|
+
"isDeprecated": false,
|
|
2396
|
+
"name": "subPolicyId",
|
|
2397
|
+
"path": "remotePortFwd.policy.sections.section.subPolicyId",
|
|
2398
|
+
"requestStr": "$subPolicyId:ID ",
|
|
2399
|
+
"required": false,
|
|
2400
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
2401
|
+
"type": {
|
|
2402
|
+
"kind": [
|
|
2403
|
+
"SCALAR"
|
|
2404
|
+
],
|
|
2405
|
+
"name": "ID",
|
|
2406
|
+
"non_null": false
|
|
2407
|
+
},
|
|
2408
|
+
"varName": "subPolicyId"
|
|
2286
2409
|
}
|
|
2287
2410
|
},
|
|
2288
2411
|
"inputFields": null,
|
|
@@ -3490,6 +3490,26 @@
|
|
|
3490
3490
|
"non_null": false
|
|
3491
3491
|
},
|
|
3492
3492
|
"varName": "name"
|
|
3493
|
+
},
|
|
3494
|
+
"subPolicyId": {
|
|
3495
|
+
"args": {},
|
|
3496
|
+
"deprecationReason": null,
|
|
3497
|
+
"description": null,
|
|
3498
|
+
"id_str": "socketLan___policy___rules___rule___firewall___rule___section___subPolicyId",
|
|
3499
|
+
"isDeprecated": false,
|
|
3500
|
+
"name": "subPolicyId",
|
|
3501
|
+
"path": "socketLan.policy.rules.rule.firewall.rule.section.subPolicyId",
|
|
3502
|
+
"requestStr": "$subPolicyId:ID ",
|
|
3503
|
+
"required": false,
|
|
3504
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
3505
|
+
"type": {
|
|
3506
|
+
"kind": [
|
|
3507
|
+
"SCALAR"
|
|
3508
|
+
],
|
|
3509
|
+
"name": "ID",
|
|
3510
|
+
"non_null": false
|
|
3511
|
+
},
|
|
3512
|
+
"varName": "subPolicyId"
|
|
3493
3513
|
}
|
|
3494
3514
|
},
|
|
3495
3515
|
"inputFields": null,
|
|
@@ -5514,6 +5534,26 @@
|
|
|
5514
5534
|
"non_null": false
|
|
5515
5535
|
},
|
|
5516
5536
|
"varName": "name"
|
|
5537
|
+
},
|
|
5538
|
+
"subPolicyId": {
|
|
5539
|
+
"args": {},
|
|
5540
|
+
"deprecationReason": null,
|
|
5541
|
+
"description": null,
|
|
5542
|
+
"id_str": "socketLan___policy___rules___rule___section___subPolicyId",
|
|
5543
|
+
"isDeprecated": false,
|
|
5544
|
+
"name": "subPolicyId",
|
|
5545
|
+
"path": "socketLan.policy.rules.rule.section.subPolicyId",
|
|
5546
|
+
"requestStr": "$subPolicyId:ID ",
|
|
5547
|
+
"required": false,
|
|
5548
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
5549
|
+
"type": {
|
|
5550
|
+
"kind": [
|
|
5551
|
+
"SCALAR"
|
|
5552
|
+
],
|
|
5553
|
+
"name": "ID",
|
|
5554
|
+
"non_null": false
|
|
5555
|
+
},
|
|
5556
|
+
"varName": "subPolicyId"
|
|
5517
5557
|
}
|
|
5518
5558
|
},
|
|
5519
5559
|
"inputFields": null,
|
|
@@ -6949,6 +6989,89 @@
|
|
|
6949
6989
|
"description": null,
|
|
6950
6990
|
"enumValues": null,
|
|
6951
6991
|
"fields": {
|
|
6992
|
+
"access": {
|
|
6993
|
+
"args": {},
|
|
6994
|
+
"deprecationReason": null,
|
|
6995
|
+
"description": null,
|
|
6996
|
+
"id_str": "socketLan___policy___sections___access",
|
|
6997
|
+
"isDeprecated": false,
|
|
6998
|
+
"name": "access",
|
|
6999
|
+
"path": "socketLan.policy.sections.access",
|
|
7000
|
+
"requestStr": "$entityAccess:EntityAccess ",
|
|
7001
|
+
"required": false,
|
|
7002
|
+
"responseStr": "access:$entityAccess ",
|
|
7003
|
+
"type": {
|
|
7004
|
+
"definition": {
|
|
7005
|
+
"description": null,
|
|
7006
|
+
"enumValues": null,
|
|
7007
|
+
"fields": {
|
|
7008
|
+
"action": {
|
|
7009
|
+
"args": {},
|
|
7010
|
+
"deprecationReason": null,
|
|
7011
|
+
"description": null,
|
|
7012
|
+
"id_str": "socketLan___policy___sections___access___action",
|
|
7013
|
+
"isDeprecated": false,
|
|
7014
|
+
"name": "action",
|
|
7015
|
+
"path": "socketLan.policy.sections.access.action",
|
|
7016
|
+
"requestStr": "$action:RBACAction! ",
|
|
7017
|
+
"required": true,
|
|
7018
|
+
"responseStr": "action:$action ",
|
|
7019
|
+
"type": {
|
|
7020
|
+
"definition": {
|
|
7021
|
+
"description": null,
|
|
7022
|
+
"enumValues": [
|
|
7023
|
+
{
|
|
7024
|
+
"deprecationReason": null,
|
|
7025
|
+
"description": null,
|
|
7026
|
+
"isDeprecated": false,
|
|
7027
|
+
"name": "NONE"
|
|
7028
|
+
},
|
|
7029
|
+
{
|
|
7030
|
+
"deprecationReason": null,
|
|
7031
|
+
"description": null,
|
|
7032
|
+
"isDeprecated": false,
|
|
7033
|
+
"name": "VIEW"
|
|
7034
|
+
},
|
|
7035
|
+
{
|
|
7036
|
+
"deprecationReason": null,
|
|
7037
|
+
"description": null,
|
|
7038
|
+
"isDeprecated": false,
|
|
7039
|
+
"name": "EDIT"
|
|
7040
|
+
}
|
|
7041
|
+
],
|
|
7042
|
+
"fields": null,
|
|
7043
|
+
"inputFields": null,
|
|
7044
|
+
"interfaces": null,
|
|
7045
|
+
"kind": "ENUM",
|
|
7046
|
+
"name": "RBACAction",
|
|
7047
|
+
"possibleTypes": null
|
|
7048
|
+
},
|
|
7049
|
+
"indexType": "enum",
|
|
7050
|
+
"kind": [
|
|
7051
|
+
"NON_NULL",
|
|
7052
|
+
"ENUM"
|
|
7053
|
+
],
|
|
7054
|
+
"name": "RBACAction",
|
|
7055
|
+
"non_null": false
|
|
7056
|
+
},
|
|
7057
|
+
"varName": "action"
|
|
7058
|
+
}
|
|
7059
|
+
},
|
|
7060
|
+
"inputFields": null,
|
|
7061
|
+
"interfaces": [],
|
|
7062
|
+
"kind": "OBJECT",
|
|
7063
|
+
"name": "EntityAccess",
|
|
7064
|
+
"possibleTypes": null
|
|
7065
|
+
},
|
|
7066
|
+
"indexType": "object",
|
|
7067
|
+
"kind": [
|
|
7068
|
+
"OBJECT"
|
|
7069
|
+
],
|
|
7070
|
+
"name": "EntityAccess",
|
|
7071
|
+
"non_null": false
|
|
7072
|
+
},
|
|
7073
|
+
"varName": "entityAccess"
|
|
7074
|
+
},
|
|
6952
7075
|
"audit": {
|
|
6953
7076
|
"args": {},
|
|
6954
7077
|
"deprecationReason": null,
|
|
@@ -7158,6 +7281,26 @@
|
|
|
7158
7281
|
"non_null": false
|
|
7159
7282
|
},
|
|
7160
7283
|
"varName": "name"
|
|
7284
|
+
},
|
|
7285
|
+
"subPolicyId": {
|
|
7286
|
+
"args": {},
|
|
7287
|
+
"deprecationReason": null,
|
|
7288
|
+
"description": null,
|
|
7289
|
+
"id_str": "socketLan___policy___sections___section___subPolicyId",
|
|
7290
|
+
"isDeprecated": false,
|
|
7291
|
+
"name": "subPolicyId",
|
|
7292
|
+
"path": "socketLan.policy.sections.section.subPolicyId",
|
|
7293
|
+
"requestStr": "$subPolicyId:ID ",
|
|
7294
|
+
"required": false,
|
|
7295
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
7296
|
+
"type": {
|
|
7297
|
+
"kind": [
|
|
7298
|
+
"SCALAR"
|
|
7299
|
+
],
|
|
7300
|
+
"name": "ID",
|
|
7301
|
+
"non_null": false
|
|
7302
|
+
},
|
|
7303
|
+
"varName": "subPolicyId"
|
|
7161
7304
|
}
|
|
7162
7305
|
},
|
|
7163
7306
|
"inputFields": null,
|