operations
Creates, updates, deletes, gets or lists an operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.purview.operations |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
name | string | Operation name for display purposes |
display | object | The response model for get operation properties |
isDataAction | boolean | Whether operation is a data action |
origin | string | origin of the operation |
properties | object | properties on meta info |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | api-version | List of available operations |
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 |
---|---|---|
api-version | string | The api version to use. |
SELECT
examples
- list
List of available operations
SELECT
name,
display,
isDataAction,
origin,
properties
FROM azure.purview.operations
WHERE api-version = '{{ api-version }}'
;