Databricks SDK for JavaScript
    Preparing search index...
    interface ColumnMaskOptions {
        functionName?: string;
        onColumn?: string;
        using?: FunctionArgument[];
    }
    Index

    Properties

    functionName?: string

    The fully qualified name of the column mask function. The function is called on each row of the target table. The function's first argument and its return type should match the type of the masked column. Required on create and update.

    onColumn?: string

    The alias of the column to be masked. The alias must refer to one of matched columns. The values of the column is passed to the column mask function as the first argument. Required on create and update.

    Optional list of column aliases or constant literals to be passed as additional arguments to the column mask function. The type of each column should match the positional argument of the column mask function.