task_runs
Operations on a task_runs
resource.
Overview
Name | task_runs |
Type | Resource |
Id | databricks_workspace.cleanrooms.task_runs |
Fields
Name | Datatype |
---|---|
collaborator_job_run_info | object |
notebook_job_run_state | object |
notebook_name | string |
output_schema_expiration_time | integer |
output_schema_name | string |
run_duration | integer |
start_time | integer |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | clean_room_name, deployment_name | List all the historical notebook task runs in a clean room. |
SELECT
examples
SELECT
collaborator_job_run_info,
notebook_job_run_state,
notebook_name,
output_schema_expiration_time,
output_schema_name,
run_duration,
start_time
FROM databricks_workspace.cleanrooms.task_runs
WHERE clean_room_name = '{{ clean_room_name }}' AND
deployment_name = '{{ deployment_name }}';