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

Latest commit

 

History

History
32 lines (24 loc) · 1.22 KB

SqlTask.md

File metadata and controls

32 lines (24 loc) · 1.22 KB

SqlTask

Properties

Name Type Description Notes
query SqlTaskQuery [optional]
dashboard SqlTaskDashboard [optional]
alert SqlTaskAlert [optional]
parameters object Parameters to be used for each run of this job. The SQL alert task does not support custom parameters. [optional]
warehouse_id str The canonical identifier of the SQL warehouse. Only serverless and pro SQL warehouses are supported.

Example

from databricks_jobs.models.sql_task import SqlTask

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

# convert the object into a dict
sql_task_dict = sql_task_instance.to_dict()
# create an instance of SqlTask from a dict
sql_task_form_dict = sql_task.from_dict(sql_task_dict)

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