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
This commit deletes the Indices Upgrade APIs. Both the GET and POST versions of the API are not useful since the upgrade from 2.x to 5.x and will be removed from the REST specs. Taking the opportunity now to remove them in 7.x .NET clients.
Closes#3854
Copy file name to clipboardExpand all lines: src/Elasticsearch.Net/Api/RequestParameters/RequestParameters.Indices.cs
-72Lines changed: 0 additions & 72 deletions
Original file line number
Diff line number
Diff line change
@@ -814,35 +814,6 @@ public TimeSpan MasterTimeout
814
814
}
815
815
}
816
816
817
-
///<summary>Request options for UpgradeStatus <para>http://www.elastic.co/guide/en/elasticsearch/reference/master/indices-upgrade.html</para></summary>
/// Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have
1346
-
/// been specified)
1347
-
///</summary>
1348
-
publicbool?AllowNoIndices
1349
-
{
1350
-
get=>Q<bool?>("allow_no_indices");
1351
-
set=>Q("allow_no_indices",value);
1352
-
}
1353
-
1354
-
///<summary>Whether to expand wildcard expression to concrete indices that are open, closed or both.</summary>
1355
-
publicExpandWildcards?ExpandWildcards
1356
-
{
1357
-
get=>Q<ExpandWildcards?>("expand_wildcards");
1358
-
set=>Q("expand_wildcards",value);
1359
-
}
1360
-
1361
-
///<summary>Whether specified concrete indices should be ignored when unavailable (missing or closed)</summary>
1362
-
publicbool?IgnoreUnavailable
1363
-
{
1364
-
get=>Q<bool?>("ignore_unavailable");
1365
-
set=>Q("ignore_unavailable",value);
1366
-
}
1367
-
1368
-
///<summary>If true, only ancient (an older Lucene major release) segments will be upgraded</summary>
1369
-
publicbool?OnlyAncientSegments
1370
-
{
1371
-
get=>Q<bool?>("only_ancient_segments");
1372
-
set=>Q("only_ancient_segments",value);
1373
-
}
1374
-
1375
-
///<summary>Specify whether the request should block until the all segments are upgraded (default: false)</summary>
1376
-
publicbool?WaitForCompletion
1377
-
{
1378
-
get=>Q<bool?>("wait_for_completion");
1379
-
set=>Q("wait_for_completion",value);
1380
-
}
1381
-
}
1382
-
1383
1311
///<summary>Request options for ValidateQuery <para>http://www.elastic.co/guide/en/elasticsearch/reference/master/search-validate.html</para></summary>
///<summary>GET on /{index}/_upgrade <para>http://www.elastic.co/guide/en/elasticsearch/reference/master/indices-upgrade.html</para></summary>
405
-
///<param name = "index">A comma-separated list of index names; use the special string `_all` or Indices.All to perform the operation on all indices</param>
406
-
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
///<summary>GET on /{index}/_upgrade <para>http://www.elastic.co/guide/en/elasticsearch/reference/master/indices-upgrade.html</para></summary>
410
-
///<param name = "index">A comma-separated list of index names; use the special string `_all` or Indices.All to perform the operation on all indices</param>
411
-
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
///<summary>POST on /{index}/_upgrade <para>http://www.elastic.co/guide/en/elasticsearch/reference/master/indices-upgrade.html</para></summary>
669
-
///<param name = "index">A comma-separated list of index names; use the special string `_all` or Indices.All to perform the operation on all indices</param>
670
-
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
///<summary>POST on /{index}/_upgrade <para>http://www.elastic.co/guide/en/elasticsearch/reference/master/indices-upgrade.html</para></summary>
674
-
///<param name = "index">A comma-separated list of index names; use the special string `_all` or Indices.All to perform the operation on all indices</param>
675
-
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
///<summary>Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)</summary>
///<summary>Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)</summary>
0 commit comments