Class FieldCapsRequest.Builder
- All Implemented Interfaces:
WithJson<FieldCapsRequest.Builder>
,ObjectBuilder<FieldCapsRequest>
- Enclosing class:
- FieldCapsRequest
FieldCapsRequest
.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal FieldCapsRequest.Builder
allowNoIndices
(Boolean value) If false, the request returns an error if any wildcard expression, index alias, or_all
value targets only missing or closed indices.build()
Builds aFieldCapsRequest
.final FieldCapsRequest.Builder
expandWildcards
(ExpandWildcard value, ExpandWildcard... values) The type of index that wildcard patterns can match.final FieldCapsRequest.Builder
expandWildcards
(List<ExpandWildcard> list) The type of index that wildcard patterns can match.final FieldCapsRequest.Builder
A list of fields to retrieve capabilities for.final FieldCapsRequest.Builder
A list of fields to retrieve capabilities for.final FieldCapsRequest.Builder
A comma-separated list of filters to apply to the response.final FieldCapsRequest.Builder
ignoreUnavailable
(Boolean value) Iftrue
, missing or closed indices are not included in the response.final FieldCapsRequest.Builder
includeEmptyFields
(Boolean value) If false, empty fields are not included in the response.final FieldCapsRequest.Builder
includeUnmapped
(Boolean value) If true, unmapped fields are included in the response.final FieldCapsRequest.Builder
A comma-separated list of data streams, indices, and aliases used to limit the request.final FieldCapsRequest.Builder
A comma-separated list of data streams, indices, and aliases used to limit the request.final FieldCapsRequest.Builder
indexFilter
(Query value) Filter indices if the provided query rewrites tomatch_none
on every shard.final FieldCapsRequest.Builder
indexFilter
(QueryVariant value) Filter indices if the provided query rewrites tomatch_none
on every shard.final FieldCapsRequest.Builder
Filter indices if the provided query rewrites tomatch_none
on every shard.final FieldCapsRequest.Builder
runtimeMappings
(String key, RuntimeField value) Define ad-hoc runtime fields in the request similar to the way it is done in search requests.final FieldCapsRequest.Builder
Define ad-hoc runtime fields in the request similar to the way it is done in search requests.final FieldCapsRequest.Builder
runtimeMappings
(Map<String, RuntimeField> map) Define ad-hoc runtime fields in the request similar to the way it is done in search requests.protected FieldCapsRequest.Builder
self()
final FieldCapsRequest.Builder
A comma-separated list of field types to include.final FieldCapsRequest.Builder
A comma-separated list of field types to include.Methods inherited from class co.elastic.clients.util.WithJsonObjectBuilderBase
withJson
Methods inherited from class co.elastic.clients.util.ObjectBuilderBase
_checkSingleUse, _listAdd, _listAddAll, _mapPut, _mapPutAll
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
allowNoIndices
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 targetingfoo*,bar*
returns an error if an index starts with foo but no index starts with bar.API name:
allow_no_indices
-
expandWildcards
The 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 asopen,hidden
.API name:
expand_wildcards
Adds all elements of
list
toexpandWildcards
. -
expandWildcards
public final FieldCapsRequest.Builder expandWildcards(ExpandWildcard value, ExpandWildcard... values) The 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 asopen,hidden
.API name:
expand_wildcards
Adds one or more values to
expandWildcards
. -
fields
A list of fields to retrieve capabilities for. Wildcard (*
) expressions are supported.API name:
fields
Adds all elements of
list
tofields
. -
fields
A list of fields to retrieve capabilities for. Wildcard (*
) expressions are supported.API name:
fields
Adds one or more values to
fields
. -
filters
A comma-separated list of filters to apply to the response.API name:
filters
-
includeEmptyFields
If false, empty fields are not included in the response.API name:
include_empty_fields
-
includeUnmapped
If true, unmapped fields are included in the response.API name:
include_unmapped
-
index
A comma-separated list of data streams, indices, and aliases used to limit the request. Supports wildcards (*). To target all data streams and indices, omit this parameter or use * or _all.API name:
index
Adds all elements of
list
toindex
. -
index
A comma-separated list of data streams, indices, and aliases used to limit the request. Supports wildcards (*). To target all data streams and indices, omit this parameter or use * or _all.API name:
index
Adds one or more values to
index
. -
indexFilter
Filter indices if the provided query rewrites tomatch_none
on every shard.IMPORTANT: The filtering is done on a best-effort basis, it uses index statistics and mappings to rewrite queries to
match_none
instead of fully running the request. For instance a range query over a date field can rewrite tomatch_none
if all documents within a shard (including deleted documents) are outside of the provided range. However, not all queries can rewrite tomatch_none
so this API may return an index even if the provided filter matches no document.API name:
index_filter
-
indexFilter
Filter indices if the provided query rewrites tomatch_none
on every shard.IMPORTANT: The filtering is done on a best-effort basis, it uses index statistics and mappings to rewrite queries to
match_none
instead of fully running the request. For instance a range query over a date field can rewrite tomatch_none
if all documents within a shard (including deleted documents) are outside of the provided range. However, not all queries can rewrite tomatch_none
so this API may return an index even if the provided filter matches no document.API name:
index_filter
-
indexFilter
Filter indices if the provided query rewrites tomatch_none
on every shard.IMPORTANT: The filtering is done on a best-effort basis, it uses index statistics and mappings to rewrite queries to
match_none
instead of fully running the request. For instance a range query over a date field can rewrite tomatch_none
if all documents within a shard (including deleted documents) are outside of the provided range. However, not all queries can rewrite tomatch_none
so this API may return an index even if the provided filter matches no document.API name:
index_filter
-
runtimeMappings
Define ad-hoc runtime fields in the request similar to the way it is done in search requests. These fields exist only as part of the query and take precedence over fields defined with the same name in the index mappings.API name:
runtime_mappings
Adds all entries of
map
toruntimeMappings
. -
runtimeMappings
Define ad-hoc runtime fields in the request similar to the way it is done in search requests. These fields exist only as part of the query and take precedence over fields defined with the same name in the index mappings.API name:
runtime_mappings
Adds an entry to
runtimeMappings
. -
runtimeMappings
public final FieldCapsRequest.Builder runtimeMappings(String key, Function<RuntimeField.Builder, ObjectBuilder<RuntimeField>> fn) Define ad-hoc runtime fields in the request similar to the way it is done in search requests. These fields exist only as part of the query and take precedence over fields defined with the same name in the index mappings.API name:
runtime_mappings
Adds an entry to
runtimeMappings
using a builder lambda. -
types
A comma-separated list of field types to include. Any fields that do not match one of these types will be excluded from the results. It defaults to empty, meaning that all field types are returned.API name:
types
Adds all elements of
list
totypes
. -
types
A comma-separated list of field types to include. Any fields that do not match one of these types will be excluded from the results. It defaults to empty, meaning that all field types are returned.API name:
types
Adds one or more values to
types
. -
self
- Specified by:
self
in classRequestBase.AbstractBuilder<FieldCapsRequest.Builder>
-
build
Builds aFieldCapsRequest
.- Specified by:
build
in interfaceObjectBuilder<FieldCapsRequest>
- Throws:
NullPointerException
- if some of the required fields are null.
-