Skip to main content

app_thumbnails

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

Overview

Nameapp_thumbnails
TypeResource
Iddatabricks_workspace.apps.app_thumbnails

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
updateupdatename, deployment_nameUpdates the thumbnail for an app.
deletedeletename, deployment_nameDeletes the thumbnail for an app.

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 app.

UPDATE examples

Updates the thumbnail for an app.

UPDATE databricks_workspace.apps.app_thumbnails
SET
app_thumbnail = '{{ app_thumbnail }}'
WHERE
name = '{{ name }}' --required
AND deployment_name = '{{ deployment_name }}' --required
RETURNING
thumbnail;

DELETE examples

Deletes the thumbnail for an app.

DELETE FROM databricks_workspace.apps.app_thumbnails
WHERE name = '{{ name }}' --required
AND deployment_name = '{{ deployment_name }}' --required
;