Skip to main content

private_store_approval_requests_lists

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

Overview

Nameprivate_store_approval_requests_lists
TypeResource
Idazure_extras.marketplace.private_store_approval_requests_lists

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe resource ID.
namestringThe name of the resource.
propertiesobjectThe privateStore approval request data structure.
systemDataobjectMetadata pertaining to creation and last modification of the resource
typestringThe type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectprivateStoreIdGet 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.

NameDatatypeDescription
privateStoreIdstringThe store ID - must use the tenant ID

SELECT examples

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
;