Skip to main content

repair_task_lists

Creates, updates, deletes, gets or lists a repair_task_lists resource.

Overview

Namerepair_task_lists
TypeResource
Idazure.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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_repair_task_listexecendpointTaskIdFilter, StateFilter, ExecutorFilterGets 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.

NameDatatypeDescription
endpointstringThe service endpoint host (no scheme). (default: )
ExecutorFilterstringThe name of the repair executor whose claimed tasks should be included in the list.
StateFilterintegerA 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
TaskIdFilterstringThe repair task ID prefix to be matched.

Lifecycle Methods

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 }}'
;