w.provider_listings: Provider Listings¶
- class databricks.sdk.service.marketplace.ProviderListingsAPI¶
Listings are the core entities in the Marketplace. They represent the products that are available for consumption.
- create(listing: Listing) CreateListingResponse¶
Create a new listing
- Parameters:
listing –
Listing- Returns:
- delete(id: str)¶
Delete a listing
- Parameters:
id – str
- get(id: str) GetListingResponse¶
Get a listing
- Parameters:
id – str
- Returns:
- list([, page_size: Optional[int], page_token: Optional[str]]) Iterator[Listing]¶
List listings owned by this provider
- Parameters:
page_size – int (optional)
page_token – str (optional)
- Returns:
Iterator over
Listing
- update(id: str, listing: Listing) UpdateListingResponse¶
Update a listing
- Parameters:
id – str
listing –
Listing
- Returns: