Skip to main content

feature_status

Creates, updates, deletes, gets or lists a feature_status resource.

Overview

Namefeature_status
TypeResource
Iddatabricks_workspace.workspace.feature_status

Fields

The following fields are returned by SELECT queries:

Status was returned successfully.

NameDatatypeDescription
property1string
property2string

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getstatusselectdeployment_nameEnables or disables a specified feature for a workspace.
setstatusreplacedeployment_nameEnables or disables a specified feature for a workspace.

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)

SELECT examples

Enables or disables a specified feature for a workspace.

SELECT
property1,
property2
FROM databricks_workspace.workspace.feature_status
WHERE deployment_name = '{{ deployment_name }}' -- required;

REPLACE examples

Enables or disables a specified feature for a workspace.

REPLACE databricks_workspace.workspace.feature_status
SET
-- No updatable properties
WHERE
deployment_name = '{{ deployment_name }}' --required;