Skip to main content

operation_results

Creates, updates, deletes, gets or lists a operation_results resource.

Overview

Nameoperation_results
TypeResource
Idazure.mysql.operation_results

Fields

NameDatatypeDescription
idtextFully qualified ID for the async operation.
nametextName of the async operation.
end_timetextfield from the properties object
errortextThe error detail.
locationNametextfield from the properties object
operationIdtextfield from the properties object
operationstextThe operations list.
percent_completetextfield from the properties object
resource_idtextfield from the properties object
start_timetextfield from the properties object
statustextOperation status.
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocationName, operationId, subscriptionId

SELECT examples

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 }}';