consumer_listing_content
Creates, updates, deletes, gets or lists a consumer_listing_content resource.
Overview
| Name | consumer_listing_content |
| Type | Resource |
| Id | databricks_workspace.marketplace.consumer_listing_content |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
name | string | Name of the shared object |
data_object_type | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | listing_id, deployment_name | page_size, page_token | Get a high level preview of the metadata of listing installable content. |
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) |
listing_id | string | |
page_size | integer | |
page_token | string |
SELECT examples
- get
Get a high level preview of the metadata of listing installable content.
SELECT
name,
data_object_type
FROM databricks_workspace.marketplace.consumer_listing_content
WHERE listing_id = '{{ listing_id }}' -- required
AND deployment_name = '{{ deployment_name }}' -- required
AND page_size = '{{ page_size }}'
AND page_token = '{{ page_token }}'
;