Databricks SDK for JavaScript
    Preparing search index...
    interface FunctionParameterInfo {
        comment?: string;
        name?: string;
        parameterDefault?: string;
        parameterMode?: FunctionParameterMode;
        parameterType?: FunctionParameterType;
        position?: number;
        typeIntervalType?: string;
        typeJson?: string;
        typeName?: ColumnTypeName;
        typePrecision?: number;
        typeScale?: number;
        typeText?: string;
    }
    Index

    Properties

    comment?: string

    User-provided free-form text description.

    name?: string

    Name of Parameter.

    parameterDefault?: string

    Default value of the parameter.

    parameterMode?: FunctionParameterMode

    Function parameter mode.

    parameterType?: FunctionParameterType

    Function parameter type.

    position?: number

    Ordinal position of column (starting at position 0).

    typeIntervalType?: string

    Format of IntervalType.

    typeJson?: string

    Full data type spec, JSON-serialized.

    typeName?: ColumnTypeName

    Name of type (INT, STRUCT, MAP, etc.)

    typePrecision?: number

    Digits of precision; required on Create for DecimalTypes.

    typeScale?: number

    Digits to right of decimal; Required on Create for DecimalTypes.

    typeText?: string

    Full data type spec, SQL/catalogString text.