private_store_subscriptions_contexts
Creates, updates, deletes, gets or lists a private_store_subscriptions_contexts resource.
Overview
| Name | private_store_subscriptions_contexts |
| Type | Resource |
| Id | azure_extras.marketplace.private_store_subscriptions_contexts |
Fields
The following fields are returned by SELECT queries:
- list
OK. The request has succeeded.
| Name | Datatype | Description |
|---|---|---|
subscriptionsIds | array |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | privateStoreId | List 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.
| Name | Datatype | Description |
|---|---|---|
privateStoreId | string | The store ID - must use the tenant ID |
SELECT examples
- list
List all the subscriptions in the private store context
SELECT
subscriptionsIds
FROM azure_extras.marketplace.private_store_subscriptions_contexts
WHERE privateStoreId = '{{ privateStoreId }}' -- required
;