catocli 3.0.14__py3-none-any.whl → 3.0.22__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of catocli might be problematic. Click here for more details.

Files changed (192) hide show
  1. catocli/Utils/clidriver.py +16 -8
  2. catocli/Utils/formatter_account_metrics.py +544 -0
  3. catocli/Utils/formatter_app_stats.py +184 -0
  4. catocli/Utils/formatter_app_stats_timeseries.py +377 -0
  5. catocli/Utils/formatter_events_timeseries.py +459 -0
  6. catocli/Utils/formatter_socket_port_metrics.py +189 -0
  7. catocli/Utils/formatter_socket_port_metrics_timeseries.py +339 -0
  8. catocli/Utils/formatter_utils.py +251 -0
  9. catocli/Utils/help_formatter.py +1 -1
  10. catocli/__init__.py +1 -1
  11. catocli/clisettings.json +37 -5
  12. catocli/parsers/custom/query_eventsFeed/README.md +94 -0
  13. catocli/parsers/custom/scim/README.md +346 -0
  14. catocli/parsers/custom/scim/scim_client.py +132 -26
  15. catocli/parsers/custom/scim/scim_commands.py +14 -56
  16. catocli/parsers/customParserApiClient.py +213 -65
  17. catocli/parsers/mutation_policy/__init__.py +405 -405
  18. catocli/parsers/mutation_site/__init__.py +15 -15
  19. catocli/parsers/mutation_sites/__init__.py +15 -15
  20. catocli/parsers/query_accountMetrics/README.md +99 -9
  21. catocli/parsers/query_accountMetrics/__init__.py +6 -0
  22. catocli/parsers/query_appStats/README.md +11 -11
  23. catocli/parsers/query_appStats/__init__.py +4 -2
  24. catocli/parsers/query_appStatsTimeSeries/README.md +10 -10
  25. catocli/parsers/query_appStatsTimeSeries/__init__.py +4 -2
  26. catocli/parsers/query_auditFeed/README.md +9 -9
  27. catocli/parsers/query_events/README.md +9 -9
  28. catocli/parsers/query_eventsTimeSeries/README.md +289 -9
  29. catocli/parsers/query_eventsTimeSeries/__init__.py +6 -0
  30. catocli/parsers/query_policy/__init__.py +42 -42
  31. catocli/parsers/query_socketPortMetrics/README.md +53 -9
  32. catocli/parsers/query_socketPortMetrics/__init__.py +6 -0
  33. catocli/parsers/query_socketPortMetricsTimeSeries/README.md +92 -9
  34. catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py +4 -2
  35. {catocli-3.0.14.dist-info → catocli-3.0.22.dist-info}/METADATA +1 -1
  36. {catocli-3.0.14.dist-info → catocli-3.0.22.dist-info}/RECORD +187 -183
  37. {catocli-3.0.14.dist-info → catocli-3.0.22.dist-info}/top_level.txt +0 -1
  38. models/mutation.policy.antiMalwareFileHash.addRule.json +20 -0
  39. models/mutation.policy.antiMalwareFileHash.addSection.json +103 -0
  40. models/mutation.policy.antiMalwareFileHash.createPolicyRevision.json +123 -0
  41. models/mutation.policy.antiMalwareFileHash.discardPolicyRevision.json +123 -0
  42. models/mutation.policy.antiMalwareFileHash.moveRule.json +20 -0
  43. models/mutation.policy.antiMalwareFileHash.moveSection.json +103 -0
  44. models/mutation.policy.antiMalwareFileHash.publishPolicyRevision.json +123 -0
  45. models/mutation.policy.antiMalwareFileHash.removeRule.json +20 -0
  46. models/mutation.policy.antiMalwareFileHash.removeSection.json +103 -0
  47. models/mutation.policy.antiMalwareFileHash.updatePolicy.json +123 -0
  48. models/mutation.policy.antiMalwareFileHash.updateRule.json +20 -0
  49. models/mutation.policy.antiMalwareFileHash.updateSection.json +103 -0
  50. models/mutation.policy.appTenantRestriction.addRule.json +20 -0
  51. models/mutation.policy.appTenantRestriction.addSection.json +103 -0
  52. models/mutation.policy.appTenantRestriction.createPolicyRevision.json +123 -0
  53. models/mutation.policy.appTenantRestriction.discardPolicyRevision.json +123 -0
  54. models/mutation.policy.appTenantRestriction.moveRule.json +20 -0
  55. models/mutation.policy.appTenantRestriction.moveSection.json +103 -0
  56. models/mutation.policy.appTenantRestriction.publishPolicyRevision.json +123 -0
  57. models/mutation.policy.appTenantRestriction.removeRule.json +20 -0
  58. models/mutation.policy.appTenantRestriction.removeSection.json +103 -0
  59. models/mutation.policy.appTenantRestriction.updatePolicy.json +123 -0
  60. models/mutation.policy.appTenantRestriction.updateRule.json +20 -0
  61. models/mutation.policy.appTenantRestriction.updateSection.json +103 -0
  62. models/mutation.policy.applicationControl.addRule.json +20 -0
  63. models/mutation.policy.applicationControl.addSection.json +103 -0
  64. models/mutation.policy.applicationControl.createPolicyRevision.json +123 -0
  65. models/mutation.policy.applicationControl.discardPolicyRevision.json +123 -0
  66. models/mutation.policy.applicationControl.moveRule.json +20 -0
  67. models/mutation.policy.applicationControl.moveSection.json +103 -0
  68. models/mutation.policy.applicationControl.publishPolicyRevision.json +123 -0
  69. models/mutation.policy.applicationControl.removeRule.json +20 -0
  70. models/mutation.policy.applicationControl.removeSection.json +103 -0
  71. models/mutation.policy.applicationControl.updatePolicy.json +123 -0
  72. models/mutation.policy.applicationControl.updateRule.json +20 -0
  73. models/mutation.policy.applicationControl.updateSection.json +103 -0
  74. models/mutation.policy.dynamicIpAllocation.addRule.json +20 -0
  75. models/mutation.policy.dynamicIpAllocation.addSection.json +103 -0
  76. models/mutation.policy.dynamicIpAllocation.createPolicyRevision.json +123 -0
  77. models/mutation.policy.dynamicIpAllocation.discardPolicyRevision.json +123 -0
  78. models/mutation.policy.dynamicIpAllocation.moveRule.json +20 -0
  79. models/mutation.policy.dynamicIpAllocation.moveSection.json +103 -0
  80. models/mutation.policy.dynamicIpAllocation.publishPolicyRevision.json +123 -0
  81. models/mutation.policy.dynamicIpAllocation.removeRule.json +20 -0
  82. models/mutation.policy.dynamicIpAllocation.removeSection.json +103 -0
  83. models/mutation.policy.dynamicIpAllocation.updatePolicy.json +123 -0
  84. models/mutation.policy.dynamicIpAllocation.updateRule.json +20 -0
  85. models/mutation.policy.dynamicIpAllocation.updateSection.json +103 -0
  86. models/mutation.policy.internetFirewall.addRule.json +20 -0
  87. models/mutation.policy.internetFirewall.addSection.json +103 -0
  88. models/mutation.policy.internetFirewall.createPolicyRevision.json +123 -0
  89. models/mutation.policy.internetFirewall.discardPolicyRevision.json +123 -0
  90. models/mutation.policy.internetFirewall.moveRule.json +20 -0
  91. models/mutation.policy.internetFirewall.moveSection.json +103 -0
  92. models/mutation.policy.internetFirewall.publishPolicyRevision.json +123 -0
  93. models/mutation.policy.internetFirewall.removeRule.json +20 -0
  94. models/mutation.policy.internetFirewall.removeSection.json +103 -0
  95. models/mutation.policy.internetFirewall.updatePolicy.json +123 -0
  96. models/mutation.policy.internetFirewall.updateRule.json +20 -0
  97. models/mutation.policy.internetFirewall.updateSection.json +103 -0
  98. models/mutation.policy.remotePortFwd.addRule.json +20 -0
  99. models/mutation.policy.remotePortFwd.addSection.json +103 -0
  100. models/mutation.policy.remotePortFwd.createPolicyRevision.json +123 -0
  101. models/mutation.policy.remotePortFwd.discardPolicyRevision.json +123 -0
  102. models/mutation.policy.remotePortFwd.moveRule.json +20 -0
  103. models/mutation.policy.remotePortFwd.moveSection.json +103 -0
  104. models/mutation.policy.remotePortFwd.publishPolicyRevision.json +123 -0
  105. models/mutation.policy.remotePortFwd.removeRule.json +20 -0
  106. models/mutation.policy.remotePortFwd.removeSection.json +103 -0
  107. models/mutation.policy.remotePortFwd.updatePolicy.json +123 -0
  108. models/mutation.policy.remotePortFwd.updateRule.json +20 -0
  109. models/mutation.policy.remotePortFwd.updateSection.json +103 -0
  110. models/mutation.policy.socketLan.addRule.json +40 -0
  111. models/mutation.policy.socketLan.addSection.json +103 -0
  112. models/mutation.policy.socketLan.createPolicyRevision.json +143 -0
  113. models/mutation.policy.socketLan.discardPolicyRevision.json +143 -0
  114. models/mutation.policy.socketLan.moveRule.json +40 -0
  115. models/mutation.policy.socketLan.moveSection.json +103 -0
  116. models/mutation.policy.socketLan.publishPolicyRevision.json +143 -0
  117. models/mutation.policy.socketLan.removeRule.json +40 -0
  118. models/mutation.policy.socketLan.removeSection.json +103 -0
  119. models/mutation.policy.socketLan.updatePolicy.json +143 -0
  120. models/mutation.policy.socketLan.updateRule.json +40 -0
  121. models/mutation.policy.socketLan.updateSection.json +103 -0
  122. models/mutation.policy.terminalServer.addRule.json +20 -0
  123. models/mutation.policy.terminalServer.addSection.json +103 -0
  124. models/mutation.policy.terminalServer.createPolicyRevision.json +123 -0
  125. models/mutation.policy.terminalServer.discardPolicyRevision.json +123 -0
  126. models/mutation.policy.terminalServer.moveRule.json +20 -0
  127. models/mutation.policy.terminalServer.moveSection.json +103 -0
  128. models/mutation.policy.terminalServer.publishPolicyRevision.json +123 -0
  129. models/mutation.policy.terminalServer.removeRule.json +20 -0
  130. models/mutation.policy.terminalServer.removeSection.json +103 -0
  131. models/mutation.policy.terminalServer.updatePolicy.json +123 -0
  132. models/mutation.policy.terminalServer.updateRule.json +20 -0
  133. models/mutation.policy.terminalServer.updateSection.json +103 -0
  134. models/mutation.policy.tlsInspect.addRule.json +20 -0
  135. models/mutation.policy.tlsInspect.addSection.json +103 -0
  136. models/mutation.policy.tlsInspect.createPolicyRevision.json +123 -0
  137. models/mutation.policy.tlsInspect.discardPolicyRevision.json +123 -0
  138. models/mutation.policy.tlsInspect.moveRule.json +20 -0
  139. models/mutation.policy.tlsInspect.moveSection.json +103 -0
  140. models/mutation.policy.tlsInspect.publishPolicyRevision.json +123 -0
  141. models/mutation.policy.tlsInspect.removeRule.json +20 -0
  142. models/mutation.policy.tlsInspect.removeSection.json +103 -0
  143. models/mutation.policy.tlsInspect.updatePolicy.json +123 -0
  144. models/mutation.policy.tlsInspect.updateRule.json +20 -0
  145. models/mutation.policy.tlsInspect.updateSection.json +103 -0
  146. models/mutation.policy.wanFirewall.addRule.json +20 -0
  147. models/mutation.policy.wanFirewall.addSection.json +103 -0
  148. models/mutation.policy.wanFirewall.createPolicyRevision.json +123 -0
  149. models/mutation.policy.wanFirewall.discardPolicyRevision.json +123 -0
  150. models/mutation.policy.wanFirewall.moveRule.json +20 -0
  151. models/mutation.policy.wanFirewall.moveSection.json +103 -0
  152. models/mutation.policy.wanFirewall.publishPolicyRevision.json +123 -0
  153. models/mutation.policy.wanFirewall.removeRule.json +20 -0
  154. models/mutation.policy.wanFirewall.removeSection.json +103 -0
  155. models/mutation.policy.wanFirewall.updatePolicy.json +123 -0
  156. models/mutation.policy.wanFirewall.updateRule.json +20 -0
  157. models/mutation.policy.wanFirewall.updateSection.json +103 -0
  158. models/mutation.policy.wanNetwork.addRule.json +20 -0
  159. models/mutation.policy.wanNetwork.addSection.json +103 -0
  160. models/mutation.policy.wanNetwork.createPolicyRevision.json +123 -0
  161. models/mutation.policy.wanNetwork.discardPolicyRevision.json +123 -0
  162. models/mutation.policy.wanNetwork.moveRule.json +20 -0
  163. models/mutation.policy.wanNetwork.moveSection.json +103 -0
  164. models/mutation.policy.wanNetwork.publishPolicyRevision.json +123 -0
  165. models/mutation.policy.wanNetwork.removeRule.json +20 -0
  166. models/mutation.policy.wanNetwork.removeSection.json +103 -0
  167. models/mutation.policy.wanNetwork.updatePolicy.json +123 -0
  168. models/mutation.policy.wanNetwork.updateRule.json +20 -0
  169. models/mutation.policy.wanNetwork.updateSection.json +103 -0
  170. models/mutation.xdr.analystFeedback.json +822 -87
  171. models/query.policy.antiMalwareFileHash.policy.json +123 -0
  172. models/query.policy.appTenantRestriction.policy.json +123 -0
  173. models/query.policy.applicationControl.policy.json +123 -0
  174. models/query.policy.dynamicIpAllocation.policy.json +123 -0
  175. models/query.policy.internetFirewall.policy.json +123 -0
  176. models/query.policy.remotePortFwd.policy.json +123 -0
  177. models/query.policy.socketLan.policy.json +143 -0
  178. models/query.policy.terminalServer.policy.json +123 -0
  179. models/query.policy.tlsInspect.policy.json +123 -0
  180. models/query.policy.wanFirewall.policy.json +123 -0
  181. models/query.policy.wanNetwork.policy.json +123 -0
  182. models/query.xdr.stories.json +822 -87
  183. models/query.xdr.story.json +822 -87
  184. schema/catolib.py +34 -17
  185. catocli/Utils/csv_formatter.py +0 -663
  186. scripts/catolib.py +0 -62
  187. scripts/export_if_rules_to_json.py +0 -188
  188. scripts/export_wf_rules_to_json.py +0 -111
  189. scripts/import_wf_rules_to_tfstate.py +0 -331
  190. {catocli-3.0.14.dist-info → catocli-3.0.22.dist-info}/WHEEL +0 -0
  191. {catocli-3.0.14.dist-info → catocli-3.0.22.dist-info}/entry_points.txt +0 -0
  192. {catocli-3.0.14.dist-info → catocli-3.0.22.dist-info}/licenses/LICENSE +0 -0
@@ -1162,6 +1162,26 @@
1162
1162
  "non_null": false
1163
1163
  },
1164
1164
  "varName": "name"
1165
+ },
1166
+ "subPolicyId": {
1167
+ "args": {},
1168
+ "deprecationReason": null,
1169
+ "description": null,
1170
+ "id_str": "antiMalwareFileHash___policy___rules___rule___section___subPolicyId",
1171
+ "isDeprecated": false,
1172
+ "name": "subPolicyId",
1173
+ "path": "antiMalwareFileHash.policy.rules.rule.section.subPolicyId",
1174
+ "requestStr": "$subPolicyId:ID ",
1175
+ "required": false,
1176
+ "responseStr": "subPolicyId:$subPolicyId ",
1177
+ "type": {
1178
+ "kind": [
1179
+ "SCALAR"
1180
+ ],
1181
+ "name": "ID",
1182
+ "non_null": false
1183
+ },
1184
+ "varName": "subPolicyId"
1165
1185
  }
1166
1186
  },
1167
1187
  "inputFields": null,
@@ -1265,6 +1285,89 @@
1265
1285
  "description": null,
1266
1286
  "enumValues": null,
1267
1287
  "fields": {
1288
+ "access": {
1289
+ "args": {},
1290
+ "deprecationReason": null,
1291
+ "description": null,
1292
+ "id_str": "antiMalwareFileHash___policy___sections___access",
1293
+ "isDeprecated": false,
1294
+ "name": "access",
1295
+ "path": "antiMalwareFileHash.policy.sections.access",
1296
+ "requestStr": "$entityAccess:EntityAccess ",
1297
+ "required": false,
1298
+ "responseStr": "access:$entityAccess ",
1299
+ "type": {
1300
+ "definition": {
1301
+ "description": null,
1302
+ "enumValues": null,
1303
+ "fields": {
1304
+ "action": {
1305
+ "args": {},
1306
+ "deprecationReason": null,
1307
+ "description": null,
1308
+ "id_str": "antiMalwareFileHash___policy___sections___access___action",
1309
+ "isDeprecated": false,
1310
+ "name": "action",
1311
+ "path": "antiMalwareFileHash.policy.sections.access.action",
1312
+ "requestStr": "$action:RBACAction! ",
1313
+ "required": true,
1314
+ "responseStr": "action:$action ",
1315
+ "type": {
1316
+ "definition": {
1317
+ "description": null,
1318
+ "enumValues": [
1319
+ {
1320
+ "deprecationReason": null,
1321
+ "description": null,
1322
+ "isDeprecated": false,
1323
+ "name": "NONE"
1324
+ },
1325
+ {
1326
+ "deprecationReason": null,
1327
+ "description": null,
1328
+ "isDeprecated": false,
1329
+ "name": "VIEW"
1330
+ },
1331
+ {
1332
+ "deprecationReason": null,
1333
+ "description": null,
1334
+ "isDeprecated": false,
1335
+ "name": "EDIT"
1336
+ }
1337
+ ],
1338
+ "fields": null,
1339
+ "inputFields": null,
1340
+ "interfaces": null,
1341
+ "kind": "ENUM",
1342
+ "name": "RBACAction",
1343
+ "possibleTypes": null
1344
+ },
1345
+ "indexType": "enum",
1346
+ "kind": [
1347
+ "NON_NULL",
1348
+ "ENUM"
1349
+ ],
1350
+ "name": "RBACAction",
1351
+ "non_null": false
1352
+ },
1353
+ "varName": "action"
1354
+ }
1355
+ },
1356
+ "inputFields": null,
1357
+ "interfaces": [],
1358
+ "kind": "OBJECT",
1359
+ "name": "EntityAccess",
1360
+ "possibleTypes": null
1361
+ },
1362
+ "indexType": "object",
1363
+ "kind": [
1364
+ "OBJECT"
1365
+ ],
1366
+ "name": "EntityAccess",
1367
+ "non_null": false
1368
+ },
1369
+ "varName": "entityAccess"
1370
+ },
1268
1371
  "audit": {
1269
1372
  "args": {},
1270
1373
  "deprecationReason": null,
@@ -1474,6 +1577,26 @@
1474
1577
  "non_null": false
1475
1578
  },
1476
1579
  "varName": "name"
1580
+ },
1581
+ "subPolicyId": {
1582
+ "args": {},
1583
+ "deprecationReason": null,
1584
+ "description": null,
1585
+ "id_str": "antiMalwareFileHash___policy___sections___section___subPolicyId",
1586
+ "isDeprecated": false,
1587
+ "name": "subPolicyId",
1588
+ "path": "antiMalwareFileHash.policy.sections.section.subPolicyId",
1589
+ "requestStr": "$subPolicyId:ID ",
1590
+ "required": false,
1591
+ "responseStr": "subPolicyId:$subPolicyId ",
1592
+ "type": {
1593
+ "kind": [
1594
+ "SCALAR"
1595
+ ],
1596
+ "name": "ID",
1597
+ "non_null": false
1598
+ },
1599
+ "varName": "subPolicyId"
1477
1600
  }
1478
1601
  },
1479
1602
  "inputFields": null,
@@ -1593,6 +1593,26 @@
1593
1593
  "non_null": false
1594
1594
  },
1595
1595
  "varName": "name"
1596
+ },
1597
+ "subPolicyId": {
1598
+ "args": {},
1599
+ "deprecationReason": null,
1600
+ "description": null,
1601
+ "id_str": "appTenantRestriction___policy___rules___rule___section___subPolicyId",
1602
+ "isDeprecated": false,
1603
+ "name": "subPolicyId",
1604
+ "path": "appTenantRestriction.policy.rules.rule.section.subPolicyId",
1605
+ "requestStr": "$subPolicyId:ID ",
1606
+ "required": false,
1607
+ "responseStr": "subPolicyId:$subPolicyId ",
1608
+ "type": {
1609
+ "kind": [
1610
+ "SCALAR"
1611
+ ],
1612
+ "name": "ID",
1613
+ "non_null": false
1614
+ },
1615
+ "varName": "subPolicyId"
1596
1616
  }
1597
1617
  },
1598
1618
  "inputFields": null,
@@ -2795,6 +2815,89 @@
2795
2815
  "description": null,
2796
2816
  "enumValues": null,
2797
2817
  "fields": {
2818
+ "access": {
2819
+ "args": {},
2820
+ "deprecationReason": null,
2821
+ "description": null,
2822
+ "id_str": "appTenantRestriction___policy___sections___access",
2823
+ "isDeprecated": false,
2824
+ "name": "access",
2825
+ "path": "appTenantRestriction.policy.sections.access",
2826
+ "requestStr": "$entityAccess:EntityAccess ",
2827
+ "required": false,
2828
+ "responseStr": "access:$entityAccess ",
2829
+ "type": {
2830
+ "definition": {
2831
+ "description": null,
2832
+ "enumValues": null,
2833
+ "fields": {
2834
+ "action": {
2835
+ "args": {},
2836
+ "deprecationReason": null,
2837
+ "description": null,
2838
+ "id_str": "appTenantRestriction___policy___sections___access___action",
2839
+ "isDeprecated": false,
2840
+ "name": "action",
2841
+ "path": "appTenantRestriction.policy.sections.access.action",
2842
+ "requestStr": "$action:RBACAction! ",
2843
+ "required": true,
2844
+ "responseStr": "action:$action ",
2845
+ "type": {
2846
+ "definition": {
2847
+ "description": null,
2848
+ "enumValues": [
2849
+ {
2850
+ "deprecationReason": null,
2851
+ "description": null,
2852
+ "isDeprecated": false,
2853
+ "name": "NONE"
2854
+ },
2855
+ {
2856
+ "deprecationReason": null,
2857
+ "description": null,
2858
+ "isDeprecated": false,
2859
+ "name": "VIEW"
2860
+ },
2861
+ {
2862
+ "deprecationReason": null,
2863
+ "description": null,
2864
+ "isDeprecated": false,
2865
+ "name": "EDIT"
2866
+ }
2867
+ ],
2868
+ "fields": null,
2869
+ "inputFields": null,
2870
+ "interfaces": null,
2871
+ "kind": "ENUM",
2872
+ "name": "RBACAction",
2873
+ "possibleTypes": null
2874
+ },
2875
+ "indexType": "enum",
2876
+ "kind": [
2877
+ "NON_NULL",
2878
+ "ENUM"
2879
+ ],
2880
+ "name": "RBACAction",
2881
+ "non_null": false
2882
+ },
2883
+ "varName": "action"
2884
+ }
2885
+ },
2886
+ "inputFields": null,
2887
+ "interfaces": [],
2888
+ "kind": "OBJECT",
2889
+ "name": "EntityAccess",
2890
+ "possibleTypes": null
2891
+ },
2892
+ "indexType": "object",
2893
+ "kind": [
2894
+ "OBJECT"
2895
+ ],
2896
+ "name": "EntityAccess",
2897
+ "non_null": false
2898
+ },
2899
+ "varName": "entityAccess"
2900
+ },
2798
2901
  "audit": {
2799
2902
  "args": {},
2800
2903
  "deprecationReason": null,
@@ -3004,6 +3107,26 @@
3004
3107
  "non_null": false
3005
3108
  },
3006
3109
  "varName": "name"
3110
+ },
3111
+ "subPolicyId": {
3112
+ "args": {},
3113
+ "deprecationReason": null,
3114
+ "description": null,
3115
+ "id_str": "appTenantRestriction___policy___sections___section___subPolicyId",
3116
+ "isDeprecated": false,
3117
+ "name": "subPolicyId",
3118
+ "path": "appTenantRestriction.policy.sections.section.subPolicyId",
3119
+ "requestStr": "$subPolicyId:ID ",
3120
+ "required": false,
3121
+ "responseStr": "subPolicyId:$subPolicyId ",
3122
+ "type": {
3123
+ "kind": [
3124
+ "SCALAR"
3125
+ ],
3126
+ "name": "ID",
3127
+ "non_null": false
3128
+ },
3129
+ "varName": "subPolicyId"
3007
3130
  }
3008
3131
  },
3009
3132
  "inputFields": null,
@@ -13390,6 +13390,26 @@
13390
13390
  "non_null": false
13391
13391
  },
13392
13392
  "varName": "name"
13393
+ },
13394
+ "subPolicyId": {
13395
+ "args": {},
13396
+ "deprecationReason": null,
13397
+ "description": null,
13398
+ "id_str": "applicationControl___policy___rules___rule___section___subPolicyId",
13399
+ "isDeprecated": false,
13400
+ "name": "subPolicyId",
13401
+ "path": "applicationControl.policy.rules.rule.section.subPolicyId",
13402
+ "requestStr": "$subPolicyId:ID ",
13403
+ "required": false,
13404
+ "responseStr": "subPolicyId:$subPolicyId ",
13405
+ "type": {
13406
+ "kind": [
13407
+ "SCALAR"
13408
+ ],
13409
+ "name": "ID",
13410
+ "non_null": false
13411
+ },
13412
+ "varName": "subPolicyId"
13393
13413
  }
13394
13414
  },
13395
13415
  "inputFields": null,
@@ -13472,6 +13492,89 @@
13472
13492
  "description": null,
13473
13493
  "enumValues": null,
13474
13494
  "fields": {
13495
+ "access": {
13496
+ "args": {},
13497
+ "deprecationReason": null,
13498
+ "description": null,
13499
+ "id_str": "applicationControl___policy___sections___access",
13500
+ "isDeprecated": false,
13501
+ "name": "access",
13502
+ "path": "applicationControl.policy.sections.access",
13503
+ "requestStr": "$entityAccess:EntityAccess ",
13504
+ "required": false,
13505
+ "responseStr": "access:$entityAccess ",
13506
+ "type": {
13507
+ "definition": {
13508
+ "description": null,
13509
+ "enumValues": null,
13510
+ "fields": {
13511
+ "action": {
13512
+ "args": {},
13513
+ "deprecationReason": null,
13514
+ "description": null,
13515
+ "id_str": "applicationControl___policy___sections___access___action",
13516
+ "isDeprecated": false,
13517
+ "name": "action",
13518
+ "path": "applicationControl.policy.sections.access.action",
13519
+ "requestStr": "$action:RBACAction! ",
13520
+ "required": true,
13521
+ "responseStr": "action:$action ",
13522
+ "type": {
13523
+ "definition": {
13524
+ "description": null,
13525
+ "enumValues": [
13526
+ {
13527
+ "deprecationReason": null,
13528
+ "description": null,
13529
+ "isDeprecated": false,
13530
+ "name": "NONE"
13531
+ },
13532
+ {
13533
+ "deprecationReason": null,
13534
+ "description": null,
13535
+ "isDeprecated": false,
13536
+ "name": "VIEW"
13537
+ },
13538
+ {
13539
+ "deprecationReason": null,
13540
+ "description": null,
13541
+ "isDeprecated": false,
13542
+ "name": "EDIT"
13543
+ }
13544
+ ],
13545
+ "fields": null,
13546
+ "inputFields": null,
13547
+ "interfaces": null,
13548
+ "kind": "ENUM",
13549
+ "name": "RBACAction",
13550
+ "possibleTypes": null
13551
+ },
13552
+ "indexType": "enum",
13553
+ "kind": [
13554
+ "NON_NULL",
13555
+ "ENUM"
13556
+ ],
13557
+ "name": "RBACAction",
13558
+ "non_null": false
13559
+ },
13560
+ "varName": "action"
13561
+ }
13562
+ },
13563
+ "inputFields": null,
13564
+ "interfaces": [],
13565
+ "kind": "OBJECT",
13566
+ "name": "EntityAccess",
13567
+ "possibleTypes": null
13568
+ },
13569
+ "indexType": "object",
13570
+ "kind": [
13571
+ "OBJECT"
13572
+ ],
13573
+ "name": "EntityAccess",
13574
+ "non_null": false
13575
+ },
13576
+ "varName": "entityAccess"
13577
+ },
13475
13578
  "audit": {
13476
13579
  "args": {},
13477
13580
  "deprecationReason": null,
@@ -13681,6 +13784,26 @@
13681
13784
  "non_null": false
13682
13785
  },
13683
13786
  "varName": "name"
13787
+ },
13788
+ "subPolicyId": {
13789
+ "args": {},
13790
+ "deprecationReason": null,
13791
+ "description": null,
13792
+ "id_str": "applicationControl___policy___sections___section___subPolicyId",
13793
+ "isDeprecated": false,
13794
+ "name": "subPolicyId",
13795
+ "path": "applicationControl.policy.sections.section.subPolicyId",
13796
+ "requestStr": "$subPolicyId:ID ",
13797
+ "required": false,
13798
+ "responseStr": "subPolicyId:$subPolicyId ",
13799
+ "type": {
13800
+ "kind": [
13801
+ "SCALAR"
13802
+ ],
13803
+ "name": "ID",
13804
+ "non_null": false
13805
+ },
13806
+ "varName": "subPolicyId"
13684
13807
  }
13685
13808
  },
13686
13809
  "inputFields": null,
@@ -1343,6 +1343,26 @@
1343
1343
  "non_null": false
1344
1344
  },
1345
1345
  "varName": "name"
1346
+ },
1347
+ "subPolicyId": {
1348
+ "args": {},
1349
+ "deprecationReason": null,
1350
+ "description": null,
1351
+ "id_str": "dynamicIpAllocation___policy___rules___rule___section___subPolicyId",
1352
+ "isDeprecated": false,
1353
+ "name": "subPolicyId",
1354
+ "path": "dynamicIpAllocation.policy.rules.rule.section.subPolicyId",
1355
+ "requestStr": "$subPolicyId:ID ",
1356
+ "required": false,
1357
+ "responseStr": "subPolicyId:$subPolicyId ",
1358
+ "type": {
1359
+ "kind": [
1360
+ "SCALAR"
1361
+ ],
1362
+ "name": "ID",
1363
+ "non_null": false
1364
+ },
1365
+ "varName": "subPolicyId"
1346
1366
  }
1347
1367
  },
1348
1368
  "inputFields": null,
@@ -1624,6 +1644,89 @@
1624
1644
  "description": null,
1625
1645
  "enumValues": null,
1626
1646
  "fields": {
1647
+ "access": {
1648
+ "args": {},
1649
+ "deprecationReason": null,
1650
+ "description": null,
1651
+ "id_str": "dynamicIpAllocation___policy___sections___access",
1652
+ "isDeprecated": false,
1653
+ "name": "access",
1654
+ "path": "dynamicIpAllocation.policy.sections.access",
1655
+ "requestStr": "$entityAccess:EntityAccess ",
1656
+ "required": false,
1657
+ "responseStr": "access:$entityAccess ",
1658
+ "type": {
1659
+ "definition": {
1660
+ "description": null,
1661
+ "enumValues": null,
1662
+ "fields": {
1663
+ "action": {
1664
+ "args": {},
1665
+ "deprecationReason": null,
1666
+ "description": null,
1667
+ "id_str": "dynamicIpAllocation___policy___sections___access___action",
1668
+ "isDeprecated": false,
1669
+ "name": "action",
1670
+ "path": "dynamicIpAllocation.policy.sections.access.action",
1671
+ "requestStr": "$action:RBACAction! ",
1672
+ "required": true,
1673
+ "responseStr": "action:$action ",
1674
+ "type": {
1675
+ "definition": {
1676
+ "description": null,
1677
+ "enumValues": [
1678
+ {
1679
+ "deprecationReason": null,
1680
+ "description": null,
1681
+ "isDeprecated": false,
1682
+ "name": "NONE"
1683
+ },
1684
+ {
1685
+ "deprecationReason": null,
1686
+ "description": null,
1687
+ "isDeprecated": false,
1688
+ "name": "VIEW"
1689
+ },
1690
+ {
1691
+ "deprecationReason": null,
1692
+ "description": null,
1693
+ "isDeprecated": false,
1694
+ "name": "EDIT"
1695
+ }
1696
+ ],
1697
+ "fields": null,
1698
+ "inputFields": null,
1699
+ "interfaces": null,
1700
+ "kind": "ENUM",
1701
+ "name": "RBACAction",
1702
+ "possibleTypes": null
1703
+ },
1704
+ "indexType": "enum",
1705
+ "kind": [
1706
+ "NON_NULL",
1707
+ "ENUM"
1708
+ ],
1709
+ "name": "RBACAction",
1710
+ "non_null": false
1711
+ },
1712
+ "varName": "action"
1713
+ }
1714
+ },
1715
+ "inputFields": null,
1716
+ "interfaces": [],
1717
+ "kind": "OBJECT",
1718
+ "name": "EntityAccess",
1719
+ "possibleTypes": null
1720
+ },
1721
+ "indexType": "object",
1722
+ "kind": [
1723
+ "OBJECT"
1724
+ ],
1725
+ "name": "EntityAccess",
1726
+ "non_null": false
1727
+ },
1728
+ "varName": "entityAccess"
1729
+ },
1627
1730
  "audit": {
1628
1731
  "args": {},
1629
1732
  "deprecationReason": null,
@@ -1833,6 +1936,26 @@
1833
1936
  "non_null": false
1834
1937
  },
1835
1938
  "varName": "name"
1939
+ },
1940
+ "subPolicyId": {
1941
+ "args": {},
1942
+ "deprecationReason": null,
1943
+ "description": null,
1944
+ "id_str": "dynamicIpAllocation___policy___sections___section___subPolicyId",
1945
+ "isDeprecated": false,
1946
+ "name": "subPolicyId",
1947
+ "path": "dynamicIpAllocation.policy.sections.section.subPolicyId",
1948
+ "requestStr": "$subPolicyId:ID ",
1949
+ "required": false,
1950
+ "responseStr": "subPolicyId:$subPolicyId ",
1951
+ "type": {
1952
+ "kind": [
1953
+ "SCALAR"
1954
+ ],
1955
+ "name": "ID",
1956
+ "non_null": false
1957
+ },
1958
+ "varName": "subPolicyId"
1836
1959
  }
1837
1960
  },
1838
1961
  "inputFields": null,