app_space_operations
Creates, updates, deletes, gets or lists an app_space_operations resource.
Overview
| Name | app_space_operations |
| Type | Resource |
| Id | databricks_workspace.apps.app_space_operations |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
name | string | The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the ``name`` should be a resource name ending with ``operations/{unique_id}``. |
done | boolean | If the value is ``false``, it means the operation is still in progress. If ``true``, the operation is completed, and either ``error`` or ``response`` is available. |
error | object | The error result of the operation in case of failure or cancellation. |
metadata | object | Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. |
response | object | The normal, successful response of the operation. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | name, deployment_name | Gets the status of an app space update operation. |
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) |
name | string | The name of the operation resource. |
SELECT examples
- get
Gets the status of an app space update operation.
SELECT
name,
done,
error,
metadata,
response
FROM databricks_workspace.apps.app_space_operations
WHERE name = '{{ name }}' -- required
AND deployment_name = '{{ deployment_name }}' -- required
;