Class ListTasksRequestParameters
Request options for List
https://opensearch.org/docs/latest/api-reference/tasks/
Implements
Inherited Members
Namespace: OpenSearch.Net.Specification.TasksApi
Assembly: OpenSearch.Net.dll
Syntax
public class ListTasksRequestParameters : RequestParameters<ListTasksRequestParameters>, IRequestParameters
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[] |
DefaultHttpMethod
Declaration
public override HttpMethod DefaultHttpMethod { get; }
Property Value
Type | Description |
---|---|
HttpMethod |
Overrides
| Edit this page View SourceDetailed
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 |
SupportsBody
Declaration
public override bool SupportsBody { get; }
Property Value
Type | Description |
---|---|
bool |
Overrides
| Edit this page View SourceTimeout
Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.
Declaration
public TimeSpan Timeout { get; set; }
Property Value
Type | Description |
---|---|
TimeSpan |
WaitForCompletion
If true
, the request blocks until the operation is complete.
Declaration
public bool? WaitForCompletion { get; set; }
Property Value
Type | Description |
---|---|
bool? |