This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 8f4fd30 Regen for commit e015c58de008f0760ea5206f9da66f55eb64d389
8f4fd30 is described below
commit 8f4fd30f485fa28b5f9055fa8e0d3cc831fc77ea
Author: davsclaus <[email protected]>
AuthorDate: Sat Jul 3 13:59:40 2021 +0000
Regen for commit e015c58de008f0760ea5206f9da66f55eb64d389
Signed-off-by: GitHub <[email protected]>
---
.../camel/catalog/docs/elasticsearch-rest-component.adoc | 14 +++++++-------
.../modules/ROOT/pages/elasticsearch-rest-component.adoc | 14 +++++++-------
2 files changed, 14 insertions(+), 14 deletions(-)
diff --git
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/elasticsearch-rest-component.adoc
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/elasticsearch-rest-component.adoc
index 11238c3..2338dc9 100644
---
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/elasticsearch-rest-component.adoc
+++
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/elasticsearch-rest-component.adoc
@@ -189,14 +189,14 @@ Below is a simple INDEX example
[source,java]
----
from("direct:index")
-
.to("elasticsearch-rest://elasticsearch?operation=Index&indexName=twitter&indexType=tweet");
+ .to("elasticsearch-rest://elasticsearch?operation=Index&indexName=twitter");
----
[source,xml]
----
<route>
<from uri="direct:index" />
- <to
uri="elasticsearch-rest://elasticsearch?operation=Index&indexName=twitter&indexType=tweet"/>
+ <to
uri="elasticsearch-rest://elasticsearch?operation=Index&indexName=twitter"/>
</route>
----
@@ -220,14 +220,14 @@ Pass in the query JSON String or the Map
[source,java]
----
from("direct:search")
-
.to("elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter&indexType=tweet");
+ .to("elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter");
----
[source,xml]
----
<route>
<from uri="direct:search" />
- <to
uri="elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter&indexType=tweet"/>
+ <to
uri="elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter"/>
</route>
----
@@ -259,14 +259,14 @@ Search using Elasticsearch scroll api in order to fetch
all results.
[source,java]
----
from("direct:search")
-
.to("elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter&indexType=tweet&useScroll=true&scrollKeepAliveMs=30000");
+
.to("elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter&useScroll=true&scrollKeepAliveMs=30000");
----
[source,xml]
----
<route>
<from uri="direct:search" />
- <to
uri="elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter&indexType=tweet&useScroll=true&scrollKeepAliveMs=30000"/>
+ <to
uri="elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter&useScroll=true&scrollKeepAliveMs=30000"/>
</route>
----
@@ -283,7 +283,7 @@ xref:{eip-vc}:eips:split-eip.adoc[Split EIP] can also be
used.
[source,java]
----
from("direct:search")
-
.to("elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter&indexType=tweet&useScroll=true&scrollKeepAliveMs=30000")
+
.to("elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter&useScroll=true&scrollKeepAliveMs=30000")
.split()
.body()
.streaming()
diff --git
a/docs/components/modules/ROOT/pages/elasticsearch-rest-component.adoc
b/docs/components/modules/ROOT/pages/elasticsearch-rest-component.adoc
index bc585eb..0207c44 100644
--- a/docs/components/modules/ROOT/pages/elasticsearch-rest-component.adoc
+++ b/docs/components/modules/ROOT/pages/elasticsearch-rest-component.adoc
@@ -191,14 +191,14 @@ Below is a simple INDEX example
[source,java]
----
from("direct:index")
-
.to("elasticsearch-rest://elasticsearch?operation=Index&indexName=twitter&indexType=tweet");
+ .to("elasticsearch-rest://elasticsearch?operation=Index&indexName=twitter");
----
[source,xml]
----
<route>
<from uri="direct:index" />
- <to
uri="elasticsearch-rest://elasticsearch?operation=Index&indexName=twitter&indexType=tweet"/>
+ <to
uri="elasticsearch-rest://elasticsearch?operation=Index&indexName=twitter"/>
</route>
----
@@ -222,14 +222,14 @@ Pass in the query JSON String or the Map
[source,java]
----
from("direct:search")
-
.to("elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter&indexType=tweet");
+ .to("elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter");
----
[source,xml]
----
<route>
<from uri="direct:search" />
- <to
uri="elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter&indexType=tweet"/>
+ <to
uri="elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter"/>
</route>
----
@@ -261,14 +261,14 @@ Search using Elasticsearch scroll api in order to fetch
all results.
[source,java]
----
from("direct:search")
-
.to("elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter&indexType=tweet&useScroll=true&scrollKeepAliveMs=30000");
+
.to("elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter&useScroll=true&scrollKeepAliveMs=30000");
----
[source,xml]
----
<route>
<from uri="direct:search" />
- <to
uri="elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter&indexType=tweet&useScroll=true&scrollKeepAliveMs=30000"/>
+ <to
uri="elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter&useScroll=true&scrollKeepAliveMs=30000"/>
</route>
----
@@ -285,7 +285,7 @@ xref:{eip-vc}:eips:split-eip.adoc[Split EIP] can also be
used.
[source,java]
----
from("direct:search")
-
.to("elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter&indexType=tweet&useScroll=true&scrollKeepAliveMs=30000")
+
.to("elasticsearch-rest://elasticsearch?operation=Search&indexName=twitter&useScroll=true&scrollKeepAliveMs=30000")
.split()
.body()
.streaming()