Class Source.Builder
java.lang.Object
co.elastic.clients.util.ObjectBuilderBase
co.elastic.clients.util.WithJsonObjectBuilderBase<Source.Builder>
co.elastic.clients.elasticsearch.transform.Source.Builder
- All Implemented Interfaces:
WithJson<Source.Builder>,ObjectBuilder<Source>
- Enclosing class:
- Source
public static class Source.Builder extends WithJsonObjectBuilderBase<Source.Builder> implements ObjectBuilder<Source>
Builder for
Source.-
Constructor Summary
Constructors Constructor Description Builder() -
Method Summary
Modifier and Type Method Description Sourcebuild()Builds aSource.Source.Builderindex(java.lang.String value, java.lang.String... values)Required - The source indices for the transform.Source.Builderindex(java.util.List<java.lang.String> list)Required - The source indices for the transform.Source.Builderquery(Query value)A query clause that retrieves a subset of data from the source index.Source.Builderquery(java.util.function.Function<Query.Builder,ObjectBuilder<Query>> fn)A query clause that retrieves a subset of data from the source index.Source.BuilderruntimeMappings(java.lang.String key, RuntimeField value)Definitions of search-time runtime fields that can be used by the transform.Source.BuilderruntimeMappings(java.lang.String key, java.util.function.Function<RuntimeField.Builder,ObjectBuilder<RuntimeField>> fn)Definitions of search-time runtime fields that can be used by the transform.Source.BuilderruntimeMappings(java.util.Map<java.lang.String,RuntimeField> map)Definitions of search-time runtime fields that can be used by the transform.protected Source.Builderself()Methods inherited from class co.elastic.clients.util.WithJsonObjectBuilderBase
withJsonMethods inherited from class co.elastic.clients.util.ObjectBuilderBase
_checkSingleUse, _listAdd, _listAddAll, _mapPut, _mapPutAllMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
index
Required - The source indices for the transform. It can be a single index, an index pattern (for example,"my-index-*""), an array of indices (for example,["my-index-000001", "my-index-000002"]), or an array of index patterns (for example,["my-index-*", "my-other-index-*"]. For remote indices use the syntax"remote_name:index_name". If any indices are in remote clusters then the master node and at least one transform node must have theremote_cluster_clientnode role.API name:
indexAdds all elements of
listtoindex. -
index
Required - The source indices for the transform. It can be a single index, an index pattern (for example,"my-index-*""), an array of indices (for example,["my-index-000001", "my-index-000002"]), or an array of index patterns (for example,["my-index-*", "my-other-index-*"]. For remote indices use the syntax"remote_name:index_name". If any indices are in remote clusters then the master node and at least one transform node must have theremote_cluster_clientnode role.API name:
indexAdds one or more values to
index. -
query
A query clause that retrieves a subset of data from the source index.API name:
query -
query
public final Source.Builder query(java.util.function.Function<Query.Builder,ObjectBuilder<Query>> fn)A query clause that retrieves a subset of data from the source index.API name:
query -
runtimeMappings
Definitions of search-time runtime fields that can be used by the transform. For search runtime fields all data nodes, including remote nodes, must be 7.12 or later.API name:
runtime_mappingsAdds all entries of
maptoruntimeMappings. -
runtimeMappings
Definitions of search-time runtime fields that can be used by the transform. For search runtime fields all data nodes, including remote nodes, must be 7.12 or later.API name:
runtime_mappingsAdds an entry to
runtimeMappings. -
runtimeMappings
public final Source.Builder runtimeMappings(java.lang.String key, java.util.function.Function<RuntimeField.Builder,ObjectBuilder<RuntimeField>> fn)Definitions of search-time runtime fields that can be used by the transform. For search runtime fields all data nodes, including remote nodes, must be 7.12 or later.API name:
runtime_mappingsAdds an entry to
runtimeMappingsusing a builder lambda. -
self
- Specified by:
selfin classWithJsonObjectBuilderBase<Source.Builder>
-
build
Builds aSource.- Specified by:
buildin interfaceObjectBuilder<Source>- Throws:
java.lang.NullPointerException- if some of the required fields are null.
-