Class RecoveryRequest
- java.lang.Object
-
- org.opensearch.client.opensearch._types.RequestBase
-
- org.opensearch.client.opensearch.indices.RecoveryRequest
-
public class RecoveryRequest extends RequestBase
Returns information about ongoing index shard recoveries.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classRecoveryRequest.BuilderBuilder forRecoveryRequest.-
Nested classes/interfaces inherited from class org.opensearch.client.opensearch._types.RequestBase
RequestBase.AbstractBuilder<BuilderT extends RequestBase.AbstractBuilder<BuilderT>>
-
-
Field Summary
Fields Modifier and Type Field Description static Endpoint<RecoveryRequest,RecoveryResponse,ErrorResponse>_ENDPOINTEndpoint "indices.recovery".
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.BooleanactiveOnly()Display only those recoveries that are currently on-goingjava.lang.Booleandetailed()Whether to display detailed information about shard recoveryjava.util.List<java.lang.String>index()A comma-separated list of index names; use_allor empty string to perform the operation on all indicesstatic RecoveryRequestof(java.util.function.Function<RecoveryRequest.Builder,ObjectBuilder<RecoveryRequest>> fn)
-
-
-
Field Detail
-
_ENDPOINT
public static final Endpoint<RecoveryRequest,RecoveryResponse,ErrorResponse> _ENDPOINT
Endpoint "indices.recovery".
-
-
Method Detail
-
of
public static RecoveryRequest of(java.util.function.Function<RecoveryRequest.Builder,ObjectBuilder<RecoveryRequest>> fn)
-
activeOnly
@Nullable public final java.lang.Boolean activeOnly()
Display only those recoveries that are currently on-goingAPI name:
active_only
-
detailed
@Nullable public final java.lang.Boolean detailed()
Whether to display detailed information about shard recoveryAPI name:
detailed
-
index
public final java.util.List<java.lang.String> index()
A comma-separated list of index names; use_allor empty string to perform the operation on all indicesAPI name:
index
-
-