operations
Creates, updates, deletes, gets or lists a operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.digital_twins.operations |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Operation name: {provider}/{resource}/{read | write | action | delete} |
display | object | The object that represents the operation. |
isDataAction | boolean | If the operation is a data action (for data plane rbac). |
origin | string | The intended executor of the operation. |
properties | object | Operation properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT |
| Lists all of the available DigitalTwins service REST API operations. |
SELECT
examples
Lists all of the available DigitalTwins service REST API operations.
SELECT
name,
display,
isDataAction,
origin,
properties
FROM azure.digital_twins.operations
;