Class PutMappingRequestParameters
- Namespace
- Elasticsearch.Net
- Assembly
- Elasticsearch.Net.dll
Request options for IndicesPutMapping
http://www.elastic.co/guide/en/elasticsearch/reference/master/indices-put-mapping.html
public class PutMappingRequestParameters : RequestParameters<PutMappingRequestParameters>, IRequestParameters
- Inheritance
-
PutMappingRequestParameters
- Implements
- Inherited Members
Constructors
PutMappingRequestParameters()
public PutMappingRequestParameters()
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?
MasterTimeout
Specify timeout for connection to master
public TimeSpan MasterTimeout { get; set; }
Property Value
Timeout
Explicit operation timeout
public TimeSpan Timeout { get; set; }
Property Value
UpdateAllTypes
Whether to update the mapping for all fields with the same name across all types or not
public bool? UpdateAllTypes { get; set; }
Property Value
- bool?