consumer_fulfillments
Creates, updates, deletes, gets or lists a consumer_fulfillments
resource.
Overview
Name | consumer_fulfillments |
Type | Resource |
Id | databricks_workspace.marketplace.consumer_fulfillments |
Fields
The following fields are returned by SELECT
queries:
- list
Request completed successfully.
Name | Datatype | Description |
---|---|---|
listing_id | string | |
fulfillment_type | string | |
recipient_type | string | |
repo_info | object | |
share_info | object |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | deployment_name | Get all listings fulfillments associated with a listing. A |
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
- list
Get all listings fulfillments associated with a listing. A
SELECT
listing_id,
fulfillment_type,
recipient_type,
repo_info,
share_info
FROM databricks_workspace.marketplace.consumer_fulfillments
WHERE deployment_name = '{{ deployment_name }}' -- required;