Skip to main content

automatic_cluster_update

Operations on a automatic_cluster_update resource.

Overview

Nameautomatic_cluster_update
TypeResource
Iddatabricks_workspace.workspace.automatic_cluster_update

Fields

NameDatatype
automatic_cluster_update_workspaceobject
etagstring
setting_namestring

Methods

NameAccessible byRequired ParamsDescription
getSELECTdeployment_nameGets the automatic cluster update setting.
updateUPDATEdeployment_nameUpdates the automatic cluster update setting for the workspace. A fresh etag needs to be provided in

SELECT examples

SELECT
automatic_cluster_update_workspace,
etag,
setting_name
FROM databricks_workspace.workspace.automatic_cluster_update
WHERE deployment_name = '{{ deployment_name }}';

UPDATE example

Updates a automatic_cluster_update resource.

/*+ update */
-- replace field1, field2, etc. with the fields you want to update
UPDATE databricks_workspace.workspace.automatic_cluster_update
SET field1 = '{{ value1 }}',
field2 = '{{ value2 }}', ...
WHERE deployment_name = '{{ deployment_name }}';