operations
Creates, updates, deletes, gets or lists an operations resource.
Overview
| Name | operations |
| Type | Resource |
| Id | azure.data_share.operations |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
name | string | Operation name for display purposes |
display | object | Properties on the operation |
origin | string | origin of the operation |
properties | object | properties for the operation 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,
origin,
properties
FROM azure.data_share.operations
WHERE api-version = '{{ api-version }}'
;