operations
Creates, updates, deletes, gets or lists a operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.data_box.operations |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Name of the operation. Format: {resourceProviderNamespace}/{resourceType}/{read|write|delete|action} |
display | object | Operation display |
isDataAction | boolean | Indicates whether the operation is a data action |
origin | string | Origin of the operation. Can be : user|system|user,system |
properties | object | Operation properties. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT |
| This method gets all the operations. |
mitigate | EXEC | jobName, resourceGroupName, subscriptionId | Request to mitigate for a given job |
SELECT
examples
This method gets all the operations.
SELECT
name,
display,
isDataAction,
origin,
properties
FROM azure.data_box.operations
;