operation_results
Creates, updates, deletes, gets or lists a operation_results
resource.
Overview
Name | operation_results |
Type | Resource |
Id | azure.mysql.operation_results |
Fields
- vw_operation_results
- operation_results
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified ID for the async operation. |
name | text | Name of the async operation. |
end_time | text | field from the properties object |
error | text | The error detail. |
locationName | text | field from the properties object |
operationId | text | field from the properties object |
operations | text | The operations list. |
percent_complete | text | field from the properties object |
resource_id | text | field from the properties object |
start_time | text | field from the properties object |
status | text | Operation status. |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified ID for the async operation. |
name | string | Name of the async operation. |
endTime | string | The end time of the operation. |
error | object | The error detail. |
operations | array | The operations list. |
percentComplete | number | Percent of the operation that is complete. |
properties | object | A name-value pair that represents extended info. |
resourceId | string | Fully qualified ID of the resource against which the original async operation was started. |
startTime | string | The start time of the operation. |
status | string | Operation status. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | locationName, operationId, subscriptionId |
SELECT
examples
- vw_operation_results
- operation_results
SELECT
id,
name,
end_time,
error,
locationName,
operationId,
operations,
percent_complete,
resource_id,
start_time,
status,
subscriptionId
FROM azure.mysql.vw_operation_results
WHERE locationName = '{{ locationName }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
endTime,
error,
operations,
percentComplete,
properties,
resourceId,
startTime,
status
FROM azure.mysql.operation_results
WHERE locationName = '{{ locationName }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';