Class UpgradeRequestParameters
- Namespace
- Elasticsearch.Net
- Assembly
- Elasticsearch.Net.dll
Request options for IndicesUpgradeForAll
http://www.elastic.co/guide/en/elasticsearch/reference/master/indices-upgrade.html
public class UpgradeRequestParameters : RequestParameters<UpgradeRequestParameters>, IRequestParameters
- Inheritance
-
UpgradeRequestParameters
- Implements
- Inherited Members
Constructors
UpgradeRequestParameters()
public UpgradeRequestParameters()
Properties
AllowNoIndices
Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes _all
string or when no indices have
been specified)
public bool? AllowNoIndices { get; set; }
Property Value
- bool?
DefaultHttpMethod
public override HttpMethod DefaultHttpMethod { get; }
Property Value
ExpandWildcards
Whether to expand wildcard expression to concrete indices that are open, closed or both.
public ExpandWildcards? ExpandWildcards { get; set; }
Property Value
IgnoreUnavailable
Whether specified concrete indices should be ignored when unavailable (missing or closed)
public bool? IgnoreUnavailable { get; set; }
Property Value
- bool?
OnlyAncientSegments
If true, only ancient (an older Lucene major release) segments will be upgraded
public bool? OnlyAncientSegments { get; set; }
Property Value
- bool?
WaitForCompletion
Specify whether the request should block until the all segments are upgraded (default: false)
public bool? WaitForCompletion { get; set; }
Property Value
- bool?