operations
Creates, updates, deletes, gets or lists a operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure_extras.marketplace.operations |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Operation ID |
name | string | Operation name: {provider}/{resource}/{operation} |
display | object | The object that represents the operation. |
isDataAction | boolean | Indicates whether the operation is a data action |
origin | string | Origin of the operation |
properties | object | Operation properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT |
| Lists all of the available Microsoft.Marketplace REST API operations. |
query_rules | EXEC | collectionId, privateStoreId | Get a list of all private store rules in the given private store and collection |
query_user_rules | EXEC | privateStoreId | All rules approved in the private store that are relevant for user subscriptions |
set_collection_rules | EXEC | collectionId, privateStoreId | Set 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
;