Class UpgradeRequest
java.lang.Object
co.elastic.clients.elasticsearch._types.RequestBase
co.elastic.clients.elasticsearch.indices.UpgradeRequest
public class UpgradeRequest extends RequestBase
DEPRECATED Upgrades to the current version of Lucene.
- See Also:
- API specification
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classUpgradeRequest.BuilderBuilder forUpgradeRequest.Nested classes/interfaces inherited from class co.elastic.clients.elasticsearch._types.RequestBase
RequestBase.AbstractBuilder<BuilderT extends RequestBase.AbstractBuilder<BuilderT>> -
Field Summary
Fields Modifier and Type Field Description static Endpoint<UpgradeRequest,UpgradeResponse,ErrorResponse>_ENDPOINTEndpoint "indices.upgrade". -
Method Summary
Modifier and Type Method Description java.lang.BooleanallowNoIndices()Whether to ignore if a wildcard indices expression resolves into no concrete indices.java.util.List<ExpandWildcard>expandWildcards()Whether to expand wildcard expression to concrete indices that are open, closed or both.java.lang.BooleanignoreUnavailable()Whether specified concrete indices should be ignored when unavailable (missing or closed)java.lang.Stringindex()A comma-separated list of index names; use_allor empty string to perform the operation on all indicesstatic UpgradeRequestof(java.util.function.Function<UpgradeRequest.Builder,ObjectBuilder<UpgradeRequest>> fn)java.lang.BooleanonlyAncientSegments()If true, only ancient (an older Lucene major release) segments will be upgradedjava.lang.BooleanwaitForCompletion()Specify whether the request should block until the all segments are upgraded (default: false)Methods inherited from class co.elastic.clients.elasticsearch._types.RequestBase
toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Field Details
-
_ENDPOINT
Endpoint "indices.upgrade".
-
-
Method Details
-
of
public static UpgradeRequest of(java.util.function.Function<UpgradeRequest.Builder,ObjectBuilder<UpgradeRequest>> fn) -
allowNoIndices
@Nullable public final java.lang.Boolean allowNoIndices()Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes_allstring or when no indices have been specified)API name:
allow_no_indices -
expandWildcards
Whether to expand wildcard expression to concrete indices that are open, closed or both.API name:
expand_wildcards -
index
@Nullable public final java.lang.String index()A comma-separated list of index names; use_allor empty string to perform the operation on all indicesAPI name:
index -
onlyAncientSegments
@Nullable public final java.lang.Boolean onlyAncientSegments()If true, only ancient (an older Lucene major release) segments will be upgradedAPI name:
only_ancient_segments -
waitForCompletion
@Nullable public final java.lang.Boolean waitForCompletion()Specify whether the request should block until the all segments are upgraded (default: false)API name:
wait_for_completion
-