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) · 1002 Bytes

SqlStatementOutput.md

File metadata and controls

28 lines (20 loc) · 1002 Bytes

SqlStatementOutput

Properties

Name Type Description Notes
lookup_key str A key that can be used to look up query details. [optional]

Example

from databricks_jobs.models.sql_statement_output import SqlStatementOutput

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

# convert the object into a dict
sql_statement_output_dict = sql_statement_output_instance.to_dict()
# create an instance of SqlStatementOutput from a dict
sql_statement_output_form_dict = sql_statement_output.from_dict(sql_statement_output_dict)

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