private_store_approval_requests_lists
Creates, updates, deletes, gets or lists a private_store_approval_requests_lists
resource.
Overview
Name | private_store_approval_requests_lists |
Type | Resource |
Id | azure_extras.marketplace.private_store_approval_requests_lists |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
id | string | The resource ID. |
name | string | The name of the resource. |
properties | object | The privateStore approval request data structure. |
systemData | object | Metadata pertaining to creation and last modification of the resource |
type | string | The type of the resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | privateStoreId | Get all open approval requests of current user |
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
- get
Get all open approval requests of current user
SELECT
id,
name,
properties,
systemData,
type
FROM azure_extras.marketplace.private_store_approval_requests_lists
WHERE privateStoreId = '{{ privateStoreId }}' -- required
;