Class ListTasksRequestParameters
- Namespace
- Elasticsearch.Net
- Assembly
- Elasticsearch.Net.dll
Request options for TasksList
http://www.elastic.co/guide/en/elasticsearch/reference/master/tasks.html
public class ListTasksRequestParameters : RequestParameters<ListTasksRequestParameters>, IRequestParameters
- Inheritance
-
ListTasksRequestParameters
- Implements
- Inherited Members
Constructors
ListTasksRequestParameters()
public ListTasksRequestParameters()
Properties
Actions
A comma-separated list of actions that should be returned. Leave empty to return all.
public string[] Actions { get; set; }
Property Value
- string[]
DefaultHttpMethod
public override HttpMethod DefaultHttpMethod { get; }
Property Value
Detailed
Return detailed task information (default: false)
public bool? Detailed { get; set; }
Property Value
- bool?
GroupBy
Group tasks by nodes or parent/child relationships
public GroupBy? GroupBy { get; set; }
Property Value
Nodes
A comma-separated list of node IDs or names to limit the returned information; use _local
to return information from the node you're
connecting to, leave empty to get information from all nodes
public string[] Nodes { get; set; }
Property Value
- string[]
ParentNode
Return tasks with specified parent node.
public string ParentNode { get; set; }
Property Value
ParentTaskId
Return tasks with specified parent task id (node_id:task_number). Set to -1 to return all.
public string ParentTaskId { get; set; }
Property Value
WaitForCompletion
Wait for the matching tasks to complete (default: false)
public bool? WaitForCompletion { get; set; }
Property Value
- bool?