table_summaries
Creates, updates, deletes, gets or lists a table_summaries
resource.
Overview
Name | table_summaries |
Type | Resource |
Id | databricks_workspace.unitycatalog.table_summaries |
Fields
The following fields are returned by SELECT
queries:
- listsummaries
The table summaries list was successfully retrieved.
Name | Datatype | Description |
---|---|---|
full_name | string | |
table_type | string |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
listsummaries | select | deployment_name | Gets an array of summaries for tables for a schema and catalog within the metastore. The table summaries returned are either: |
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
- listsummaries
Gets an array of summaries for tables for a schema and catalog within the metastore. The table summaries returned are either:
SELECT
full_name,
table_type
FROM databricks_workspace.unitycatalog.table_summaries
WHERE deployment_name = '{{ deployment_name }}' -- required;