repair_execution_states
Creates, updates, deletes, gets or lists a repair_execution_states resource.
Overview
| Name | repair_execution_states |
| Type | Resource |
| Id | azure.service_fabric_dataplane.repair_execution_states |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
update_repair_execution_state | exec | endpoint, TaskId, State, Action | Updates the execution state of a repair task. This API supports the Service Fabric platform; it is not meant to be used directly from your code. |
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 |
|---|---|---|
endpoint | string | The service endpoint host (no scheme). (default: ) |
Lifecycle Methods
- update_repair_execution_state
Updates the execution state of a repair task. This API supports the Service Fabric platform; it is not meant to be used directly from your code.
EXEC azure.service_fabric_dataplane.repair_execution_states.update_repair_execution_state
@endpoint='{{ endpoint }}' --required
@@json=
'{
"TaskId": "{{ TaskId }}",
"Version": "{{ Version }}",
"Description": "{{ Description }}",
"State": "{{ State }}",
"Flags": {{ Flags }},
"Action": "{{ Action }}",
"Target": "{{ Target }}",
"Executor": "{{ Executor }}",
"ExecutorData": "{{ ExecutorData }}",
"Impact": "{{ Impact }}",
"ResultStatus": "{{ ResultStatus }}",
"ResultCode": {{ ResultCode }},
"ResultDetails": "{{ ResultDetails }}",
"History": "{{ History }}",
"PreparingHealthCheckState": "{{ PreparingHealthCheckState }}",
"RestoringHealthCheckState": "{{ RestoringHealthCheckState }}",
"PerformPreparingHealthCheck": {{ PerformPreparingHealthCheck }},
"PerformRestoringHealthCheck": {{ PerformRestoringHealthCheck }}
}'
;