Class OpenRequest.Builder
java.lang.Object
org.opensearch.client.util.ObjectBuilderBase
org.opensearch.client.opensearch._types.RequestBase.AbstractBuilder<OpenRequest.Builder>
org.opensearch.client.opensearch.indices.OpenRequest.Builder
- All Implemented Interfaces:
CopyableBuilder<OpenRequest.Builder,,OpenRequest> MutableBuilder<OpenRequest.Builder,,OpenRequest> ObjectBuilder<OpenRequest>
- Enclosing class:
OpenRequest
public static class OpenRequest.Builder
extends RequestBase.AbstractBuilder<OpenRequest.Builder>
implements CopyableBuilder<OpenRequest.Builder,OpenRequest>
Builder for
OpenRequest.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal OpenRequest.BuilderallowNoIndices(Boolean value) Iffalse, the request returns an error if any wildcard expression, index alias, or_allvalue targets only missing or closed indexes.build()Builds aOpenRequest.final OpenRequest.BuilderOperation timeout for connection to cluster-manager node.final OpenRequest.BuilderclusterManagerTimeout(Time value) Operation timeout for connection to cluster-manager node.copy()Create a new builderCopyableBuilderthat is a copy of this one.final OpenRequest.BuilderexpandWildcards(List<ExpandWildcard> list) Type of index that wildcard patterns can match.final OpenRequest.BuilderexpandWildcards(ExpandWildcard value, ExpandWildcard... values) Type of index that wildcard patterns can match.final OpenRequest.BuilderignoreUnavailable(Boolean value) Iffalse, the request returns an error if it targets a missing or closed index.final OpenRequest.BuilderRequired - Comma-separated list of data streams, indexes, and aliases used to limit the request.final OpenRequest.BuilderRequired - Comma-separated list of data streams, indexes, and aliases used to limit the request.final OpenRequest.BuilderDeprecated.final OpenRequest.BuildermasterTimeout(Time value) Deprecated.protected OpenRequest.Builderself()final OpenRequest.BuilderExplicit task execution timeout, only useful whenwait_for_completionis false, defaults to1h.final OpenRequest.BuildertaskExecutionTimeout(Time value) Explicit task execution timeout, only useful whenwait_for_completionis false, defaults to1h.final OpenRequest.BuilderPeriod to wait for a response.final OpenRequest.BuilderPeriod to wait for a response.final OpenRequest.BuilderThe number of shard copies that must be active before proceeding with the operation.final OpenRequest.BuilderThe number of shard copies that must be active before proceeding with the operation.final OpenRequest.BuilderwaitForCompletion(Boolean value) Should this request wait until the operation has completed before returning.Methods inherited from class org.opensearch.client.opensearch._types.RequestBase.AbstractBuilder
errorTrace, humanMethods inherited from class org.opensearch.client.util.ObjectBuilderBase
_checkSingleUse, _listAdd, _listAddAll, _listCopy, _mapCopy, _mapPut, _mapPutAllMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.opensearch.client.util.MutableBuilder
applyMutation
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
copy
Description copied from interface:CopyableBuilderCreate a new builderCopyableBuilderthat is a copy of this one.- Specified by:
copyin interfaceCopyableBuilder<OpenRequest.Builder,OpenRequest> - Returns:
- a new builder instance.
-
self
- Specified by:
selfin classRequestBase.AbstractBuilder<OpenRequest.Builder>
-
allowNoIndices
Iffalse, the request returns an error if any wildcard expression, index alias, or_allvalue targets only missing or closed indexes. This behavior applies even if the request targets other open indexes.API name:
allow_no_indices -
clusterManagerTimeout
Operation timeout for connection to cluster-manager node.API name:
cluster_manager_timeout -
clusterManagerTimeout
@Nonnull public final OpenRequest.Builder clusterManagerTimeout(Function<Time.Builder, ObjectBuilder<Time>> fn) Operation timeout for connection to cluster-manager node.API name:
cluster_manager_timeout -
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.API name:
expand_wildcardsAdds all elements of
listtoexpandWildcards. -
expandWildcards
@Nonnull public final OpenRequest.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.API name:
expand_wildcardsAdds one or more values to
expandWildcards. -
index
Required - Comma-separated list of data streams, indexes, and aliases used to limit the request. Supports wildcards (*). By default, you must explicitly name the indexes you using to limit the request. To limit a request using_all,*, or other wildcard expressions, change theaction.destructive_requires_namesetting to false. You can update this setting in theopensearch.ymlfile or using the cluster update settings API.API name:
indexAdds all elements of
listtoindex. -
index
Required - Comma-separated list of data streams, indexes, and aliases used to limit the request. Supports wildcards (*). By default, you must explicitly name the indexes you using to limit the request. To limit a request using_all,*, or other wildcard expressions, change theaction.destructive_requires_namesetting to false. You can update this setting in theopensearch.ymlfile or using the cluster update settings API.API name:
indexAdds one or more values to
index. -
masterTimeout
Deprecated.Period to wait for a connection to the cluster-manager node. If no response is received before the timeout expires, the request fails and returns an error.API name:
master_timeout -
masterTimeout
@Deprecated @Nonnull public final OpenRequest.Builder masterTimeout(Function<Time.Builder, ObjectBuilder<Time>> fn) Deprecated.Period to wait for a connection to the cluster-manager node. If no response is received before the timeout expires, the request fails and returns an error.API name:
master_timeout -
taskExecutionTimeout
Explicit task execution timeout, only useful whenwait_for_completionis false, defaults to1h.API name:
task_execution_timeout -
taskExecutionTimeout
@Nonnull public final OpenRequest.Builder taskExecutionTimeout(Function<Time.Builder, ObjectBuilder<Time>> fn) Explicit task execution timeout, only useful whenwait_for_completionis false, defaults to1h.API name:
task_execution_timeout -
timeout
Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.API name:
timeout -
timeout
Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.API name:
timeout -
waitForActiveShards
The number of shard copies that must be active before proceeding with the operation. Set toallor any positive integer up to the total number of shards in the index (number_of_replicas+1).API name:
wait_for_active_shards -
waitForActiveShards
@Nonnull public final OpenRequest.Builder waitForActiveShards(Function<WaitForActiveShards.Builder, ObjectBuilder<WaitForActiveShards>> fn) The number of shard copies that must be active before proceeding with the operation. Set toallor any positive integer up to the total number of shards in the index (number_of_replicas+1).API name:
wait_for_active_shards -
waitForCompletion
Should this request wait until the operation has completed before returning.API name:
wait_for_completion -
build
Builds aOpenRequest.- Specified by:
buildin interfaceObjectBuilder<OpenRequest>- Throws:
NullPointerException- if some of the required fields are null.
-