operation_details
Creates, updates, deletes, gets or lists an operation_details resource.
Overview
| Name | operation_details |
| Type | Resource |
| Id | azure.app_configuration_dataplane.operation_details |
Fields
The following fields are returned by SELECT queries:
- get_operation_details
| Name | Datatype | Description |
|---|---|---|
id | string | The unique id of the operation. Required. |
error | object | An error, available when the status is Failed, describing why the operation failed. |
status | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_operation_details | select | snapshot, config_store_name | Gets 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.
| Name | Datatype | Description |
|---|---|---|
config_store_name | string | App Configuration store name. (default: ) |
snapshot | string | Snapshot identifier for the long running operation. Required. |
SELECT examples
- get_operation_details
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
;