Name | Type | Description | Notes |
---|---|---|---|
notebook_task | NotebookTask | [optional] | |
spark_jar_task | SparkJarTask | [optional] | |
spark_python_task | SparkPythonTask | [optional] | |
spark_submit_task | SparkSubmitTask | [optional] | |
pipeline_task | PipelineTask | [optional] | |
python_wheel_task | PythonWheelTask | [optional] | |
sql_task | SqlTask | [optional] | |
dbt_task | DbtTask | [optional] |
from databricks_jobs.models.job_task import JobTask
# TODO update the JSON string below
json = "{}"
# create an instance of JobTask from a JSON string
job_task_instance = JobTask.from_json(json)
# print the JSON string representation of the object
print JobTask.to_json()
# convert the object into a dict
job_task_dict = job_task_instance.to_dict()
# create an instance of JobTask from a dict
job_task_form_dict = job_task.from_dict(job_task_dict)