operation_results
Creates, updates, deletes, gets or lists an operation_results
resource.
Overview
Name | operation_results |
Type | Resource |
Id | azure.mysql.operation_results |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
id | string (arm-id) | Fully qualified ID for the async operation. |
name | string | Name of the async operation. |
endTime | string (date-time) | The end time of the operation. |
error | object | If present, details of the operation error. |
operations | array | The operations list. |
percentComplete | number | Percent of the operation that is complete. |
properties | object | The extended properties of Operation Results |
resourceId | string (arm-id) | Fully qualified ID of the resource against which the original async operation was started. |
startTime | string (date-time) | The start time of the operation. |
status | string | Operation status. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , locationName , operationId |
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 name of the location. |
operationId | string | The operation Id. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
OK
SELECT
id,
name,
endTime,
error,
operations,
percentComplete,
properties,
resourceId,
startTime,
status
FROM azure.mysql.operation_results
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND locationName = '{{ locationName }}' -- required
AND operationId = '{{ operationId }}' -- required
;