Skip to main content

operation_progress

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

Overview

Nameoperation_progress
TypeResource
Idazure.mysql.operation_progress

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
object_typetextfield 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,
object_type,
operationId,
operations,
percent_complete,
resource_id,
start_time,
status,
subscriptionId
FROM azure.mysql.vw_operation_progress
WHERE locationName = '{{ locationName }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';