Databricks SDK for JavaScript
    Preparing search index...
    interface Function {
        function?:
            | {
                $case: "aggregationFunction";
                aggregationFunction: AggregationFunction;
            }
            | { $case: "columnSelection"; columnSelection: ColumnSelection }
            | { $case: "customUdf"; customUdf: CustomUdf };
    }
    Index

    Properties

    Properties

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

    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

    • { $case: "customUdf"; customUdf: CustomUdf }
      • $case: "customUdf"
      • customUdf: CustomUdf

        Applies a registered Unity Catalog function row-wise to source columns.