enable_results_downloading
Creates, updates, deletes, gets or lists an enable_results_downloading resource.
Overview
| Name | enable_results_downloading |
| Type | Resource |
| Id | databricks_workspace.settings.enable_results_downloading |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
setting_name | string | Name of the corresponding setting. This field is populated in the response, but it will not be respected even if it's set in the request body. The setting name in the path parameter will be respected instead. Setting name is required to be 'default' if the setting only has one instance per workspace. |
boolean_val | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | deployment_name | Gets the Notebook results download setting. | |
update | update | deployment_name, allow_missing, setting, field_mask | Updates the Notebook results download setting. The model follows eventual consistency, which means the |
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) |
SELECT examples
- get
Gets the Notebook results download setting.
SELECT
setting_name,
boolean_val
FROM databricks_workspace.settings.enable_results_downloading
WHERE deployment_name = '{{ deployment_name }}' -- required
;
UPDATE examples
- update
Updates the Notebook results download setting. The model follows eventual consistency, which means the
UPDATE databricks_workspace.settings.enable_results_downloading
SET
allow_missing = {{ allow_missing }},
setting = '{{ setting }}',
field_mask = '{{ field_mask }}'
WHERE
deployment_name = '{{ deployment_name }}' --required
AND allow_missing = {{ allow_missing }} --required
AND setting = '{{ setting }}' --required
AND field_mask = '{{ field_mask }}' --required
RETURNING
setting_name,
boolean_val;