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

Latest commit

 

History

History
30 lines (22 loc) · 1 KB

SqlOutput.md

File metadata and controls

30 lines (22 loc) · 1 KB

SqlOutput

Properties

Name Type Description Notes
query_output SqlQueryOutput [optional]
dashboard_output SqlDashboardOutput [optional]
alert_output SqlAlertOutput [optional]

Example

from databricks_jobs.models.sql_output import SqlOutput

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

# convert the object into a dict
sql_output_dict = sql_output_instance.to_dict()
# create an instance of SqlOutput from a dict
sql_output_form_dict = sql_output.from_dict(sql_output_dict)

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