repair_task_lists
Creates, updates, deletes, gets or lists a repair_task_lists resource.
Overview
| Name | repair_task_lists |
| Type | Resource |
| Id | azure.service_fabric_dataplane.repair_task_lists |
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 |
|---|---|---|---|---|
get_repair_task_list | exec | endpoint | TaskIdFilter, StateFilter, ExecutorFilter | Gets a list of repair tasks matching the given filters. 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: ) |
ExecutorFilter | string | The name of the repair executor whose claimed tasks should be included in the list. |
StateFilter | integer | A bitwise-OR of the following values, specifying which task states should be included in the result list. - 1 - Created - 2 - Claimed - 4 - Preparing - 8 - Approved - 16 - Executing - 32 - Restoring - 64 - Completed |
TaskIdFilter | string | The repair task ID prefix to be matched. |
Lifecycle Methods
- get_repair_task_list
Gets a list of repair tasks matching the given filters. This API supports the Service Fabric platform; it is not meant to be used directly from your code.
EXEC azure.service_fabric_dataplane.repair_task_lists.get_repair_task_list
@endpoint='{{ endpoint }}' --required,
@TaskIdFilter='{{ TaskIdFilter }}',
@StateFilter='{{ StateFilter }}',
@ExecutorFilter='{{ ExecutorFilter }}'
;