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
@@ -2898,6 +2898,26 @@
2898
2898
  "non_null": false
2899
2899
  },
2900
2900
  "varName": "name"
2901
+ },
2902
+ "subPolicyId": {
2903
+ "args": {},
2904
+ "deprecationReason": null,
2905
+ "description": null,
2906
+ "id_str": "tlsInspect___publishPolicyRevision___policy___rules___rule___section___subPolicyId",
2907
+ "isDeprecated": false,
2908
+ "name": "subPolicyId",
2909
+ "path": "tlsInspect.publishPolicyRevision.policy.rules.rule.section.subPolicyId",
2910
+ "requestStr": "$subPolicyId:ID ",
2911
+ "required": false,
2912
+ "responseStr": "subPolicyId:$subPolicyId ",
2913
+ "type": {
2914
+ "kind": [
2915
+ "SCALAR"
2916
+ ],
2917
+ "name": "ID",
2918
+ "non_null": false
2919
+ },
2920
+ "varName": "subPolicyId"
2901
2921
  }
2902
2922
  },
2903
2923
  "inputFields": null,
@@ -4017,6 +4037,89 @@
4017
4037
  "description": null,
4018
4038
  "enumValues": null,
4019
4039
  "fields": {
4040
+ "access": {
4041
+ "args": {},
4042
+ "deprecationReason": null,
4043
+ "description": null,
4044
+ "id_str": "tlsInspect___publishPolicyRevision___policy___sections___access",
4045
+ "isDeprecated": false,
4046
+ "name": "access",
4047
+ "path": "tlsInspect.publishPolicyRevision.policy.sections.access",
4048
+ "requestStr": "$entityAccess:EntityAccess ",
4049
+ "required": false,
4050
+ "responseStr": "access:$entityAccess ",
4051
+ "type": {
4052
+ "definition": {
4053
+ "description": null,
4054
+ "enumValues": null,
4055
+ "fields": {
4056
+ "action": {
4057
+ "args": {},
4058
+ "deprecationReason": null,
4059
+ "description": null,
4060
+ "id_str": "tlsInspect___publishPolicyRevision___policy___sections___access___action",
4061
+ "isDeprecated": false,
4062
+ "name": "action",
4063
+ "path": "tlsInspect.publishPolicyRevision.policy.sections.access.action",
4064
+ "requestStr": "$action:RBACAction! ",
4065
+ "required": true,
4066
+ "responseStr": "action:$action ",
4067
+ "type": {
4068
+ "definition": {
4069
+ "description": null,
4070
+ "enumValues": [
4071
+ {
4072
+ "deprecationReason": null,
4073
+ "description": null,
4074
+ "isDeprecated": false,
4075
+ "name": "NONE"
4076
+ },
4077
+ {
4078
+ "deprecationReason": null,
4079
+ "description": null,
4080
+ "isDeprecated": false,
4081
+ "name": "VIEW"
4082
+ },
4083
+ {
4084
+ "deprecationReason": null,
4085
+ "description": null,
4086
+ "isDeprecated": false,
4087
+ "name": "EDIT"
4088
+ }
4089
+ ],
4090
+ "fields": null,
4091
+ "inputFields": null,
4092
+ "interfaces": null,
4093
+ "kind": "ENUM",
4094
+ "name": "RBACAction",
4095
+ "possibleTypes": null
4096
+ },
4097
+ "indexType": "enum",
4098
+ "kind": [
4099
+ "NON_NULL",
4100
+ "ENUM"
4101
+ ],
4102
+ "name": "RBACAction",
4103
+ "non_null": false
4104
+ },
4105
+ "varName": "action"
4106
+ }
4107
+ },
4108
+ "inputFields": null,
4109
+ "interfaces": [],
4110
+ "kind": "OBJECT",
4111
+ "name": "EntityAccess",
4112
+ "possibleTypes": null
4113
+ },
4114
+ "indexType": "object",
4115
+ "kind": [
4116
+ "OBJECT"
4117
+ ],
4118
+ "name": "EntityAccess",
4119
+ "non_null": false
4120
+ },
4121
+ "varName": "entityAccess"
4122
+ },
4020
4123
  "audit": {
4021
4124
  "args": {},
4022
4125
  "deprecationReason": null,
@@ -4226,6 +4329,26 @@
4226
4329
  "non_null": false
4227
4330
  },
4228
4331
  "varName": "name"
4332
+ },
4333
+ "subPolicyId": {
4334
+ "args": {},
4335
+ "deprecationReason": null,
4336
+ "description": null,
4337
+ "id_str": "tlsInspect___publishPolicyRevision___policy___sections___section___subPolicyId",
4338
+ "isDeprecated": false,
4339
+ "name": "subPolicyId",
4340
+ "path": "tlsInspect.publishPolicyRevision.policy.sections.section.subPolicyId",
4341
+ "requestStr": "$subPolicyId:ID ",
4342
+ "required": false,
4343
+ "responseStr": "subPolicyId:$subPolicyId ",
4344
+ "type": {
4345
+ "kind": [
4346
+ "SCALAR"
4347
+ ],
4348
+ "name": "ID",
4349
+ "non_null": false
4350
+ },
4351
+ "varName": "subPolicyId"
4229
4352
  }
4230
4353
  },
4231
4354
  "inputFields": null,
@@ -2453,6 +2453,26 @@
2453
2453
  "non_null": false
2454
2454
  },
2455
2455
  "varName": "name"
2456
+ },
2457
+ "subPolicyId": {
2458
+ "args": {},
2459
+ "deprecationReason": null,
2460
+ "description": null,
2461
+ "id_str": "tlsInspect___removeRule___rule___rule___section___subPolicyId",
2462
+ "isDeprecated": false,
2463
+ "name": "subPolicyId",
2464
+ "path": "tlsInspect.removeRule.rule.rule.section.subPolicyId",
2465
+ "requestStr": "$subPolicyId:ID ",
2466
+ "required": false,
2467
+ "responseStr": "subPolicyId:$subPolicyId ",
2468
+ "type": {
2469
+ "kind": [
2470
+ "SCALAR"
2471
+ ],
2472
+ "name": "ID",
2473
+ "non_null": false
2474
+ },
2475
+ "varName": "subPolicyId"
2456
2476
  }
2457
2477
  },
2458
2478
  "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": "tlsInspect___removeSection___section___access",
601
+ "isDeprecated": false,
602
+ "name": "access",
603
+ "path": "tlsInspect.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": "tlsInspect___removeSection___section___access___action",
617
+ "isDeprecated": false,
618
+ "name": "action",
619
+ "path": "tlsInspect.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": "tlsInspect___removeSection___section___section___subPolicyId",
894
+ "isDeprecated": false,
895
+ "name": "subPolicyId",
896
+ "path": "tlsInspect.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,
@@ -3285,6 +3285,26 @@
3285
3285
  "non_null": false
3286
3286
  },
3287
3287
  "varName": "name"
3288
+ },
3289
+ "subPolicyId": {
3290
+ "args": {},
3291
+ "deprecationReason": null,
3292
+ "description": null,
3293
+ "id_str": "tlsInspect___updatePolicy___policy___rules___rule___section___subPolicyId",
3294
+ "isDeprecated": false,
3295
+ "name": "subPolicyId",
3296
+ "path": "tlsInspect.updatePolicy.policy.rules.rule.section.subPolicyId",
3297
+ "requestStr": "$subPolicyId:ID ",
3298
+ "required": false,
3299
+ "responseStr": "subPolicyId:$subPolicyId ",
3300
+ "type": {
3301
+ "kind": [
3302
+ "SCALAR"
3303
+ ],
3304
+ "name": "ID",
3305
+ "non_null": false
3306
+ },
3307
+ "varName": "subPolicyId"
3288
3308
  }
3289
3309
  },
3290
3310
  "inputFields": null,
@@ -4404,6 +4424,89 @@
4404
4424
  "description": null,
4405
4425
  "enumValues": null,
4406
4426
  "fields": {
4427
+ "access": {
4428
+ "args": {},
4429
+ "deprecationReason": null,
4430
+ "description": null,
4431
+ "id_str": "tlsInspect___updatePolicy___policy___sections___access",
4432
+ "isDeprecated": false,
4433
+ "name": "access",
4434
+ "path": "tlsInspect.updatePolicy.policy.sections.access",
4435
+ "requestStr": "$entityAccess:EntityAccess ",
4436
+ "required": false,
4437
+ "responseStr": "access:$entityAccess ",
4438
+ "type": {
4439
+ "definition": {
4440
+ "description": null,
4441
+ "enumValues": null,
4442
+ "fields": {
4443
+ "action": {
4444
+ "args": {},
4445
+ "deprecationReason": null,
4446
+ "description": null,
4447
+ "id_str": "tlsInspect___updatePolicy___policy___sections___access___action",
4448
+ "isDeprecated": false,
4449
+ "name": "action",
4450
+ "path": "tlsInspect.updatePolicy.policy.sections.access.action",
4451
+ "requestStr": "$action:RBACAction! ",
4452
+ "required": true,
4453
+ "responseStr": "action:$action ",
4454
+ "type": {
4455
+ "definition": {
4456
+ "description": null,
4457
+ "enumValues": [
4458
+ {
4459
+ "deprecationReason": null,
4460
+ "description": null,
4461
+ "isDeprecated": false,
4462
+ "name": "NONE"
4463
+ },
4464
+ {
4465
+ "deprecationReason": null,
4466
+ "description": null,
4467
+ "isDeprecated": false,
4468
+ "name": "VIEW"
4469
+ },
4470
+ {
4471
+ "deprecationReason": null,
4472
+ "description": null,
4473
+ "isDeprecated": false,
4474
+ "name": "EDIT"
4475
+ }
4476
+ ],
4477
+ "fields": null,
4478
+ "inputFields": null,
4479
+ "interfaces": null,
4480
+ "kind": "ENUM",
4481
+ "name": "RBACAction",
4482
+ "possibleTypes": null
4483
+ },
4484
+ "indexType": "enum",
4485
+ "kind": [
4486
+ "NON_NULL",
4487
+ "ENUM"
4488
+ ],
4489
+ "name": "RBACAction",
4490
+ "non_null": false
4491
+ },
4492
+ "varName": "action"
4493
+ }
4494
+ },
4495
+ "inputFields": null,
4496
+ "interfaces": [],
4497
+ "kind": "OBJECT",
4498
+ "name": "EntityAccess",
4499
+ "possibleTypes": null
4500
+ },
4501
+ "indexType": "object",
4502
+ "kind": [
4503
+ "OBJECT"
4504
+ ],
4505
+ "name": "EntityAccess",
4506
+ "non_null": false
4507
+ },
4508
+ "varName": "entityAccess"
4509
+ },
4407
4510
  "audit": {
4408
4511
  "args": {},
4409
4512
  "deprecationReason": null,
@@ -4613,6 +4716,26 @@
4613
4716
  "non_null": false
4614
4717
  },
4615
4718
  "varName": "name"
4719
+ },
4720
+ "subPolicyId": {
4721
+ "args": {},
4722
+ "deprecationReason": null,
4723
+ "description": null,
4724
+ "id_str": "tlsInspect___updatePolicy___policy___sections___section___subPolicyId",
4725
+ "isDeprecated": false,
4726
+ "name": "subPolicyId",
4727
+ "path": "tlsInspect.updatePolicy.policy.sections.section.subPolicyId",
4728
+ "requestStr": "$subPolicyId:ID ",
4729
+ "required": false,
4730
+ "responseStr": "subPolicyId:$subPolicyId ",
4731
+ "type": {
4732
+ "kind": [
4733
+ "SCALAR"
4734
+ ],
4735
+ "name": "ID",
4736
+ "non_null": false
4737
+ },
4738
+ "varName": "subPolicyId"
4616
4739
  }
4617
4740
  },
4618
4741
  "inputFields": null,
@@ -10790,6 +10790,26 @@
10790
10790
  "non_null": false
10791
10791
  },
10792
10792
  "varName": "name"
10793
+ },
10794
+ "subPolicyId": {
10795
+ "args": {},
10796
+ "deprecationReason": null,
10797
+ "description": null,
10798
+ "id_str": "tlsInspect___updateRule___rule___rule___section___subPolicyId",
10799
+ "isDeprecated": false,
10800
+ "name": "subPolicyId",
10801
+ "path": "tlsInspect.updateRule.rule.rule.section.subPolicyId",
10802
+ "requestStr": "$subPolicyId:ID ",
10803
+ "required": false,
10804
+ "responseStr": "subPolicyId:$subPolicyId ",
10805
+ "type": {
10806
+ "kind": [
10807
+ "SCALAR"
10808
+ ],
10809
+ "name": "ID",
10810
+ "non_null": false
10811
+ },
10812
+ "varName": "subPolicyId"
10793
10813
  }
10794
10814
  },
10795
10815
  "inputFields": null,