(s string)
| 38 | } |
| 39 | |
| 40 | func validSensitivity(s string) bool { |
| 41 | _, ok := sensitivityBands[s] |
| 42 | return ok |
| 43 | } |
| 44 | |
| 45 | // ProtectionConfig is the full per-agent protection posture as the public |
| 46 | // /protection resource models it: a gate (trust policy + allowlist + action) |
no outgoing calls
no test coverage detected