Databricks SDK for JavaScript
    Preparing search index...

    Interface FunctionParameterInfo

    Represents a parameter of a function. The same message is used for both input and output columns.

    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

    The comment of the parameter.

    name?: string

    The name of the parameter.

    parameterDefault?: string

    The default value of the parameter.

    parameterMode?: FunctionParameterMode

    The mode of the function parameter.

    parameterType?: FunctionParameterType

    The type of the function parameter.

    position?: number

    The position of the parameter.

    typeIntervalType?: string

    The interval type of the parameter type.

    typeJson?: string

    The type of the parameter in JSON format.

    typeName?: ColumnTypeName

    The type of the parameter in Enum format.

    typePrecision?: number

    The precision of the parameter type.

    typeScale?: number

    The scale of the parameter type.

    typeText?: string

    The type of the parameter in text format.