Class GetIndexRequest.Builder
- java.lang.Object
-
- org.opensearch.client.util.ObjectBuilderBase
-
- org.opensearch.client.opensearch.indices.GetIndexRequest.Builder
-
- All Implemented Interfaces:
ObjectBuilder<GetIndexRequest>
- Enclosing class:
- GetIndexRequest
public static class GetIndexRequest.Builder extends ObjectBuilderBase implements ObjectBuilder<GetIndexRequest>
Builder forGetIndexRequest.
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description GetIndexRequest.BuilderallowNoIndices(java.lang.Boolean value)Ignore if a wildcard expression resolves to no concrete indices (default: false)GetIndexRequestbuild()Builds aGetIndexRequest.GetIndexRequest.BuilderclusterManagerTimeout(java.util.function.Function<Time.Builder,ObjectBuilder<Time>> fn)Period to wait for a connection to the cluster-manager node.GetIndexRequest.BuilderclusterManagerTimeout(Time value)Period to wait for a connection to the cluster-manager node.GetIndexRequest.BuilderexpandWildcards(java.util.List<ExpandWildcard> list)Type of index that wildcard expressions can match.GetIndexRequest.BuilderexpandWildcards(ExpandWildcard value, ExpandWildcard... values)Type of index that wildcard expressions can match.GetIndexRequest.BuilderflatSettings(java.lang.Boolean value)If true, returns settings in flat format.GetIndexRequest.BuilderignoreUnavailable(java.lang.Boolean value)If false, requests that target a missing index return an error.GetIndexRequest.BuilderincludeDefaults(java.lang.Boolean value)If true, return all default settings in the response.GetIndexRequest.Builderindex(java.lang.String value, java.lang.String... values)Required - Comma-separated list of data streams, indices, and index aliases used to limit the request.GetIndexRequest.Builderindex(java.util.List<java.lang.String> list)Required - Comma-separated list of data streams, indices, and index aliases used to limit the request.GetIndexRequest.Builderlocal(java.lang.Boolean value)If true, the request retrieves information from the local node only.GetIndexRequest.BuildermasterTimeout(java.util.function.Function<Time.Builder,ObjectBuilder<Time>> fn)Deprecated.GetIndexRequest.BuildermasterTimeout(Time value)Deprecated.-
Methods inherited from class org.opensearch.client.util.ObjectBuilderBase
_checkSingleUse, _listAdd, _listAddAll, _mapPut, _mapPutAll
-
-
-
-
Method Detail
-
allowNoIndices
public final GetIndexRequest.Builder allowNoIndices(@Nullable java.lang.Boolean value)
Ignore if a wildcard expression resolves to no concrete indices (default: false)API name:
allow_no_indices
-
expandWildcards
public final GetIndexRequest.Builder expandWildcards(java.util.List<ExpandWildcard> list)
Type of index that wildcard expressions 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.API name:
expand_wildcardsAdds all elements of
listtoexpandWildcards.
-
expandWildcards
public final GetIndexRequest.Builder expandWildcards(ExpandWildcard value, ExpandWildcard... values)
Type of index that wildcard expressions 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.API name:
expand_wildcardsAdds one or more values to
expandWildcards.
-
flatSettings
public final GetIndexRequest.Builder flatSettings(@Nullable java.lang.Boolean value)
If true, returns settings in flat format.API name:
flat_settings
-
ignoreUnavailable
public final GetIndexRequest.Builder ignoreUnavailable(@Nullable java.lang.Boolean value)
If false, requests that target a missing index return an error.API name:
ignore_unavailable
-
includeDefaults
public final GetIndexRequest.Builder includeDefaults(@Nullable java.lang.Boolean value)
If true, return all default settings in the response.API name:
include_defaults
-
index
public final GetIndexRequest.Builder index(java.util.List<java.lang.String> list)
Required - Comma-separated list of data streams, indices, and index aliases used to limit the request. Wildcard expressions (*) are supported.API name:
indexAdds all elements of
listtoindex.
-
index
public final GetIndexRequest.Builder index(java.lang.String value, java.lang.String... values)
Required - Comma-separated list of data streams, indices, and index aliases used to limit the request. Wildcard expressions (*) are supported.API name:
indexAdds one or more values to
index.
-
local
public final GetIndexRequest.Builder local(@Nullable java.lang.Boolean value)
If true, the request retrieves information from the local node only. Defaults to false, which means information is retrieved from the cluster-manager node.API name:
local
-
masterTimeout
@Deprecated public final GetIndexRequest.Builder masterTimeout(@Nullable Time value)
Deprecated.Period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error.API name:
master_timeout
-
masterTimeout
@Deprecated public final GetIndexRequest.Builder masterTimeout(java.util.function.Function<Time.Builder,ObjectBuilder<Time>> fn)
Deprecated.Period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error.API name:
master_timeout
-
clusterManagerTimeout
public final GetIndexRequest.Builder clusterManagerTimeout(@Nullable Time value)
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:
cluster_manager_timeout
-
clusterManagerTimeout
public final GetIndexRequest.Builder clusterManagerTimeout(java.util.function.Function<Time.Builder,ObjectBuilder<Time>> fn)
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:
cluster_manager_timeout
-
build
public GetIndexRequest build()
Builds aGetIndexRequest.- Specified by:
buildin interfaceObjectBuilder<GetIndexRequest>- Throws:
java.lang.NullPointerException- if some of the required fields are null.
-
-