Databricks SDK for JavaScript
    Preparing search index...
    interface ConditionTask {
        left?: string;
        op?: ConditionTask_ConditionTaskOperator;
        outcome?: string;
        right?: string;
    }
    Index

    Properties

    left?: string

    The left operand of the condition task. Can be either a string value or a job state or parameter reference.

    • EQUAL_TO, NOT_EQUAL operators perform string comparison of their operands. This means that “12.0” == “12” will evaluate to false.
    • GREATER_THAN, GREATER_THAN_OR_EQUAL, LESS_THAN, LESS_THAN_OR_EQUAL operators perform numeric comparison of their operands. “12.0” >= “12” will evaluate to true, “10.0” >= “12” will evaluate to false.

    The boolean comparison to task values can be implemented with operators EQUAL_TO, NOT_EQUAL. If a task value was set to a boolean value, it will be serialized to “true” or “false” for the comparison.

    outcome?: string

    The condition expression evaluation result. Filled in if the task was successfully completed. Can be "true" or "false"

    right?: string

    The right operand of the condition task. Can be either a string value or a job state or parameter reference.