Class SearchTemplateRequest.Builder
- All Implemented Interfaces:
WithJson<SearchTemplateRequest.Builder>,ObjectBuilder<SearchTemplateRequest>
- Enclosing class:
- SearchTemplateRequest
SearchTemplateRequest.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionallowNoIndices(Boolean value) A setting that does two separate checks on the index expression.build()Builds aSearchTemplateRequest.ccsMinimizeRoundtrips(Boolean value) Indicates whether network round-trips should be minimized as part of cross-cluster search requests execution.expandWildcards(ExpandWildcard value, ExpandWildcard... values) The type of index that wildcard patterns can match.expandWildcards(List<ExpandWildcard> list) The type of index that wildcard patterns can match.Iftrue, returns detailed information about score calculation as part of each hit.The ID of the search template to use.ignoreThrottled(Boolean value) Deprecated.7.16.0ignoreUnavailable(Boolean value) Iffalse, the request returns an error if it targets a concrete (non-wildcarded) index, alias, or data stream that is missing, closed, or otherwise unavailable.A comma-separated list of data streams, indices, and aliases to search.A comma-separated list of data streams, indices, and aliases to search.Key-value pairs used to replace Mustache variables in the template.Key-value pairs used to replace Mustache variables in the template.preference(String value) The node or shard the operation should be performed on.Iftrue, the query execution is profiled.projectRouting(String value) Specifies a subset of projects to target for the search using project metadata tags in a subset of Lucene query syntax.A custom value used to route operations to a specific shard.A custom value used to route operations to a specific shard.Specifies how long a consistent view of the index should be maintained for scrolled search.Specifies how long a consistent view of the index should be maintained for scrolled search.searchType(SearchType value) The type of the search operation.protected SearchTemplateRequest.Builderself()source(ScriptSource value) An inline search template.An inline search template.Methods inherited from class co.elastic.clients.util.WithJsonObjectBuilderBase
withJsonMethods inherited from class co.elastic.clients.util.ObjectBuilderBase
_checkSingleUse, _listAdd, _listAddAll, _mapPut, _mapPutAll
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
allowNoIndices
A setting that does two separate checks on the index expression. Iffalse, the request returns an error (1) if any wildcard expression (including_alland*) resolves to zero matching indices or (2) if the complete set of resolved indices, aliases or data streams is empty after all expressions are evaluated. Iftrue, index expressions that resolve to no indices are allowed and the request returns an empty result.API name:
allow_no_indices -
ccsMinimizeRoundtrips
Indicates whether network round-trips should be minimized as part of cross-cluster search requests execution.API name:
ccs_minimize_roundtrips -
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_wildcardsAdds all elements of
listtoexpandWildcards. -
expandWildcards
public final SearchTemplateRequest.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_wildcardsAdds one or more values to
expandWildcards. -
explain
Iftrue, returns detailed information about score calculation as part of each hit. If you specify both this and theexplainquery parameter, the API uses only the query parameter.API name:
explain -
id
The ID of the search template to use. If nosourceis specified, this parameter is required.API name:
id -
ignoreThrottled
Deprecated.7.16.0Iftrue, specified concrete, expanded, or aliased indices are not included in the response when throttled.API name:
ignore_throttled -
index
A comma-separated list of data streams, indices, and aliases to search. It supports wildcards (*).API name:
indexAdds all elements of
listtoindex. -
index
A comma-separated list of data streams, indices, and aliases to search. It supports wildcards (*).API name:
indexAdds one or more values to
index. -
params
Key-value pairs used to replace Mustache variables in the template. The key is the variable name. The value is the variable value.API name:
paramsAdds all entries of
maptoparams. -
params
Key-value pairs used to replace Mustache variables in the template. The key is the variable name. The value is the variable value.API name:
paramsAdds an entry to
params. -
preference
The node or shard the operation should be performed on. It is random by default.API name:
preference -
profile
Iftrue, the query execution is profiled.API name:
profile -
projectRouting
Specifies a subset of projects to target for the search using project metadata tags in a subset of Lucene query syntax. Allowed Lucene queries: the _alias tag and a single value (possibly wildcarded). Examples: _alias:my-project _alias:_origin _alias:pr Supported in serverless only.API name:
project_routing -
routing
A custom value used to route operations to a specific shard.API name:
routingAdds all elements of
listtorouting. -
routing
A custom value used to route operations to a specific shard.API name:
routingAdds one or more values to
routing. -
scroll
Specifies how long a consistent view of the index should be maintained for scrolled search.API name:
scroll -
scroll
Specifies how long a consistent view of the index should be maintained for scrolled search.API name:
scroll -
searchType
The type of the search operation.API name:
search_type -
source
An inline search template. Supports the same parameters as the search API's request body. It also supports Mustache variables. If noidis specified, this parameter is required.API name:
source -
source
public final SearchTemplateRequest.Builder source(Function<ScriptSource.Builder, ObjectBuilder<ScriptSource>> fn) An inline search template. Supports the same parameters as the search API's request body. It also supports Mustache variables. If noidis specified, this parameter is required.API name:
source -
self
- Specified by:
selfin classRequestBase.AbstractBuilder<SearchTemplateRequest.Builder>
-
build
Builds aSearchTemplateRequest.- Specified by:
buildin interfaceObjectBuilder<SearchTemplateRequest>- Throws:
NullPointerException- if some of the required fields are null.
-