Skip to main content

operation_status

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

Overview

Nameoperation_status
TypeResource
Idazure.terraform.operation_status

Fields

NameDatatypeDescription
idtextThe operation status resource id.
nametextThe operation name.
configurationtextfield from the properties object
end_timetextfield from the properties object
errortextThe error detail.
errorstextfield from the properties object
operationIdtextfield from the properties object
percent_completetextfield from the properties object
resource_idtextfield from the properties object
skipped_resourcestextfield from the properties object
start_timetextfield from the properties object
statustextThe status of the operation.
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECToperationId, subscriptionIdGet the status of a long running azure asynchronous operation.

SELECT examples

Get the status of a long running azure asynchronous operation.

SELECT
id,
name,
configuration,
end_time,
error,
errors,
operationId,
percent_complete,
resource_id,
skipped_resources,
start_time,
status,
subscriptionId
FROM azure.terraform.vw_operation_status
WHERE operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';