operations
Creates, updates, deletes, gets or lists a operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.storage_pool.operations |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the operation being performed on this particular object |
actionType | string | Indicates the action type. |
display | object | Metadata about an operation. |
isDataAction | boolean | Indicates whether the operation applies to data-plane. |
origin | string | The intended executor of the operation; governs the display of the operation in the RBAC UX and the audit logs UX. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT |
| Gets a list of StoragePool operations. |
SELECT
examples
Gets a list of StoragePool operations.
SELECT
name,
actionType,
display,
isDataAction,
origin
FROM azure.storage_pool.operations
;