Skip to main content

private_store_admin_request_approvals

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

Overview

Nameprivate_store_admin_request_approvals
TypeResource
Idazure_extras.marketplace.private_store_admin_request_approvals

Fields

NameDatatypeDescription
idtextThe resource ID.
nametextThe name of the resource.
adminRequestApprovalIdtextfield from the properties object
admin_actiontextfield from the properties object
administratortextfield from the properties object
approved_planstextfield from the properties object
collection_idstextfield from the properties object
commenttextfield from the properties object
display_nametextfield from the properties object
icontextfield from the properties object
offer_idtextfield from the properties object
planstextfield from the properties object
privateStoreIdtextfield from the properties object
publisherIdtextfield from the properties object
publisher_idtextfield from the properties object
system_datatextfield from the properties object
typetextThe type of the resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTadminRequestApprovalId, privateStoreId, publisherIdGet open approval requests
updateREPLACEadminRequestApprovalId, privateStoreIdUpdate the admin action, weather the request is approved or rejected and the approved plans

SELECT examples

Get open approval requests

SELECT
id,
name,
adminRequestApprovalId,
admin_action,
administrator,
approved_plans,
collection_ids,
comment,
display_name,
icon,
offer_id,
plans,
privateStoreId,
publisherId,
publisher_id,
system_data,
type
FROM azure_extras.marketplace.vw_private_store_admin_request_approvals
WHERE adminRequestApprovalId = '{{ adminRequestApprovalId }}'
AND privateStoreId = '{{ privateStoreId }}'
AND publisherId = '{{ publisherId }}';

REPLACE example

Replaces all fields in the specified private_store_admin_request_approvals resource.

/*+ update */
REPLACE azure_extras.marketplace.private_store_admin_request_approvals
SET
properties = '{{ properties }}'
WHERE
adminRequestApprovalId = '{{ adminRequestApprovalId }}'
AND privateStoreId = '{{ privateStoreId }}';