command_status
Operations on a command_status
resource.
Overview
Name | command_status |
Type | Resource |
Id | databricks_workspace.compute.command_status |
Fields
Name | Datatype |
---|---|
id | string |
status | string |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
contextstatus | SELECT | clusterId, contextId, deployment_name | Gets the status for an execution context. |
SELECT
examples
SELECT
id,
status
FROM databricks_workspace.compute.command_status
WHERE clusterId = '{{ clusterId }}' AND
contextId = '{{ contextId }}' AND
deployment_name = '{{ deployment_name }}';