object_status
Creates, updates, deletes, gets or lists an object_status
resource.
Overview
Name | object_status |
Type | Resource |
Id | databricks_workspace.workspace.object_status |
Fields
The following fields are returned by SELECT
queries:
- getstatus
Name | Datatype | Description |
---|---|---|
object_id | integer | |
language | string | |
object_type | string | |
path | string |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
getstatus | select | deployment_name | Gets the status of an object or a directory. If |
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
- getstatus
Gets the status of an object or a directory. If
SELECT
object_id,
language,
object_type,
path
FROM databricks_workspace.workspace.object_status
WHERE deployment_name = '{{ deployment_name }}' -- required;