NEST by Elastic and contributors

<PackageReference Include="NEST" Version="6.5.1" />

.NET API 5,114,368 bytes

 GetMappingRequest

Request parameters for IndicesGetMappingForAll http://www.elastic.co/guide/en/elasticsearch/reference/master/indices-get-mapping.html
public bool? AllowNoIndices { get; set; }

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 ExpandWildcards? ExpandWildcards { get; set; }

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

public bool? IgnoreUnavailable { get; set; }

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

public bool? Local { get; set; }

Return local information, do not retrieve the state from master node (default: false)

public Time MasterTimeout { get; set; }

Specify timeout for connection to master

protected IGetMappingRequest Self { get; }

/_mapping

public GetMappingRequest(Indices index)

/{index}/_mapping

public GetMappingRequest(Types type)

/_mapping/{type}

public GetMappingRequest(Indices index, Types type)

/{index}/_mapping/{type}