Class ListTasksRequest
Request for List
https://opensearch.org/docs/latest/api-reference/tasks/
Inheritance
Inherited Members
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public class ListTasksRequest : PlainRequestBase<ListTasksRequestParameters>, IListTasksRequest, IRequest<ListTasksRequestParameters>, IRequest
Properties
| Edit this page View SourceActions
Comma-separated list or wildcard expression of actions used to limit the request.
Declaration
public string[] Actions { get; set; }
Property Value
Type | Description |
---|---|
string[] |
Detailed
If true
, the response includes detailed information about shard recoveries.
Declaration
public bool? Detailed { get; set; }
Property Value
Type | Description |
---|---|
bool? |
GroupBy
Key used to group tasks in the response.
Declaration
public TasksGroupBy? GroupBy { get; set; }
Property Value
Type | Description |
---|---|
TasksGroupBy? |
Nodes
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.
Declaration
public string[] Nodes { get; set; }
Property Value
Type | Description |
---|---|
string[] |
ParentTaskId
Parent task ID used to limit returned information. To return all tasks, omit this parameter or use a value of -1
.
Declaration
public string ParentTaskId { get; set; }
Property Value
Type | Description |
---|---|
string |
Self
Declaration
protected IListTasksRequest Self { get; }
Property Value
Type | Description |
---|---|
IListTasksRequest |
Timeout
Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.
Declaration
public Time Timeout { get; set; }
Property Value
Type | Description |
---|---|
Time |
WaitForCompletion
If true
, the request blocks until the operation is complete.
Declaration
public bool? WaitForCompletion { get; set; }
Property Value
Type | Description |
---|---|
bool? |