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
|
@@ -7001,6 +7001,26 @@
|
|
|
7001
7001
|
"non_null": false
|
|
7002
7002
|
},
|
|
7003
7003
|
"varName": "name"
|
|
7004
|
+
},
|
|
7005
|
+
"subPolicyId": {
|
|
7006
|
+
"args": {},
|
|
7007
|
+
"deprecationReason": null,
|
|
7008
|
+
"description": null,
|
|
7009
|
+
"id_str": "wanNetwork___createPolicyRevision___policy___rules___rule___section___subPolicyId",
|
|
7010
|
+
"isDeprecated": false,
|
|
7011
|
+
"name": "subPolicyId",
|
|
7012
|
+
"path": "wanNetwork.createPolicyRevision.policy.rules.rule.section.subPolicyId",
|
|
7013
|
+
"requestStr": "$subPolicyId:ID ",
|
|
7014
|
+
"required": false,
|
|
7015
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
7016
|
+
"type": {
|
|
7017
|
+
"kind": [
|
|
7018
|
+
"SCALAR"
|
|
7019
|
+
],
|
|
7020
|
+
"name": "ID",
|
|
7021
|
+
"non_null": false
|
|
7022
|
+
},
|
|
7023
|
+
"varName": "subPolicyId"
|
|
7004
7024
|
}
|
|
7005
7025
|
},
|
|
7006
7026
|
"inputFields": null,
|
|
@@ -8069,6 +8089,89 @@
|
|
|
8069
8089
|
"description": null,
|
|
8070
8090
|
"enumValues": null,
|
|
8071
8091
|
"fields": {
|
|
8092
|
+
"access": {
|
|
8093
|
+
"args": {},
|
|
8094
|
+
"deprecationReason": null,
|
|
8095
|
+
"description": null,
|
|
8096
|
+
"id_str": "wanNetwork___createPolicyRevision___policy___sections___access",
|
|
8097
|
+
"isDeprecated": false,
|
|
8098
|
+
"name": "access",
|
|
8099
|
+
"path": "wanNetwork.createPolicyRevision.policy.sections.access",
|
|
8100
|
+
"requestStr": "$entityAccess:EntityAccess ",
|
|
8101
|
+
"required": false,
|
|
8102
|
+
"responseStr": "access:$entityAccess ",
|
|
8103
|
+
"type": {
|
|
8104
|
+
"definition": {
|
|
8105
|
+
"description": null,
|
|
8106
|
+
"enumValues": null,
|
|
8107
|
+
"fields": {
|
|
8108
|
+
"action": {
|
|
8109
|
+
"args": {},
|
|
8110
|
+
"deprecationReason": null,
|
|
8111
|
+
"description": null,
|
|
8112
|
+
"id_str": "wanNetwork___createPolicyRevision___policy___sections___access___action",
|
|
8113
|
+
"isDeprecated": false,
|
|
8114
|
+
"name": "action",
|
|
8115
|
+
"path": "wanNetwork.createPolicyRevision.policy.sections.access.action",
|
|
8116
|
+
"requestStr": "$action:RBACAction! ",
|
|
8117
|
+
"required": true,
|
|
8118
|
+
"responseStr": "action:$action ",
|
|
8119
|
+
"type": {
|
|
8120
|
+
"definition": {
|
|
8121
|
+
"description": null,
|
|
8122
|
+
"enumValues": [
|
|
8123
|
+
{
|
|
8124
|
+
"deprecationReason": null,
|
|
8125
|
+
"description": null,
|
|
8126
|
+
"isDeprecated": false,
|
|
8127
|
+
"name": "NONE"
|
|
8128
|
+
},
|
|
8129
|
+
{
|
|
8130
|
+
"deprecationReason": null,
|
|
8131
|
+
"description": null,
|
|
8132
|
+
"isDeprecated": false,
|
|
8133
|
+
"name": "VIEW"
|
|
8134
|
+
},
|
|
8135
|
+
{
|
|
8136
|
+
"deprecationReason": null,
|
|
8137
|
+
"description": null,
|
|
8138
|
+
"isDeprecated": false,
|
|
8139
|
+
"name": "EDIT"
|
|
8140
|
+
}
|
|
8141
|
+
],
|
|
8142
|
+
"fields": null,
|
|
8143
|
+
"inputFields": null,
|
|
8144
|
+
"interfaces": null,
|
|
8145
|
+
"kind": "ENUM",
|
|
8146
|
+
"name": "RBACAction",
|
|
8147
|
+
"possibleTypes": null
|
|
8148
|
+
},
|
|
8149
|
+
"indexType": "enum",
|
|
8150
|
+
"kind": [
|
|
8151
|
+
"NON_NULL",
|
|
8152
|
+
"ENUM"
|
|
8153
|
+
],
|
|
8154
|
+
"name": "RBACAction",
|
|
8155
|
+
"non_null": false
|
|
8156
|
+
},
|
|
8157
|
+
"varName": "action"
|
|
8158
|
+
}
|
|
8159
|
+
},
|
|
8160
|
+
"inputFields": null,
|
|
8161
|
+
"interfaces": [],
|
|
8162
|
+
"kind": "OBJECT",
|
|
8163
|
+
"name": "EntityAccess",
|
|
8164
|
+
"possibleTypes": null
|
|
8165
|
+
},
|
|
8166
|
+
"indexType": "object",
|
|
8167
|
+
"kind": [
|
|
8168
|
+
"OBJECT"
|
|
8169
|
+
],
|
|
8170
|
+
"name": "EntityAccess",
|
|
8171
|
+
"non_null": false
|
|
8172
|
+
},
|
|
8173
|
+
"varName": "entityAccess"
|
|
8174
|
+
},
|
|
8072
8175
|
"audit": {
|
|
8073
8176
|
"args": {},
|
|
8074
8177
|
"deprecationReason": null,
|
|
@@ -8278,6 +8381,26 @@
|
|
|
8278
8381
|
"non_null": false
|
|
8279
8382
|
},
|
|
8280
8383
|
"varName": "name"
|
|
8384
|
+
},
|
|
8385
|
+
"subPolicyId": {
|
|
8386
|
+
"args": {},
|
|
8387
|
+
"deprecationReason": null,
|
|
8388
|
+
"description": null,
|
|
8389
|
+
"id_str": "wanNetwork___createPolicyRevision___policy___sections___section___subPolicyId",
|
|
8390
|
+
"isDeprecated": false,
|
|
8391
|
+
"name": "subPolicyId",
|
|
8392
|
+
"path": "wanNetwork.createPolicyRevision.policy.sections.section.subPolicyId",
|
|
8393
|
+
"requestStr": "$subPolicyId:ID ",
|
|
8394
|
+
"required": false,
|
|
8395
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
8396
|
+
"type": {
|
|
8397
|
+
"kind": [
|
|
8398
|
+
"SCALAR"
|
|
8399
|
+
],
|
|
8400
|
+
"name": "ID",
|
|
8401
|
+
"non_null": false
|
|
8402
|
+
},
|
|
8403
|
+
"varName": "subPolicyId"
|
|
8281
8404
|
}
|
|
8282
8405
|
},
|
|
8283
8406
|
"inputFields": null,
|
|
@@ -6938,6 +6938,26 @@
|
|
|
6938
6938
|
"non_null": false
|
|
6939
6939
|
},
|
|
6940
6940
|
"varName": "name"
|
|
6941
|
+
},
|
|
6942
|
+
"subPolicyId": {
|
|
6943
|
+
"args": {},
|
|
6944
|
+
"deprecationReason": null,
|
|
6945
|
+
"description": null,
|
|
6946
|
+
"id_str": "wanNetwork___discardPolicyRevision___policy___rules___rule___section___subPolicyId",
|
|
6947
|
+
"isDeprecated": false,
|
|
6948
|
+
"name": "subPolicyId",
|
|
6949
|
+
"path": "wanNetwork.discardPolicyRevision.policy.rules.rule.section.subPolicyId",
|
|
6950
|
+
"requestStr": "$subPolicyId:ID ",
|
|
6951
|
+
"required": false,
|
|
6952
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
6953
|
+
"type": {
|
|
6954
|
+
"kind": [
|
|
6955
|
+
"SCALAR"
|
|
6956
|
+
],
|
|
6957
|
+
"name": "ID",
|
|
6958
|
+
"non_null": false
|
|
6959
|
+
},
|
|
6960
|
+
"varName": "subPolicyId"
|
|
6941
6961
|
}
|
|
6942
6962
|
},
|
|
6943
6963
|
"inputFields": null,
|
|
@@ -8006,6 +8026,89 @@
|
|
|
8006
8026
|
"description": null,
|
|
8007
8027
|
"enumValues": null,
|
|
8008
8028
|
"fields": {
|
|
8029
|
+
"access": {
|
|
8030
|
+
"args": {},
|
|
8031
|
+
"deprecationReason": null,
|
|
8032
|
+
"description": null,
|
|
8033
|
+
"id_str": "wanNetwork___discardPolicyRevision___policy___sections___access",
|
|
8034
|
+
"isDeprecated": false,
|
|
8035
|
+
"name": "access",
|
|
8036
|
+
"path": "wanNetwork.discardPolicyRevision.policy.sections.access",
|
|
8037
|
+
"requestStr": "$entityAccess:EntityAccess ",
|
|
8038
|
+
"required": false,
|
|
8039
|
+
"responseStr": "access:$entityAccess ",
|
|
8040
|
+
"type": {
|
|
8041
|
+
"definition": {
|
|
8042
|
+
"description": null,
|
|
8043
|
+
"enumValues": null,
|
|
8044
|
+
"fields": {
|
|
8045
|
+
"action": {
|
|
8046
|
+
"args": {},
|
|
8047
|
+
"deprecationReason": null,
|
|
8048
|
+
"description": null,
|
|
8049
|
+
"id_str": "wanNetwork___discardPolicyRevision___policy___sections___access___action",
|
|
8050
|
+
"isDeprecated": false,
|
|
8051
|
+
"name": "action",
|
|
8052
|
+
"path": "wanNetwork.discardPolicyRevision.policy.sections.access.action",
|
|
8053
|
+
"requestStr": "$action:RBACAction! ",
|
|
8054
|
+
"required": true,
|
|
8055
|
+
"responseStr": "action:$action ",
|
|
8056
|
+
"type": {
|
|
8057
|
+
"definition": {
|
|
8058
|
+
"description": null,
|
|
8059
|
+
"enumValues": [
|
|
8060
|
+
{
|
|
8061
|
+
"deprecationReason": null,
|
|
8062
|
+
"description": null,
|
|
8063
|
+
"isDeprecated": false,
|
|
8064
|
+
"name": "NONE"
|
|
8065
|
+
},
|
|
8066
|
+
{
|
|
8067
|
+
"deprecationReason": null,
|
|
8068
|
+
"description": null,
|
|
8069
|
+
"isDeprecated": false,
|
|
8070
|
+
"name": "VIEW"
|
|
8071
|
+
},
|
|
8072
|
+
{
|
|
8073
|
+
"deprecationReason": null,
|
|
8074
|
+
"description": null,
|
|
8075
|
+
"isDeprecated": false,
|
|
8076
|
+
"name": "EDIT"
|
|
8077
|
+
}
|
|
8078
|
+
],
|
|
8079
|
+
"fields": null,
|
|
8080
|
+
"inputFields": null,
|
|
8081
|
+
"interfaces": null,
|
|
8082
|
+
"kind": "ENUM",
|
|
8083
|
+
"name": "RBACAction",
|
|
8084
|
+
"possibleTypes": null
|
|
8085
|
+
},
|
|
8086
|
+
"indexType": "enum",
|
|
8087
|
+
"kind": [
|
|
8088
|
+
"NON_NULL",
|
|
8089
|
+
"ENUM"
|
|
8090
|
+
],
|
|
8091
|
+
"name": "RBACAction",
|
|
8092
|
+
"non_null": false
|
|
8093
|
+
},
|
|
8094
|
+
"varName": "action"
|
|
8095
|
+
}
|
|
8096
|
+
},
|
|
8097
|
+
"inputFields": null,
|
|
8098
|
+
"interfaces": [],
|
|
8099
|
+
"kind": "OBJECT",
|
|
8100
|
+
"name": "EntityAccess",
|
|
8101
|
+
"possibleTypes": null
|
|
8102
|
+
},
|
|
8103
|
+
"indexType": "object",
|
|
8104
|
+
"kind": [
|
|
8105
|
+
"OBJECT"
|
|
8106
|
+
],
|
|
8107
|
+
"name": "EntityAccess",
|
|
8108
|
+
"non_null": false
|
|
8109
|
+
},
|
|
8110
|
+
"varName": "entityAccess"
|
|
8111
|
+
},
|
|
8009
8112
|
"audit": {
|
|
8010
8113
|
"args": {},
|
|
8011
8114
|
"deprecationReason": null,
|
|
@@ -8215,6 +8318,26 @@
|
|
|
8215
8318
|
"non_null": false
|
|
8216
8319
|
},
|
|
8217
8320
|
"varName": "name"
|
|
8321
|
+
},
|
|
8322
|
+
"subPolicyId": {
|
|
8323
|
+
"args": {},
|
|
8324
|
+
"deprecationReason": null,
|
|
8325
|
+
"description": null,
|
|
8326
|
+
"id_str": "wanNetwork___discardPolicyRevision___policy___sections___section___subPolicyId",
|
|
8327
|
+
"isDeprecated": false,
|
|
8328
|
+
"name": "subPolicyId",
|
|
8329
|
+
"path": "wanNetwork.discardPolicyRevision.policy.sections.section.subPolicyId",
|
|
8330
|
+
"requestStr": "$subPolicyId:ID ",
|
|
8331
|
+
"required": false,
|
|
8332
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
8333
|
+
"type": {
|
|
8334
|
+
"kind": [
|
|
8335
|
+
"SCALAR"
|
|
8336
|
+
],
|
|
8337
|
+
"name": "ID",
|
|
8338
|
+
"non_null": false
|
|
8339
|
+
},
|
|
8340
|
+
"varName": "subPolicyId"
|
|
8218
8341
|
}
|
|
8219
8342
|
},
|
|
8220
8343
|
"inputFields": null,
|
|
@@ -7017,6 +7017,26 @@
|
|
|
7017
7017
|
"non_null": false
|
|
7018
7018
|
},
|
|
7019
7019
|
"varName": "name"
|
|
7020
|
+
},
|
|
7021
|
+
"subPolicyId": {
|
|
7022
|
+
"args": {},
|
|
7023
|
+
"deprecationReason": null,
|
|
7024
|
+
"description": null,
|
|
7025
|
+
"id_str": "wanNetwork___moveRule___rule___rule___section___subPolicyId",
|
|
7026
|
+
"isDeprecated": false,
|
|
7027
|
+
"name": "subPolicyId",
|
|
7028
|
+
"path": "wanNetwork.moveRule.rule.rule.section.subPolicyId",
|
|
7029
|
+
"requestStr": "$subPolicyId:ID ",
|
|
7030
|
+
"required": false,
|
|
7031
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
7032
|
+
"type": {
|
|
7033
|
+
"kind": [
|
|
7034
|
+
"SCALAR"
|
|
7035
|
+
],
|
|
7036
|
+
"name": "ID",
|
|
7037
|
+
"non_null": false
|
|
7038
|
+
},
|
|
7039
|
+
"varName": "subPolicyId"
|
|
7020
7040
|
}
|
|
7021
7041
|
},
|
|
7022
7042
|
"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": "wanNetwork___moveSection___section___access",
|
|
892
|
+
"isDeprecated": false,
|
|
893
|
+
"name": "access",
|
|
894
|
+
"path": "wanNetwork.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": "wanNetwork___moveSection___section___access___action",
|
|
908
|
+
"isDeprecated": false,
|
|
909
|
+
"name": "action",
|
|
910
|
+
"path": "wanNetwork.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": "wanNetwork___moveSection___section___section___subPolicyId",
|
|
1185
|
+
"isDeprecated": false,
|
|
1186
|
+
"name": "subPolicyId",
|
|
1187
|
+
"path": "wanNetwork.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,
|