Skip to main content

operation_status

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

Overview

Nameoperation_status
TypeResource
Idazure.data_protection.operation_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringIt should match what is used to GET the operation result
namestringIt must match the last segment of the "id" field, and will typically be a GUID / system generated value
endTimestring (date-time)End time of the operation
errorobjectRequired if status == failed or status == canceled. This is the OData v4 error format, used by the RPC and will go into the v2.2 Azure REST API guidelines.
The full set of optional properties (e.g. inner errors / details) can be found in the "Error Response" section.
propertiesobjectEnd time of the operation (title: OperationExtendedInfo)
startTimestring (date-time)Start time of the operation
statusstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, location, operationId

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
locationstring
operationIdstring
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

OK

SELECT
id,
name,
endTime,
error,
properties,
startTime,
status
FROM azure.data_protection.operation_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND operationId = '{{ operationId }}' -- required
;