Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Latest commit

 

History

History
31 lines (23 loc) · 1.55 KB

PythonWheelTask.md

File metadata and controls

31 lines (23 loc) · 1.55 KB

PythonWheelTask

Properties

Name Type Description Notes
package_name str Name of the package to execute [optional]
entry_point str 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()` [optional]
parameters List[str] Command-line parameters passed to Python wheel task. Leave it empty if `named_parameters` is not null. [optional]
named_parameters object 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. [optional]

Example

from databricks_jobs.models.python_wheel_task import PythonWheelTask

# TODO update the JSON string below
json = "{}"
# create an instance of PythonWheelTask from a JSON string
python_wheel_task_instance = PythonWheelTask.from_json(json)
# print the JSON string representation of the object
print PythonWheelTask.to_json()

# convert the object into a dict
python_wheel_task_dict = python_wheel_task_instance.to_dict()
# create an instance of PythonWheelTask from a dict
python_wheel_task_form_dict = python_wheel_task.from_dict(python_wheel_task_dict)

[Back to Model list] [Back to API list] [Back to README]