Package version:

Interface RunQueryFilter

Query filter option for listing runs.

interface RunQueryFilter {
    operand: string;
    operator: string;
    values: string[];
}

Properties

operand: string

Parameter name to be used for filter. The allowed operands to query pipeline runs are PipelineName, RunStart, RunEnd and Status; to query activity runs are ActivityName, ActivityRunStart, ActivityRunEnd, ActivityType and Status, and to query trigger runs are TriggerName, TriggerRunTimestamp and Status.

operator: string

Operator to be used for filter.

values: string[]

List of filter values.