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

Latest commit

 

History

History
28 lines (20 loc) · 965 Bytes

SqlTaskDashboard.md

File metadata and controls

28 lines (20 loc) · 965 Bytes

SqlTaskDashboard

Properties

Name Type Description Notes
dashboard_id str The canonical identifier of the SQL dashboard.

Example

from databricks_jobs.models.sql_task_dashboard import SqlTaskDashboard

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

# convert the object into a dict
sql_task_dashboard_dict = sql_task_dashboard_instance.to_dict()
# create an instance of SqlTaskDashboard from a dict
sql_task_dashboard_form_dict = sql_task_dashboard.from_dict(sql_task_dashboard_dict)

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