Class CancelTasksRequestParameters
- Namespace
- Elasticsearch.Net
- Assembly
- Elasticsearch.Net.dll
Request options for TasksCancel
http://www.elastic.co/guide/en/elasticsearch/reference/master/tasks.html
public class CancelTasksRequestParameters : RequestParameters<CancelTasksRequestParameters>, IRequestParameters
- Inheritance
-
CancelTasksRequestParameters
- Implements
- Inherited Members
Constructors
CancelTasksRequestParameters()
public CancelTasksRequestParameters()
Properties
Actions
A comma-separated list of actions that should be cancelled. Leave empty to cancel all.
public string[] Actions { get; set; }
Property Value
- string[]
DefaultHttpMethod
public override HttpMethod DefaultHttpMethod { get; }
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
Cancel tasks with specified parent node.
public string ParentNode { get; set; }
Property Value
ParentTaskId
Cancel tasks with specified parent task id (node_id:task_number). Set to -1 to cancel all.
public string ParentTaskId { get; set; }