Class FieldCapabilitiesRequestParameters
Request options for FieldCapabilities
https://opensearch.org/docs/latest/field-types/supported-field-types/alias/#using-aliases-in-field-capabilities-api-operations
Inheritance
Implements
Inherited Members
Namespace: OpenSearch.Net
Assembly: OpenSearch.Net.dll
Syntax
public class FieldCapabilitiesRequestParameters : RequestParameters<FieldCapabilitiesRequestParameters>, IRequestParameters
Properties
| Edit this page View SourceAllowNoIndices
If false, the request returns an error if any wildcard expression, index alias, or _all
value targets only missing or closed indices.
This behavior applies even if the request targets other open indices. For example, a request targeting foo*,bar*
returns an error if an
index starts with foo but no index starts with bar.
Declaration
public bool? AllowNoIndices { get; set; }
Property Value
Type | Description |
---|---|
bool? |
DefaultHttpMethod
Declaration
public override HttpMethod DefaultHttpMethod { get; }
Property Value
Type | Description |
---|---|
HttpMethod |
Overrides
| Edit this page View SourceExpandWildcards
Type of index that wildcard patterns can match. If the request can target data streams, this argument determines whether wildcard
expressions match hidden data streams. Supports comma-separated values, such as open,hidden
.
Declaration
public ExpandWildcards? ExpandWildcards { get; set; }
Property Value
Type | Description |
---|---|
ExpandWildcards? |
Fields
Comma-separated list of fields to retrieve capabilities for. Wildcard (*
) expressions are supported.
Declaration
public string[] Fields { get; set; }
Property Value
Type | Description |
---|---|
string[] |
IgnoreUnavailable
If true
, missing or closed indices are not included in the response.
Declaration
public bool? IgnoreUnavailable { get; set; }
Property Value
Type | Description |
---|---|
bool? |
IncludeUnmapped
If true, unmapped fields are included in the response.
Declaration
public bool? IncludeUnmapped { get; set; }
Property Value
Type | Description |
---|---|
bool? |
SupportsBody
Declaration
public override bool SupportsBody { get; }
Property Value
Type | Description |
---|---|
bool |