Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure_extras.marketplace.operations

Fields

NameDatatypeDescription
idstringOperation ID
namestringOperation name: {provider}/{resource}/{operation}
displayobjectThe object that represents the operation.
isDataActionbooleanIndicates whether the operation is a data action
originstringOrigin of the operation
propertiesobjectOperation properties.

Methods

NameAccessible byRequired ParamsDescription
listSELECTLists all of the available Microsoft.Marketplace REST API operations.
query_rulesEXECcollectionId, privateStoreIdGet a list of all private store rules in the given private store and collection
query_user_rulesEXECprivateStoreIdAll rules approved in the private store that are relevant for user subscriptions
set_collection_rulesEXECcollectionId, privateStoreIdSet rule for specific private store and collection

SELECT examples

Lists all of the available Microsoft.Marketplace REST API operations.

SELECT
id,
name,
display,
isDataAction,
origin,
properties
FROM azure_extras.marketplace.operations
;