Table of Contents

Class UpdateIndexSettingsRequestParameters

Namespace
Elasticsearch.Net
Assembly
Elasticsearch.Net.dll

Request options for IndicesPutSettingsForAll

http://www.elastic.co/guide/en/elasticsearch/reference/master/indices-update-settings.html
public class UpdateIndexSettingsRequestParameters : RequestParameters<UpdateIndexSettingsRequestParameters>, IRequestParameters
Inheritance
UpdateIndexSettingsRequestParameters
Implements
Inherited Members

Constructors

UpdateIndexSettingsRequestParameters()

public UpdateIndexSettingsRequestParameters()

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

HttpMethod

ExpandWildcards

Whether to expand wildcard expression to concrete indices that are open, closed or both.

public ExpandWildcards? ExpandWildcards { get; set; }

Property Value

ExpandWildcards?

FlatSettings

Return settings in flat format (default: false)

public bool? FlatSettings { get; set; }

Property Value

bool?

IgnoreUnavailable

Whether specified concrete indices should be ignored when unavailable (missing or closed)

public bool? IgnoreUnavailable { get; set; }

Property Value

bool?

MasterTimeout

Specify timeout for connection to master

public TimeSpan MasterTimeout { get; set; }

Property Value

TimeSpan

PreserveExisting

Whether to update existing settings. If set to true existing settings on an index remain unchanged, the default is false

public bool? PreserveExisting { get; set; }

Property Value

bool?