Skip to main content

operation_details

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

Overview

Nameoperation_details
TypeResource
Idazure.app_configuration_dataplane.operation_details

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe unique id of the operation. Required.
errorobjectAn error, available when the status is Failed, describing why the operation failed.
statusstringThe current status of the operation. Required. Known values are: "NotStarted", "Running", "Succeeded", "Failed", and "Canceled". (NotStarted, Running, Succeeded, Failed, Canceled)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_operation_detailsselectsnapshot, config_store_nameGets the state of a long running operation. Gets the state of a long running operation.

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
config_store_namestringApp Configuration store name. (default: )
snapshotstringSnapshot identifier for the long running operation. Required.

SELECT examples

Gets the state of a long running operation. Gets the state of a long running operation.

SELECT
id,
error,
status
FROM azure.app_configuration_dataplane.operation_details
WHERE snapshot = '{{ snapshot }}' -- required
AND config_store_name = '{{ config_store_name }}' -- required
;