Class UpdateTransformRequest
java.lang.Object
co.elastic.clients.elasticsearch._types.RequestBase
co.elastic.clients.elasticsearch.transform.UpdateTransformRequest
- All Implemented Interfaces:
JsonpSerializable
@JsonpDeserializable public class UpdateTransformRequest extends RequestBase implements JsonpSerializable
Updates certain properties of a transform.
All updated properties except description do not take effect
until after the transform starts the next checkpoint, thus there is data
consistency in each checkpoint. To use this API, you must have
read and view_index_metadata privileges for the
source indices. You must also have index and read
privileges for the destination index. When Elasticsearch security features
are enabled, the transform remembers which roles the user who updated it had
at the time of update and runs with those privileges.
- See Also:
- API specification
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classUpdateTransformRequest.BuilderBuilder forUpdateTransformRequest.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 JsonpDeserializer<UpdateTransformRequest>_DESERIALIZERJson deserializer forUpdateTransformRequeststatic Endpoint<UpdateTransformRequest,UpdateTransformResponse,ErrorResponse>_ENDPOINTEndpoint "transform.update_transform". -
Method Summary
Modifier and Type Method Description java.lang.BooleandeferValidation()When true, deferrable validations are not run.java.lang.Stringdescription()Free text description of the transform.Destinationdest()The destination for the transform.Timefrequency()The interval between checks for changes in the source indices when the transform is running continuously.static UpdateTransformRequestof(java.util.function.Function<UpdateTransformRequest.Builder,ObjectBuilder<UpdateTransformRequest>> fn)RetentionPolicyretentionPolicy()Defines a retention policy for the transform.voidserialize(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)Serialize this object to JSON.protected voidserializeInternal(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)Settingssettings()Defines optional transform settings.protected static voidsetupUpdateTransformRequestDeserializer(ObjectDeserializer<UpdateTransformRequest.Builder> op)Sourcesource()The source of the data for the transform.Syncsync()Defines the properties transforms require to run continuously.Timetimeout()Period to wait for a response.java.lang.StringtransformId()Required - Identifier for the transform.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
-
_DESERIALIZER
Json deserializer forUpdateTransformRequest -
_ENDPOINT
public static final Endpoint<UpdateTransformRequest,UpdateTransformResponse,ErrorResponse> _ENDPOINTEndpoint "transform.update_transform".
-
-
Method Details
-
of
public static UpdateTransformRequest of(java.util.function.Function<UpdateTransformRequest.Builder,ObjectBuilder<UpdateTransformRequest>> fn) -
deferValidation
@Nullable public final java.lang.Boolean deferValidation()When true, deferrable validations are not run. This behavior may be desired if the source index does not exist until after the transform is created.API name:
defer_validation -
description
@Nullable public final java.lang.String description()Free text description of the transform.API name:
description -
dest
The destination for the transform.API name:
dest -
frequency
The interval between checks for changes in the source indices when the transform is running continuously. Also determines the retry interval in the event of transient failures while the transform is searching or indexing. The minimum value is 1s and the maximum is 1h.API name:
frequency -
retentionPolicy
Defines a retention policy for the transform. Data that meets the defined criteria is deleted from the destination index.API name:
retention_policy -
settings
Defines optional transform settings.API name:
settings -
source
The source of the data for the transform.API name:
source -
sync
Defines the properties transforms require to run continuously.API name:
sync -
timeout
Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.API name:
timeout -
transformId
public final java.lang.String transformId()Required - Identifier for the transform.API name:
transform_id -
serialize
Serialize this object to JSON.- Specified by:
serializein interfaceJsonpSerializable
-
serializeInternal
-
setupUpdateTransformRequestDeserializer
protected static void setupUpdateTransformRequestDeserializer(ObjectDeserializer<UpdateTransformRequest.Builder> op)
-