command_status
Creates, updates, deletes, gets or lists a command_status
resource.
Overview
Name | command_status |
Type | Resource |
Id | databricks_workspace.compute.command_status |
Fields
The following fields are returned by SELECT
queries:
- contextstatus
Status was returned successfully.
Name | Datatype | Description |
---|---|---|
id | string | |
status | string |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
contextstatus | select | deployment_name | Gets the status for an execution context. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
deployment_name | string | The Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc) |
SELECT
examples
- contextstatus
Gets the status for an execution context.
SELECT
id,
status
FROM databricks_workspace.compute.command_status
WHERE deployment_name = '{{ deployment_name }}' -- required;