Class ResetTransformRequest
java.lang.Object
co.elastic.clients.elasticsearch._types.RequestBase
co.elastic.clients.elasticsearch.transform.ResetTransformRequest
public class ResetTransformRequest extends RequestBase
Resets a transform. Before you can reset it, you must stop it; alternatively,
use the
force query parameter. If the destination index was
created by the transform, it is deleted.- See Also:
- API specification
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classResetTransformRequest.BuilderBuilder forResetTransformRequest.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<ResetTransformRequest,ResetTransformResponse,ErrorResponse>_ENDPOINTEndpoint "transform.reset_transform". -
Method Summary
Modifier and Type Method Description java.lang.Booleanforce()If this value istrue, the transform is reset regardless of its current state.static ResetTransformRequestof(java.util.function.Function<ResetTransformRequest.Builder,ObjectBuilder<ResetTransformRequest>> fn)java.lang.StringtransformId()Required - Identifier for the transform.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
_ENDPOINT
public static final Endpoint<ResetTransformRequest,ResetTransformResponse,ErrorResponse> _ENDPOINTEndpoint "transform.reset_transform".
-
-
Method Details
-
of
public static ResetTransformRequest of(java.util.function.Function<ResetTransformRequest.Builder,ObjectBuilder<ResetTransformRequest>> fn) -
force
@Nullable public final java.lang.Boolean force()If this value istrue, the transform is reset regardless of its current state. If it'sfalse, the transform must be stopped before it can be reset.API name:
force -
transformId
public final java.lang.String transformId()Required - Identifier for the transform. This identifier can contain lowercase alphanumeric characters (a-z and 0-9), hyphens, and underscores. It has a 64 character limit and must start and end with alphanumeric characters.API name:
transform_id
-