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

Latest commit

 

History

History
35 lines (27 loc) · 2.6 KB

JobsRunsGetOutput200Response.md

File metadata and controls

35 lines (27 loc) · 2.6 KB

JobsRunsGetOutput200Response

Properties

Name Type Description Notes
notebook_output NotebookOutput [optional]
sql_output SqlOutput [optional]
dbt_output DbtOutput [optional]
logs str The output from tasks that write to standard streams (stdout/stderr) such as SparkJarTask, [SparkPythonTask](https://docs.microsoft.com/azure/databricks/dev-tools/api/latest/jobs#/components/schemas/SparkPythonTask, [PythonWheelTask](https://docs.microsoft.com/azure/databricks/dev-tools/api/latest/jobs#/components/schemas/PythonWheelTask. It's not supported for the [NotebookTask](https://docs.microsoft.com/azure/databricks/dev-tools/api/latest/jobs#/components/schemas/NotebookTask, [PipelineTask](https://docs.microsoft.com/azure/databricks/dev-tools/api/latest/jobs#/components/schemas/PipelineTask, or [SparkSubmitTask](https://docs.microsoft.com/azure/databricks/dev-tools/api/latest/jobs#/components/schemas/SparkSubmitTask. Azure Databricks restricts this API to return the last 5 MB of these logs. [optional]
logs_truncated bool Whether the logs are truncated. [optional]
error str An error message indicating why a task failed or why output is not available. The message is unstructured, and its exact format is subject to change. [optional]
error_trace str If there was an error executing the run, this field contains any available stack traces. [optional]
metadata Run [optional]

Example

from databricks_jobs.models.jobs_runs_get_output200_response import JobsRunsGetOutput200Response

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

# convert the object into a dict
jobs_runs_get_output200_response_dict = jobs_runs_get_output200_response_instance.to_dict()
# create an instance of JobsRunsGetOutput200Response from a dict
jobs_runs_get_output200_response_form_dict = jobs_runs_get_output200_response.from_dict(jobs_runs_get_output200_response_dict)

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