Skip to main content

private_store_request_approvals

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

Overview

Nameprivate_store_request_approvals
TypeResource
Idazure_extras.marketplace.private_store_request_approvals

Fields

NameDatatypeDescription
idtextThe resource ID.
nametextThe name of the resource.
is_closedtextfield from the properties object
message_codetextfield from the properties object
offer_display_nametextfield from the properties object
offer_idtextfield from the properties object
plans_detailstextfield from the properties object
privateStoreIdtextfield from the properties object
publisher_idtextfield from the properties object
requestApprovalIdtextfield from the properties object
system_datatextfield from the properties object
typetextThe type of the resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTprivateStoreId, requestApprovalIdGet open request approval details

SELECT examples

Get open request approval details

SELECT
id,
name,
is_closed,
message_code,
offer_display_name,
offer_id,
plans_details,
privateStoreId,
publisher_id,
requestApprovalId,
system_data,
type
FROM azure_extras.marketplace.vw_private_store_request_approvals
WHERE privateStoreId = '{{ privateStoreId }}'
AND requestApprovalId = '{{ requestApprovalId }}';