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.22 KB

SqlQueryOutput.md

File metadata and controls

31 lines (23 loc) · 1.22 KB

SqlQueryOutput

Properties

Name Type Description Notes
query_text str The text of the SQL query. Can Run permission of the SQL query is required to view this field. [optional]
warehouse_id str The canonical identifier of the SQL warehouse. [optional]
sql_statements SqlStatementOutput [optional]
output_link str The link to find the output results. [optional]

Example

from databricks_jobs.models.sql_query_output import SqlQueryOutput

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

# convert the object into a dict
sql_query_output_dict = sql_query_output_instance.to_dict()
# create an instance of SqlQueryOutput from a dict
sql_query_output_form_dict = sql_query_output.from_dict(sql_query_output_dict)

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