Skip to main content

app_space_operations

Creates, updates, deletes, gets or lists an app_space_operations resource.

Overview

Nameapp_space_operations
TypeResource
Iddatabricks_workspace.apps.app_space_operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe 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}``.
donebooleanIf 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.
errorobjectThe error result of the operation in case of failure or cancellation.
metadataobjectService-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.
responseobjectThe normal, successful response of the operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectname, deployment_nameGets 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.

NameDatatypeDescription
deployment_namestringThe Databricks Workspace Deployment Name (default: dbc-abcd0123-a1bc)
namestringThe name of the operation resource.

SELECT examples

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
;