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
|
@@ -1327,6 +1327,26 @@
|
|
|
1327
1327
|
"non_null": false
|
|
1328
1328
|
},
|
|
1329
1329
|
"varName": "name"
|
|
1330
|
+
},
|
|
1331
|
+
"subPolicyId": {
|
|
1332
|
+
"args": {},
|
|
1333
|
+
"deprecationReason": null,
|
|
1334
|
+
"description": null,
|
|
1335
|
+
"id_str": "antiMalwareFileHash___publishPolicyRevision___policy___rules___rule___section___subPolicyId",
|
|
1336
|
+
"isDeprecated": false,
|
|
1337
|
+
"name": "subPolicyId",
|
|
1338
|
+
"path": "antiMalwareFileHash.publishPolicyRevision.policy.rules.rule.section.subPolicyId",
|
|
1339
|
+
"requestStr": "$subPolicyId:ID ",
|
|
1340
|
+
"required": false,
|
|
1341
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
1342
|
+
"type": {
|
|
1343
|
+
"kind": [
|
|
1344
|
+
"SCALAR"
|
|
1345
|
+
],
|
|
1346
|
+
"name": "ID",
|
|
1347
|
+
"non_null": false
|
|
1348
|
+
},
|
|
1349
|
+
"varName": "subPolicyId"
|
|
1330
1350
|
}
|
|
1331
1351
|
},
|
|
1332
1352
|
"inputFields": null,
|
|
@@ -1430,6 +1450,89 @@
|
|
|
1430
1450
|
"description": null,
|
|
1431
1451
|
"enumValues": null,
|
|
1432
1452
|
"fields": {
|
|
1453
|
+
"access": {
|
|
1454
|
+
"args": {},
|
|
1455
|
+
"deprecationReason": null,
|
|
1456
|
+
"description": null,
|
|
1457
|
+
"id_str": "antiMalwareFileHash___publishPolicyRevision___policy___sections___access",
|
|
1458
|
+
"isDeprecated": false,
|
|
1459
|
+
"name": "access",
|
|
1460
|
+
"path": "antiMalwareFileHash.publishPolicyRevision.policy.sections.access",
|
|
1461
|
+
"requestStr": "$entityAccess:EntityAccess ",
|
|
1462
|
+
"required": false,
|
|
1463
|
+
"responseStr": "access:$entityAccess ",
|
|
1464
|
+
"type": {
|
|
1465
|
+
"definition": {
|
|
1466
|
+
"description": null,
|
|
1467
|
+
"enumValues": null,
|
|
1468
|
+
"fields": {
|
|
1469
|
+
"action": {
|
|
1470
|
+
"args": {},
|
|
1471
|
+
"deprecationReason": null,
|
|
1472
|
+
"description": null,
|
|
1473
|
+
"id_str": "antiMalwareFileHash___publishPolicyRevision___policy___sections___access___action",
|
|
1474
|
+
"isDeprecated": false,
|
|
1475
|
+
"name": "action",
|
|
1476
|
+
"path": "antiMalwareFileHash.publishPolicyRevision.policy.sections.access.action",
|
|
1477
|
+
"requestStr": "$action:RBACAction! ",
|
|
1478
|
+
"required": true,
|
|
1479
|
+
"responseStr": "action:$action ",
|
|
1480
|
+
"type": {
|
|
1481
|
+
"definition": {
|
|
1482
|
+
"description": null,
|
|
1483
|
+
"enumValues": [
|
|
1484
|
+
{
|
|
1485
|
+
"deprecationReason": null,
|
|
1486
|
+
"description": null,
|
|
1487
|
+
"isDeprecated": false,
|
|
1488
|
+
"name": "NONE"
|
|
1489
|
+
},
|
|
1490
|
+
{
|
|
1491
|
+
"deprecationReason": null,
|
|
1492
|
+
"description": null,
|
|
1493
|
+
"isDeprecated": false,
|
|
1494
|
+
"name": "VIEW"
|
|
1495
|
+
},
|
|
1496
|
+
{
|
|
1497
|
+
"deprecationReason": null,
|
|
1498
|
+
"description": null,
|
|
1499
|
+
"isDeprecated": false,
|
|
1500
|
+
"name": "EDIT"
|
|
1501
|
+
}
|
|
1502
|
+
],
|
|
1503
|
+
"fields": null,
|
|
1504
|
+
"inputFields": null,
|
|
1505
|
+
"interfaces": null,
|
|
1506
|
+
"kind": "ENUM",
|
|
1507
|
+
"name": "RBACAction",
|
|
1508
|
+
"possibleTypes": null
|
|
1509
|
+
},
|
|
1510
|
+
"indexType": "enum",
|
|
1511
|
+
"kind": [
|
|
1512
|
+
"NON_NULL",
|
|
1513
|
+
"ENUM"
|
|
1514
|
+
],
|
|
1515
|
+
"name": "RBACAction",
|
|
1516
|
+
"non_null": false
|
|
1517
|
+
},
|
|
1518
|
+
"varName": "action"
|
|
1519
|
+
}
|
|
1520
|
+
},
|
|
1521
|
+
"inputFields": null,
|
|
1522
|
+
"interfaces": [],
|
|
1523
|
+
"kind": "OBJECT",
|
|
1524
|
+
"name": "EntityAccess",
|
|
1525
|
+
"possibleTypes": null
|
|
1526
|
+
},
|
|
1527
|
+
"indexType": "object",
|
|
1528
|
+
"kind": [
|
|
1529
|
+
"OBJECT"
|
|
1530
|
+
],
|
|
1531
|
+
"name": "EntityAccess",
|
|
1532
|
+
"non_null": false
|
|
1533
|
+
},
|
|
1534
|
+
"varName": "entityAccess"
|
|
1535
|
+
},
|
|
1433
1536
|
"audit": {
|
|
1434
1537
|
"args": {},
|
|
1435
1538
|
"deprecationReason": null,
|
|
@@ -1639,6 +1742,26 @@
|
|
|
1639
1742
|
"non_null": false
|
|
1640
1743
|
},
|
|
1641
1744
|
"varName": "name"
|
|
1745
|
+
},
|
|
1746
|
+
"subPolicyId": {
|
|
1747
|
+
"args": {},
|
|
1748
|
+
"deprecationReason": null,
|
|
1749
|
+
"description": null,
|
|
1750
|
+
"id_str": "antiMalwareFileHash___publishPolicyRevision___policy___sections___section___subPolicyId",
|
|
1751
|
+
"isDeprecated": false,
|
|
1752
|
+
"name": "subPolicyId",
|
|
1753
|
+
"path": "antiMalwareFileHash.publishPolicyRevision.policy.sections.section.subPolicyId",
|
|
1754
|
+
"requestStr": "$subPolicyId:ID ",
|
|
1755
|
+
"required": false,
|
|
1756
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
1757
|
+
"type": {
|
|
1758
|
+
"kind": [
|
|
1759
|
+
"SCALAR"
|
|
1760
|
+
],
|
|
1761
|
+
"name": "ID",
|
|
1762
|
+
"non_null": false
|
|
1763
|
+
},
|
|
1764
|
+
"varName": "subPolicyId"
|
|
1642
1765
|
}
|
|
1643
1766
|
},
|
|
1644
1767
|
"inputFields": null,
|
|
@@ -1010,6 +1010,26 @@
|
|
|
1010
1010
|
"non_null": false
|
|
1011
1011
|
},
|
|
1012
1012
|
"varName": "name"
|
|
1013
|
+
},
|
|
1014
|
+
"subPolicyId": {
|
|
1015
|
+
"args": {},
|
|
1016
|
+
"deprecationReason": null,
|
|
1017
|
+
"description": null,
|
|
1018
|
+
"id_str": "antiMalwareFileHash___removeRule___rule___rule___section___subPolicyId",
|
|
1019
|
+
"isDeprecated": false,
|
|
1020
|
+
"name": "subPolicyId",
|
|
1021
|
+
"path": "antiMalwareFileHash.removeRule.rule.rule.section.subPolicyId",
|
|
1022
|
+
"requestStr": "$subPolicyId:ID ",
|
|
1023
|
+
"required": false,
|
|
1024
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
1025
|
+
"type": {
|
|
1026
|
+
"kind": [
|
|
1027
|
+
"SCALAR"
|
|
1028
|
+
],
|
|
1029
|
+
"name": "ID",
|
|
1030
|
+
"non_null": false
|
|
1031
|
+
},
|
|
1032
|
+
"varName": "subPolicyId"
|
|
1013
1033
|
}
|
|
1014
1034
|
},
|
|
1015
1035
|
"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": "antiMalwareFileHash___removeSection___section___access",
|
|
601
|
+
"isDeprecated": false,
|
|
602
|
+
"name": "access",
|
|
603
|
+
"path": "antiMalwareFileHash.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": "antiMalwareFileHash___removeSection___section___access___action",
|
|
617
|
+
"isDeprecated": false,
|
|
618
|
+
"name": "action",
|
|
619
|
+
"path": "antiMalwareFileHash.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": "antiMalwareFileHash___removeSection___section___section___subPolicyId",
|
|
894
|
+
"isDeprecated": false,
|
|
895
|
+
"name": "subPolicyId",
|
|
896
|
+
"path": "antiMalwareFileHash.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,
|
|
@@ -1348,6 +1348,26 @@
|
|
|
1348
1348
|
"non_null": false
|
|
1349
1349
|
},
|
|
1350
1350
|
"varName": "name"
|
|
1351
|
+
},
|
|
1352
|
+
"subPolicyId": {
|
|
1353
|
+
"args": {},
|
|
1354
|
+
"deprecationReason": null,
|
|
1355
|
+
"description": null,
|
|
1356
|
+
"id_str": "antiMalwareFileHash___updatePolicy___policy___rules___rule___section___subPolicyId",
|
|
1357
|
+
"isDeprecated": false,
|
|
1358
|
+
"name": "subPolicyId",
|
|
1359
|
+
"path": "antiMalwareFileHash.updatePolicy.policy.rules.rule.section.subPolicyId",
|
|
1360
|
+
"requestStr": "$subPolicyId:ID ",
|
|
1361
|
+
"required": false,
|
|
1362
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
1363
|
+
"type": {
|
|
1364
|
+
"kind": [
|
|
1365
|
+
"SCALAR"
|
|
1366
|
+
],
|
|
1367
|
+
"name": "ID",
|
|
1368
|
+
"non_null": false
|
|
1369
|
+
},
|
|
1370
|
+
"varName": "subPolicyId"
|
|
1351
1371
|
}
|
|
1352
1372
|
},
|
|
1353
1373
|
"inputFields": null,
|
|
@@ -1451,6 +1471,89 @@
|
|
|
1451
1471
|
"description": null,
|
|
1452
1472
|
"enumValues": null,
|
|
1453
1473
|
"fields": {
|
|
1474
|
+
"access": {
|
|
1475
|
+
"args": {},
|
|
1476
|
+
"deprecationReason": null,
|
|
1477
|
+
"description": null,
|
|
1478
|
+
"id_str": "antiMalwareFileHash___updatePolicy___policy___sections___access",
|
|
1479
|
+
"isDeprecated": false,
|
|
1480
|
+
"name": "access",
|
|
1481
|
+
"path": "antiMalwareFileHash.updatePolicy.policy.sections.access",
|
|
1482
|
+
"requestStr": "$entityAccess:EntityAccess ",
|
|
1483
|
+
"required": false,
|
|
1484
|
+
"responseStr": "access:$entityAccess ",
|
|
1485
|
+
"type": {
|
|
1486
|
+
"definition": {
|
|
1487
|
+
"description": null,
|
|
1488
|
+
"enumValues": null,
|
|
1489
|
+
"fields": {
|
|
1490
|
+
"action": {
|
|
1491
|
+
"args": {},
|
|
1492
|
+
"deprecationReason": null,
|
|
1493
|
+
"description": null,
|
|
1494
|
+
"id_str": "antiMalwareFileHash___updatePolicy___policy___sections___access___action",
|
|
1495
|
+
"isDeprecated": false,
|
|
1496
|
+
"name": "action",
|
|
1497
|
+
"path": "antiMalwareFileHash.updatePolicy.policy.sections.access.action",
|
|
1498
|
+
"requestStr": "$action:RBACAction! ",
|
|
1499
|
+
"required": true,
|
|
1500
|
+
"responseStr": "action:$action ",
|
|
1501
|
+
"type": {
|
|
1502
|
+
"definition": {
|
|
1503
|
+
"description": null,
|
|
1504
|
+
"enumValues": [
|
|
1505
|
+
{
|
|
1506
|
+
"deprecationReason": null,
|
|
1507
|
+
"description": null,
|
|
1508
|
+
"isDeprecated": false,
|
|
1509
|
+
"name": "NONE"
|
|
1510
|
+
},
|
|
1511
|
+
{
|
|
1512
|
+
"deprecationReason": null,
|
|
1513
|
+
"description": null,
|
|
1514
|
+
"isDeprecated": false,
|
|
1515
|
+
"name": "VIEW"
|
|
1516
|
+
},
|
|
1517
|
+
{
|
|
1518
|
+
"deprecationReason": null,
|
|
1519
|
+
"description": null,
|
|
1520
|
+
"isDeprecated": false,
|
|
1521
|
+
"name": "EDIT"
|
|
1522
|
+
}
|
|
1523
|
+
],
|
|
1524
|
+
"fields": null,
|
|
1525
|
+
"inputFields": null,
|
|
1526
|
+
"interfaces": null,
|
|
1527
|
+
"kind": "ENUM",
|
|
1528
|
+
"name": "RBACAction",
|
|
1529
|
+
"possibleTypes": null
|
|
1530
|
+
},
|
|
1531
|
+
"indexType": "enum",
|
|
1532
|
+
"kind": [
|
|
1533
|
+
"NON_NULL",
|
|
1534
|
+
"ENUM"
|
|
1535
|
+
],
|
|
1536
|
+
"name": "RBACAction",
|
|
1537
|
+
"non_null": false
|
|
1538
|
+
},
|
|
1539
|
+
"varName": "action"
|
|
1540
|
+
}
|
|
1541
|
+
},
|
|
1542
|
+
"inputFields": null,
|
|
1543
|
+
"interfaces": [],
|
|
1544
|
+
"kind": "OBJECT",
|
|
1545
|
+
"name": "EntityAccess",
|
|
1546
|
+
"possibleTypes": null
|
|
1547
|
+
},
|
|
1548
|
+
"indexType": "object",
|
|
1549
|
+
"kind": [
|
|
1550
|
+
"OBJECT"
|
|
1551
|
+
],
|
|
1552
|
+
"name": "EntityAccess",
|
|
1553
|
+
"non_null": false
|
|
1554
|
+
},
|
|
1555
|
+
"varName": "entityAccess"
|
|
1556
|
+
},
|
|
1454
1557
|
"audit": {
|
|
1455
1558
|
"args": {},
|
|
1456
1559
|
"deprecationReason": null,
|
|
@@ -1660,6 +1763,26 @@
|
|
|
1660
1763
|
"non_null": false
|
|
1661
1764
|
},
|
|
1662
1765
|
"varName": "name"
|
|
1766
|
+
},
|
|
1767
|
+
"subPolicyId": {
|
|
1768
|
+
"args": {},
|
|
1769
|
+
"deprecationReason": null,
|
|
1770
|
+
"description": null,
|
|
1771
|
+
"id_str": "antiMalwareFileHash___updatePolicy___policy___sections___section___subPolicyId",
|
|
1772
|
+
"isDeprecated": false,
|
|
1773
|
+
"name": "subPolicyId",
|
|
1774
|
+
"path": "antiMalwareFileHash.updatePolicy.policy.sections.section.subPolicyId",
|
|
1775
|
+
"requestStr": "$subPolicyId:ID ",
|
|
1776
|
+
"required": false,
|
|
1777
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
1778
|
+
"type": {
|
|
1779
|
+
"kind": [
|
|
1780
|
+
"SCALAR"
|
|
1781
|
+
],
|
|
1782
|
+
"name": "ID",
|
|
1783
|
+
"non_null": false
|
|
1784
|
+
},
|
|
1785
|
+
"varName": "subPolicyId"
|
|
1663
1786
|
}
|
|
1664
1787
|
},
|
|
1665
1788
|
"inputFields": null,
|
|
@@ -1553,6 +1553,26 @@
|
|
|
1553
1553
|
"non_null": false
|
|
1554
1554
|
},
|
|
1555
1555
|
"varName": "name"
|
|
1556
|
+
},
|
|
1557
|
+
"subPolicyId": {
|
|
1558
|
+
"args": {},
|
|
1559
|
+
"deprecationReason": null,
|
|
1560
|
+
"description": null,
|
|
1561
|
+
"id_str": "antiMalwareFileHash___updateRule___rule___rule___section___subPolicyId",
|
|
1562
|
+
"isDeprecated": false,
|
|
1563
|
+
"name": "subPolicyId",
|
|
1564
|
+
"path": "antiMalwareFileHash.updateRule.rule.rule.section.subPolicyId",
|
|
1565
|
+
"requestStr": "$subPolicyId:ID ",
|
|
1566
|
+
"required": false,
|
|
1567
|
+
"responseStr": "subPolicyId:$subPolicyId ",
|
|
1568
|
+
"type": {
|
|
1569
|
+
"kind": [
|
|
1570
|
+
"SCALAR"
|
|
1571
|
+
],
|
|
1572
|
+
"name": "ID",
|
|
1573
|
+
"non_null": false
|
|
1574
|
+
},
|
|
1575
|
+
"varName": "subPolicyId"
|
|
1556
1576
|
}
|
|
1557
1577
|
},
|
|
1558
1578
|
"inputFields": null,
|