ValidateMaskingExemptionCELExpr validates masking exemption expr.
(expression *expr.Expr)
| 180 | |
| 181 | // ValidateMaskingExemptionCELExpr validates masking exemption expr. |
| 182 | func ValidateMaskingExemptionCELExpr(expression *expr.Expr) (cel.Program, error) { |
| 183 | return validateCELExpr(expression, MaskingExemptionPolicyCELAttributes) |
| 184 | } |
| 185 | |
| 186 | func ValidateProjectMemberCELExpr(expression *expr.Expr) (cel.Program, error) { |
| 187 | return validateCELExpr(expression, IAMPolicyConditionCELAttributes) |
no test coverage detected