Class GetIndexRequest.Builder
java.lang.Object
co.elastic.clients.elasticsearch.indices.GetIndexRequest.Builder
- All Implemented Interfaces:
ObjectBuilder<GetIndexRequest>
- Enclosing class:
- GetIndexRequest
public static class GetIndexRequest.Builder extends java.lang.Object implements ObjectBuilder<GetIndexRequest>
Builder for
GetIndexRequest.-
Constructor Summary
Constructors Constructor Description Builder() -
Method Summary
Modifier and Type Method Description GetIndexRequest.BuilderaddExpandWildcards(ExpandWildcardOptions value)Add a value toexpandWildcards(List), creating the list if needed.GetIndexRequest.BuilderaddIndex(java.lang.String value)Add a value toindex(List), creating the list if needed.GetIndexRequest.BuilderallowNoIndices(java.lang.Boolean value)Ignore if a wildcard expression resolves to no concrete indices (default: false)GetIndexRequestbuild()Builds aGetIndexRequest.GetIndexRequest.BuilderexpandWildcards(ExpandWildcardOptions... value)Type of index that wildcard expressions can match.GetIndexRequest.BuilderexpandWildcards(java.util.List<ExpandWildcardOptions> value)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.BuilderincludeTypeName(java.lang.Boolean value)If true, a mapping type is expected in the body of mappings.GetIndexRequest.Builderindex(java.lang.String... value)Required - Comma-separated list of data streams, indices, and index aliases used to limit the request.GetIndexRequest.Builderindex(java.util.List<java.lang.String> value)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.lang.String value)Period to wait for a connection to the master node.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
index
Required - Comma-separated list of data streams, indices, and index aliases used to limit the request. Wildcard expressions (*) are supported.API name:
index -
index
Required - Comma-separated list of data streams, indices, and index aliases used to limit the request. Wildcard expressions (*) are supported.API name:
index -
addIndex
Add a value toindex(List), creating the list if needed. -
allowNoIndices
Ignore if a wildcard expression resolves to no concrete indices (default: false)API name:
allow_no_indices -
expandWildcards
public GetIndexRequest.Builder expandWildcards(@Nullable java.util.List<ExpandWildcardOptions> value)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_wildcards -
expandWildcards
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_wildcards -
addExpandWildcards
Add a value toexpandWildcards(List), creating the list if needed. -
flatSettings
If true, returns settings in flat format.API name:
flat_settings -
includeDefaults
If true, return all default settings in the response.API name:
include_defaults -
includeTypeName
If true, a mapping type is expected in the body of mappings.API name:
include_type_name -
local
If true, the request retrieves information from the local node only. Defaults to false, which means information is retrieved from the master node.API name:
local -
masterTimeout
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 -
build
Builds aGetIndexRequest.- Specified by:
buildin interfaceObjectBuilder<GetIndexRequest>- Throws:
java.lang.NullPointerException- if some of the required fields are null.
-