(expression *expr.Expr)
| 184 | } |
| 185 | |
| 186 | func ValidateProjectMemberCELExpr(expression *expr.Expr) (cel.Program, error) { |
| 187 | return validateCELExpr(expression, IAMPolicyConditionCELAttributes) |
| 188 | } |
| 189 | |
| 190 | func validateCELExpr(expression *expr.Expr, conditionCELAttributes []cel.EnvOption) (cel.Program, error) { |
| 191 | if expression == nil || expression.Expression == "" { |
no test coverage detected