Skip to main content

operation_status

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

Overview

Nameoperation_status
TypeResource
Idazure.data_protection.operation_status

Fields

NameDatatypeDescription
idtextIt should match what is used to GET the operation result
nametextIt must match the last segment of the "id" field, and will typically be a GUID / system generated value
end_timetextfield from the properties object
errortextThe resource management error response.
locationtextfield from the properties object
object_typetextfield from the properties object
operationIdtextfield from the properties object
start_timetextfield from the properties object
statustextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, operationId, subscriptionId

SELECT examples

SELECT
id,
name,
end_time,
error,
location,
object_type,
operationId,
start_time,
status,
subscriptionId
FROM azure.data_protection.vw_operation_status
WHERE location = '{{ location }}'
AND operationId = '{{ operationId }}'
AND subscriptionId = '{{ subscriptionId }}';