Class ResolveClusterRequest.Builder
java.lang.Object
co.elastic.clients.util.ObjectBuilderBase
co.elastic.clients.util.WithJsonObjectBuilderBase<BuilderT>
co.elastic.clients.elasticsearch._types.RequestBase.AbstractBuilder<ResolveClusterRequest.Builder>
co.elastic.clients.elasticsearch.indices.ResolveClusterRequest.Builder
- All Implemented Interfaces:
WithJson<ResolveClusterRequest.Builder>
,ObjectBuilder<ResolveClusterRequest>
- Enclosing class:
- ResolveClusterRequest
public static class ResolveClusterRequest.Builder
extends RequestBase.AbstractBuilder<ResolveClusterRequest.Builder>
implements ObjectBuilder<ResolveClusterRequest>
Builder for
ResolveClusterRequest
.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionallowNoIndices
(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 aResolveClusterRequest
.expandWildcards
(ExpandWildcard value, ExpandWildcard... values) Type of index that wildcard patterns can match.expandWildcards
(List<ExpandWildcard> list) Type of index that wildcard patterns can match.ignoreThrottled
(Boolean value) Deprecated.7.16.0ignoreUnavailable
(Boolean value) If false, the request returns an error if it targets a missing or closed index.A comma-separated list of names or index patterns for the indices, aliases, and data streams to resolve.A comma-separated list of names or index patterns for the indices, aliases, and data streams to resolve.protected ResolveClusterRequest.Builder
self()
The maximum time to wait for remote clusters to respond.The maximum time to wait for remote clusters to respond.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 withfoo
but no index starts withbar
. NOTE: This option is only supported when specifying an index expression. You will get an error if you specify index options to the_resolve/cluster
API endpoint that takes no index expression.API name:
allow_no_indices
-
expandWildcards
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
. Valid values are:all
,open
,closed
,hidden
,none
. NOTE: This option is only supported when specifying an index expression. You will get an error if you specify index options to the_resolve/cluster
API endpoint that takes no index expression.API name:
expand_wildcards
Adds all elements of
list
toexpandWildcards
. -
expandWildcards
public final ResolveClusterRequest.Builder expandWildcards(ExpandWildcard value, ExpandWildcard... values) 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
. Valid values are:all
,open
,closed
,hidden
,none
. NOTE: This option is only supported when specifying an index expression. You will get an error if you specify index options to the_resolve/cluster
API endpoint that takes no index expression.API name:
expand_wildcards
Adds one or more values to
expandWildcards
. -
ignoreThrottled
Deprecated.7.16.0If true, concrete, expanded, or aliased indices are ignored when frozen. NOTE: This option is only supported when specifying an index expression. You will get an error if you specify index options to the_resolve/cluster
API endpoint that takes no index expression.API name:
ignore_throttled
-
name
A comma-separated list of names or index patterns for the indices, aliases, and data streams to resolve. Resources on remote clusters can be specified using the<cluster>
:<name>
syntax. Index and cluster exclusions (e.g.,-cluster1:*
) are also supported. If no index expression is specified, information about all remote clusters configured on the local cluster is returned without doing any index matchingAPI name:
name
Adds all elements of
list
toname
. -
name
A comma-separated list of names or index patterns for the indices, aliases, and data streams to resolve. Resources on remote clusters can be specified using the<cluster>
:<name>
syntax. Index and cluster exclusions (e.g.,-cluster1:*
) are also supported. If no index expression is specified, information about all remote clusters configured on the local cluster is returned without doing any index matchingAPI name:
name
Adds one or more values to
name
. -
timeout
The maximum time to wait for remote clusters to respond. If a remote cluster does not respond within this timeout period, the API response will show the cluster as not connected and include an error message that the request timed out.The default timeout is unset and the query can take as long as the networking layer is configured to wait for remote clusters that are not responding (typically 30 seconds).
API name:
timeout
-
timeout
The maximum time to wait for remote clusters to respond. If a remote cluster does not respond within this timeout period, the API response will show the cluster as not connected and include an error message that the request timed out.The default timeout is unset and the query can take as long as the networking layer is configured to wait for remote clusters that are not responding (typically 30 seconds).
API name:
timeout
-
self
- Specified by:
self
in classRequestBase.AbstractBuilder<ResolveClusterRequest.Builder>
-
build
Builds aResolveClusterRequest
.- Specified by:
build
in interfaceObjectBuilder<ResolveClusterRequest>
- Throws:
NullPointerException
- if some of the required fields are null.
-