Skip to main content
Version: 8.9

Type Alias: ExpressionEvaluationRequest

type ExpressionEvaluationRequest = object;

Properties

expression

expression: string;

The expression to evaluate (e.g., "=x + y")


tenantId?

optional tenantId?: string;

Required when the expression references tenant-scoped cluster variables


variables?

optional variables?:
| {
[key: string]: unknown;
}
| null;

Optional variables for expression evaluation. These variables are only used for the current evaluation and do not persist beyond it.