Skip to main content

output_catalog

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

Overview

Nameoutput_catalog
TypeResource
Iddatabricks_workspace.cleanrooms.output_catalog

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
createoutputcataloginsertdeployment_nameCreate the output catalog of the clean room.

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)

INSERT examples

Create the output catalog of the clean room.

INSERT INTO databricks_workspace.cleanrooms.output_catalog (
data__catalog_name,
deployment_name
)
SELECT
'{{ catalog_name }}',
'{{ deployment_name }}'
RETURNING
output_catalog
;