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

Latest commit

 

History

History
29 lines (21 loc) · 1.32 KB

NotebookOutput.md

File metadata and controls

29 lines (21 loc) · 1.32 KB

NotebookOutput

Properties

Name Type Description Notes
result str The value passed to dbutils.notebook.exit(). Azure Databricks restricts this API to return the first 5 MB of the value. For a larger result, your job can store the results in a cloud storage service. This field is absent if `dbutils.notebook.exit()` was never called. [optional]
truncated bool Whether or not the result was truncated. [optional]

Example

from databricks_jobs.models.notebook_output import NotebookOutput

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

# convert the object into a dict
notebook_output_dict = notebook_output_instance.to_dict()
# create an instance of NotebookOutput from a dict
notebook_output_form_dict = notebook_output.from_dict(notebook_output_dict)

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