Skip to main content

private_store_subscriptions_contexts

Creates, updates, deletes, gets or lists a private_store_subscriptions_contexts resource.

Overview

Nameprivate_store_subscriptions_contexts
TypeResource
Idazure_extras.marketplace.private_store_subscriptions_contexts

Fields

The following fields are returned by SELECT queries:

OK. The request has succeeded.

NameDatatypeDescription
subscriptionsIdsarray

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectprivateStoreIdList all the subscriptions in the private store context

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
privateStoreIdstringThe store ID - must use the tenant ID

SELECT examples

List all the subscriptions in the private store context

SELECT
subscriptionsIds
FROM azure_extras.marketplace.private_store_subscriptions_contexts
WHERE privateStoreId = '{{ privateStoreId }}' -- required
;