Class ExistsAliasRequest
java.lang.Object
co.elastic.clients.elasticsearch._types.RequestBase
co.elastic.clients.elasticsearch.indices.ExistsAliasRequest
Check aliases.
 
Check if one or more data stream or index aliases exist.
- See Also:
- 
Nested Class SummaryNested ClassesNested classes/interfaces inherited from class co.elastic.clients.elasticsearch._types.RequestBaseRequestBase.AbstractBuilder<BuilderT extends RequestBase.AbstractBuilder<BuilderT>>
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final Endpoint<ExistsAliasRequest,BooleanResponse, ErrorResponse> Endpoint "indices.exists_alias".
- 
Method SummaryModifier and TypeMethodDescriptionfinal BooleanIffalse, the request returns an error if any wildcard expression, index alias, or_allvalue targets only missing or closed indices.final List<ExpandWildcard>Type of index that wildcard patterns can match.final BooleanIffalse, requests that include a missing data stream or index in the target indices or data streams return an error.index()Comma-separated list of data streams or indices used to limit the request.final TimePeriod to wait for a connection to the master node.name()Required - Comma-separated list of aliases to check.static ExistsAliasRequestMethods inherited from class co.elastic.clients.elasticsearch._types.RequestBasetoString
- 
Field Details- 
_ENDPOINTEndpoint "indices.exists_alias".
 
- 
- 
Method Details- 
ofpublic static ExistsAliasRequest of(Function<ExistsAliasRequest.Builder, ObjectBuilder<ExistsAliasRequest>> fn) 
- 
allowNoIndicesIffalse, the request returns an error if any wildcard expression, index alias, or_allvalue targets only missing or closed indices. This behavior applies even if the request targets other open indices.API name: allow_no_indices
- 
expandWildcardsType 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_wildcards
- 
indexComma-separated list of data streams or indices used to limit the request. Supports wildcards (*). To target all data streams and indices, omit this parameter or use*or_all.API name: index
- 
masterTimeoutPeriod 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
- 
nameRequired - Comma-separated list of aliases to check. Supports wildcards (*).API name: name
 
-