Databricks SDK for JavaScript
    Preparing search index...

    Interface PythonWheelTask

    interface PythonWheelTask {
        entryPoint?: string;
        namedParameters?: Record<string, string>;
        packageName?: string;
        parameters?: string[];
    }
    Index

    Properties

    entryPoint?: string

    Named entry point to use, if it does not exist in the metadata of the package it executes the function from the package directly using $packageName.$entryPoint()

    namedParameters?: Record<string, string>

    Command-line parameters passed to Python wheel task in the form of ["--name=task", "--data=dbfs:/path/to/data.json"]. Leave it empty if parameters is not null.

    packageName?: string

    Name of the package to execute

    parameters?: string[]

    Command-line parameters passed to Python wheel task. Leave it empty if named_parameters is not null.