private_store_request_approvals
Creates, updates, deletes, gets or lists a private_store_request_approvals resource.
Overview
| Name | private_store_request_approvals |
| Type | Resource |
| Id | azure_extras.marketplace.private_store_request_approvals |
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, requestApprovalId | Get open request approval details |
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 |
requestApprovalId | string | The request approval ID to get create or update |
SELECT examples
- get
Get open request approval details
SELECT
id,
name,
properties,
systemData,
type
FROM azure_extras.marketplace.private_store_request_approvals
WHERE privateStoreId = '{{ privateStoreId }}' -- required
AND requestApprovalId = '{{ requestApprovalId }}' -- required
;