operation_results
Creates, updates, deletes, gets or lists an operation_results
resource.
Overview
Name | operation_results |
Type | Resource |
Id | azure.security_and_compliance.operation_results |
Fields
The following fields are returned by SELECT
queries:
- get
The body contains all of the properties of the operation result.
Name | Datatype | Description |
---|---|---|
id | string | The ID of the operation returned. |
name | string | The name of the operation result. |
properties |
| Additional properties of the operation result. |
startTime | string | The time that the operation was started. |
status | string | The status of the operation being performed. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , locationName , operationResultId | Get the operation result for a long running operation. |
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 |
---|---|---|
locationName | string | The location of the operation. |
operationResultId | string | The ID of the operation result to get. |
subscriptionId | string | The subscription identifier. |
SELECT
examples
- get
Get the operation result for a long running operation.
SELECT
id,
name,
properties,
startTime,
status
FROM azure.security_and_compliance.operation_results
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND locationName = '{{ locationName }}' -- required
AND operationResultId = '{{ operationResultId }}' -- required
;