You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
///<summary>Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified)</summary> [Obsolete("Scheduled to be removed in 7.0, deprecated")]
360
+
///<summary>Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified)</summary>
361
+
[Obsolete("Scheduled to be removed in 8.0, deprecated")]
///<summary>Whether to ignore if a wildcard expression matches no datafeeds. (This includes `_all` string or when no datafeeds have been specified)</summary>
///<summary>Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified)</summary> [Obsolete("Scheduled to be removed in 7.0, deprecated")]
399
+
///<summary>Whether to ignore if a wildcard expression matches no jobs. (This includes `_all` string or when no jobs have been specified)</summary>
400
+
[Obsolete("Scheduled to be removed in 8.0, deprecated")]
///<summary>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</summary>
Copy file name to clipboardExpand all lines: src/Nest/Requests.Cat.cs
+15-7Lines changed: 15 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1254,6 +1254,13 @@ public bool? Help
1254
1254
set=>Q("help",value);
1255
1255
}
1256
1256
1257
+
///<summary>Include bootstrap plugins in the response</summary>
1258
+
publicbool?IncludeBootstrap
1259
+
{
1260
+
get=>Q<bool?>("include_bootstrap");
1261
+
set=>Q("include_bootstrap",value);
1262
+
}
1263
+
1257
1264
///<summary>Return local information, do not retrieve the state from master node (default: false)</summary>
1258
1265
publicbool?Local
1259
1266
{
@@ -1701,6 +1708,7 @@ public partial interface ICatTasksRequest : IRequest<CatTasksRequestParameters>
1701
1708
}
1702
1709
1703
1710
///<summary>Request for Tasks <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/tasks.html</para></summary>
1711
+
///<remarks>Note: Experimental within the Elasticsearch server, this functionality is experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features.</remarks>
Copy file name to clipboardExpand all lines: src/Nest/Requests.Tasks.cs
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,7 @@ TaskId TaskId
43
43
}
44
44
45
45
///<summary>Request for Cancel <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/tasks.html</para></summary>
46
+
///<remarks>Note: Experimental within the Elasticsearch server, this functionality is experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features.</remarks>
///<summary>Request for GetTask <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/tasks.html</para></summary>
111
+
///<remarks>Note: Experimental within the Elasticsearch server, this functionality is experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features.</remarks>
@@ -150,6 +152,7 @@ public partial interface IListTasksRequest : IRequest<ListTasksRequestParameters
150
152
}
151
153
152
154
///<summary>Request for List <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/tasks.html</para></summary>
155
+
///<remarks>Note: Experimental within the Elasticsearch server, this functionality is experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features.</remarks>
0 commit comments