Databricks SDK for JavaScript
    Preparing search index...
    interface Function {
        extraParameters?: Function_ExtraParameter[];
        function?:
            | {
                $case: "aggregationFunction";
                aggregationFunction: AggregationFunction;
            }
            | { $case: "columnSelection"; columnSelection: ColumnSelection };
        functionType?: Function_FunctionType;
    }
    Index

    Properties

    extraParameters?: Function_ExtraParameter[]

    Deprecated: Use the function oneof with AggregationFunction instead. Kept for backwards compatibility. Extra parameters for parameterized functions.

    function?:
        | {
            $case: "aggregationFunction";
            aggregationFunction: AggregationFunction;
        }
        | { $case: "columnSelection"; columnSelection: ColumnSelection }

    Type Declaration

    • { $case: "aggregationFunction"; aggregationFunction: AggregationFunction }
      • $case: "aggregationFunction"
      • aggregationFunction: AggregationFunction

        An aggregation function applied over a time window.

    • { $case: "columnSelection"; columnSelection: ColumnSelection }
      • $case: "columnSelection"
      • columnSelection: ColumnSelection

        Selects the latest value of a single column in a data source

    functionType?: Function_FunctionType

    Deprecated: Use the function oneof with AggregationFunction instead. Kept for backwards compatibility. The type of the function.