(camel) 03/03: Regen

2023-11-20 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit e1494d7f95c2f5ebb8df878d903aa374452b9f89
Author: Claus Ibsen 
AuthorDate: Mon Nov 20 13:16:53 2023 +0100

Regen
---
 .../camel/builder/endpoint/dsl/StreamEndpointBuilderFactory.java| 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/StreamEndpointBuilderFactory.java
 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/StreamEndpointBuilderFactory.java
index c93ce81baea..4ddf18f01ab 100644
--- 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/StreamEndpointBuilderFactory.java
+++ 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/StreamEndpointBuilderFactory.java
@@ -173,9 +173,9 @@ public interface StreamEndpointBuilderFactory {
 /**
  * When using stream:http format, this option specifies optional http
  * headers, such as Accept: application/json. Multiple headers can be
- * separated by comma. The format of headers should be HEADER=VALUE. An
- * example might look like
- * Accept=application/json,Content-Type=text/plain.
+ * separated by comma. The format of headers can be either HEADER=VALUE
+ * or HEADER:VALUE. In accordance with the HTTP/1.1 specification,
+ * leading and/or trailing whitespace is ignored.
  * 
  * The option is a: codejava.lang.String/code type.
  * 



[camel] 03/03: Regen

2023-08-07 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch assembly
in repository https://gitbox.apache.org/repos/asf/camel.git

commit c451f78a524ade071873c31585b5d5f59ed12e2f
Author: Claus Ibsen 
AuthorDate: Mon Aug 7 12:16:40 2023 +0200

Regen
---
 .../component/xmpp/XmppDeferredConnectionIT.java  |  2 +-
 .../xmpp/integration/XmppMultiUserChatIT.java | 19 +--
 .../xmpp/integration/XmppProducerConcurrentIT.java|  2 +-
 .../component/xmpp/integration/XmppRouteChatIT.java   |  2 +-
 .../camel/component/xmpp/integration/XmppRouteIT.java |  2 +-
 .../XmppRouteMultipleProducersSingleConsumerIT.java   |  2 +-
 .../camel/maven/bom/generator/BomGeneratorMojo.java   |  3 +--
 7 files changed, 15 insertions(+), 17 deletions(-)

diff --git 
a/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppDeferredConnectionIT.java
 
b/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppDeferredConnectionIT.java
index c9db21ac461..0a994c6bde2 100644
--- 
a/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppDeferredConnectionIT.java
+++ 
b/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppDeferredConnectionIT.java
@@ -31,7 +31,7 @@ import org.slf4j.LoggerFactory;
  * expected.
  */
 @DisabledIfSystemProperty(named = "ci.env.name", matches = "github.com",
-disabledReason = "Github environment has trouble running the XMPP test 
container and/or component")
+  disabledReason = "Github environment has trouble 
running the XMPP test container and/or component")
 public class XmppDeferredConnectionIT extends XmppBaseContainerTest {
 private static final Logger LOG = 
LoggerFactory.getLogger(XmppDeferredConnectionIT.class);
 
diff --git 
a/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/integration/XmppMultiUserChatIT.java
 
b/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/integration/XmppMultiUserChatIT.java
index c5879596650..b65449c2dc3 100644
--- 
a/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/integration/XmppMultiUserChatIT.java
+++ 
b/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/integration/XmppMultiUserChatIT.java
@@ -27,7 +27,7 @@ import org.junit.jupiter.api.Test;
 import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
 
 @DisabledIfSystemProperty(named = "ci.env.name", matches = "github.com",
-disabledReason = "Github environment has trouble running the XMPP test 
container and/or component")
+  disabledReason = "Github environment has trouble 
running the XMPP test container and/or component")
 class XmppMultiUserChatIT extends XmppBaseIT {
 
 private static final String BODY_1 = "the first message";
@@ -36,7 +36,7 @@ class XmppMultiUserChatIT extends XmppBaseIT {
 private CountDownLatch latch = new CountDownLatch(2);
 
 @BeforeEach
-void doSetup(){
+void doSetup() {
 template.sendBody("direct:toProducer", BODY_1);
 template.sendBody("direct:toProducer", BODY_2);
 }
@@ -44,16 +44,16 @@ class XmppMultiUserChatIT extends XmppBaseIT {
 @Test
 void testXmppChat() throws Exception {
 
-MockEndpoint consumerEndpoint = context.getEndpoint("mock:out", 
MockEndpoint.class);
-consumerEndpoint.expectedBodiesReceived(BODY_1, BODY_2);
+MockEndpoint consumerEndpoint = context.getEndpoint("mock:out", 
MockEndpoint.class);
+consumerEndpoint.expectedBodiesReceived(BODY_1, BODY_2);
 
-if (!latch.await(5, TimeUnit.SECONDS)) {
-Assertions.fail("Some error");
-}
+if (!latch.await(5, TimeUnit.SECONDS)) {
+Assertions.fail("Some error");
+}
 
-consumerEndpoint.setResultWaitTime(TimeUnit.MINUTES.toMillis(1));
+consumerEndpoint.setResultWaitTime(TimeUnit.MINUTES.toMillis(1));
 
-consumerEndpoint.assertIsSatisfied();
+consumerEndpoint.assertIsSatisfied();
 }
 
 @Override
@@ -61,7 +61,6 @@ class XmppMultiUserChatIT extends XmppBaseIT {
 return new RouteBuilder() {
 public void configure() {
 
-
 from("direct:toProducer")
 .process(e -> latch.countDown())
 .to(getProducerUri());
diff --git 
a/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/integration/XmppProducerConcurrentIT.java
 
b/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/integration/XmppProducerConcurrentIT.java
index 9bcea0a2e03..573dbc004e5 100644
--- 
a/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/integration/XmppProducerConcurrentIT.java
+++ 
b/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/integration/XmppProducerConcurrentIT.java
@@ -27,7 +27,7 @@ import 

[camel] 03/03: Regen

2023-07-13 Thread acosentino
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

commit d99a61ffae5e68b45c5b846bbb568c5b11b5f01c
Author: Andrea Cosentino 
AuthorDate: Thu Jul 13 09:56:09 2023 +0200

Regen

Signed-off-by: Andrea Cosentino 
---
 .../component/rss/RssEntryPollingConsumer.java |   2 --
 docs/.yarn/install-state.gz| Bin 570663 -> 500389 bytes
 2 files changed, 2 deletions(-)

diff --git 
a/components/camel-rss/src/main/java/org/apache/camel/component/rss/RssEntryPollingConsumer.java
 
b/components/camel-rss/src/main/java/org/apache/camel/component/rss/RssEntryPollingConsumer.java
index 52bc7ec054c..854e318037b 100644
--- 
a/components/camel-rss/src/main/java/org/apache/camel/component/rss/RssEntryPollingConsumer.java
+++ 
b/components/camel-rss/src/main/java/org/apache/camel/component/rss/RssEntryPollingConsumer.java
@@ -16,8 +16,6 @@
  */
 package org.apache.camel.component.rss;
 
-import java.util.Collections;
-
 import com.rometools.rome.feed.synd.SyndFeed;
 import org.apache.camel.Processor;
 import org.apache.camel.component.feed.FeedEntryPollingConsumer;
diff --git a/docs/.yarn/install-state.gz b/docs/.yarn/install-state.gz
index 571872370b1..45c817350a2 100644
Binary files a/docs/.yarn/install-state.gz and b/docs/.yarn/install-state.gz 
differ



[camel] 03/03: Regen

2023-07-13 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch zeebe
in repository https://gitbox.apache.org/repos/asf/camel.git

commit b2c15fe641b1de64c4edb95728955307789c1898
Author: Andrea Cosentino 
AuthorDate: Thu Jul 13 09:56:09 2023 +0200

Regen

Signed-off-by: Andrea Cosentino 
---
 .../component/rss/RssEntryPollingConsumer.java |   2 --
 docs/.yarn/install-state.gz| Bin 570663 -> 500389 bytes
 2 files changed, 2 deletions(-)

diff --git 
a/components/camel-rss/src/main/java/org/apache/camel/component/rss/RssEntryPollingConsumer.java
 
b/components/camel-rss/src/main/java/org/apache/camel/component/rss/RssEntryPollingConsumer.java
index 52bc7ec054c..854e318037b 100644
--- 
a/components/camel-rss/src/main/java/org/apache/camel/component/rss/RssEntryPollingConsumer.java
+++ 
b/components/camel-rss/src/main/java/org/apache/camel/component/rss/RssEntryPollingConsumer.java
@@ -16,8 +16,6 @@
  */
 package org.apache.camel.component.rss;
 
-import java.util.Collections;
-
 import com.rometools.rome.feed.synd.SyndFeed;
 import org.apache.camel.Processor;
 import org.apache.camel.component.feed.FeedEntryPollingConsumer;
diff --git a/docs/.yarn/install-state.gz b/docs/.yarn/install-state.gz
index 571872370b1..45c817350a2 100644
Binary files a/docs/.yarn/install-state.gz and b/docs/.yarn/install-state.gz 
differ



[camel] 03/03: Regen

2023-07-03 Thread acosentino
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

commit 513387bc12c60549f6befebdff61892a2ae5daa3
Author: Andrea Cosentino 
AuthorDate: Mon Jul 3 10:00:41 2023 +0200

Regen

Signed-off-by: Andrea Cosentino 
---
 .../resources/org/apache/camel/catalog/schemas/camel-spring.xsd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
index 2bf707a8ddb..649a953edab 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
@@ -439,7 +439,7 @@ Enriches a message with data from a secondary resource
 
   
 
   
 



[camel] 03/03: Regen

2023-05-15 Thread acosentino
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

commit 56190643f7b8f59f3dcea540ce14d0ead2665062
Author: Claus Ibsen 
AuthorDate: Tue May 16 07:00:39 2023 +0200

Regen
---
 camel-dependencies/pom.xml   |  4 ++--
 .../org/apache/camel/catalog/components/jpa.json |  1 +
 .../builder/endpoint/dsl/JpaEndpointBuilderFactory.java  | 16 
 3 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index 53563a4d962..bad273d63d5 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -365,8 +365,8 @@
 3.5.2
 3.3.1
 4.2.17
-1.10.6
-1.0.4
+1.10.7
+1.0.6
 3.0.2
 
4.0.2
 0.6.8
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/jpa.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/jpa.json
index e07af102abc..6b7b0c76819 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/jpa.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/jpa.json
@@ -64,6 +64,7 @@
 "findEntity": { "kind": "parameter", "displayName": "Find Entity", 
"group": "producer", "label": "producer", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": false, "description": "If enabled then the producer will 
find a single entity by using the message body as key and entityType as the 
class type. This can be used instead of a query to find a single entity." },
 "firstResult": { "kind": "parameter", "displayName": "First Result", 
"group": "producer", "label": "producer", "required": false, "type": "integer", 
"javaType": "int", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": -1, "description": "Set the position of the first result to 
retrieve." },
 "flushOnSend": { "kind": "parameter", "displayName": "Flush On Send", 
"group": "producer", "label": "producer", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": true, "description": "Flushes the EntityManager after 
the entity bean has been persisted." },
+"outputTarget": { "kind": "parameter", "displayName": "Output Target", 
"group": "producer", "label": "producer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "To put the query (or find) result in a header 
or property instead of the body. If the value starts with the prefix property:, 
put the result into the so named property, otherwise into the header." },
 "remove": { "kind": "parameter", "displayName": "Remove", "group": 
"producer", "label": "producer", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": false, "description": "Indicates to use 
entityManager.remove(entity)." },
 "singleResult": { "kind": "parameter", "displayName": "Single Result", 
"group": "producer", "label": "producer", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": false, "description": "If enabled, a query or a find 
which would return no results or more than one result, will throw an exception 
instead." },
 "useExecuteUpdate": { "kind": "parameter", "displayName": "Use Execute 
Update", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "java.lang.Boolean", "deprecated": false, "autowired": 
false, "secret": false, "description": "To configure whether to use 
executeUpdate() when producer executes a query. When you use INSERT, UPDATE or 
DELETE statement as a named query, you need to specify this option to 'true'." 
},
diff --git 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/JpaEndpointBuilderFactory.java
 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/JpaEndpointBuilderFactory.java
index 47a0bbbc14f..daf21965c49 100644
--- 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/JpaEndpointBuilderFactory.java
+++ 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/JpaEndpointBuilderFactory.java
@@ -1570,6 +1570,22 @@ public interface JpaEndpointBuilderFactory {
 doSetProperty("flushOnSend", flushOnSend);
 return this;
 }
+/**
+ * To put the query (or find) result in a header or property instead of
+ * the body. If the value starts with the prefix property:, put the

[camel] 03/03: Regen

2023-05-15 Thread acosentino
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

commit ba278d568b3daa47d3ab284e287c433ee6ddf5c0
Author: Andrea Cosentino 
AuthorDate: Mon May 15 09:43:23 2023 +0200

Regen

Signed-off-by: Andrea Cosentino 
---
 .../camel/catalog/models/circuitBreaker.json   |   3 +-
 .../apache/camel/catalog/models/onFallback.json|   2 +-
 .../catalog/models/resilience4jConfiguration.json  |   7 +
 .../apache/camel/catalog/schemas/camel-spring.xsd  | 512 -
 4 files changed, 293 insertions(+), 231 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/circuitBreaker.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/circuitBreaker.json
index da76484728a..49cf060b694 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/circuitBreaker.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/circuitBreaker.json
@@ -12,9 +12,10 @@
 "output": false
   },
   "properties": {
+"configuration": { "kind": "attribute", "displayName": "Configuration", 
"required": false, "type": "string", "javaType": "java.lang.String", 
"deprecated": false, "autowired": false, "secret": false, "description": 
"Refers to a circuit breaker configuration (such as resillience4j, or 
microprofile-fault-tolerance) to use for configuring the circuit breaker EIP." 
},
 "resilience4jConfiguration": { "kind": "element", "displayName": 
"Resilience4j Configuration", "required": false, "type": "object", "javaType": 
"org.apache.camel.model.Resilience4jConfigurationDefinition", "deprecated": 
false, "autowired": false, "secret": false, "description": "Configures the 
circuit breaker to use Resilience4j with the given configuration." },
 "faultToleranceConfiguration": { "kind": "element", "displayName": "Fault 
Tolerance Configuration", "required": false, "type": "object", "javaType": 
"org.apache.camel.model.FaultToleranceConfigurationDefinition", "deprecated": 
false, "autowired": false, "secret": false, "description": "Configures the 
circuit breaker to use MicroProfile Fault Tolerance with the given 
configuration." },
-"configuration": { "kind": "attribute", "displayName": "Configuration", 
"required": false, "type": "string", "javaType": "java.lang.String", 
"deprecated": false, "autowired": false, "secret": false, "description": 
"Refers to a circuit breaker configuration (such as resillience4j, or 
microprofile-fault-tolerance) to use for configuring the circuit breaker EIP." 
},
+"onFallback": { "kind": "element", "displayName": "On Fallback", 
"required": false, "type": "object", "javaType": 
"org.apache.camel.model.OnFallbackDefinition", "deprecated": false, 
"autowired": false, "secret": false, "description": "The fallback route path to 
execute that does not go over the network. This should be a static or cached 
result that can immediately be returned upon failure. If the fallback requires 
network connection then use onFallbackViaNetwork() ." },
 "disabled": { "kind": "attribute", "displayName": "Disabled", "label": 
"advanced", "required": false, "type": "boolean", "javaType": 
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": false, "description": "Whether to disable this EIP from the 
route during build time. Once an EIP has been disabled then it cannot be 
enabled later at runtime." },
 "id": { "kind": "attribute", "displayName": "Id", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": false, "description": "Sets the id of this node" 
},
 "description": { "kind": "element", "displayName": "Description", 
"required": false, "type": "object", "javaType": 
"org.apache.camel.model.DescriptionDefinition", "deprecated": false, 
"autowired": false, "secret": false, "description": "Sets the description of 
this node" }
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/onFallback.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/onFallback.json
index d0d40c7d8e2..b2b4daf3bd1 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/onFallback.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/onFallback.json
@@ -9,7 +9,7 @@
 "javaType": "org.apache.camel.model.OnFallbackDefinition",
 "abstract": false,
 "input": true,
-"output": false
+"output": true
   },
   "properties": {
 "fallbackViaNetwork": { "kind": "attribute", "displayName": "Fallback Via 
Network", "label": "advanced", "required": false, "type": "boolean", 
"javaType": "java.lang.Boolean", "deprecated": false, "autowired": false, 
"secret": false, 

[camel] 03/03: Regen for commit e4cf4f2339b1ffcc1b92d5bb61a46df8aae91e8e

2023-04-17 Thread acosentino
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

commit d716780dfbd32158292dd7cb1713afbf949bd164
Author: orpiske 
AuthorDate: Mon Apr 17 17:03:55 2023 +

Regen for commit e4cf4f2339b1ffcc1b92d5bb61a46df8aae91e8e

Signed-off-by: GitHub 
---
 .../component/file/FileConcurrentWriteAppendSameFileTest.java  |  2 --
 .../camel/component/file/FileConsumeDoneFileIssueTest.java | 10 +++---
 2 files changed, 3 insertions(+), 9 deletions(-)

diff --git 
a/core/camel-core/src/test/java/org/apache/camel/component/file/FileConcurrentWriteAppendSameFileTest.java
 
b/core/camel-core/src/test/java/org/apache/camel/component/file/FileConcurrentWriteAppendSameFileTest.java
index 27deef4a3ae..04a3eed8283 100644
--- 
a/core/camel-core/src/test/java/org/apache/camel/component/file/FileConcurrentWriteAppendSameFileTest.java
+++ 
b/core/camel-core/src/test/java/org/apache/camel/component/file/FileConcurrentWriteAppendSameFileTest.java
@@ -101,8 +101,6 @@ public class FileConcurrentWriteAppendSameFileTest extends 
ContextTestSupport {
 log.info(txt);
 }
 
-
-
 @Override
 protected RouteBuilder createRouteBuilder() throws Exception {
 return new RouteBuilder() {
diff --git 
a/core/camel-core/src/test/java/org/apache/camel/component/file/FileConsumeDoneFileIssueTest.java
 
b/core/camel-core/src/test/java/org/apache/camel/component/file/FileConsumeDoneFileIssueTest.java
index 81228413987..09d60115a69 100644
--- 
a/core/camel-core/src/test/java/org/apache/camel/component/file/FileConsumeDoneFileIssueTest.java
+++ 
b/core/camel-core/src/test/java/org/apache/camel/component/file/FileConsumeDoneFileIssueTest.java
@@ -54,11 +54,9 @@ public class FileConsumeDoneFileIssueTest extends 
ContextTestSupport {
 assertMockEndpointsSatisfied();
 assertTrue(notify.matchesWaitTime());
 
-
 // the done file should be deleted
 Awaitility.await().atLeast(50, TimeUnit.MILLISECONDS).untilAsserted(
-() -> assertFalse(Files.exists(testFile("done/foo.done")), 
"Done file should be deleted")
-);
+() -> assertFalse(Files.exists(testFile("done/foo.done")), 
"Done file should be deleted"));
 }
 
 @Test
@@ -85,8 +83,7 @@ public class FileConsumeDoneFileIssueTest extends 
ContextTestSupport {
 
 // the done file should be deleted
 Awaitility.await().atLeast(50, TimeUnit.MILLISECONDS).untilAsserted(
-() -> assertFalse(Files.exists(testFile("done2/a.txt.done")), 
"Done file should be deleted")
-);
+() -> assertFalse(Files.exists(testFile("done2/a.txt.done")), 
"Done file should be deleted"));
 
 // the done file should be deleted
 assertFalse(Files.exists(testFile("done2/b.txt.done")), "Done file 
should be deleted");
@@ -118,8 +115,7 @@ public class FileConsumeDoneFileIssueTest extends 
ContextTestSupport {
 
 // the done file should be deleted
 Awaitility.await().atLeast(50, TimeUnit.MILLISECONDS).untilAsserted(
-() -> 
assertFalse(Files.exists(testFile("done2/$a$.txt.done")), "Done file should be 
deleted")
-);
+() -> 
assertFalse(Files.exists(testFile("done2/$a$.txt.done")), "Done file should be 
deleted"));
 
 assertFalse(Files.exists(testFile("done2/$b.txt.done")), "Done file 
should be deleted");
 assertFalse(Files.exists(testFile("done2/c$.txt.done")), "Done file 
should be deleted");



[camel] 03/03: Regen

2023-03-22 Thread acosentino
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

commit 21a347a8c618150c8f9c6c4771722dc78e7f6446
Author: Andrea Cosentino 
AuthorDate: Wed Mar 22 14:24:34 2023 +0100

Regen

Signed-off-by: Andrea Cosentino 
---
 .../org/apache/camel/catalog/components/jetty.json|  1 -
 .../component/dsl/JettyComponentBuilderFactory.java   | 19 +++
 2 files changed, 19 insertions(+), 1 deletion(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/jetty.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/jetty.json
index d074d07894d..1ddd3761f0d 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/jetty.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/jetty.json
@@ -42,7 +42,6 @@
 "errorHandler": { "kind": "property", "displayName": "Error Handler", 
"group": "advanced", "label": "advanced", "required": false, "type": "object", 
"javaType": "org.eclipse.jetty.server.handler.ErrorHandler", "deprecated": 
false, "deprecationNote": "", "autowired": false, "secret": false, 
"description": "This option is used to set the ErrorHandler that Jetty server 
uses." },
 "httpBinding": { "kind": "property", "displayName": "Http Binding", 
"group": "advanced", "label": "advanced", "required": false, "type": "object", 
"javaType": "org.apache.camel.http.common.HttpBinding", "deprecated": false, 
"deprecationNote": "", "autowired": false, "secret": false, "description": "Not 
to be used - use JettyHttpBinding instead." },
 "httpConfiguration": { "kind": "property", "displayName": "Http 
Configuration", "group": "advanced", "label": "advanced", "required": false, 
"type": "object", "javaType": "org.apache.camel.http.common.HttpConfiguration", 
"deprecated": false, "deprecationNote": "", "autowired": false, "secret": 
false, "description": "Jetty component does not use HttpConfiguration." },
-"jettyHttpBinding": { "kind": "property", "displayName": "Jetty Http 
Binding", "group": "advanced", "label": "advanced", "required": false, "type": 
"object", "javaType": "org.apache.camel.component.jetty.JettyHttpBinding", 
"deprecated": false, "deprecationNote": "", "autowired": false, "secret": 
false, "description": "To use a custom 
org.apache.camel.component.jetty.JettyHttpBinding, which are used to customize 
how a response should be written for the producer." },
 "mbContainer": { "kind": "property", "displayName": "Mb Container", 
"group": "advanced", "label": "advanced", "required": false, "type": "object", 
"javaType": "org.eclipse.jetty.jmx.MBeanContainer", "deprecated": false, 
"deprecationNote": "", "autowired": false, "secret": false, "description": "To 
use a existing configured org.eclipse.jetty.jmx.MBeanContainer if JMX is 
enabled that Jetty uses for registering mbeans." },
 "headerFilterStrategy": { "kind": "property", "displayName": "Header 
Filter Strategy", "group": "filter", "label": "filter", "required": false, 
"type": "object", "javaType": "org.apache.camel.spi.HeaderFilterStrategy", 
"deprecated": false, "autowired": false, "secret": false, "description": "To 
use a custom org.apache.camel.spi.HeaderFilterStrategy to filter header to and 
from Camel message." },
 "proxyHost": { "kind": "property", "displayName": "Proxy Host", "group": 
"proxy", "label": "proxy", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "deprecationNote": "", "autowired": 
false, "secret": false, "description": "To use a http proxy to configure the 
hostname." },
diff --git 
a/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/JettyComponentBuilderFactory.java
 
b/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/JettyComponentBuilderFactory.java
index 53c46b2750a..1f605fb8c56 100644
--- 
a/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/JettyComponentBuilderFactory.java
+++ 
b/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/JettyComponentBuilderFactory.java
@@ -377,6 +377,24 @@ public interface JettyComponentBuilderFactory {
 doSetProperty("httpConfiguration", httpConfiguration);
 return this;
 }
+/**
+ * To use a custom org.apache.camel.component.jetty.JettyHttpBinding,
+ * which are used to customize how a response should be written for the
+ * producer.
+ * 
+ * The option is a:
+ * 
codeorg.apache.camel.component.jetty.JettyHttpBinding/code type.
+ * 
+ * Group: advanced
+ * 
+ * @param jettyHttpBinding the value to set
+ * @return the dsl builder
+ */
+default JettyComponentBuilder 

[camel] 03/03: Regen SBOM

2023-01-23 Thread acosentino
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

commit 1d89b272ca4ad5fe1f95e936db98fd68b17f1343
Author: Andrea Cosentino 
AuthorDate: Mon Jan 23 13:10:56 2023 +0100

Regen SBOM

Signed-off-by: Andrea Cosentino 
---
 camel-sbom/camel-sbom.json | 272 ++---
 camel-sbom/camel-sbom.xml  | 146 ++--
 2 files changed, 65 insertions(+), 353 deletions(-)

diff --git a/camel-sbom/camel-sbom.json b/camel-sbom/camel-sbom.json
index 8ebd5e950f6..b3bcbccf92c 100644
--- a/camel-sbom/camel-sbom.json
+++ b/camel-sbom/camel-sbom.json
@@ -1,10 +1,10 @@
 {
   "bomFormat" : "CycloneDX",
   "specVersion" : "1.4",
-  "serialNumber" : "urn:uuid:dd08712f-d1ee-47b7-9153-5647b6acf58a",
+  "serialNumber" : "urn:uuid:6f152ddc-82d5-4011-a2b3-f9ea9f5bbd8d",
   "version" : 1,
   "metadata" : {
-"timestamp" : "2023-01-23T09:05:59Z",
+"timestamp" : "2023-01-23T12:09:32Z",
 "tools" : [
   {
 "vendor" : "OWASP Foundation",
@@ -84857,7 +84857,6 @@
   "name" : "cache-api",
   "version" : "1.1.0",
   "description" : "Sonatype helps open source projects to set up Maven 
repositories on https://oss.sonatype.org/;,
-  "scope" : "required",
   "hashes" : [
 {
   "alg" : "MD5",
@@ -115247,44 +115246,43 @@
   "bom-ref" : 
"pkg:maven/org.apache.camel/camel-jcache@4.0.0-SNAPSHOT?type=jar"
 },
 {
-  "publisher" : "The Apache Software Foundation",
-  "group" : "org.apache.servicemix.bundles",
-  "name" : "org.apache.servicemix.bundles.javax-cache-api",
-  "version" : "1.1.1_1",
-  "description" : "This OSGi bundle wraps cache-api 1.1.1 jar file.",
+  "group" : "javax.cache",
+  "name" : "cache-api",
+  "version" : "1.1.1",
+  "description" : "Sonatype helps open source projects to set up Maven 
repositories on https://oss.sonatype.org/;,
   "scope" : "required",
   "hashes" : [
 {
   "alg" : "MD5",
-  "content" : "0d7fe9916395b21846169a9eff6b8a7c"
+  "content" : "dfdac9358e140e61c574abb1ada84dc9"
 },
 {
   "alg" : "SHA-1",
-  "content" : "7d44c39b1ae76a47a839fad1e34780cb547729b6"
+  "content" : "c56fb980eb5208bfee29a9a5b9d951aba076bd91"
 },
 {
   "alg" : "SHA-256",
-  "content" : 
"8270b602351d6e195837cddf60f46287c5d6b133be95021591e95e03da141d94"
+  "content" : 
"9f34e007edfa82a7b2a2e1b969477dcf5099ce7f4f926fb54ce7e27c4a0cd54b"
 },
 {
   "alg" : "SHA-512",
-  "content" : 
"2c0097b8eb7354e85ecb07901898f91c372134c9e62b9bda300514957bbfa05a80044b81f50cc0bc83679277622cda3d8e3eb8801291ad4c05ba0796ec3c9aab"
+  "content" : 
"7e2c2e421c46d66f35ae0c107c31ae28606562190871655efd38c60b335a10b1770134f88c8aada5a389e9e364be885713fe7d0464c2a9fbea06ec1102b2c3e5"
 },
 {
   "alg" : "SHA-384",
-  "content" : 
"1bedbf0fa4fbc51de0797e95db8b34390a337e104bcd82a05dc2b7df8bec51c4852f1a1baf8a077e527af0384325a19c"
+  "content" : 
"3740a5ddb6bf6d1627190fbabf06ffc19fb84a488c120ebf1bbc6407971905c7f415310a17c8db77ee90d09cb2301d3d"
 },
 {
   "alg" : "SHA3-384",
-  "content" : 
"3c6b8b5dbf34e55fbcb34e4b1aa2539d19651ea52131cde9f525ea808047ea59b51ee79083f184109cb860b8df2ae526"
+  "content" : 
"49c3aca710ab2ad62e4610ad0f3b76338079aa49e90e84cb18b59ced56caf9f6e2bc855e9900cb1b7748a1f3e0d160e2"
 },
 {
   "alg" : "SHA3-256",
-  "content" : 
"ae364c83245c3f1ea0a08cb87bb69c4eb609d7d1f57f5439b8753cabbe139b13"
+  "content" : 
"ed71d13b59b8ebba5fb3f2f42da03e29d1fdaefef8fde375794a6598fdb702be"
 },
 {
   "alg" : "SHA3-512",
-  "content" : 
"a8d4e0fd5bcbf98ecc3920432359cb3a89ddbe4b8e228d0744a47f0ea9daf2ef58e905f5742c028dd333bf025652ab8bf0ebe828e9d8fefa19923ad2279388ac"
+  "content" : 
"8b93ce37a0ea13bcb8f35a0237307f7b232c178d11e452d02c4383dbd51531eeb4a3c722778dfb95637412e6451a132f6031f0f4e3d51928a6b857160269dec0"
 }
   ],
   "licenses" : [
@@ -115294,31 +115292,19 @@
   }
 }
   ],
-  "purl" : 
"pkg:maven/org.apache.servicemix.bundles/org.apache.servicemix.bundles.javax-cache-api@1.1.1_1?type=jar",
+  "purl" : "pkg:maven/javax.cache/cache-api@1.1.1?type=jar",
   "externalReferences" : [
 {
   "type" : "website",
-  "url" : 
"http://servicemix.apache.org/bundles-pom/org.apache.servicemix.bundles.javax-cache-api/;
+  "url" : "https://github.com/jsr107/jsr107spec;
 },
 {
   "type" : "distribution",
-  "url" : 
"https://repository.apache.org/service/local/staging/deploy/maven2;
-},
-{
-  "type" : "issue-tracker",
-  "url" : 

[camel] 03/03: Regen for commit 08061f70d323e83fe5c7066f6740bfb572b4c8be (#9167)

2023-01-19 Thread acosentino
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

commit c0bbc7667292663c50d1ac268e56ac45af22a32e
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Jan 19 13:35:15 2023 +0100

Regen for commit 08061f70d323e83fe5c7066f6740bfb572b4c8be (#9167)

Signed-off-by: GitHub 

Signed-off-by: GitHub 
Co-authored-by: davsclaus 



[camel] 03/03: Regen

2023-01-16 Thread acosentino
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

commit 70efc74c0d424be018db77f484955c04702863af
Author: Andrea Cosentino 
AuthorDate: Mon Jan 16 14:43:21 2023 +0100

Regen

Signed-off-by: Andrea Cosentino 
---
 camel-dependencies/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index ac0f194f67a..9c606438227 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -436,7 +436,7 @@
 4.5.0.Final
 SRU2022-9.3.2
 4.25.0
-2.10.3
+2.11.0
 8.0.6
 0.34.0
 2.1.0



[camel] 03/03: Regen

2022-11-03 Thread acosentino
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

commit 1f97d599315f82a3f9b717234f626ebee2576299
Author: Andrea Cosentino 
AuthorDate: Thu Nov 3 10:53:08 2022 +0100

Regen

Signed-off-by: Andrea Cosentino 
---
 .../resources/org/apache/camel/catalog/others.properties  |  1 +
 .../resources/org/apache/camel/catalog/others/wal.json| 15 +++
 2 files changed, 16 insertions(+)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
index 608bd730d1f..85c7d3bdfee 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
@@ -57,6 +57,7 @@ test-spring-junit5
 threadpoolfactory-vertx
 tracing
 undertow-spring-security
+wal
 xml-io-dsl
 xml-jaxb-dsl
 yaml-dsl
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/wal.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/wal.json
new file mode 100644
index 000..6cbda8ec5d0
--- /dev/null
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/wal.json
@@ -0,0 +1,15 @@
+{
+  "other": {
+"kind": "other",
+"name": "wal",
+"title": "Camel WAL component for the Resume API",
+"description": "Camel WAL component for the Resume API",
+"deprecated": false,
+"firstVersion": "3.20.0",
+"label": "java",
+"supportLevel": "Preview",
+"groupId": "org.apache.camel",
+"artifactId": "camel-wal",
+"version": "3.20.0-SNAPSHOT"
+  }
+}



[camel] 03/03: Regen

2022-11-02 Thread acosentino
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

commit 5b46749491280f8b3ced50fea6a11a8f235bf81c
Author: Andrea Cosentino 
AuthorDate: Wed Nov 2 10:15:52 2022 +0100

Regen

Signed-off-by: Andrea Cosentino 
---
 .../resources/org/apache/camel/catalog/components/dataset-test.json   | 2 +-
 .../resources/org/apache/camel/catalog/components/dataset.json| 4 ++--
 .../generated/resources/org/apache/camel/catalog/components/mock.json | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/dataset-test.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/dataset-test.json
index 494419cfff9..b4856df6458 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/dataset-test.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/dataset-test.json
@@ -30,7 +30,7 @@
   "properties": {
 "name": { "kind": "path", "displayName": "Name", "group": "producer", 
"label": "", "required": true, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "deprecationNote": "", "autowired": 
false, "secret": false, "description": "Name of endpoint to lookup in the 
registry to use for polling messages used for testing" },
 "anyOrder": { "kind": "parameter", "displayName": "Any Order", "group": 
"producer", "label": "", "required": false, "type": "boolean", "javaType": 
"boolean", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": false, "description": "Whether the expected messages should 
arrive in the same order or can be in any order." },
-"assertPeriod": { "kind": "parameter", "displayName": "Assert Period", 
"group": "producer", "label": "producer", "required": false, "type": 
"duration", "javaType": "long", "deprecated": false, "autowired": false, 
"secret": false, "description": "Sets a grace period after which the mock 
endpoint will re-assert to ensure the preliminary assertion is still valid. 
This is used for example to assert that exactly a number of messages arrives. 
For example if expectedMessageCount(int) was se [...]
+"assertPeriod": { "kind": "parameter", "displayName": "Assert Period", 
"group": "producer", "label": "producer", "required": false, "type": 
"duration", "javaType": "long", "deprecated": false, "autowired": false, 
"secret": false, "description": "Sets a grace period after which the mock 
endpoint will re-assert to ensure the preliminary assertion is still valid. 
This is used for example to assert that exactly a number of messages arrives. 
For example if expected count was set to 5, the [...]
 "delimiter": { "kind": "parameter", "displayName": "Delimiter", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "The split delimiter to use when split is enabled. By default 
the delimiter is new line based. The delimiter can be a regular expression." },
 "expectedCount": { "kind": "parameter", "displayName": "Expected Count", 
"group": "producer", "label": "producer", "required": false, "type": "integer", 
"javaType": "int", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": -1, "description": "Specifies the expected number of message 
exchanges that should be received by this endpoint. Beware: If you want to 
expect that 0 messages, then take extra care, as 0 matches when the tests 
starts, so you need to set a ass [...]
 "failFast": { "kind": "parameter", "displayName": "Fail Fast", "group": 
"producer", "label": "producer", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": false, "description": "Sets whether assertIsSatisfied() 
should fail fast at the first detected failed expectation while it may 
otherwise wait for all expected messages to arrive before performing 
expectations verifications. Is by default true. Set  [...]
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/dataset.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/dataset.json
index 44537377988..2ca9d34f8bd 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/dataset.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/dataset.json
@@ -33,7 +33,7 @@
   },
   "properties": {
 "name": { "kind": "path", "displayName": "Name", "group": "common", 
"label": "", "required": true, "type": "object", "javaType": 
"org.apache.camel.component.dataset.DataSet", "deprecated": false, 
"deprecationNote": "", "autowired": false, 

[camel] 03/03: Regen

2022-10-28 Thread acosentino
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

commit 9836d058cce9872c9cdf4adbff3a36e89e4e8d36
Author: Andrea Cosentino 
AuthorDate: Fri Oct 28 10:27:19 2022 +0200

Regen

Signed-off-by: Andrea Cosentino 
---
 .../src/generated/resources/org/apache/camel/catalog/components/git.json | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/git.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/git.json
index f7fdd7ffc00..7dcb8c41c80 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/git.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/git.json
@@ -53,6 +53,7 @@
 "remoteName": { "kind": "parameter", "displayName": "Remote Name", 
"group": "producer", "label": "producer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "The remote repository name to use in 
particular operation like pull" },
 "remotePath": { "kind": "parameter", "displayName": "Remote Path", 
"group": "producer", "label": "producer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "The remote repository path" },
 "tagName": { "kind": "parameter", "displayName": "Tag Name", "group": 
"producer", "label": "producer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "The tag name to work on" },
+"targetBranchName": { "kind": "parameter", "displayName": "Target Branch 
Name", "group": "producer", "label": "producer", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "defaultValue": "master", "description": "Name of 
target branch in merge operation. If not supplied will try to use 
init.defaultBranch git configs. If not configured will use default value" },
 "username": { "kind": "parameter", "displayName": "Username", "group": 
"producer", "label": "producer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "Remote repository username" },
 "lazyStartProducer": { "kind": "parameter", "displayName": "Lazy Start 
Producer", "group": "producer (advanced)", "label": "producer,advanced", 
"required": false, "type": "boolean", "javaType": "boolean", "deprecated": 
false, "autowired": false, "secret": false, "defaultValue": false, 
"description": "Whether the producer should be started lazy (on the first 
message). By starting lazy you can use this to allow CamelContext and routes to 
startup in situations where a producer may other [...]
   }



[camel] 03/03: Regen

2022-10-13 Thread acosentino
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

commit f24d66a129dd088be27bf327f251aaf8a209ed88
Author: Andrea Cosentino 
AuthorDate: Thu Oct 13 10:33:40 2022 +0200

Regen
---
 .../resources/org/apache/camel/catalog/components/pulsar.json | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/pulsar.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/pulsar.json
index b95da9667fe..183bf83b416 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/pulsar.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/pulsar.json
@@ -57,7 +57,7 @@
 "initialSequenceId": { "kind": "property", "displayName": "Initial 
Sequence Id", "group": "producer", "label": "producer", "required": false, 
"type": "integer", "javaType": "long", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": -1, "configurationClass": 
"org.apache.camel.component.pulsar.PulsarConfiguration", "configurationField": 
"configuration", "description": "The first message published will have a 
sequence Id of initialSequenceId 1." },
 "lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Whether the producer 
should be started lazy (on the first message). By starting lazy you can use 
this to allow CamelContext and routes to startup in situations where a producer 
may otherwise fail during star [...]
 "maxPendingMessages": { "kind": "property", "displayName": "Max Pending 
Messages", "group": "producer", "label": "producer", "required": false, "type": 
"integer", "javaType": "int", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": 1000, "configurationClass": 
"org.apache.camel.component.pulsar.PulsarConfiguration", "configurationField": 
"configuration", "description": "Size of the pending massages queue. When the 
queue is full, by default, any further sends wi [...]
-"maxPendingMessagesAcrossPartitions": { "kind": "property", "displayName": 
"Max Pending Messages Across Partitions", "group": "producer", "label": 
"producer", "required": false, "type": "integer", "javaType": "int", 
"deprecated": false, "autowired": false, "secret": false, "defaultValue": 
5, "configurationClass": 
"org.apache.camel.component.pulsar.PulsarConfiguration", "configurationField": 
"configuration", "description": "The maximum number of pending messages for 
partitioned to [...]
+"maxPendingMessagesAcrossPartitions": { "kind": "property", "displayName": 
"Max Pending Messages Across Partitions", "group": "producer", "label": 
"producer", "required": false, "type": "integer", "javaType": "int", 
"deprecated": true, "autowired": false, "secret": false, "defaultValue": 5, 
"configurationClass": "org.apache.camel.component.pulsar.PulsarConfiguration", 
"configurationField": "configuration", "description": "The maximum number of 
pending messages for partitioned top [...]
 "messageRouter": { "kind": "property", "displayName": "Message Router", 
"group": "producer", "label": "producer", "required": false, "type": "object", 
"javaType": "org.apache.pulsar.client.api.MessageRouter", "deprecated": false, 
"autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.pulsar.PulsarConfiguration", "configurationField": 
"configuration", "description": "Custom Message Router to use" },
 "messageRoutingMode": { "kind": "property", "displayName": "Message 
Routing Mode", "group": "producer", "label": "producer", "required": false, 
"type": "object", "javaType": 
"org.apache.pulsar.client.api.MessageRoutingMode", "enum": [ "SinglePartition", 
"RoundRobinPartition", "CustomPartition" ], "deprecated": false, "autowired": 
false, "secret": false, "defaultValue": "RoundRobinPartition", 
"configurationClass": "org.apache.camel.component.pulsar.PulsarConfiguration", 
"configuration [...]
 "producerName": { "kind": "property", "displayName": "Producer Name", 
"group": "producer", "label": "producer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.pulsar.PulsarConfiguration", "configurationField": 
"configuration", "description": "Name of the producer. If unset, lets Pulsar 
select a unique identifier." },
@@ -121,7 +121,7 @@
 "compressionType": { "kind": "parameter", "displayName": "Compression 
Type", "group": "producer", "label": "producer", "required": false, "type": 

[camel] 03/03: Regen

2022-09-19 Thread acosentino
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

commit 950213c3d92c433c7d1df00763da8ba2c284cb7d
Author: Andrea Cosentino 
AuthorDate: Mon Sep 19 14:02:39 2022 +0200

Regen

Signed-off-by: Andrea Cosentino 
---
 .../apache/camel/catalog/components/whatsapp.json  | 28 --
 1 file changed, 4 insertions(+), 24 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/whatsapp.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/whatsapp.json
index 2b26d2bd063..e52695bf5f3 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/whatsapp.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/whatsapp.json
@@ -3,7 +3,7 @@
 "kind": "component",
 "name": "whatsapp",
 "title": "WhatsApp",
-"description": "Send messages.",
+"description": "Send messages to WhatsApp.",
 "deprecated": false,
 "firstVersion": "3.18.0",
 "label": "cloud,api,chat",
@@ -18,13 +18,12 @@
 "async": false,
 "api": false,
 "consumerOnly": false,
-"producerOnly": false,
+"producerOnly": true,
 "lenientProperties": false
   },
   "componentProperties": {
-"phoneNumberId": { "kind": "property", "displayName": "Phone Number Id", 
"group": "common", "label": "", "required": true, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "Phone Number ID taken from WhatsApp Meta for Developers 
Dashboard" },
-"bridgeErrorHandler": { "kind": "property", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Allows for bridging the 
consumer to the Camel routing Error Handler, which mean any exceptions occurred 
while the consumer is trying to pickup incoming messages, or the likes, will 
now be processed as a me [...]
 "lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Whether the producer 
should be started lazy (on the first message). By starting lazy you can use 
this to allow CamelContext and routes to startup in situations where a producer 
may otherwise fail during star [...]
+"phoneNumberId": { "kind": "property", "displayName": "Phone Number Id", 
"group": "producer", "label": "", "required": true, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "Phone Number ID taken from WhatsApp Meta for 
Developers Dashboard" },
 "apiVersion": { "kind": "property", "displayName": "Api Version", "group": 
"advanced", "label": "advanced", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": "v13.0", "description": "WhatsApp Cloud API 
version" },
 "autowiredEnabled": { "kind": "property", "displayName": "Autowired 
Enabled", "group": "advanced", "label": "advanced", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": true, "description": "Whether autowiring is 
enabled. This is used for automatic autowiring options (the option must be 
marked as autowired) by looking up in the registry to find if there is a single 
instance of matching type, which t [...]
 "baseUri": { "kind": "property", "displayName": "Base Uri", "group": 
"advanced", "label": "advanced", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": "https:\/\/graph.facebook.com", "description": 
"Can be used to set an alternative base URI, e.g. when you want to test the 
component against a mock WhatsApp API" },
@@ -37,12 +36,7 @@
 "CamelWhatsAppRecipientPhoneNumberId": { "kind": "header", "displayName": 
"", "group": "producer", "label": "producer", "required": false, "javaType": 
"Object", "deprecated": false, "deprecationNote": "", "autowired": false, 
"secret": false, "description": "Recipient phone number associated with Phone 
Number ID", "constantName": 
"org.apache.camel.component.whatsapp.WhatsAppConstants#WHATSAPP_RECIPIENT_PHONE_NUMBER_ID"
 }
   },
   "properties": {
-"phoneNumberId": { "kind": "path", "displayName": "Phone Number Id", 
"group": "common", "label": "", "required": true, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, 

[camel] 03/03: Regen

2022-09-11 Thread acosentino
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

commit 0c0088d0cbb6e5dc1fa6598764fb97a1058a9b6d
Author: Andrea Cosentino 
AuthorDate: Mon Sep 12 07:46:08 2022 +0200

Regen
---
 .../camel/catalog/components/azure-eventhubs.json  | 42 +++---
 .../org/apache/camel/catalog/components/cmis.json  |  2 +-
 .../org/apache/camel/catalog/components/kafka.json | 24 ++---
 .../camel/catalog/components/netty-http.json   |  6 ++--
 .../org/apache/camel/catalog/components/netty.json |  4 +--
 5 files changed, 41 insertions(+), 37 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-eventhubs.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-eventhubs.json
index 00828d6c79e..5399a9646f7 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-eventhubs.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-eventhubs.json
@@ -25,15 +25,15 @@
 "amqpRetryOptions": { "kind": "property", "displayName": "Amqp Retry 
Options", "group": "common", "label": "common", "required": false, "type": 
"object", "javaType": "com.azure.core.amqp.AmqpRetryOptions", "deprecated": 
false, "autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.azure.eventhubs.EventHubsConfiguration", 
"configurationField": "configuration", "description": "Sets the retry policy 
for EventHubAsyncClient. If not specified, the default r [...]
 "amqpTransportType": { "kind": "property", "displayName": "Amqp Transport 
Type", "group": "common", "label": "common", "required": false, "type": 
"object", "javaType": "com.azure.core.amqp.AmqpTransportType", "enum": [ 
"Amqp", "AmqpWebSockets" ], "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": "AMQP", "configurationClass": 
"org.apache.camel.component.azure.eventhubs.EventHubsConfiguration", 
"configurationField": "configuration", "description": "Sets the tran [...]
 "configuration": { "kind": "property", "displayName": "Configuration", 
"group": "common", "label": "", "required": false, "type": "object", 
"javaType": 
"org.apache.camel.component.azure.eventhubs.EventHubsConfiguration", 
"deprecated": false, "autowired": false, "secret": false, "description": "The 
component configurations" },
-"blobAccessKey": { "kind": "property", "displayName": "Blob Access Key", 
"group": "consumer", "label": "consumer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": true, "configurationClass": 
"org.apache.camel.component.azure.eventhubs.EventHubsConfiguration", 
"configurationField": "configuration", "description": "In case you chose the 
default BlobCheckpointStore, this sets access key for the associated azure acco 
[...]
+"blobAccessKey": { "kind": "property", "displayName": "Blob Access Key", 
"group": "consumer", "label": "consumer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": true, "configurationClass": 
"org.apache.camel.component.azure.eventhubs.EventHubsConfiguration", 
"configurationField": "configuration", "description": "In case you chose the 
default BlobCheckpointStore, this sets access key for the associated azure acco 
[...]
 "blobAccountName": { "kind": "property", "displayName": "Blob Account 
Name", "group": "consumer", "label": "consumer", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.azure.eventhubs.EventHubsConfiguration", 
"configurationField": "configuration", "description": "In case you chose the 
default BlobCheckpointStore, this sets Azure account name to be used for a [...]
-"blobContainerName": { "kind": "property", "displayName": "Blob Container 
Name", "group": "consumer", "label": "consumer", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.azure.eventhubs.EventHubsConfiguration", 
"configurationField": "configuration", "description": "In case you chose the 
default BlobCheckpointStore, this sets the blob container that shall b [...]
-"blobStorageSharedKeyCredential": { "kind": "property", "displayName": 
"Blob Storage Shared Key Credential", "group": "consumer", "label": "consumer", 
"required": false, "type": "object", "javaType": 
"com.azure.storage.common.StorageSharedKeyCredential", "deprecated": false, 
"autowired": false, "secret": true, "configurationClass": 
"org.apache.camel.component.azure.eventhubs.EventHubsConfiguration", 

[camel] 03/03: Regen for commit 4766731eb75c27249bf790a61056d08156f865a5 (#8160)

2022-08-14 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-3.14.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 10542a61e3a5c46a7ab3ac9b82c89f58b57bf21f
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sun Aug 14 09:10:58 2022 +0200

Regen for commit 4766731eb75c27249bf790a61056d08156f865a5 (#8160)

Signed-off-by: GitHub 

Signed-off-by: GitHub 
Co-authored-by: davsclaus 
---
 .../HttpSendDynamicAwareUriWithoutSlashTest.java   | 29 +-
 1 file changed, 17 insertions(+), 12 deletions(-)

diff --git 
a/components/camel-http/src/test/java/org/apache/camel/component/http/HttpSendDynamicAwareUriWithoutSlashTest.java
 
b/components/camel-http/src/test/java/org/apache/camel/component/http/HttpSendDynamicAwareUriWithoutSlashTest.java
index bfb3e9c9e12..250f276c51a 100644
--- 
a/components/camel-http/src/test/java/org/apache/camel/component/http/HttpSendDynamicAwareUriWithoutSlashTest.java
+++ 
b/components/camel-http/src/test/java/org/apache/camel/component/http/HttpSendDynamicAwareUriWithoutSlashTest.java
@@ -17,6 +17,7 @@
 package org.apache.camel.component.http;
 
 import java.util.Map;
+
 import org.apache.camel.Endpoint;
 import org.apache.camel.Exchange;
 import org.apache.camel.RoutesBuilder;
@@ -40,9 +41,9 @@ public class HttpSendDynamicAwareUriWithoutSlashTest extends 
BaseHttpTest {
 @Override
 public void setUp() throws Exception {
 localServer = 
ServerBootstrap.bootstrap().setHttpProcessor(getBasicHttpProcessor())
-
.setConnectionReuseStrategy(getConnectionReuseStrategy()).setResponseFactory(getHttpResponseFactory())
-
.setExpectationVerifier(getHttpExpectationVerifier()).setSslContext(getSSLContext())
-.registerHandler("/users/*", new BasicValidationHandler("GET", 
null, null, "a user")).create();
+
.setConnectionReuseStrategy(getConnectionReuseStrategy()).setResponseFactory(getHttpResponseFactory())
+
.setExpectationVerifier(getHttpExpectationVerifier()).setSslContext(getSSLContext())
+.registerHandler("/users/*", new BasicValidationHandler("GET", 
null, null, "a user")).create();
 localServer.start();
 
 super.setUp();
@@ -64,22 +65,24 @@ public class HttpSendDynamicAwareUriWithoutSlashTest 
extends BaseHttpTest {
 @Override
 public void configure() throws Exception {
 from("direct:usersDrink")
-.toD("http://localhost:; + localServer.getLocalPort()
-+ "/users/${exchangeProperty.user}");
+.toD("http://localhost:; + localServer.getLocalPort()
+ + "/users/${exchangeProperty.user}");
 
 from("direct:usersDrinkWithoutSlash")
-.toD("http:localhost:" + localServer.getLocalPort()
-+ "/users/${exchangeProperty.user}");
+.toD("http:localhost:" + localServer.getLocalPort()
+ + "/users/${exchangeProperty.user}");
 }
 };
 }
 
 @Test
 public void testDynamicAware() throws Exception {
-Exchange out = 
fluentTemplate.to("direct:usersDrink").withExchange(ExchangeBuilder.anExchange(context).withProperty("user",
 "joes").build()).send();
+Exchange out = fluentTemplate.to("direct:usersDrink")
+
.withExchange(ExchangeBuilder.anExchange(context).withProperty("user", 
"joes").build()).send();
 assertEquals("a user", out.getMessage().getBody(String.class));
 
-out = 
fluentTemplate.to("direct:usersDrink").withExchange(ExchangeBuilder.anExchange(context).withProperty("user",
 "moes").build()).send();
+out = fluentTemplate.to("direct:usersDrink")
+
.withExchange(ExchangeBuilder.anExchange(context).withProperty("user", 
"moes").build()).send();
 assertEquals("a user", out.getMessage().getBody(String.class));
 
 // and there should only be one http endpoint as they are both on same 
host
@@ -89,13 +92,15 @@ public class HttpSendDynamicAwareUriWithoutSlashTest 
extends BaseHttpTest {
 assertTrue(endpointMap.containsKey("direct://usersDrinkWithoutSlash"), 
"Should find direct");
 assertEquals(3, endpointMap.size());
 }
-
+
 @Test
 public void testDynamicAwareWithoutSlash() throws Exception {
-Exchange out = 
fluentTemplate.to("direct:usersDrinkWithoutSlash").withExchange(ExchangeBuilder.anExchange(context).withProperty("user",
 "joes").build()).send();
+Exchange out = fluentTemplate.to("direct:usersDrinkWithoutSlash")
+
.withExchange(ExchangeBuilder.anExchange(context).withProperty("user", 
"joes").build()).send();
 assertEquals("a user", out.getMessage().getBody(String.class));
 
-out = 

[camel] 03/03: Regen

2022-07-29 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-3.14.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit b39f9465841ec2f30e8ed9ca863a528a1823bb69
Author: Claus Ibsen 
AuthorDate: Fri Jul 29 10:47:19 2022 +0200

Regen
---
 core/camel-main/src/main/docs/main.adoc | 7 ++-
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/core/camel-main/src/main/docs/main.adoc 
b/core/camel-main/src/main/docs/main.adoc
index 3b3c31808f6..becd7b3430d 100644
--- a/core/camel-main/src/main/docs/main.adoc
+++ b/core/camel-main/src/main/docs/main.adoc
@@ -1,11 +1,8 @@
 = Main Component
-//TODO the json file camel-main-configuration-metadata.json for this .adoc 
does not have a `model` section, so the UpdateReadmeMojo does not update this 
file.
-//Therefore the header is updated manually.
-//In addition, this has plenty of options, but the 'other' category does not 
generate option tables.
-//Should the 'other' categary generate option tables from the .json?
 :doctitle: Main
+:shortname: main
 :artifactid: camel-main
-:description: Camel Main support
+:description: Camel Main
 :since: 3.0
 :supportlevel: Stable
 



[camel] 03/03: Regen

2022-05-19 Thread acosentino
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

commit 490801029d07498d6095da2d75defe3a053e1bb3
Author: Andrea Cosentino 
AuthorDate: Fri May 20 07:36:59 2022 +0200

Regen
---
 .../apache/camel/catalog/archetypes/archetype-catalog.xml  | 14 +++---
 .../org/apache/camel/catalog/components/debezium-db2.json  |  4 ++--
 .../camel/catalog/components/google-secret-manager.json|  4 ++--
 3 files changed, 11 insertions(+), 11 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/archetypes/archetype-catalog.xml
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/archetypes/archetype-catalog.xml
index 7f967d476ea..7fb5c32738f 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/archetypes/archetype-catalog.xml
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/archetypes/archetype-catalog.xml
@@ -4,43 +4,43 @@
 
   org.apache.camel.archetypes
   camel-archetype-api-component
-  3.17.0-SNAPSHOT
+  3.18.0-SNAPSHOT
   Creates a new Camel component that wraps one or more API 
proxies.
 
 
   org.apache.camel.archetypes
   camel-archetype-cdi
-  3.17.0-SNAPSHOT
+  3.18.0-SNAPSHOT
   Creates a new Camel project using CDI.
 
 
   org.apache.camel.archetypes
   camel-archetype-component
-  3.17.0-SNAPSHOT
+  3.18.0-SNAPSHOT
   Creates a new Camel component.
 
 
   org.apache.camel.archetypes
   camel-archetype-dataformat
-  3.17.0-SNAPSHOT
+  3.18.0-SNAPSHOT
   Creates a new Camel data format.
 
 
   org.apache.camel.archetypes
   camel-archetype-java
-  3.17.0-SNAPSHOT
+  3.18.0-SNAPSHOT
   Creates a new Camel project using Java DSL.
 
 
   org.apache.camel.archetypes
   camel-archetype-main
-  3.17.0-SNAPSHOT
+  3.18.0-SNAPSHOT
   Creates a new Camel project using standalone Camel 
Main.
 
 
   org.apache.camel.archetypes
   camel-archetype-spring
-  3.17.0-SNAPSHOT
+  3.18.0-SNAPSHOT
   Creates a new Camel project with added Spring DSL 
support.
 
   
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/debezium-db2.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/debezium-db2.json
index fc212c74e33..cb09da33bc6 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/debezium-db2.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/debezium-db2.json
@@ -3,7 +3,7 @@
 "kind": "component",
 "name": "debezium-db2",
 "title": "Debezium DB2 Connector",
-"description": "Capture changes from a Oracle database.",
+"description": "Capture changes from a DB2 database.",
 "deprecated": false,
 "firstVersion": "3.17.0",
 "label": "database,sql",
@@ -11,7 +11,7 @@
 "supportLevel": "Preview",
 "groupId": "org.apache.camel",
 "artifactId": "camel-debezium-db2",
-"version": "3.17.0-SNAPSHOT",
+"version": "3.18.0-SNAPSHOT",
 "scheme": "debezium-db2",
 "extendsScheme": "",
 "syntax": "debezium-db2:name",
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/google-secret-manager.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/google-secret-manager.json
index 45d00137287..885cfbc75df 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/google-secret-manager.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/google-secret-manager.json
@@ -8,10 +8,10 @@
 "firstVersion": "3.16.0",
 "label": "cloud",
 "javaType": 
"org.apache.camel.component.google.secret.manager.GoogleSecretManagerComponent",
-"supportLevel": "Preview",
+"supportLevel": "Stable",
 "groupId": "org.apache.camel",
 "artifactId": "camel-google-secret-manager",
-"version": "3.17.0-SNAPSHOT",
+"version": "3.18.0-SNAPSHOT",
 "scheme": "google-secret-manager",
 "extendsScheme": "",
 "syntax": "google-secret-manager:project",



[camel] 03/03: Regen for commit c40f110ea316011e7334bcc040db64655191dc1c

2022-03-07 Thread acosentino
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

commit a9550aa299941d43b2b9f53b76a9c725fa3d02dc
Author: davsclaus 
AuthorDate: Tue Mar 8 07:08:00 2022 +

Regen for commit c40f110ea316011e7334bcc040db64655191dc1c

Signed-off-by: GitHub 
---
 .../resources/org/apache/camel/catalog/others.properties  |  1 -
 .../org/apache/camel/catalog/others/console.json  | 15 ---
 2 files changed, 16 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
index 5f99325..2ecc8b0 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
@@ -8,7 +8,6 @@ cloud
 cloudevents
 cluster
 componentdsl
-console
 csimple-joor
 cxf-transport
 debug
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/console.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/console.json
deleted file mode 100644
index b1048bd..000
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/console.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
-  "other": {
-"kind": "other",
-"name": "console",
-"title": "Console",
-"description": "Camel Developer Console",
-"deprecated": false,
-"firstVersion": "3.15.0",
-"label": "core",
-"supportLevel": "Preview",
-"groupId": "org.apache.camel",
-"artifactId": "camel-console",
-"version": "3.16.0-SNAPSHOT"
-  }
-}


[camel] 03/03: Regen for commit 341ab20f08bb1841f500025d7b9056366b330d72

2022-02-21 Thread acosentino
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

commit a526faac5a87eed7c7949184777c77d614bd5150
Author: davsclaus 
AuthorDate: Mon Feb 21 09:54:22 2022 +

Regen for commit 341ab20f08bb1841f500025d7b9056366b330d72

Signed-off-by: GitHub 
---
 .../resources/org/apache/camel/catalog/others.properties  |  1 -
 .../org/apache/camel/catalog/others/console.json  | 15 ---
 2 files changed, 16 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
index 5f99325..2ecc8b0 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others.properties
@@ -8,7 +8,6 @@ cloud
 cloudevents
 cluster
 componentdsl
-console
 csimple-joor
 cxf-transport
 debug
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/console.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/console.json
deleted file mode 100644
index b1048bd..000
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/console.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
-  "other": {
-"kind": "other",
-"name": "console",
-"title": "Console",
-"description": "Camel Developer Console",
-"deprecated": false,
-"firstVersion": "3.15.0",
-"label": "core",
-"supportLevel": "Preview",
-"groupId": "org.apache.camel",
-"artifactId": "camel-console",
-"version": "3.16.0-SNAPSHOT"
-  }
-}


[camel] 03/03: Regen for commit 337480379b018586ba5e058ec9ca580f079da11a

2022-02-17 Thread acosentino
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

commit 1ca449ddb363cbef4f3c63c53ff907f166f5a58f
Author: davsclaus 
AuthorDate: Thu Feb 17 10:59:28 2022 +

Regen for commit 337480379b018586ba5e058ec9ca580f079da11a

Signed-off-by: GitHub 
---
 .../apache/camel/catalog/schemas/camel-spring.xsd  | 50 +++---
 1 file changed, 25 insertions(+), 25 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
index 59c7ab3..832ab02 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
@@ -5755,14 +5755,6 @@ The correlation expression to use to calculate the 
correlation key.
 
   
 
-
-  
-
-  
-
 
   
 
   
 
+
+  
+
+  
+
   
 
   
@@ -13947,45 +13947,45 @@ what may be configured on a parent level The default 
value is false.
 ]]>
   
 
-
+
   
 
   
 
-
+
   
 
   
 
-
+
   
 
   
 
-
+
   
 
   
 
-
+
   
 
   
 


[camel] 03/03: Regen

2021-12-20 Thread acosentino
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

commit e1e234ece629e053ab8449e7d44ff173c1f93f2e
Author: Andrea Cosentino 
AuthorDate: Mon Dec 20 14:25:55 2021 +0100

Regen
---
 .../camel/catalog/archetypes/archetype-catalog.xml   | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/archetypes/archetype-catalog.xml
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/archetypes/archetype-catalog.xml
index e37d8e7..08b1427 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/archetypes/archetype-catalog.xml
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/archetypes/archetype-catalog.xml
@@ -4,49 +4,49 @@
 
   org.apache.camel.archetypes
   camel-archetype-api-component
-  3.15.0-SNAPSHOT
+  3.14.0-SNAPSHOT
   Creates a new Camel component that wraps one or more API 
proxies.
 
 
   org.apache.camel.archetypes
   camel-archetype-cdi
-  3.15.0-SNAPSHOT
+  3.14.0-SNAPSHOT
   Creates a new Camel project using CDI.
 
 
   org.apache.camel.archetypes
   camel-archetype-component
-  3.15.0-SNAPSHOT
+  3.14.0-SNAPSHOT
   Creates a new Camel component.
 
 
   org.apache.camel.archetypes
   camel-archetype-dataformat
-  3.15.0-SNAPSHOT
+  3.14.0-SNAPSHOT
   Creates a new Camel data format.
 
 
   org.apache.camel.archetypes
   camel-archetype-endpointdsl
-  3.15.0-SNAPSHOT
+  3.14.0-SNAPSHOT
   Creates a new Camel project using Endpoint 
DSL.
 
 
   org.apache.camel.archetypes
   camel-archetype-java
-  3.15.0-SNAPSHOT
+  3.14.0-SNAPSHOT
   Creates a new Camel project using Java DSL.
 
 
   org.apache.camel.archetypes
   camel-archetype-main
-  3.15.0-SNAPSHOT
+  3.14.0-SNAPSHOT
   Creates a new Camel project using standalone Camel 
Main.
 
 
   org.apache.camel.archetypes
   camel-archetype-spring
-  3.15.0-SNAPSHOT
+  3.14.0-SNAPSHOT
   Creates a new Camel project with added Spring DSL 
support.
 
   


[camel] 03/03: Regen

2021-11-29 Thread acosentino
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

commit 07bbdad59b01912c91e74b793c494bd9c9336302
Author: Andrea Cosentino 
AuthorDate: Mon Nov 29 11:36:23 2021 +0100

Regen
---
 .../org/apache/camel/catalog/components/azure-storage-datalake.json | 2 +-
 docs/components/modules/ROOT/nav.adoc   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-datalake.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-datalake.json
index 8cfc967..36d6884 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-datalake.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-datalake.json
@@ -2,7 +2,7 @@
   "component": {
 "kind": "component",
 "name": "azure-storage-datalake",
-"title": "Azure storage datalake service",
+"title": "Azure Storage Datalake Service",
 "description": "Camel Azure Datalake Gen2 Component",
 "deprecated": false,
 "firstVersion": "3.8.0",
diff --git a/docs/components/modules/ROOT/nav.adoc 
b/docs/components/modules/ROOT/nav.adoc
index d61dd0b..8503a8b 100644
--- a/docs/components/modules/ROOT/nav.adoc
+++ b/docs/components/modules/ROOT/nav.adoc
@@ -48,7 +48,7 @@
 *** xref:azure-eventhubs-component.adoc[Azure Event Hubs]
 *** xref:azure-servicebus-component.adoc[Azure ServiceBus]
 *** xref:azure-storage-blob-component.adoc[Azure Storage Blob Service]
-*** xref:azure-storage-datalake-component.adoc[Azure storage datalake service]
+*** xref:azure-storage-datalake-component.adoc[Azure Storage Datalake Service]
 *** xref:azure-storage-queue-component.adoc[Azure Storage Queue Service]
 ** xref:bean-component.adoc[Bean]
 ** xref:bean-validator-component.adoc[Bean Validator]


[camel] 03/03: Regen

2021-10-24 Thread acosentino
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

commit 5912acb84aa3fa3ec864c904e3e807034a026c57
Author: Andrea Cosentino 
AuthorDate: Mon Oct 25 07:52:38 2021 +0200

Regen
---
 .../org/apache/camel/catalog/components/mllp.json  | 65 +++---
 .../apache/camel/catalog/components/rest-api.json  |  3 +-
 .../main/camel-main-configuration-metadata.json|  4 +-
 .../camel/catalog/models/restConfiguration.json|  4 +-
 .../apache/camel/catalog/schemas/camel-spring.xsd  | 14 ++---
 5 files changed, 57 insertions(+), 33 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/mllp.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/mllp.json
index 618b961..58e44a1 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/mllp.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/mllp.json
@@ -22,40 +22,65 @@
 "lenientProperties": false
   },
   "componentProperties": {
-"bridgeErrorHandler": { "kind": "property", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Allows for bridging the 
consumer to the Camel routing Error Handler, which mean any exceptions occurred 
while the consumer is trying to pickup incoming messages, or the likes, will 
now be processed as a me [...]
+"autoAck": { "kind": "property", "displayName": "Auto Ack", "group": 
"common", "label": "", "required": false, "type": "boolean", "javaType": 
"boolean", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": true, "configurationClass": 
"org.apache.camel.component.mllp.MllpConfiguration", "configurationField": 
"configuration", "description": "Enable\/Disable the automatic generation of a 
MLLP Acknowledgement MLLP Consumers only" },
+"charsetName": { "kind": "property", "displayName": "Charset Name", 
"group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.mllp.MllpConfiguration", "configurationField": 
"configuration", "description": "Sets the default charset to use" },
+"configuration": { "kind": "property", "displayName": "Configuration", 
"group": "common", "label": "", "required": false, "type": "object", 
"javaType": "org.apache.camel.component.mllp.MllpConfiguration", "deprecated": 
false, "autowired": false, "secret": false, "description": "Sets the default 
configuration to use when creating MLLP endpoints." },
+"hl7Headers": { "kind": "property", "displayName": "Hl7 Headers", "group": 
"common", "label": "", "required": false, "type": "boolean", "javaType": 
"boolean", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": true, "configurationClass": 
"org.apache.camel.component.mllp.MllpConfiguration", "configurationField": 
"configuration", "description": "Enable\/Disable the automatic generation of 
message headers from the HL7 Message MLLP Consumers only" },
+"requireEndOfData": { "kind": "property", "displayName": "Require End Of 
Data", "group": "common", "label": "", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": true, "configurationClass": 
"org.apache.camel.component.mllp.MllpConfiguration", "configurationField": 
"configuration", "description": "Enable\/Disable strict compliance to the MLLP 
standard. The MLLP standard specifies START_OF_BLOCKhl7 pay [...]
+"stringPayload": { "kind": "property", "displayName": "String Payload", 
"group": "common", "label": "", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": true, "configurationClass": 
"org.apache.camel.component.mllp.MllpConfiguration", "configurationField": 
"configuration", "description": "Enable\/Disable converting the payload to a 
String. If enabled, HL7 Payloads received from external systems will  [...]
+"validatePayload": { "kind": "property", "displayName": "Validate 
Payload", "group": "common", "label": "", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.mllp.MllpConfiguration", "configurationField": 
"configuration", "description": "Enable\/Disable the validation of HL7 Payloads 
If enabled, HL7 Payloads received from external systems will  [...]
+"acceptTimeout": { "kind": "property", "displayName": 

[camel] 03/03: Regen

2021-10-14 Thread acosentino
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

commit 5f48eaf22d30ecc3f0068e5604d45f0b167a5ecc
Author: Andrea Cosentino 
AuthorDate: Thu Oct 14 13:28:59 2021 +0200

Regen
---
 .../camel/catalog/components/aws-secrets-manager.json  |  2 +-
 .../org/apache/camel/catalog/schemas/camel-spring.xsd  | 18 +-
 .../camel/builder/endpoint/EndpointBuilderFactory.java | 13 ++---
 3 files changed, 20 insertions(+), 13 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws-secrets-manager.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws-secrets-manager.json
index 7b2b060..bbc3980 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws-secrets-manager.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws-secrets-manager.json
@@ -14,7 +14,7 @@
 "version": "3.13.0-SNAPSHOT",
 "scheme": "aws-secrets-manager",
 "extendsScheme": "",
-"syntax": "aws-secrets-manager:\/\/label",
+"syntax": "aws-secrets-manager:label",
 "async": false,
 "api": false,
 "consumerOnly": false,
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
index 75973ff..3ef0c30 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
@@ -3213,7 +3213,7 @@ Interval in millis that is used by the background task 
that checks for timeouts
 ( org.apache.camel.TimeoutMap ). By default the timeout checker runs every
 second. The timeout is an approximation and there is no guarantee that the a
 timeout is triggered exactly after the timeout value. It is not recommended to
-use very low timeout values or checker intervals. Default value: 1000
+use very low timeout values or checker intervals. Default value: 1s
 ]]>
   
 
@@ -3378,7 +3378,7 @@ Sets the maximum number of retries.
 
   
 
   
 
@@ -3386,7 +3386,7 @@ Sets the delay in millis between retries. Default value: 
50
   
 
   
 
@@ -4309,7 +4309,7 @@ breaker options are not in use.
   
 
   
 
@@ -4351,7 +4351,7 @@ Default value: false
   
 
   
 
@@ -10406,7 +10406,7 @@ value: 100
   
 
   
 
@@ -10454,7 +10454,7 @@ Sets the capacity of the resequencer inbound queue. 
Default value: 1000
   
 
   
 
@@ -10462,7 +10462,7 @@ Default value: 1000
   
 
   
 
@@ -11135,7 +11135,7 @@ use.
   
 
   
 
diff --git 
a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/EndpointBuilderFactory.java
 
b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/EndpointBuilderFactory.java
index c447925..dd07f1a 100644
--- 
a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/EndpointBuilderFactory.java
+++ 
b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/EndpointBuilderFactory.java
@@ -373,14 +373,21 @@ public interface EndpointBuilderFactory
 default org.apache.camel.Expression endpoints(
 org.apache.camel.builder.EndpointProducerBuilder... endpoints) {
 return new org.apache.camel.support.ExpressionAdapter() {
-List expressions = 
Stream.of(endpoints)
-.map(org.apache.camel.builder.EndpointProducerBuilder::expr)
-.collect(Collectors.toList());
+
+private List expressions = null;
 
 @Override
 public Object evaluate(org.apache.camel.Exchange exchange) {
 return expressions.stream().map(e -> e.evaluate(exchange, 
Object.class)).collect(Collectors.toList());
 }
+
+@Override
+public void init(org.apache.camel.CamelContext context) {
+super.init(context);
+expressions = Stream.of(endpoints)
+.map(epb -> epb.expr(context))
+.collect(Collectors.toList());
+}
 };
 }
 }


[camel] 03/03: Regen

2021-09-23 Thread acosentino
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

commit a99a6188d332b0b222317af92f9b7d813800e207
Author: Andrea Cosentino 
AuthorDate: Thu Sep 23 13:49:35 2021 +0200

Regen
---
 .../org/apache/camel/catalog/components/aws2-ddbstream.json | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-ddbstream.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-ddbstream.json
index ce2fbf3..533bd93 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-ddbstream.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-ddbstream.json
@@ -25,14 +25,13 @@
 "amazonDynamoDbStreamsClient": { "kind": "property", "displayName": 
"Amazon Dynamo Db Streams Client", "group": "consumer", "label": "consumer", 
"required": false, "type": "object", "javaType": 
"software.amazon.awssdk.services.dynamodb.streams.DynamoDbStreamsClient", 
"deprecated": false, "deprecationNote": "", "autowired": true, "secret": false, 
"configurationClass": 
"org.apache.camel.component.aws2.ddbstream.Ddb2StreamConfiguration", 
"configurationField": "configuration", "descripti [...]
 "bridgeErrorHandler": { "kind": "property", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Allows for bridging the 
consumer to the Camel routing Error Handler, which mean any exceptions occurred 
while the consumer is trying to pickup incoming messages, or the likes, will 
now be processed as a me [...]
 "configuration": { "kind": "property", "displayName": "Configuration", 
"group": "consumer", "label": "", "required": false, "type": "object", 
"javaType": 
"org.apache.camel.component.aws2.ddbstream.Ddb2StreamConfiguration", 
"deprecated": false, "autowired": false, "secret": false, "description": "The 
component configuration" },
-"iteratorType": { "kind": "property", "displayName": "Iterator Type", 
"group": "consumer", "label": "consumer", "required": false, "type": "object", 
"javaType": "software.amazon.awssdk.services.dynamodb.model.ShardIteratorType", 
"enum": [ "TRIM_HORIZON", "LATEST", "AT_SEQUENCE_NUMBER", 
"AFTER_SEQUENCE_NUMBER", "null" ], "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": "LATEST", "configurationClass": 
"org.apache.camel.component.aws2.ddbstream.Ddb2StreamConfigu [...]
 "maxResultsPerRequest": { "kind": "property", "displayName": "Max Results 
Per Request", "group": "consumer", "label": "consumer", "required": false, 
"type": "integer", "javaType": "int", "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.aws2.ddbstream.Ddb2StreamConfiguration", 
"configurationField": "configuration", "description": "Maximum number of 
records that will be fetched in each poll" },
 "overrideEndpoint": { "kind": "property", "displayName": "Override 
Endpoint", "group": "consumer", "label": "", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.aws2.ddbstream.Ddb2StreamConfiguration", 
"configurationField": "configuration", "description": "Set the need for 
overidding the endpoint. This option needs to be used in combination wi [...]
 "proxyHost": { "kind": "property", "displayName": "Proxy Host", "group": 
"consumer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": 
"org.apache.camel.component.aws2.ddbstream.Ddb2StreamConfiguration", 
"configurationField": "configuration", "description": "To define a proxy host 
when instantiating the DDBStreams client" },
 "proxyPort": { "kind": "property", "displayName": "Proxy Port", "group": 
"consumer", "label": "", "required": false, "type": "integer", "javaType": 
"java.lang.Integer", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": 
"org.apache.camel.component.aws2.ddbstream.Ddb2StreamConfiguration", 
"configurationField": "configuration", "description": "To define a proxy port 
when instantiating the DDBStreams client" },
 "proxyProtocol": { "kind": "property", "displayName": "Proxy Protocol", 
"group": "consumer", "label": "", "required": false, "type": "object", 
"javaType": "software.amazon.awssdk.core.Protocol", "enum": [ "HTTP", "HTTPS" 
], "deprecated": false, "autowired": false, "secret": false, "defaultValue": 
"HTTPS", "configurationClass": 

[camel] 03/03: Regen

2021-09-16 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 76caf52dd05ddbf816cf963a576ed739c031110c
Author: Claus Ibsen 
AuthorDate: Thu Sep 16 08:28:37 2021 +0200

Regen
---
 .../resources/org/apache/camel/catalog/schemas/camel-spring.xsd | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
index cfb8668..9d17b47 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
@@ -158,7 +158,7 @@ Route messages based on a series of predicates
   
 
   
 
   
@@ -3219,7 +3219,7 @@ exchanges and newExchange is of course the new incoming 
Exchange.
   
 
   
 
@@ -3228,7 +3228,7 @@ POJOs as the AggregationStrategy.
 
   


[camel] 03/03: Regen

2021-09-13 Thread acosentino
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

commit 1ac094c63e35579514b38213226b20ca14ba0572
Author: Andrea Cosentino 
AuthorDate: Mon Sep 13 14:25:06 2021 +0200

Regen
---
 .../generated/resources/org/apache/camel/catalog/languages/file.json| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/languages/file.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/languages/file.json
index 3e05125..396c930 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/languages/file.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/languages/file.json
@@ -3,7 +3,7 @@
 "kind": "language",
 "name": "file",
 "title": "File",
-"description": "File related capabilities for the Simle language",
+"description": "File related capabilities for the Simple language",
 "deprecated": false,
 "firstVersion": "1.1.0",
 "label": "language,core,java",


[camel] 03/03: Regen

2021-09-10 Thread acosentino
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

commit 8b8fe3e94d811962cbcadd30d0b567c5a4c3eb3e
Author: Andrea Cosentino 
AuthorDate: Fri Sep 10 11:15:41 2021 +0200

Regen
---
 .../org/apache/camel/catalog/components/google-pubsub.json| 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/google-pubsub.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/google-pubsub.json
index 9578fe4..8462ae1 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/google-pubsub.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/google-pubsub.json
@@ -35,14 +35,14 @@
   "properties": {
 "projectId": { "kind": "path", "displayName": "Project Id", "group": 
"common", "label": "common", "required": true, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "deprecationNote": "", "autowired": 
false, "secret": false, "description": "The Google Cloud PubSub Project Id" },
 "destinationName": { "kind": "path", "displayName": "Destination Name", 
"group": "common", "label": "common", "required": true, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "deprecationNote": "", 
"autowired": false, "secret": false, "description": "The Destination Name. For 
the consumer this will be the subscription name, while for the producer this 
will be the topic name." },
-"ackMode": { "kind": "parameter", "displayName": "Ack Mode", "group": 
"common", "label": "", "required": false, "type": "object", "javaType": 
"org.apache.camel.component.google.pubsub.GooglePubsubConstants.AckMode", 
"enum": [ "AUTO", "NONE" ], "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": "AUTO", "description": "AUTO = exchange gets 
ack'ed\/nack'ed on completion. NONE = downstream process has to ack\/nack 
explicitly" },
 "authenticate": { "kind": "parameter", "displayName": "Authenticate", 
"group": "common", "label": "common", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": true, "description": "Use Credentials when interacting 
with PubSub service (no authentication is required when using emulator)." },
-"concurrentConsumers": { "kind": "parameter", "displayName": "Concurrent 
Consumers", "group": "common", "label": "", "required": false, "type": 
"integer", "javaType": "java.lang.Integer", "deprecated": false, "autowired": 
false, "secret": false, "defaultValue": "1", "description": "The number of 
parallel streams consuming from the subscription" },
 "loggerId": { "kind": "parameter", "displayName": "Logger Id", "group": 
"common", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "Logger ID to use when a match to the parent route required" },
-"maxMessagesPerPoll": { "kind": "parameter", "displayName": "Max Messages 
Per Poll", "group": "common", "label": "", "required": false, "type": 
"integer", "javaType": "java.lang.Integer", "deprecated": false, "autowired": 
false, "secret": false, "defaultValue": "1", "description": "The max number of 
messages to receive from the server in a single API call" },
 "serviceAccountKey": { "kind": "parameter", "displayName": "Service 
Account Key", "group": "common", "label": "common", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "The Service account key that can be 
used as credentials for the PubSub publisher\/subscriber. It can be loaded by 
default from classpath, but you can prefix with classpath:, file:, or http: to 
load the resource from different [...]
-"synchronousPull": { "kind": "parameter", "displayName": "Synchronous 
Pull", "group": "common", "label": "", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": false, "description": "Synchronously pull batches of 
messages" },
+"ackMode": { "kind": "parameter", "displayName": "Ack Mode", "group": 
"consumer", "label": "consumer", "required": false, "type": "object", 
"javaType": 
"org.apache.camel.component.google.pubsub.GooglePubsubConstants.AckMode", 
"enum": [ "AUTO", "NONE" ], "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": "AUTO", "description": "AUTO = exchange gets 
ack'ed\/nack'ed on completion. NONE = downstream process has to ack\/nack 
explicitly" },
 "bridgeErrorHandler": { "kind": "parameter", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": 

[camel] 03/03: Regen

2021-08-26 Thread acosentino
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

commit 9c4283461ed1346132c49d632a9668a235ecf0b3
Author: Andrea Cosentino 
AuthorDate: Thu Aug 26 11:29:33 2021 +0200

Regen
---
 .../camel/catalog/components/google-pubsub.json|6 +-
 .../sql/stored/template/generated/SSPTParser.java  |  833 ++---
 .../template/generated/SSPTParserConstants.java|  110 +-
 .../template/generated/SSPTParserTokenManager.java | 1222 ++--
 4 files changed, 1097 insertions(+), 1074 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/google-pubsub.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/google-pubsub.json
index 184efd4..9578fe4 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/google-pubsub.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/google-pubsub.json
@@ -22,8 +22,9 @@
 "lenientProperties": false
   },
   "componentProperties": {
+"authenticate": { "kind": "property", "displayName": "Authenticate", 
"group": "common", "label": "common", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": true, "description": "Use Credentials when interacting 
with PubSub service (no authentication is required when using emulator)." },
 "endpoint": { "kind": "property", "displayName": "Endpoint", "group": 
"common", "label": "common", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "Endpoint to use with local Pub\/Sub emulator." },
-"serviceAccountKey": { "kind": "property", "displayName": "Service Account 
Key", "group": "common", "label": "common", "required": true, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "The Service account key that can be used as 
credentials for the PubSub publisher\/subscriber. It can be loaded by default 
from classpath, but you can prefix with classpath:, file:, or http: to load the 
resource from different s [...]
+"serviceAccountKey": { "kind": "property", "displayName": "Service Account 
Key", "group": "common", "label": "common", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "description": "The Service account key that can be 
used as credentials for the PubSub publisher\/subscriber. It can be loaded by 
default from classpath, but you can prefix with classpath:, file:, or http: to 
load the resource from different  [...]
 "bridgeErrorHandler": { "kind": "property", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Allows for bridging the 
consumer to the Camel routing Error Handler, which mean any exceptions occurred 
while the consumer is trying to pickup incoming messages, or the likes, will 
now be processed as a me [...]
 "lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Whether the producer 
should be started lazy (on the first message). By starting lazy you can use 
this to allow CamelContext and routes to startup in situations where a producer 
may otherwise fail during star [...]
 "publisherCacheSize": { "kind": "property", "displayName": "Publisher 
Cache Size", "group": "producer", "label": "producer", "required": false, 
"type": "integer", "javaType": "int", "deprecated": false, "autowired": false, 
"secret": false, "description": "Maximum number of producers to cache. This 
could be increased if you have producers for lots of different topics." },
@@ -35,10 +36,11 @@
 "projectId": { "kind": "path", "displayName": "Project Id", "group": 
"common", "label": "common", "required": true, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "deprecationNote": "", "autowired": 
false, "secret": false, "description": "The Google Cloud PubSub Project Id" },
 "destinationName": { "kind": "path", "displayName": "Destination Name", 
"group": "common", "label": "common", "required": true, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "deprecationNote": "", 
"autowired": false, "secret": false, "description": "The Destination Name. For 
the consumer this will be the subscription name, while for the producer this 

[camel] 03/03: Regen for commit 1c4bbbc216d83fb1c956f72a15c3712fb3b4c7ad

2021-08-26 Thread acosentino
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

commit 4efc52135ad59d4e8e591a27bf916d08875d328a
Author: davsclaus 
AuthorDate: Thu Aug 26 06:06:25 2021 +

Regen for commit 1c4bbbc216d83fb1c956f72a15c3712fb3b4c7ad

Signed-off-by: GitHub 
---
 .../sql/stored/template/generated/SSPTParser.java  |  833 +++--
 .../template/generated/SSPTParserConstants.java|  110 +-
 .../template/generated/SSPTParserTokenManager.java | 1222 ++--
 3 files changed, 1072 insertions(+), 1093 deletions(-)

diff --git 
a/components/camel-sql/src/main/java/org/apache/camel/component/sql/stored/template/generated/SSPTParser.java
 
b/components/camel-sql/src/main/java/org/apache/camel/component/sql/stored/template/generated/SSPTParser.java
index 319202c..13c79f5 100644
--- 
a/components/camel-sql/src/main/java/org/apache/camel/component/sql/stored/template/generated/SSPTParser.java
+++ 
b/components/camel-sql/src/main/java/org/apache/camel/component/sql/stored/template/generated/SSPTParser.java
@@ -3,476 +3,419 @@ package 
org.apache.camel.component.sql.stored.template.generated;
 
 import java.io.Reader;
 
-import org.apache.camel.component.sql.stored.template.ast.*;
 import org.apache.camel.spi.ClassResolver;
+import org.apache.camel.component.sql.stored.template.ast.*;
 
 public class SSPTParser implements SSPTParserConstants {
-int parameterNameCounter = 0;
-
-ClassResolver classResolver;
-
-public SSPTParser(Reader reader, ClassResolver classResolver) {
-this(reader);
-this.classResolver = classResolver;
-}
-
-String createNextParameterName() {
-return "_" + (parameterNameCounter++);
-}
-
-final public Template parse() throws ParseException {
-Token procedureName;
-Template template = new Template();
-Object parameter = null;
-procedureName = jj_consume_token(IDENTIFIER);
-jj_consume_token(PROCEDURE_BEGIN);
-switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) {
-case 2:
-case 3:
-case NUMBER:
-case PARAMETER_NAME:
-case IDENTIFIER:
-parameter = Parameter();
-template.addParameter(parameter);
-label_1: while (true) {
-switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) {
-case SEPARATOR:
-;
-break;
-default:
-jj_la1[0] = jj_gen;
-break label_1;
-}
-jj_consume_token(SEPARATOR);
-parameter = Parameter();
-template.addParameter(parameter);
-}
-break;
-default:
-jj_la1[1] = jj_gen;
-;
-}
-jj_consume_token(PROCEDURE_END);
-jj_consume_token(0);
-template.setProcedureName(procedureName.toString());
-{
-if (true)
-return template;
+   int parameterNameCounter = 0;
+
+   ClassResolver classResolver;
+
+   public SSPTParser(Reader reader, ClassResolver classResolver) {
+ this(reader);
+ this.classResolver = classResolver;
+   }
+
+   String createNextParameterName() {
+  return "_"+(parameterNameCounter++);
+   }
+
+  final public Template parse() throws ParseException {
+Token procedureName;
+Template template = new Template();
+Object parameter = null;
+procedureName = jj_consume_token(IDENTIFIER);
+jj_consume_token(PROCEDURE_BEGIN);
+switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+case 2:
+case 3:
+case NUMBER:
+case PARAMETER_NAME:
+case IDENTIFIER:
+  parameter = Parameter();
+   
template.addParameter(parameter);
+  label_1:
+  while (true) {
+switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+case SEPARATOR:
+  ;
+  break;
+default:
+  jj_la1[0] = jj_gen;
+  break label_1;
 }
-throw new Error("Missing return statement in function");
-}
-
-final public Object Parameter() throws ParseException {
-Object param;
-switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) {
-case NUMBER:
-case PARAMETER_NAME:
-case IDENTIFIER:
-param = InParameter(); {
-if (true)
-return param;
-}
-break;
-case 2:
-param = OutParameter(); {
-if (true)
-return param;
-}
-break;
-case 3:
-param = InOutParameter(); {
-if (true)
-return 

[camel] 03/03: Regen

2021-08-05 Thread acosentino
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

commit b3b147c87fe4930df82f545e7a0839aba5eb32d2
Author: Andrea Cosentino 
AuthorDate: Thu Aug 5 15:18:05 2021 +0200

Regen
---
 .../org/apache/camel/catalog/components/azure-storage-blob.json | 6 ++
 1 file changed, 6 insertions(+)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-blob.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-blob.json
index c1c2351..51bd6c4 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-blob.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-blob.json
@@ -39,6 +39,9 @@
 "bridgeErrorHandler": { "kind": "property", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Allows for bridging the 
consumer to the Camel routing Error Handler, which mean any exceptions occurred 
while the consumer is trying to pickup incoming messages, or the likes, will 
now be processed as a me [...]
 "blobSequenceNumber": { "kind": "property", "displayName": "Blob Sequence 
Number", "group": "producer", "label": "producer", "required": false, "type": 
"integer", "javaType": "java.lang.Long", "deprecated": false, "autowired": 
false, "secret": false, "defaultValue": "0", "configurationClass": 
"org.apache.camel.component.azure.storage.blob.BlobConfiguration", 
"configurationField": "configuration", "description": "A user-controlled value 
that you can use to track requests. The value of [...]
 "blockListType": { "kind": "property", "displayName": "Block List Type", 
"group": "producer", "label": "producer", "required": false, "type": "object", 
"javaType": "com.azure.storage.blob.models.BlockListType", "enum": [ 
"committed", "uncommitted", "all" ], "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": "COMMITTED", "configurationClass": 
"org.apache.camel.component.azure.storage.blob.BlobConfiguration", 
"configurationField": "configuration", "description":  [...]
+"changeFeedContext": { "kind": "property", "displayName": "Change Feed 
Context", "group": "producer", "label": "producer", "required": false, "type": 
"object", "javaType": "com.azure.core.util.Context", "deprecated": false, 
"autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.azure.storage.blob.BlobConfiguration", 
"configurationField": "configuration", "description": "When using getChangeFeed 
producer operation, this gives additional context that is  [...]
+"changeFeedEndTime": { "kind": "property", "displayName": "Change Feed End 
Time", "group": "producer", "label": "producer", "required": false, "type": 
"object", "javaType": "java.time.OffsetDateTime", "deprecated": false, 
"autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.azure.storage.blob.BlobConfiguration", 
"configurationField": "configuration", "description": "When using getChangeFeed 
producer operation, this filters the results to return event [...]
+"changeFeedStartTime": { "kind": "property", "displayName": "Change Feed 
Start Time", "group": "producer", "label": "producer", "required": false, 
"type": "object", "javaType": "java.time.OffsetDateTime", "deprecated": false, 
"autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.azure.storage.blob.BlobConfiguration", 
"configurationField": "configuration", "description": "When using getChangeFeed 
producer operation, this filters the results to return e [...]
 "closeStreamAfterWrite": { "kind": "property", "displayName": "Close 
Stream After Write", "group": "producer", "label": "producer", "required": 
false, "type": "boolean", "javaType": "boolean", "deprecated": false, 
"autowired": false, "secret": false, "defaultValue": true, 
"configurationClass": 
"org.apache.camel.component.azure.storage.blob.BlobConfiguration", 
"configurationField": "configuration", "description": "Close the stream after 
write or keep it open, default is true" },
 "commitBlockListLater": { "kind": "property", "displayName": "Commit Block 
List Later", "group": "producer", "label": "producer", "required": false, 
"type": "boolean", "javaType": "boolean", "deprecated": false, "autowired": 
false, "secret": false, "defaultValue": true, "configurationClass": 
"org.apache.camel.component.azure.storage.blob.BlobConfiguration", 
"configurationField": "configuration", "description": "When is set to true, the 
staged blocks will not be committed directly." },
 "createAppendBlob": { "kind": 

[camel] 03/03: Regen

2021-08-02 Thread acosentino
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

commit b9239fe72dde3ee1df51349d2d9146969b5efe68
Author: Andrea Cosentino 
AuthorDate: Mon Aug 2 08:54:12 2021 +0200

Regen
---
 .../camel/catalog/docs/kubernetes-service-accounts-component.adoc   | 2 +-
 .../org/apache/camel/catalog/docs/kubernetes-services-component.adoc| 2 +-
 .../modules/ROOT/pages/kubernetes-service-accounts-component.adoc   | 2 +-
 docs/components/modules/ROOT/pages/kubernetes-services-component.adoc   | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/kubernetes-service-accounts-component.adoc
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/kubernetes-service-accounts-component.adoc
index 3e5bb13..92f21c3 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/kubernetes-service-accounts-component.adoc
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/kubernetes-service-accounts-component.adoc
@@ -102,7 +102,7 @@ from("direct:list").
 to("mock:result");
 

 
-This operation return a List of servoces from your cluster
+This operation return a List of services from your cluster
 
 - listServiceAccountsByLabels:  this operation list the sa by labels on a 
kubernetes cluster
 
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/kubernetes-services-component.adoc
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/kubernetes-services-component.adoc
index 59d632f..b64b3ce 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/kubernetes-services-component.adoc
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/kubernetes-services-component.adoc
@@ -118,7 +118,7 @@ from("direct:list").
 to("mock:result");
 

 
-This operation return a List of servoces from your cluster
+This operation return a List of services from your cluster
 
 - listServicesByLabels:  this operation list the deployments by labels on a 
kubernetes cluster
 
diff --git 
a/docs/components/modules/ROOT/pages/kubernetes-service-accounts-component.adoc 
b/docs/components/modules/ROOT/pages/kubernetes-service-accounts-component.adoc
index 40321ed..ec6c8af 100644
--- 
a/docs/components/modules/ROOT/pages/kubernetes-service-accounts-component.adoc
+++ 
b/docs/components/modules/ROOT/pages/kubernetes-service-accounts-component.adoc
@@ -104,7 +104,7 @@ from("direct:list").
 to("mock:result");
 

 
-This operation return a List of servoces from your cluster
+This operation return a List of services from your cluster
 
 - listServiceAccountsByLabels:  this operation list the sa by labels on a 
kubernetes cluster
 
diff --git 
a/docs/components/modules/ROOT/pages/kubernetes-services-component.adoc 
b/docs/components/modules/ROOT/pages/kubernetes-services-component.adoc
index b903ac5..0696830 100644
--- a/docs/components/modules/ROOT/pages/kubernetes-services-component.adoc
+++ b/docs/components/modules/ROOT/pages/kubernetes-services-component.adoc
@@ -120,7 +120,7 @@ from("direct:list").
 to("mock:result");
 

 
-This operation return a List of servoces from your cluster
+This operation return a List of services from your cluster
 
 - listServicesByLabels:  this operation list the deployments by labels on a 
kubernetes cluster
 


[camel] 03/03: Regen for commit 5003dbb1180f0545f79ea0b93d6605d5ee334f51 (#5887)

2021-07-29 Thread acosentino
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

commit 035ce73b879c353df1371ea28ba38eb82648b200
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Jul 29 18:04:10 2021 +0200

Regen for commit 5003dbb1180f0545f79ea0b93d6605d5ee334f51 (#5887)

Signed-off-by: GitHub 

Co-authored-by: davsclaus 
---
 .../zookeeper/cloud/ZooKeeperServiceDiscoveryFactoryConfigurer.java | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git 
a/components/camel-zookeeper/src/generated/java/org/apache/camel/component/zookeeper/cloud/ZooKeeperServiceDiscoveryFactoryConfigurer.java
 
b/components/camel-zookeeper/src/generated/java/org/apache/camel/component/zookeeper/cloud/ZooKeeperServiceDiscoveryFactoryConfigurer.java
index 6202e1d..a06cb94 100644
--- 
a/components/camel-zookeeper/src/generated/java/org/apache/camel/component/zookeeper/cloud/ZooKeeperServiceDiscoveryFactoryConfigurer.java
+++ 
b/components/camel-zookeeper/src/generated/java/org/apache/camel/component/zookeeper/cloud/ZooKeeperServiceDiscoveryFactoryConfigurer.java
@@ -40,7 +40,7 @@ public class ZooKeeperServiceDiscoveryFactoryConfigurer 
extends org.apache.camel
 case "namespace":
 case "Namespace": target.setNamespace(property(camelContext, 
java.lang.String.class, value)); return true;
 case "nodes":
-case "Nodes": target.setNodes(property(camelContext, 
java.util.List.class, value)); return true;
+case "Nodes": target.setNodes(property(camelContext, 
java.lang.String.class, value)); return true;
 case "reconnectbasesleeptime":
 case "ReconnectBaseSleepTime": 
target.setReconnectBaseSleepTime(property(camelContext, long.class, value)); 
return true;
 case "reconnectbasesleeptimeunit":
@@ -83,7 +83,7 @@ public class ZooKeeperServiceDiscoveryFactoryConfigurer 
extends org.apache.camel
 case "namespace":
 case "Namespace": return java.lang.String.class;
 case "nodes":
-case "Nodes": return java.util.List.class;
+case "Nodes": return java.lang.String.class;
 case "reconnectbasesleeptime":
 case "ReconnectBaseSleepTime": return long.class;
 case "reconnectbasesleeptimeunit":
@@ -153,8 +153,6 @@ public class ZooKeeperServiceDiscoveryFactoryConfigurer 
extends org.apache.camel
 switch (ignoreCase ? name.toLowerCase() : name) {
 case "authinfolist":
 case "AuthInfoList": return 
org.apache.curator.framework.AuthInfo.class;
-case "nodes":
-case "Nodes": return java.lang.String.class;
 default: return null;
 }
 }


[camel] 03/03: Regen for commit af2126962f2024611b76a5fedc2ae2a17bf764bc

2021-07-29 Thread acosentino
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

commit 2735748d603494492e46c85a0956afc0ffef49fa
Author: davsclaus 
AuthorDate: Thu Jul 29 15:30:01 2021 +

Regen for commit af2126962f2024611b76a5fedc2ae2a17bf764bc

Signed-off-by: GitHub 
---
 .../catalog/models/serviceCallConfiguration.json   |   2 +-
 .../apache/camel/catalog/schemas/camel-spring.xsd  | 172 -
 2 files changed, 172 insertions(+), 2 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/serviceCallConfiguration.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/serviceCallConfiguration.json
index 9cb7cbb..7d5d18b 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/serviceCallConfiguration.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/serviceCallConfiguration.json
@@ -12,7 +12,7 @@
   },
   "properties": {
 "expression": { "kind": "element", "displayName": "Expression", 
"required": false, "type": "object", "javaType": 
"org.apache.camel.model.cloud.ServiceCallExpressionConfiguration", 
"deprecated": false, "autowired": false, "secret": false, "description": 
"Configures the Expression using the given configuration." },
-"uri": { "kind": "attribute", "displayName": "Uri", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": false, "description": "The uri of the endpoint to 
send to. The uri can be dynamic computed using the 
org.apache.camel.language.simple.SimpleLanguage expression." },
+"uri": { "kind": "attribute", "displayName": "Uri", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": false, "description": "The uri of the endpoint to 
send to. The uri can be dynamic computed using the simple language expression." 
},
 "component": { "kind": "attribute", "displayName": "Component", 
"required": false, "type": "string", "javaType": "java.lang.String", 
"deprecated": false, "autowired": false, "secret": false, "defaultValue": 
"http", "description": "The component to use." },
 "pattern": { "kind": "attribute", "displayName": "Pattern", "required": 
false, "type": "enum", "javaType": "org.apache.camel.ExchangePattern", "enum": 
[ "InOnly", "InOptionalOut", "InOut" ], "deprecated": false, "autowired": 
false, "secret": false, "description": "Sets the optional ExchangePattern used 
to invoke this endpoint" },
 "serviceDiscoveryRef": { "kind": "attribute", "displayName": "Service 
Discovery Ref", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "Sets a reference to a custom ServiceDiscovery to use." },
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
index 9110cba..129cdd7 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
@@ -1,5 +1,7 @@
 http://www.w3.org/2001/XMLSchema; 
xmlns:tns="http://camel.apache.org/schema/spring; 
elementFormDefault="qualified" 
targetNamespace="http://camel.apache.org/schema/spring; version="1.0">
 
+  
+
   
 
   
   
 
@@ -13232,6 +13346,14 @@ Set a reference to a custom Expression to use.
 
   
 
+  
+
+  
+
+  
+
+  
+
   
 
   
@@ -13240,6 +13362,54 @@ Set a reference to a custom Expression to use.
 
   
 
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
+  
+
   
 
   


[camel] 03/03: Regen again

2021-06-22 Thread acosentino
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

commit d9cc07707e2440801b6fa5ceeeb117834b46d4f2
Author: Andrea Cosentino 
AuthorDate: Tue Jun 22 14:20:47 2021 +0200

Regen again
---
 .../org/apache/camel/catalog/dataformats/csv.json   |  1 +
 .../resources/org/apache/camel/catalog/models/csv.json  |  1 +
 .../org/apache/camel/catalog/models/removeHeader.json   |  3 ++-
 .../org/apache/camel/catalog/schemas/camel-spring.xsd   | 17 -
 4 files changed, 20 insertions(+), 2 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/dataformats/csv.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/dataformats/csv.json
index cbf061c..1dfd5dc 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/dataformats/csv.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/dataformats/csv.json
@@ -44,6 +44,7 @@
 "useMaps": { "kind": "attribute", "displayName": "Use Maps", "required": 
false, "type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false, 
"autowired": false, "secret": false, "defaultValue": false, "description": 
"Whether the unmarshalling should produce maps (HashMap)for the lines values 
instead of lists. It requires to have header (either defined or collected)." },
 "useOrderedMaps": { "kind": "attribute", "displayName": "Use Ordered 
Maps", "required": false, "type": "boolean", "javaType": "java.lang.Boolean", 
"deprecated": false, "autowired": false, "secret": false, "defaultValue": 
false, "description": "Whether the unmarshalling should produce ordered maps 
(LinkedHashMap) for the lines values instead of lists. It requires to have 
header (either defined or collected)." },
 "recordConverterRef": { "kind": "attribute", "displayName": "Record 
Converter Ref", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "Refers to a custom CsvRecordConverter to lookup from the 
registry to use." },
+"captureHeaderRecord": { "kind": "attribute", "displayName": "Capture 
Header Record", "required": false, "type": "boolean", "javaType": 
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": false, "description": "Whether the unmarshalling should capture 
the header record and store it in the message header" },
 "id": { "kind": "attribute", "displayName": "Id", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": false, "description": "The id of this node" }
   }
 }
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/csv.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/csv.json
index 12099b7..c1fcfba 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/csv.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/csv.json
@@ -40,6 +40,7 @@
 "useMaps": { "kind": "attribute", "displayName": "Use Maps", "required": 
false, "type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false, 
"autowired": false, "secret": false, "defaultValue": false, "description": 
"Whether the unmarshalling should produce maps (HashMap)for the lines values 
instead of lists. It requires to have header (either defined or collected)." },
 "useOrderedMaps": { "kind": "attribute", "displayName": "Use Ordered 
Maps", "required": false, "type": "boolean", "javaType": "java.lang.Boolean", 
"deprecated": false, "autowired": false, "secret": false, "defaultValue": 
false, "description": "Whether the unmarshalling should produce ordered maps 
(LinkedHashMap) for the lines values instead of lists. It requires to have 
header (either defined or collected)." },
 "recordConverterRef": { "kind": "attribute", "displayName": "Record 
Converter Ref", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "Refers to a custom CsvRecordConverter to lookup from the 
registry to use." },
+"captureHeaderRecord": { "kind": "attribute", "displayName": "Capture 
Header Record", "required": false, "type": "boolean", "javaType": 
"java.lang.Boolean", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": false, "description": "Whether the unmarshalling should capture 
the header record and store it in the message header" },
 "id": { "kind": "attribute", "displayName": "Id", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": false, "description": "The id of this node" }
   }
 }
diff --git 

[camel] 03/03: Regen and sync

2021-06-10 Thread acosentino
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

commit c56bdccede80c15d16f0ebfd6118a88356b91459
Author: Andrea Cosentino 
AuthorDate: Thu Jun 10 13:59:57 2021 +0200

Regen and sync
---
 .../org/apache/camel/catalog/components.properties |   2 +
 .../catalog/components/hwcloud-functiongraph.json  |  45 +
 .../camel/catalog/components/hwcloud-smn.json  |  45 +
 .../org/apache/camel/catalog/docs.properties   |   2 +
 .../docs/hwcloud-functiongraph-component.adoc  | 152 +++
 .../camel/catalog/docs/hwcloud-smn-component.adoc  | 209 +
 .../org/apache/camel/main/components.properties|   2 +
 docs/components/modules/others/pages/main.adoc |   1 +
 .../EndpointProducerDeserializersResolver.java |   2 -
 9 files changed, 458 insertions(+), 2 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
index b3ddadc..16498aa 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
@@ -145,6 +145,8 @@ hbase
 hdfs
 http
 https
+hwcloud-functiongraph
+hwcloud-smn
 iec60870-client
 iec60870-server
 ignite-cache
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/hwcloud-functiongraph.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/hwcloud-functiongraph.json
new file mode 100644
index 000..9c40a29
--- /dev/null
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/hwcloud-functiongraph.json
@@ -0,0 +1,45 @@
+{
+  "component": {
+"kind": "component",
+"name": "hwcloud-functiongraph",
+"title": "FunctionGraph",
+"description": "To call serverless functions on Huawei Cloud",
+"deprecated": false,
+"firstVersion": "3.11.0",
+"label": "cloud,serverless",
+"javaType": "org.apache.camel.FunctionGraphComponent",
+"supportLevel": "Preview",
+"groupId": "org.apache.camel",
+"artifactId": "camel-huaweicloud-functiongraph",
+"version": "3.11.0-SNAPSHOT",
+"scheme": "hwcloud-functiongraph",
+"extendsScheme": "",
+"syntax": "hwcloud-functiongraph:operation",
+"async": false,
+"api": false,
+"consumerOnly": false,
+"producerOnly": true,
+"lenientProperties": false
+  },
+  "componentProperties": {
+"lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Whether the producer 
should be started lazy (on the first message). By starting lazy you can use 
this to allow CamelContext and routes to startup in situations where a producer 
may otherwise fail during star [...]
+"autowiredEnabled": { "kind": "property", "displayName": "Autowired 
Enabled", "group": "advanced", "label": "advanced", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": true, "description": "Whether autowiring is 
enabled. This is used for automatic autowiring options (the option must be 
marked as autowired) by looking up in the registry to find if there is a single 
instance of matching type, which t [...]
+  },
+  "properties": {
+"operation": { "kind": "path", "displayName": "Operation", "group": 
"producer", "label": "producer", "required": true, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "deprecationNote": "", 
"autowired": false, "secret": false, "description": "Operation to be performed" 
},
+"endpoint": { "kind": "parameter", "displayName": "Service endpoint", 
"group": "producer", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "deprecationNote": "", 
"autowired": false, "secret": false, "description": "FunctionGraph url. Carries 
higher precedence than region parameter based client initialization" },
+"functionName": { "kind": "parameter", "displayName": "Function name", 
"group": "producer", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "deprecationNote": "", 
"autowired": false, "secret": false, "description": "Name of the function to 
invoke" },
+"functionPackage": { "kind": "parameter", "displayName": "Function 
package", "group": "producer", "label": "", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, 
"deprecationNote": "", "autowired": false, 

[camel] 03/03: Regen

2021-05-16 Thread acosentino
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

commit a0ab161951c0630cf613cfe6fe652d91b3a478c4
Author: Andrea Cosentino 
AuthorDate: Mon May 17 07:34:36 2021 +0200

Regen
---
 .../apache/camel/catalog/schemas/camel-spring.xsd  | 62 ++
 1 file changed, 40 insertions(+), 22 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
index 72f9aaa..e202ad2 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
@@ -14506,7 +14506,10 @@ is true.
   
 
 
+
 
+
+
   
 
   
@@ -14536,6 +14539,13 @@ To use query parameter as the location of the API key. 
Default value: false
 ]]>
   
 
+
+  
+
+  
+
   
 
   
@@ -14566,6 +14576,21 @@ A short description for security scheme.
 
   
 
+  
+
+  
+
+
+  
+
+  
+
+  
+
+  
+
   
 
   
@@ -14594,6 +14619,14 @@ Required for password, application, and access code 
flows.
 ]]>
   
 
+
+  
+
+  
+
 
   
 
   
 
@@ -14635,19 +14662,10 @@ A hint to the client to identify how the bearer token 
is formatted.
 
   
 
-  
-
-  
-
-
-  
-
-  
-
-  
-
+  
+
+  
+
   
 
   


[camel] 03/03: Regen catalog

2021-05-14 Thread acosentino
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

commit 2773636befd674f7148272023ee6423ae603267d
Author: Andrea Cosentino 
AuthorDate: Fri May 14 14:52:58 2021 +0200

Regen catalog
---
 .../resources/org/apache/camel/catalog/components/aws2-lambda.json| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-lambda.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-lambda.json
index 611862a..d5633e6c 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-lambda.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-lambda.json
@@ -27,7 +27,7 @@
 "operation": { "kind": "property", "displayName": "Operation", "group": 
"producer", "label": "", "required": false, "type": "object", "javaType": 
"org.apache.camel.component.aws2.lambda.Lambda2Operations", "enum": [ 
"listFunctions", "getFunction", "createAlias", "deleteAlias", "getAlias", 
"listAliases", "createFunction", "deleteFunction", "invokeFunction", 
"updateFunction", "createEventSourceMapping", "deleteEventSourceMapping", 
"listEventSourceMapping", "listTags", "tagResource", "u [...]
 "overrideEndpoint": { "kind": "property", "displayName": "Override 
Endpoint", "group": "producer", "label": "", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.aws2.lambda.Lambda2Configuration", 
"configurationField": "configuration", "description": "Set the need for 
overidding the endpoint. This option needs to be used in combination with uri 
[...]
 "pojoRequest": { "kind": "property", "displayName": "Pojo Request", 
"group": "producer", "label": "", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.aws2.lambda.Lambda2Configuration", 
"configurationField": "configuration", "description": "If we want to use a POJO 
request as body or not" },
-"region": { "kind": "property", "displayName": "Region", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": 
"org.apache.camel.component.aws2.lambda.Lambda2Configuration", 
"configurationField": "configuration", "description": "The region in which ECS 
client needs to work. When using this parameter, the configuration will expect 
the lowercase name of the r [...]
+"region": { "kind": "property", "displayName": "Region", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": 
"org.apache.camel.component.aws2.lambda.Lambda2Configuration", 
"configurationField": "configuration", "description": "The region in which 
Lambda client needs to work. When using this parameter, the configuration will 
expect the lowercase name of th [...]
 "trustAllCertificates": { "kind": "property", "displayName": "Trust All 
Certificates", "group": "producer", "label": "", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.aws2.lambda.Lambda2Configuration", 
"configurationField": "configuration", "description": "If we want to trust all 
certificates in case of overriding the endpoint" },
 "uriEndpointOverride": { "kind": "property", "displayName": "Uri Endpoint 
Override", "group": "producer", "label": "", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws2.lambda.Lambda2Configuration", 
"configurationField": "configuration", "description": "Set the overriding uri 
endpoint. This option needs to be used in combination with overrideEndpoint 
option" },
 "useDefaultCredentialsProvider": { "kind": "property", "displayName": "Use 
Default Credentials Provider", "group": "producer", "label": "", "required": 
false, "type": "boolean", "javaType": "boolean", "deprecated": false, 
"autowired": false, "secret": false, "defaultValue": false, 
"configurationClass": 
"org.apache.camel.component.aws2.lambda.Lambda2Configuration", 
"configurationField": "configuration", "description": "Set whether the Lambda 
client should expect to load credentials th [...]
@@ -45,7 +45,7 @@
 "operation": { "kind": "parameter", "displayName": "Operation", "group": 

[camel] 03/03: Regen for commit 72a4c5a988cc7d331eb83bc91ee49a0e7ec13d70

2021-05-14 Thread acosentino
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

commit b3972b25753a786f03f8c8dd8785882b2568bbcf
Author: oscerd 
AuthorDate: Fri May 14 06:56:16 2021 +

Regen for commit 72a4c5a988cc7d331eb83bc91ee49a0e7ec13d70

Signed-off-by: GitHub 
---
 .../resources/org/apache/camel/catalog/schemas/camel-spring.xsd  | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
index 785bd46..ec4d05f 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
@@ -14059,6 +14059,7 @@ to refer to an existing data format instance.
   
 
   
+  
   
 
 


[camel] 03/03: Regen

2021-04-25 Thread acosentino
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

commit 562ac221ffd930ed23de286cf29600cc6be3d750
Author: Andrea Cosentino 
AuthorDate: Sun Apr 25 09:26:19 2021 +0200

Regen
---
 .../generated/resources/org/apache/camel/catalog/components/cql.json  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/cql.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/cql.json
index 8224349..b792000 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/cql.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/cql.json
@@ -28,8 +28,8 @@
   },
   "properties": {
 "beanRef": { "kind": "path", "displayName": "Bean Ref", "group": "common", 
"label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "beanRef is defined using bean:id" },
-"hosts": { "kind": "path", "displayName": "Hosts", "group": "common", 
"label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "Hostname(s) cassansdra server(s). Multiple hosts can be 
separated by comma." },
-"port": { "kind": "path", "displayName": "Port", "group": "common", 
"label": "", "required": false, "type": "integer", "javaType": 
"java.lang.Integer", "deprecated": false, "autowired": false, "secret": false, 
"description": "Port number of cassansdra server(s)" },
+"hosts": { "kind": "path", "displayName": "Hosts", "group": "common", 
"label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "Hostname(s) Cassandra server(s). Multiple hosts can be 
separated by comma." },
+"port": { "kind": "path", "displayName": "Port", "group": "common", 
"label": "", "required": false, "type": "integer", "javaType": 
"java.lang.Integer", "deprecated": false, "autowired": false, "secret": false, 
"description": "Port number of Cassandra server(s)" },
 "keyspace": { "kind": "path", "displayName": "Keyspace", "group": 
"common", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "Keyspace to use" },
 "clusterName": { "kind": "parameter", "displayName": "Cluster Name", 
"group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "Cluster name" },
 "consistencyLevel": { "kind": "parameter", "displayName": "Consistency 
Level", "group": "common", "label": "", "required": false, "type": "object", 
"javaType": "com.datastax.oss.driver.api.core.DefaultConsistencyLevel", "enum": 
[ "ANY", "ONE", "TWO", "THREE", "QUORUM", "ALL", "LOCAL_ONE", "LOCAL_QUORUM", 
"EACH_QUORUM", "SERIAL", "LOCAL_SERIAL" ], "deprecated": false, "autowired": 
false, "secret": false, "description": "Consistency level to use" },


[camel] 03/03: Regen

2021-04-16 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 05e357d93bd8f430778207fc8bee7ec04b9310e5
Author: Andrea Cosentino 
AuthorDate: Fri Apr 16 08:10:47 2021 +0200

Regen
---
 .../generated/resources/org/apache/camel/catalog/components/apns.json   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/apns.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/apns.json
index d5344ba..91e3b01 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/apns.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/apns.json
@@ -4,7 +4,7 @@
 "name": "apns",
 "title": "APNS",
 "description": "Send notifications to Apple iOS devices.",
-"deprecated": false,
+"deprecated": true,
 "firstVersion": "2.8.0",
 "label": "eventbus,mobile",
 "javaType": "org.apache.camel.component.apns.ApnsComponent",


[camel] 03/03: Regen

2021-04-15 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 1728f9f2db4160864082dc5bda8a0672b0724b86
Author: Andrea Cosentino 
AuthorDate: Thu Apr 15 15:18:50 2021 +0200

Regen
---
 .../org/apache/camel/catalog/components/azure-storage-queue.json| 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-queue.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-queue.json
index 0674691..7492793 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-queue.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-queue.json
@@ -22,9 +22,8 @@
 "lenientProperties": false
   },
   "componentProperties": {
-"autoDiscoverClient": { "kind": "property", "displayName": "Auto Discover 
Client", "group": "common", "label": "common", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": true, "configurationClass": 
"org.apache.camel.component.azure.storage.queue.QueueConfiguration", 
"configurationField": "configuration", "description": "Setting the 
autoDiscoverClient mechanism, if true, the component will look for a [...]
 "configuration": { "kind": "property", "displayName": "Configuration", 
"group": "common", "label": "", "required": false, "type": "object", 
"javaType": 
"org.apache.camel.component.azure.storage.queue.QueueConfiguration", 
"deprecated": false, "autowired": false, "secret": false, "description": "The 
component configurations" },
-"serviceClient": { "kind": "property", "displayName": "Service Client", 
"group": "common", "label": "common", "required": false, "type": "object", 
"javaType": "com.azure.storage.queue.QueueServiceClient", "deprecated": false, 
"autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.azure.storage.queue.QueueConfiguration", 
"configurationField": "configuration", "description": "Service client to a 
storage account to interact with the queue service. This cl [...]
+"serviceClient": { "kind": "property", "displayName": "Service Client", 
"group": "common", "label": "common", "required": false, "type": "object", 
"javaType": "com.azure.storage.queue.QueueServiceClient", "deprecated": false, 
"deprecationNote": "", "autowired": true, "secret": false, 
"configurationClass": 
"org.apache.camel.component.azure.storage.queue.QueueConfiguration", 
"configurationField": "configuration", "description": "Service client to a 
storage account to interact with the  [...]
 "bridgeErrorHandler": { "kind": "property", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Allows for bridging the 
consumer to the Camel routing Error Handler, which mean any exceptions occurred 
while the consumer is trying to pickup incoming messages, or the likes, will 
now be processed as a me [...]
 "createQueue": { "kind": "property", "displayName": "Create Queue", 
"group": "producer", "label": "producer", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": true, "configurationClass": 
"org.apache.camel.component.azure.storage.queue.QueueConfiguration", 
"configurationField": "configuration", "description": "When is set to true, the 
queue will be automatically created when sending messages to the q [...]
 "lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Whether the producer 
should be started lazy (on the first message). By starting lazy you can use 
this to allow CamelContext and routes to startup in situations where a producer 
may otherwise fail during star [...]
@@ -42,8 +41,7 @@
   "properties": {
 "accountName": { "kind": "path", "displayName": "Account Name", "group": 
"common", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": 
"org.apache.camel.component.azure.storage.queue.QueueConfiguration", 
"configurationField": "configuration", "description": "Azure account name to be 
used for authentication with azure queue services" },
 "queueName": { "kind": "path", "displayName": "Queue Name", "group": 
"common", "label": "", "required": false, 

[camel] 03/03: Regen

2021-04-11 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit b7335c39ad7e3fef0694604e2c5e5d2a7b0f4c8c
Author: Andrea Cosentino 
AuthorDate: Mon Apr 12 07:33:00 2021 +0200

Regen
---
 .../camel/catalog/main/camel-main-configuration-metadata.json | 2 +-
 .../resources/org/apache/camel/catalog/schemas/camel-spring.xsd   | 8 
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
index 8a15602..b4f38a5 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
@@ -101,7 +101,7 @@
 { "name": "camel.main.useBreadcrumb", "description": "Set whether 
breadcrumb is enabled. The default value is false.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "boolean", 
"javaType": "boolean", "defaultValue": "false" },
 { "name": "camel.main.useDataType", "description": "Whether to enable 
using data type on Camel messages. Data type are automatic turned on if one ore 
more routes has been explicit configured with input and output types. Otherwise 
data type is default off.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "boolean", 
"javaType": "boolean", "defaultValue": "false" },
 { "name": "camel.main.useMdcLogging", "description": "To turn on MDC 
logging", "sourceType": "org.apache.camel.main.DefaultConfigurationProperties", 
"type": "boolean", "javaType": "boolean", "defaultValue": "false" },
-{ "name": "camel.main.uuidGenerator", "description": "UUID generator to 
use. default (32 bytes), short (16 bytes), classic (32 bytes or longer), simple 
(long incrementing counter)", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "string", 
"javaType": "java.lang.String", "defaultValue": "default", "enum": [ "classic", 
"default", "short", "simple" ] },
+{ "name": "camel.main.uuidGenerator", "description": "UUID generator to 
use. default (32 bytes), short (16 bytes), classic (32 bytes or longer), simple 
(long incrementing counter), off (turned off for exchanges - only intended for 
performance profiling)", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "string", 
"javaType": "java.lang.String", "defaultValue": "default", "enum": [ "classic", 
"default", "short", "simple", "off" ] },
 { "name": "camel.faulttolerance.bulkheadEnabled", "description": "Whether 
bulkhead is enabled or not on the circuit breaker. Default is false.", 
"sourceType": "org.apache.camel.main.FaultToleranceConfigurationProperties", 
"type": "boolean", "javaType": "java.lang.Boolean", "defaultValue": false },
 { "name": "camel.faulttolerance.bulkheadExecutorServiceRef", 
"description": "References to a custom thread pool to use when bulkhead is 
enabled.", "sourceType": 
"org.apache.camel.main.FaultToleranceConfigurationProperties", "type": 
"string", "javaType": "java.lang.String" },
 { "name": "camel.faulttolerance.bulkheadMaxConcurrentCalls", 
"description": "Configures the max amount of concurrent calls the bulkhead will 
support. Default value is 10.", "sourceType": 
"org.apache.camel.main.FaultToleranceConfigurationProperties", "type": 
"integer", "javaType": "java.lang.Integer", "defaultValue": 10 },
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
index 4d863e8..fc6c345 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
@@ -4667,6 +4667,14 @@ endpoint. Default value: false
 ]]>
   
 
+
+  
+
+  
+
   
 
   


[camel] 03/03: Regen

2021-04-01 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 75bd8ff037e001ed47b1e95bd49f48cc026708a6
Author: Andrea Cosentino 
AuthorDate: Thu Apr 1 09:08:57 2021 +0200

Regen
---
 .../resources/org/apache/camel/catalog/components/aws2-s3.json  | 2 --
 1 file changed, 2 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-s3.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-s3.json
index 4aab19d..d2cbe25 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-s3.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-s3.json
@@ -33,7 +33,6 @@
 "proxyPort": { "kind": "property", "displayName": "Proxy Port", "group": 
"common", "label": "", "required": false, "type": "integer", "javaType": 
"java.lang.Integer", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": "org.apache.camel.component.aws2.s3.AWS2S3Configuration", 
"configurationField": "configuration", "description": "Specify a proxy port to 
be used inside the client definition." },
 "proxyProtocol": { "kind": "property", "displayName": "Proxy Protocol", 
"group": "common", "label": "", "required": false, "type": "object", 
"javaType": "software.amazon.awssdk.core.Protocol", "enum": [ "HTTP", "HTTPS" 
], "deprecated": false, "autowired": false, "secret": false, "defaultValue": 
"HTTPS", "configurationClass": 
"org.apache.camel.component.aws2.s3.AWS2S3Configuration", "configurationField": 
"configuration", "description": "To define a proxy protocol when instantiating 
th [...]
 "region": { "kind": "property", "displayName": "Region", "group": 
"common", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": "org.apache.camel.component.aws2.s3.AWS2S3Configuration", 
"configurationField": "configuration", "description": "The region in which S3 
client needs to work. When using this parameter, the configuration will expect 
the lowercase name of the region (f [...]
-"streamMode": { "kind": "property", "displayName": "Stream Mode", "group": 
"common", "label": "", "required": false, "type": "boolean", "javaType": 
"boolean", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": false, "configurationClass": 
"org.apache.camel.component.aws2.s3.AWS2S3Configuration", "configurationField": 
"configuration", "description": "If StreaMode is true a different way of 
uploading will be provided" },
 "trustAllCertificates": { "kind": "property", "displayName": "Trust All 
Certificates", "group": "common", "label": "", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.aws2.s3.AWS2S3Configuration", "configurationField": 
"configuration", "description": "If we want to trust all certificates in case 
of overriding the endpoint" },
 "uriEndpointOverride": { "kind": "property", "displayName": "Uri Endpoint 
Override", "group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.aws2.s3.AWS2S3Configuration", "configurationField": 
"configuration", "description": "Set the overriding uri endpoint. This option 
needs to be used in combination with overrideEndpoint option" },
 "useDefaultCredentialsProvider": { "kind": "property", "displayName": "Use 
Default Credentials Provider", "group": "common", "label": "", "required": 
false, "type": "boolean", "javaType": "boolean", "deprecated": false, 
"autowired": false, "secret": false, "defaultValue": false, 
"configurationClass": "org.apache.camel.component.aws2.s3.AWS2S3Configuration", 
"configurationField": "configuration", "description": "Set whether the S3 
client should expect to load credentials through a def [...]
@@ -79,7 +78,6 @@
 "proxyPort": { "kind": "parameter", "displayName": "Proxy Port", "group": 
"common", "label": "", "required": false, "type": "integer", "javaType": 
"java.lang.Integer", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": "org.apache.camel.component.aws2.s3.AWS2S3Configuration", 
"configurationField": "configuration", "description": "Specify a proxy port to 
be used inside the client definition." },
 "proxyProtocol": { "kind": "parameter", "displayName": "Proxy Protocol", 
"group": "common", "label": "", "required": false, "type": "object", 
"javaType": "software.amazon.awssdk.core.Protocol", "enum": [ "HTTP", "HTTPS" 
], "deprecated": false, "autowired": 

[camel] 03/03: Regen

2021-03-26 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit be6b777aaaf2a3ab221034f6420f9b7465d23889
Author: Andrea Cosentino 
AuthorDate: Fri Mar 26 14:40:38 2021 +0100

Regen
---
 .../resources/org/apache/camel/catalog/components/google-functions.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/google-functions.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/google-functions.json
index 21a6075..6223b0f 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/google-functions.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/google-functions.json
@@ -3,7 +3,7 @@
 "kind": "component",
 "name": "google-functions",
 "title": "GoogleCloudFunctions",
-"description": "Store and retrieve objects from Google Cloud Functions 
Service using the google-cloud-storage library.",
+"description": "Manage and invoke Google Cloud Functions",
 "deprecated": false,
 "firstVersion": "3.9.0",
 "label": "cloud",


[camel] 03/03: Regen

2021-03-26 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 6e3959a0434440449938552a0028dfc3eddccba9
Author: Andrea Cosentino 
AuthorDate: Fri Mar 26 07:45:52 2021 +0100

Regen
---
 .../org/apache/camel/catalog/docs/aws-secrets-manager-component.adoc| 2 ++
 docs/components/modules/ROOT/pages/aws-secrets-manager-component.adoc   | 2 ++
 2 files changed, 4 insertions(+)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/aws-secrets-manager-component.adoc
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/aws-secrets-manager-component.adoc
index ae6f8f3..d4b25e5 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/aws-secrets-manager-component.adoc
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/aws-secrets-manager-component.adoc
@@ -123,6 +123,8 @@ Camel-AWS-Secrets-manager component provides the following 
operation on the prod
 - describeSecret
 - rotateSecret
 - getSecret
+- updateSecret
+- replicateSecretToRegions
 
 == Dependencies
 
diff --git 
a/docs/components/modules/ROOT/pages/aws-secrets-manager-component.adoc 
b/docs/components/modules/ROOT/pages/aws-secrets-manager-component.adoc
index 6a80aac..d75e301 100644
--- a/docs/components/modules/ROOT/pages/aws-secrets-manager-component.adoc
+++ b/docs/components/modules/ROOT/pages/aws-secrets-manager-component.adoc
@@ -125,6 +125,8 @@ Camel-AWS-Secrets-manager component provides the following 
operation on the prod
 - describeSecret
 - rotateSecret
 - getSecret
+- updateSecret
+- replicateSecretToRegions
 
 == Dependencies
 


[camel] 03/03: Regen

2021-03-19 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 0d1f0bb5b32469463e154040b817669189f3db3b
Author: Andrea Cosentino 
AuthorDate: Fri Mar 19 07:12:52 2021 +0100

Regen
---
 .../org/apache/camel/catalog/components.properties |  4 ++
 .../apache/camel/catalog/components/coap+tcp.json  | 47 ++
 .../org/apache/camel/catalog/components/coap.json  | 47 ++
 .../apache/camel/catalog/components/coaps+tcp.json | 47 ++
 .../org/apache/camel/catalog/components/coaps.json | 47 ++
 .../org/apache/camel/main/components.properties|  4 ++
 .../EndpointConsumerDeserializersResolver.java |  4 --
 .../EndpointProducerDeserializersResolver.java |  4 --
 8 files changed, 196 insertions(+), 8 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
index 2930a57..a8bd19f 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
@@ -58,6 +58,10 @@ chunk
 class
 cm-sms
 cmis
+coap
+coap+tcp
+coaps
+coaps+tcp
 cometd
 cometds
 consul
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/coap+tcp.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/coap+tcp.json
new file mode 100644
index 000..3007be4
--- /dev/null
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/coap+tcp.json
@@ -0,0 +1,47 @@
+{
+  "component": {
+"kind": "component",
+"name": "coap+tcp",
+"title": "CoAP",
+"description": "Send and receive messages to\/from COAP capable devices.",
+"deprecated": false,
+"firstVersion": "2.16.0",
+"label": "iot",
+"javaType": "org.apache.camel.coap.CoAPComponent",
+"supportLevel": "Stable",
+"groupId": "org.apache.camel",
+"artifactId": "camel-coap",
+"version": "3.9.0-SNAPSHOT",
+"scheme": "coap+tcp",
+"extendsScheme": "",
+"alternativeSchemes": "coap,coaps,coap+tcp,coaps+tcp",
+"syntax": "coap+tcp:uri",
+"async": false,
+"api": false,
+"consumerOnly": false,
+"producerOnly": false,
+"lenientProperties": false
+  },
+  "componentProperties": {
+"bridgeErrorHandler": { "kind": "property", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Allows for bridging the 
consumer to the Camel routing Error Handler, which mean any exceptions occurred 
while the consumer is trying to pickup incoming messages, or the likes, will 
now be processed as a me [...]
+"lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Whether the producer 
should be started lazy (on the first message). By starting lazy you can use 
this to allow CamelContext and routes to startup in situations where a producer 
may otherwise fail during star [...]
+"autowiredEnabled": { "kind": "property", "displayName": "Autowired 
Enabled", "group": "advanced", "label": "advanced", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": true, "description": "Whether autowiring is 
enabled. This is used for automatic autowiring options (the option must be 
marked as autowired) by looking up in the registry to find if there is a single 
instance of matching type, which t [...]
+  },
+  "properties": {
+"uri": { "kind": "path", "displayName": "Uri", "group": "common", "label": 
"", "required": false, "type": "string", "javaType": "java.net.URI", 
"deprecated": false, "autowired": false, "secret": false, "description": "The 
URI for the CoAP endpoint" },
+"alias": { "kind": "parameter", "displayName": "Alias", "group": "common", 
"label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "Sets the alias used to query the KeyStore for the private key 
and certificate. This parameter is used when we are enabling TLS with 
certificates on the service side, and similarly on the client side when TLS is 
used with certificates and client authenticati [...]
+"cipherSuites": { "kind": "parameter", "displayName": "Cipher Suites", 
"group": "common", 

[camel] 03/03: Regen

2021-03-17 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 642622ebd261d672f9cf8c72fb902c7b5a259030
Author: Andrea Cosentino 
AuthorDate: Wed Mar 17 19:18:18 2021 +0100

Regen
---
 .../apache/camel/catalog/main/camel-main-configuration-metadata.json| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
index 37ad57d..3b4bd8f 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
@@ -78,7 +78,7 @@
 { "name": "camel.main.shutdownSuppressLoggingOnTimeout", "description": 
"Whether Camel should try to suppress logging during shutdown and timeout was 
triggered, meaning forced shutdown is happening. And during forced shutdown we 
want to avoid logging errors\/warnings et all in the logs as a side-effect of 
the forced timeout. Notice the suppress is a best effort as there may still be 
some logs coming from 3rd party libraries and whatnot, which Camel cannot 
control. This option is defa [...]
 { "name": "camel.main.shutdownTimeout", "description": "Timeout in seconds 
to graceful shutdown Camel.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "integer", 
"javaType": "int", "defaultValue": 45 },
 { "name": "camel.main.startupRecorder", "description": "To use startup 
recorder for capturing execution time during starting Camel. The recorder can 
be one of: false, logging, java-flight-recorder The default is false.", 
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties", "type": 
"string", "javaType": "java.lang.String" },
-{ "name": "camel.main.startupRecorderDir", "description": "Directory to 
store the recording. By default the user home directory will be used. Use false 
to turn off saving recording to disk.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "string", 
"javaType": "java.lang.String" },
+{ "name": "camel.main.startupRecorderDir", "description": "Directory to 
store the recording. By default the current directory will be used. Use false 
to turn off saving recording to disk.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "string", 
"javaType": "java.lang.String" },
 { "name": "camel.main.startupRecorderDuration", "description": "How long 
time to run the startup recorder. Use 0 (default) to keep the recorder running 
until the JVM is exited. Use -1 to stop the recorder right after Camel has been 
started (to only focus on potential Camel startup performance bottlenecks) Use 
a positive value to keep recording for N seconds. When the recorder is stopped 
then the recording is auto saved to disk (note: save to disk can be disabled by 
setting startupRec [...]
 { "name": "camel.main.startupRecorderMaxDepth", "description": "To filter 
our sub steps at a maximum depth. Use -1 for no maximum. Use 0 for no sub 
steps. Use 1 for max 1 sub step, and so forth. The default is -1.", 
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties", "type": 
"integer", "javaType": "int", "defaultValue": -1 },
 { "name": "camel.main.startupRecorderProfile", "description": "To use a 
specific Java Flight Recorder profile configuration, such as default or 
profile. The default is default.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "string", 
"javaType": "java.lang.String", "defaultValue": "default" },



[camel] 03/03: Regen

2021-03-17 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 651cb8175c34246350ed9f0ec01bc383c8dbae2f
Author: Andrea Cosentino 
AuthorDate: Wed Mar 17 12:09:55 2021 +0100

Regen
---
 .../org/apache/camel/catalog/components.properties |  4 ++
 .../apache/camel/catalog/components/coap+tcp.json  | 47 ++
 .../org/apache/camel/catalog/components/coap.json  | 47 ++
 .../apache/camel/catalog/components/coaps+tcp.json | 47 ++
 .../org/apache/camel/catalog/components/coaps.json | 47 ++
 .../org/apache/camel/main/components.properties|  4 ++
 .../interceptor/AdviceWithMockEndpointsTest.java   | 31 ++
 .../EndpointConsumerDeserializersResolver.java |  4 --
 .../EndpointProducerDeserializersResolver.java |  4 --
 9 files changed, 208 insertions(+), 27 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
index 2930a57..a8bd19f 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
@@ -58,6 +58,10 @@ chunk
 class
 cm-sms
 cmis
+coap
+coap+tcp
+coaps
+coaps+tcp
 cometd
 cometds
 consul
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/coap+tcp.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/coap+tcp.json
new file mode 100644
index 000..3007be4
--- /dev/null
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/coap+tcp.json
@@ -0,0 +1,47 @@
+{
+  "component": {
+"kind": "component",
+"name": "coap+tcp",
+"title": "CoAP",
+"description": "Send and receive messages to\/from COAP capable devices.",
+"deprecated": false,
+"firstVersion": "2.16.0",
+"label": "iot",
+"javaType": "org.apache.camel.coap.CoAPComponent",
+"supportLevel": "Stable",
+"groupId": "org.apache.camel",
+"artifactId": "camel-coap",
+"version": "3.9.0-SNAPSHOT",
+"scheme": "coap+tcp",
+"extendsScheme": "",
+"alternativeSchemes": "coap,coaps,coap+tcp,coaps+tcp",
+"syntax": "coap+tcp:uri",
+"async": false,
+"api": false,
+"consumerOnly": false,
+"producerOnly": false,
+"lenientProperties": false
+  },
+  "componentProperties": {
+"bridgeErrorHandler": { "kind": "property", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Allows for bridging the 
consumer to the Camel routing Error Handler, which mean any exceptions occurred 
while the consumer is trying to pickup incoming messages, or the likes, will 
now be processed as a me [...]
+"lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Whether the producer 
should be started lazy (on the first message). By starting lazy you can use 
this to allow CamelContext and routes to startup in situations where a producer 
may otherwise fail during star [...]
+"autowiredEnabled": { "kind": "property", "displayName": "Autowired 
Enabled", "group": "advanced", "label": "advanced", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": true, "description": "Whether autowiring is 
enabled. This is used for automatic autowiring options (the option must be 
marked as autowired) by looking up in the registry to find if there is a single 
instance of matching type, which t [...]
+  },
+  "properties": {
+"uri": { "kind": "path", "displayName": "Uri", "group": "common", "label": 
"", "required": false, "type": "string", "javaType": "java.net.URI", 
"deprecated": false, "autowired": false, "secret": false, "description": "The 
URI for the CoAP endpoint" },
+"alias": { "kind": "parameter", "displayName": "Alias", "group": "common", 
"label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "Sets the alias used to query the KeyStore for the private key 
and certificate. This parameter is used when we are enabling TLS with 
certificates on the service side, and similarly on the client side when TLS is 
used with certificates and client authenticati [...]
+"cipherSuites": { 

[camel] 03/03: Regen

2021-03-10 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit c6108e7a5ab61339f7bd8028acfa135ce0dcbe60
Author: Andrea Cosentino 
AuthorDate: Wed Mar 10 10:24:40 2021 +0100

Regen
---
 bom/camel-bom/pom.xml | 6 +++---
 parent/pom.xml| 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/bom/camel-bom/pom.xml b/bom/camel-bom/pom.xml
index 382d8ea..2009240 100644
--- a/bom/camel-bom/pom.xml
+++ b/bom/camel-bom/pom.xml
@@ -248,17 +248,17 @@
   
   
 org.apache.camel
-camel-azure-storage-blob
+camel-azure-parent
 ${project.version}
   
   
 org.apache.camel
-camel-azure-storage-datalake
+camel-azure-storage-blob
 ${project.version}
   
   
 org.apache.camel
-camel-azure-parent
+camel-azure-storage-datalake
 ${project.version}
   
   
diff --git a/parent/pom.xml b/parent/pom.xml
index 75b3cca..3837cf4 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -971,17 +971,17 @@


org.apache.camel
-   
camel-azure-storage-blob
+   camel-azure-parent
${project.version}


org.apache.camel
-   
camel-azure-storage-datalake
+   
camel-azure-storage-blob
${project.version}


org.apache.camel
-   camel-azure-parent
+   
camel-azure-storage-datalake
${project.version}





[camel] 03/03: Regen

2021-03-01 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 61e093cf2f40bcc196b806e3af1c5c4632e7c651
Author: Andrea Cosentino 
AuthorDate: Mon Mar 1 16:40:45 2021 +0100

Regen
---
 .../org/apache/camel/catalog/docs/yaml-dsl.adoc| 216 +
 1 file changed, 216 insertions(+)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/yaml-dsl.adoc
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/yaml-dsl.adoc
new file mode 100644
index 000..080603d
--- /dev/null
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/yaml-dsl.adoc
@@ -0,0 +1,216 @@
+[[yaml-dsl-other]]
+= Yaml Dsl Component
+:docTitle: Yaml Dsl
+:artifactId: camel-yaml-dsl
+:description: Camel DSL with YAML
+:since: 3.9
+:supportLevel: Preview
+include::{cq-version}@camel-quarkus:ROOT:partial$reference/others/yaml-dsl.adoc[opts=optional]
+//Manually maintained attributes
+:group: DSL
+
+*Since Camel {since}*
+
+== Defining a route
+
+A route is collection of elements defined as follows:
+
+[source,yaml]
+
+- from: #<1>
+uri: "direct:start"
+steps: #<2>
+  - filter:
+  expression:
+simple: "${in.header.continue} == true"
+  steps: #<2>
+- to:
+uri: "log:filtered"
+  - to:
+  uri: "log:original"
+
+<1> route entry point, by default `from` and `rest` are supported
+<2> processing steps
+
+[NOTE]
+
+Each step is represented by a YAML map that has a single entry where the field 
name is the EIP name
+
+
+As general rule each step provide all the parameters the related definition 
declares but there are some minor differences/enhancements:
+
+- *Output Aware Steps*
++
+Some steps such as `filter` and `split` have their own pipeline when an 
exchange matches the filter expression or for the items generated by the split 
expression, such pipeline can be defined by the `steps` field:
++
+[source,yaml]
+
+filter:
+  expression:
+simple: "${in.header.continue} == true"
+  steps:
+- to:
+uri: "log:filtered"
+
++
+
+- *Expression Aware Steps*
++
+Some EIP such as `filter` and `split` supports the definition of an expression 
through the `expression` field:
++
+[source,yaml]
+.Explicit Expression field
+
+filter:
+expression:
+  simple: "${in.header.continue} == true"
+
++
+To make the DSL less verbose, the `expression` field can be omitted:
++
+[source,yaml]
+.Implicit Expression field
+
+filter:
+simple: "${in.header.continue} == true"
+
++
+In general expression can be defined inline like in the examples above but in 
case you need provide more information, you can 'unroll' the expression 
definition and configure any single parameter the expression defines.
++
+[source,yaml]
+.Full Expression definition
+
+filter:
+tokenize:
+  token: "<"
+  end-token: ">"
+
+
+- *Data Format Aware Steps*
++
+Some EIP such as `set-body` and `marshal` supports the definition of data 
formats through the `data-format` field:
++
+[source,yaml]
+.Explicit Data Format field
+
+set-body:
+data-format:
+  json:
+library: Gson
+
++
+To make the DSL less verbose, the `data-format` field can be omitted:
++
+[source,yaml]
+.Implicit Data Format field
+
+set-body:
+json:
+  library: Gson
+
++
+[NOTE]
+
+In case you want to use the data-format's default settings, you need to place 
an empty block as data format parameters, like `json: {}`
+
+
+== Defining endpoints
+
+To define an endpoint with the YAML dsl you have three options:
+
+. Using a classic Camel URI:
++
+[source,yaml]
+
+- from:
+uri: "timer:tick?period=1s"
+steps:
+  - to:
+  uri: "telegram:bots?authorizationToken=XXX"
+
+. Using URI and parameters:
++
+[source,yaml]
+
+- from:
+uri: "timer://tick"
+parameters:
+  period: "1s"
+steps:
+  - to:
+  uri: "telegram:bots"
+  parameters:
+authorizationToken: "XXX"
+
+. Using the YAML implementation of the 
xref:latest@manual::Endpoint-dsl.adoc[Endpoint DSL]:
++
+[source,yaml]
+
+- from:
+timer:
+  name: "tick"
+  period: "1s"
+steps:
+  - telegram:
+  type: "bots"
+  authorizationToken: "XXX"
+
+
+[WARNING]
+
+Support for the Endpoint DSL with YAML is experimental and subject to changes.
+
+[NOTE]
+
+Support for Endpoint DSL auto completion 
https://github.com/apache/camel-k-runtime/issues/485[is not yet available].
+
+
+== Defining beans
+
+In addition to the general support for creating beans provided by 
xref:latest@components:others:main.adoc#_specifying_custom_beans[Camel Main], 
the YAML DSL provide a convenient syntax to define and configure them:
+
+[source,yaml]

[camel] 03/03: Regen

2021-02-12 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit b4a5c5156f2f8e4cba899554682f30e15534a770
Author: Andrea Cosentino 
AuthorDate: Fri Feb 12 18:42:42 2021 +0100

Regen
---
 .../component/azure/storage/blob/integration/BlobProducerITTest.java | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/components/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobProducerITTest.java
 
b/components/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobProducerITTest.java
index 3ee6944..f4ad930 100644
--- 
a/components/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobProducerITTest.java
+++ 
b/components/camel-azure-storage-blob/src/test/java/org/apache/camel/component/azure/storage/blob/integration/BlobProducerITTest.java
@@ -23,7 +23,6 @@ import java.nio.charset.StandardCharsets;
 import java.security.SecureRandom;
 import java.util.LinkedList;
 import java.util.List;
-import java.util.Random;
 
 import com.azure.storage.blob.BlobContainerClient;
 import com.azure.storage.blob.models.PageRange;



[camel] 03/03: Regen

2021-02-10 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 19e85eaffb496c1d9c90b4ab10052200371941b8
Author: Andrea Cosentino 
AuthorDate: Thu Feb 11 07:06:18 2021 +0100

Regen
---
 .../apache/camel/catalog/schemas/camel-spring.xsd| 20 ++--
 1 file changed, 2 insertions(+), 18 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
index d7cdfbd..c4815a3 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
@@ -6651,15 +6651,7 @@ Class name of the java type to use when unmarshalling.
 ]]>
   
 
-
-  
-
-  
-
+
 
   
 
   
 
-
-  
-
-  
-
+
 
   
 

[camel] 03/03: Regen catalog

2021-02-08 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 3a24dff5b048892c01156e177a23535ca440de98
Author: Andrea Cosentino 
AuthorDate: Mon Feb 8 09:56:35 2021 +0100

Regen catalog
---
 .../resources/org/apache/camel/catalog/components/nats.json   | 1 +
 .../resources/org/apache/camel/catalog/components/salesforce.json | 8 
 2 files changed, 9 insertions(+)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/nats.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/nats.json
index ce031e4..97f0e96 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/nats.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/nats.json
@@ -54,6 +54,7 @@
 "exchangePattern": { "kind": "parameter", "displayName": "Exchange 
Pattern", "group": "consumer (advanced)", "label": "consumer,advanced", 
"required": false, "type": "object", "javaType": 
"org.apache.camel.ExchangePattern", "enum": [ "InOnly", "InOut", 
"InOptionalOut" ], "deprecated": false, "autowired": false, "secret": false, 
"description": "Sets the exchange pattern when the consumer creates an 
exchange." },
 "lazyStartProducer": { "kind": "parameter", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Whether the producer 
should be started lazy (on the first message). By starting lazy you can use 
this to allow CamelContext and routes to startup in situations where a producer 
may otherwise fail during sta [...]
 "replySubject": { "kind": "parameter", "displayName": "Reply Subject", 
"group": "producer", "label": "producer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.nats.NatsConfiguration", "configurationField": 
"configuration", "description": "the subject to which subscribers should send 
response" },
+"requestTimeout": { "kind": "parameter", "displayName": "Request Timeout", 
"group": "producer", "label": "producer", "required": false, "type": "integer", 
"javaType": "long", "deprecated": false, "autowired": false, "secret": false, 
"defaultValue": 2, "configurationClass": 
"org.apache.camel.component.nats.NatsConfiguration", "configurationField": 
"configuration", "description": "Request timeout in milliseconds" },
 "connection": { "kind": "parameter", "displayName": "Connection", "group": 
"advanced", "label": "advanced", "required": false, "type": "object", 
"javaType": "io.nats.client.Connection", "deprecated": false, "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.nats.NatsConfiguration", "configurationField": 
"configuration", "description": "Reference an already instantiated connection 
to Nats server" },
 "traceConnection": { "kind": "parameter", "displayName": "Trace 
Connection", "group": "advanced", "label": "advanced", "required": false, 
"type": "boolean", "javaType": "boolean", "deprecated": false, "autowired": 
false, "secret": false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.nats.NatsConfiguration", "configurationField": 
"configuration", "description": "Whether or not connection trace messages 
should be printed to standard out for fine grained debug [...]
 "secure": { "kind": "parameter", "displayName": "Secure", "group": 
"security", "label": "security", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.nats.NatsConfiguration", "configurationField": 
"configuration", "description": "Set secure option indicating TLS is required" 
},
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/salesforce.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/salesforce.json
index 9f84f8e..bf7ac08 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/salesforce.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/salesforce.json
@@ -51,6 +51,10 @@
 "notifyForOperationUpdate": { "kind": "property", "displayName": "Notify 
For Operation Update", "group": "common", "label": "", "required": false, 
"type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false, 
"autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.salesforce.SalesforceEndpointConfig", 
"configurationField": "config", 

[camel] 03/03: Regen

2021-02-03 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit d403d0c26fd8a413cdd401962555197b8d90c819
Author: Andrea Cosentino 
AuthorDate: Wed Feb 3 14:29:16 2021 +0100

Regen
---
 .../apache/camel/catalog/main/camel-main-configuration-metadata.json | 5 ++---
 docs/components/modules/others/pages/main.adoc   | 5 ++---
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
index 52e54cd..5a85bd6 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
@@ -66,6 +66,8 @@
 { "name": "camel.main.routesBuilderClasses", "description": "Sets classes 
names that implement RoutesBuilder .", "sourceType": 
"org.apache.camel.main.MainConfigurationProperties", "type": "string", 
"javaType": "java.lang.String" },
 { "name": "camel.main.routesBuilders", "description": "Sets the 
RoutesBuilder instances.", "sourceType": 
"org.apache.camel.main.MainConfigurationProperties", "type": "object", 
"javaType": "java.util.List" },
 { "name": "camel.main.routesCollectorEnabled", "description": "Whether the 
routes collector is enabled or not. When enabled Camel will auto-discover 
routes (RouteBuilder instances from the registry and also load additional XML 
routes from the file system. The routes collector is default enabled.", 
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties", "type": 
"boolean", "javaType": "boolean", "defaultValue": true },
+{ "name": "camel.main.routesExcludePattern", "description": "Used for 
exclusive filtering of routes from directories. The exclusive filtering takes 
precedence over inclusive filtering. The pattern is using Ant-path style 
pattern. Multiple patterns can be specified separated by comma, as example, to 
exclude all the routes from a directory whose name contains foo use: 
\/foo.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "string", 
"javaType":  [...]
+{ "name": "camel.main.routesIncludePattern", "description": "Used for 
inclusive filtering of routes from directories. This is used to retrieve the 
initial list of resource which can be filtered using the exclusive filter. The 
pattern is using Ant-path style pattern. Multiple patterns can be specified 
separated by comma, as example, to include all the routes from a directory 
whose name contains foo use: \/foo.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProper [...]
 { "name": "camel.main.shutdownLogInflightExchangesOnTimeout", 
"description": "Sets whether to log information about the inflight Exchanges 
which are still running during a shutdown which didn't complete without the 
given timeout. This requires to enable the option 
inflightRepositoryBrowseEnabled.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "boolean", 
"javaType": "boolean", "defaultValue": true },
 { "name": "camel.main.shutdownNowOnTimeout", "description": "Sets whether 
to force shutdown of all consumers when a timeout occurred and thus not all 
consumers was shutdown within that period. You should have good reasons to set 
this option to false as it means that the routes keep running and is halted 
abruptly when CamelContext has been shutdown.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "boolean", 
"javaType": "boolean", "defaultValue": true },
 { "name": "camel.main.shutdownRoutesInReverseOrder", "description": "Sets 
whether routes should be shutdown in reverse or the same order as they were 
started.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "boolean", 
"javaType": "boolean", "defaultValue": true },
@@ -94,9 +96,6 @@
 { "name": "camel.main.useBreadcrumb", "description": "Set whether 
breadcrumb is enabled. The default value is false.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "boolean", 
"javaType": "boolean" },
 { "name": "camel.main.useDataType", "description": "Whether to enable 
using data type on Camel messages. Data type are automatic turned on if one ore 
more routes has been explicit configured with input and output types. Otherwise 
data type is default off.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "boolean", 
"javaType": "boolean" },
 { "name": "camel.main.useMdcLogging", "description": "To turn on MDC 
logging", "sourceType": "org.apache.camel.main.DefaultConfigurationProperties", 

[camel] 03/03: Regen catalog

2021-02-02 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 30cf37e96b8dc4b13fe38e053cf3d6867c001dcb
Author: Andrea Cosentino 
AuthorDate: Tue Feb 2 14:36:11 2021 +0100

Regen catalog
---
 .../apache/camel/catalog/schemas/camel-spring.xsd| 20 ++--
 1 file changed, 2 insertions(+), 18 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
index d7cdfbd..c4815a3 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
@@ -6651,15 +6651,7 @@ Class name of the java type to use when unmarshalling.
 ]]>
   
 
-
-  
-
-  
-
+
 
   
 
   
 
-
-  
-
-  
-
+
 
   
 

[camel] 03/03: Regen catalog

2021-01-28 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch camel-3.7.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 3b25bd54a2fe202955d602d3f3e848b2a6dde81e
Author: Andrea Cosentino 
AuthorDate: Fri Jan 29 07:36:48 2021 +0100

Regen catalog
---
 .../generated/resources/org/apache/camel/catalog/components/sql.json| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sql.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sql.json
index 1f29822..36a4c7a 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sql.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sql.json
@@ -31,7 +31,7 @@
   "properties": {
 "query": { "kind": "path", "displayName": "Query", "group": "common", 
"label": "", "required": true, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "deprecationNote": "", "autowired": 
false, "secret": false, "description": "Sets the SQL query to perform. You can 
externalize the query by using file: or classpath: as prefix and specify the 
location of the file." },
 "allowNamedParameters": { "kind": "parameter", "displayName": "Allow Named 
Parameters", "group": "common", "label": "", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": true, "description": "Whether to allow using 
named parameters in the queries." },
-"dataSource": { "kind": "parameter", "displayName": "Data Source", 
"group": "common", "label": "", "required": false, "type": "object", 
"javaType": "javax.sql.DataSource", "deprecated": false, "autowired": false, 
"secret": false, "description": "Sets the DataSource to use to communicate with 
the database." },
+"dataSource": { "kind": "parameter", "displayName": "Data Source", 
"group": "common", "label": "", "required": false, "type": "object", 
"javaType": "javax.sql.DataSource", "deprecated": false, "autowired": false, 
"secret": false, "description": "Sets the DataSource to use to communicate with 
the databaset at endpoint level." },
 "dataSourceRef": { "kind": "parameter", "displayName": "Data Source Ref", 
"group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": true, "autowired": false, 
"secret": false, "description": "Sets the reference to a DataSource to lookup 
from the registry, to use for communicating with the database." },
 "outputClass": { "kind": "parameter", "displayName": "Output Class", 
"group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "Specify the full package and class name to use 
as conversion when outputType=SelectOne." },
 "outputHeader": { "kind": "parameter", "displayName": "Output Header", 
"group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "Store the query result in a header instead of 
the message body. By default, outputHeader == null and the query result is 
stored in the message body, any existing content in the message body is 
discarded. If outputHeader is set, the value is u [...]



[camel] 03/03: Regen catalog

2021-01-28 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit e74477d90b99a41240e228a981d633150d5f40a2
Author: Andrea Cosentino 
AuthorDate: Fri Jan 29 07:36:48 2021 +0100

Regen catalog
---
 .../generated/resources/org/apache/camel/catalog/components/sql.json| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sql.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sql.json
index e99d371..03b4a31 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sql.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sql.json
@@ -31,7 +31,7 @@
   "properties": {
 "query": { "kind": "path", "displayName": "Query", "group": "common", 
"label": "", "required": true, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "deprecationNote": "", "autowired": 
false, "secret": false, "description": "Sets the SQL query to perform. You can 
externalize the query by using file: or classpath: as prefix and specify the 
location of the file." },
 "allowNamedParameters": { "kind": "parameter", "displayName": "Allow Named 
Parameters", "group": "common", "label": "", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": true, "description": "Whether to allow using 
named parameters in the queries." },
-"dataSource": { "kind": "parameter", "displayName": "Data Source", 
"group": "common", "label": "", "required": false, "type": "object", 
"javaType": "javax.sql.DataSource", "deprecated": false, "autowired": false, 
"secret": false, "description": "Sets the DataSource to use to communicate with 
the database." },
+"dataSource": { "kind": "parameter", "displayName": "Data Source", 
"group": "common", "label": "", "required": false, "type": "object", 
"javaType": "javax.sql.DataSource", "deprecated": false, "autowired": false, 
"secret": false, "description": "Sets the DataSource to use to communicate with 
the databaset at endpoint level." },
 "dataSourceRef": { "kind": "parameter", "displayName": "Data Source Ref", 
"group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": true, "autowired": false, 
"secret": false, "description": "Sets the reference to a DataSource to lookup 
from the registry, to use for communicating with the database." },
 "outputClass": { "kind": "parameter", "displayName": "Output Class", 
"group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "Specify the full package and class name to use 
as conversion when outputType=SelectOne." },
 "outputHeader": { "kind": "parameter", "displayName": "Output Header", 
"group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "Store the query result in a header instead of 
the message body. By default, outputHeader == null and the query result is 
stored in the message body, any existing content in the message body is 
discarded. If outputHeader is set, the value is u [...]



[camel] 03/03: Regen

2021-01-27 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 996930b26974f948f19341e0e178c5c65eb14fb2
Author: Andrea Cosentino 
AuthorDate: Wed Jan 27 13:50:41 2021 +0100

Regen
---
 .../resources/org/apache/camel/catalog/components/stitch.json | 4 ++--
 .../resources/org/apache/camel/catalog/schemas/camel-spring.xsd   | 8 
 2 files changed, 2 insertions(+), 10 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/stitch.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/stitch.json
index 04a327f..d9d6808 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/stitch.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/stitch.json
@@ -25,7 +25,7 @@
 "configuration": { "kind": "property", "displayName": "Configuration", 
"group": "producer", "label": "", "required": false, "type": "object", 
"javaType": "org.apache.camel.component.stitch.StitchConfiguration", 
"deprecated": false, "autowired": false, "secret": false, "description": "The 
component configurations" },
 "keyNames": { "kind": "property", "displayName": "Key Names", "group": 
"producer", "label": "producer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.stitch.StitchConfiguration", "configurationField": 
"configuration", "description": "A collection of comma separated strings 
representing the Primary Key fields in the source table. Stitch use these 
Primary K [...]
 "lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Whether the producer 
should be started lazy (on the first message). By starting lazy you can use 
this to allow CamelContext and routes to startup in situations where a producer 
may otherwise fail during star [...]
-"region": { "kind": "property", "displayName": "Region", "group": 
"producer", "label": "producer", "required": false, "type": "object", 
"javaType": "org.apache.camel.component.stitch.client.StitchRegion", "enum": [ 
"NORTH_AMERICA", "EUROPE" ], "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": "europe", "configurationClass": 
"org.apache.camel.component.stitch.StitchConfiguration", "configurationField": 
"configuration", "description": "Stitch account region, e.g [...]
+"region": { "kind": "property", "displayName": "Region", "group": 
"producer", "label": "producer", "required": false, "type": "object", 
"javaType": "org.apache.camel.component.stitch.client.StitchRegion", "enum": [ 
"NORTH_AMERICA", "EUROPE" ], "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": "EUROPE", "configurationClass": 
"org.apache.camel.component.stitch.StitchConfiguration", "configurationField": 
"configuration", "description": "Stitch account region, e.g [...]
 "stitchSchema": { "kind": "property", "displayName": "Stitch Schema", 
"group": "producer", "label": "producer", "required": false, "type": "object", 
"javaType": "org.apache.camel.component.stitch.client.models.StitchSchema", 
"deprecated": false, "deprecationNote": "", "autowired": true, "secret": false, 
"configurationClass": "org.apache.camel.component.stitch.StitchConfiguration", 
"configurationField": "configuration", "description": "A schema that describes 
the record(s)" },
 "connectionProvider": { "kind": "property", "displayName": "Connection 
Provider", "group": "producer (advanced)", "label": "producer,advanced", 
"required": false, "type": "object", "javaType": 
"reactor.netty.resources.ConnectionProvider", "deprecated": false, 
"deprecationNote": "", "autowired": true, "secret": false, 
"configurationClass": "org.apache.camel.component.stitch.StitchConfiguration", 
"configurationField": "configuration", "description": "ConnectionProvider 
contain configur [...]
 "httpClient": { "kind": "property", "displayName": "Http Client", "group": 
"producer (advanced)", "label": "producer,advanced", "required": false, "type": 
"object", "javaType": "reactor.netty.http.client.HttpClient", "deprecated": 
false, "deprecationNote": "", "autowired": true, "secret": false, 
"configurationClass": "org.apache.camel.component.stitch.StitchConfiguration", 
"configurationField": "configuration", "description": "Reactor Netty 
HttpClient, you can injected it if you want [...]
@@ -37,7 +37,7 @@
 "tableName": { "kind": "path", "displayName": "Table Name", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 

[camel] 03/03: Regen docs

2021-01-26 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 65414ce4da763b870cd0f8358a981c7b9ede6893
Author: Andrea Cosentino 
AuthorDate: Tue Jan 26 09:32:45 2021 +0100

Regen docs
---
 .../org/apache/camel/catalog/docs/aws2-kinesis-component.adoc | 6 --
 .../camel/catalog/docs/aws2-kinesis-firehose-component.adoc   | 6 --
 .../resources/org/apache/camel/catalog/schemas/camel-spring.xsd   | 8 
 3 files changed, 20 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/aws2-kinesis-component.adoc
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/aws2-kinesis-component.adoc
index d1cb45c..fbc188f 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/aws2-kinesis-component.adoc
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/aws2-kinesis-component.adoc
@@ -224,12 +224,6 @@ 
http://docs.aws.amazon.com/kinesis/latest/APIReference/API_PutRecord.html#API_Pu
 
 |===
 
-== Automatic detection of KinesisClient client in registry
-
-The component is capable of detecting the presence of an KinesisClient bean 
into the registry.
-If it's the only instance of that type it will be used as client and you won't 
have to define it as uri parameter.
-This may be really useful for smarter configuration of the endpoint.
-
 == Dependencies
 
 Maven users will need to add the following dependency to their pom.xml.
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/aws2-kinesis-firehose-component.adoc
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/aws2-kinesis-firehose-component.adoc
index 0280d47..e0390cb 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/aws2-kinesis-firehose-component.adoc
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/aws2-kinesis-firehose-component.adoc
@@ -197,12 +197,6 @@ 
http://docs.aws.amazon.com/firehose/latest/APIReference/API_PutRecord.html#API_P
 
 |===
 
-== Automatic detection of AmazonKinesisFirehose client in registry
-
-The component is capable of detecting the presence of an FirehoseClient bean 
into the registry.
-If it's the only instance of that type it will be used as client and you won't 
have to define it as uri parameter.
-This may be really useful for smarter configuration of the endpoint.
-
 == Dependencies
 
 Maven users will need to add the following dependency to their pom.xml.
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
index efd3087..2167e5e 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
@@ -2609,14 +2609,6 @@ this and can report the Camel application as DOWN. 
Default value: false
 ]]>
   
 
-
-  
-
-  
-
   
 
   



[camel] 03/03: Regen and sync deps

2021-01-24 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 48681f9ec80141d7590ba8d56340af6ed745e730
Author: Andrea Cosentino 
AuthorDate: Mon Jan 25 06:52:05 2021 +0100

Regen and sync deps
---
 camel-dependencies/pom.xml| 2 +-
 .../resources/org/apache/camel/catalog/schemas/camel-spring.xsd   | 8 
 2 files changed, 1 insertion(+), 9 deletions(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index 6f9a476..6629fe0 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -340,7 +340,7 @@
 1.26
 2.8.0
 2.10.6
-1.2.8
+1.2.10
 1.6.2
 0.1.1
 0.9.12
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
index efd3087..2167e5e 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
@@ -2609,14 +2609,6 @@ this and can report the Camel application as DOWN. 
Default value: false
 ]]>
   
 
-
-  
-
-  
-
   
 
   



[camel] 03/03: Regen

2021-01-20 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 84cac850a128f6aae7408f936571e2d941e56c70
Author: Andrea Cosentino 
AuthorDate: Thu Jan 21 08:03:49 2021 +0100

Regen
---
 .../apache/camel/catalog/main/camel-main-configuration-metadata.json| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
index 640fe32..904371c 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
@@ -73,7 +73,7 @@
 { "name": "camel.main.shutdownTimeout", "description": "Timeout in seconds 
to graceful shutdown Camel.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "integer", 
"javaType": "int", "defaultValue": 45 },
 { "name": "camel.main.startupRecorder", "description": "To use startup 
recorder for capturing execution time during starting Camel. The recorder can 
be one of: false, logging, java-flight-recorder The default is false.", 
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties", "type": 
"string", "javaType": "java.lang.String" },
 { "name": "camel.main.startupRecorderDir", "description": "Directory to 
store the recording. By default the user home directory will be used. Use false 
to turn off saving recording to disk.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "string", 
"javaType": "java.lang.String" },
-{ "name": "camel.main.startupRecorderDuration", "description": "How long 
time to run the startup recorder. Use 0 (default) to stop the recorder after 
Camel has been started. Use -1 to keep the recorder running until Camel is 
being stopped. A positive value is to run the recorder for N seconds. When the 
recorder is stopped then the recording is auto saved to disk", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "integer", 
"javaType": "long" },
+{ "name": "camel.main.startupRecorderDuration", "description": "How long 
time to run the startup recorder. Use 0 (default) to stop the recorder after 
Camel has been started. Use -1 to keep the recorder running until the JVM is 
being stopped. A positive value is to run the recorder for N seconds. When the 
recorder is stopped then the recording is auto saved to disk (note: save to 
disk can be disabled by setting startupRecorderDir to false)", "sourceType": 
"org.apache.camel.main.Defaul [...]
 { "name": "camel.main.startupRecorderMaxDepth", "description": "To filter 
our sub steps at a maximum depth. Use -1 for no maximum. Use 0 for no sub 
steps. Use 1 for max 1 sub step, and so forth. The default is -1.", 
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties", "type": 
"integer", "javaType": "int", "defaultValue": -1 },
 { "name": "camel.main.startupRecorderProfile", "description": "To use a 
specific Java Flight Recorder profile configuration, such as default or 
profile. The default is default.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "string", 
"javaType": "java.lang.String", "defaultValue": "default" },
 { "name": "camel.main.startupRecorderRecording", "description": "To enable 
Java Flight Recorder to start a recording and automatic dump the recording to 
disk after startup is complete. This requires that camel-jfr is on the 
classpath. The default is true.", "sourceType": 
"org.apache.camel.main.DefaultConfigurationProperties", "type": "boolean", 
"javaType": "boolean", "defaultValue": true },



[camel] 03/03: Regen

2021-01-11 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 1bded7c56fb5c0603c9afbcf0469ee52027edd18
Author: Andrea Cosentino 
AuthorDate: Tue Jan 12 07:24:38 2021 +0100

Regen
---
 camel-dependencies/pom.xml| 4 ++--
 .../resources/org/apache/camel/catalog/components/activemq.json   | 4 ++--
 .../generated/resources/org/apache/camel/catalog/components/amqp.json | 4 ++--
 .../org/apache/camel/builder/endpoint/EndpointBuilderFactory.java | 1 -
 .../java/org/apache/camel/builder/endpoint/EndpointBuilders.java  | 1 -
 .../org/apache/camel/builder/endpoint/StaticEndpointBuilders.java | 2 +-
 6 files changed, 7 insertions(+), 9 deletions(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index 27ea86c..3c5dcb0 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -71,7 +71,7 @@
 4.0.3
 1.11.22
 1.11.714
-2.15.61
+2.15.62
 2.6.1
 1.2.14
 
1.3.1
@@ -364,7 +364,7 @@
 1.2
 5.7.0
 2.3
-4.13.1
+4.13
 0.6.4
 2.5.3
 2.5.3
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/activemq.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/activemq.json
index 943fb3e..8573004 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/activemq.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/activemq.json
@@ -60,7 +60,7 @@
 "formatDateHeadersToIso8601": { "kind": "property", "displayName": "Format 
Date Headers To Iso8601", "group": "producer", "label": "producer", "required": 
false, "type": "boolean", "javaType": "boolean", "deprecated": false, 
"autowired": false, "secret": false, "defaultValue": false, 
"configurationClass": "org.apache.camel.component.jms.JmsConfiguration", 
"configurationField": "configuration", "description": "Sets whether JMS date 
properties should be formatted according to the ISO 8 [...]
 "lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Whether the producer 
should be started lazy (on the first message). By starting lazy you can use 
this to allow CamelContext and routes to startup in situations where a producer 
may otherwise fail during star [...]
 "preserveMessageQos": { "kind": "property", "displayName": "Preserve 
Message Qos", "group": "producer", "label": "producer", "required": false, 
"type": "boolean", "javaType": "boolean", "deprecated": false, "autowired": 
false, "secret": false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.jms.JmsConfiguration", "configurationField": 
"configuration", "description": "Set to true, if you want to send message using 
the QoS settings specified on the message, ins [...]
-"priority": { "kind": "property", "displayName": "Priority", "group": 
"producer", "label": "producer", "required": false, "type": "integer", 
"javaType": "int", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8", "9" ], 
"deprecated": false, "autowired": false, "secret": false, "defaultValue": 4, 
"configurationClass": "org.apache.camel.component.jms.JmsConfiguration", 
"configurationField": "configuration", "description": "Values greater than 1 
specify the message priority when sending (w [...]
+"priority": { "kind": "property", "displayName": "Priority", "group": 
"producer", "label": "producer", "required": false, "type": "integer", 
"javaType": "int", "enum": [ "1", "2", "3", "4", "5", "6", "7", "8", "9" ], 
"deprecated": false, "autowired": false, "secret": false, "defaultValue": 4, 
"configurationClass": "org.apache.camel.component.jms.JmsConfiguration", 
"configurationField": "configuration", "description": "Values greater than 1 
specify the message priority when sending (w [...]
 "replyToConcurrentConsumers": { "kind": "property", "displayName": "Reply 
To Concurrent Consumers", "group": "producer", "label": "producer", "required": 
false, "type": "integer", "javaType": "int", "deprecated": false, "autowired": 
false, "secret": false, "defaultValue": 1, "configurationClass": 
"org.apache.camel.component.jms.JmsConfiguration", "configurationField": 
"configuration", "description": "Specifies the default number of concurrent 
consumers when doing request\/reply over  [...]
 "replyToMaxConcurrentConsumers": { "kind": "property", "displayName": 
"Reply To Max Concurrent Consumers", "group": "producer", "label": "producer", 
"required": false, "type": "integer", "javaType": "int", "deprecated": false, 
"autowired": false, "secret": false, 

[camel] 03/03: Regen for commit 87d107efd2a98944950c78bbc9c15ac9cf8c164c

2020-12-15 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit e5f680f2d94369242f5b5353b29ccebe9e1b4a15
Author: oscerd 
AuthorDate: Wed Dec 16 07:17:41 2020 +

Regen for commit 87d107efd2a98944950c78bbc9c15ac9cf8c164c

Signed-off-by: GitHub 
---
 .../apache/camel/catalog/schemas/camel-spring.xsd  | 71 +-
 1 file changed, 70 insertions(+), 1 deletion(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
index feb800e..2a6a255 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
@@ -4374,7 +4374,6 @@ To use a specific charset when converting.
 
   
 
-
   
 
   
@@ -6442,6 +6441,16 @@ true (which is the default).
 
   
 
+
+  
+
+  
+
   
 
   
@@ -6725,6 +6734,16 @@ enabled when desired to be used. Default value: false
 ]]>
   
 
+
+  
+
+  
+
   
 
   
@@ -6884,6 +6903,16 @@ JAXB provider properties to be used with the JAXB 
marshaller.
 ]]>
   
 
+
+  
+
+  
+
   
 
   
@@ -7063,6 +7092,16 @@ Default value: false
 ]]>
   
 
+
+  
+
+  
+
   
 
   
@@ -7177,6 +7216,16 @@ value is native. Default value: native
 ]]>
   
 
+
+  
+
+  
+
   
 
   
@@ -7448,6 +7497,16 @@ representation. The default value is binary. Default 
value: binary
 ]]>
   
 
+
+  
+
+  
+
   
 
   
@@ -7759,6 +7818,16 @@ SINGLE_NODE_XPATH_RELATIVE_REFERENCES 
SINGLE_NODE_XPATH_ABSOLUTE_REFERENCES.
 ]]>
   
 
+
+  
+
+  
+
   
 
   



[camel] 03/03: Regen for commit b3c62273fa540ab1001827155124dc8035492214

2020-12-14 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-3.7.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit d9f7390dae8603349a612456d3ccd3d21c56b91c
Author: davsclaus 
AuthorDate: Mon Dec 14 18:38:11 2020 +

Regen for commit b3c62273fa540ab1001827155124dc8035492214

Signed-off-by: GitHub 
---
 .../resources/org/apache/camel/catalog/components/dataset.json  | 2 +-
 .../resources/org/apache/camel/catalog/components/jclouds.json  | 2 +-
 .../generated/resources/org/apache/camel/catalog/components/sip.json| 2 +-
 .../generated/resources/org/apache/camel/catalog/components/sips.json   | 2 +-
 .../resources/org/apache/camel/catalog/docs/minio-component.adoc| 2 +-
 docs/components/modules/ROOT/pages/minio-component.adoc | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/dataset.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/dataset.json
index 67f0446..abed52a 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/dataset.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/dataset.json
@@ -3,7 +3,7 @@
 "kind": "component",
 "name": "dataset",
 "title": "Dataset",
-"description": "Provide data for load & soak testing of your Camel 
application.",
+"description": "Provide data for load and soak testing of your Camel 
application.",
 "deprecated": false,
 "firstVersion": "1.3.0",
 "label": "core,testing",
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/jclouds.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/jclouds.json
index f28b01b..409466c 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/jclouds.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/jclouds.json
@@ -3,7 +3,7 @@
 "kind": "component",
 "name": "jclouds",
 "title": "JClouds",
-"description": "Interact with jclouds compute & blobstore service.",
+"description": "Interact with jclouds compute and blobstore service.",
 "deprecated": false,
 "firstVersion": "2.9.0",
 "label": "api,cloud,compute",
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sip.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sip.json
index 1f896cd..1a7a05e 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sip.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sip.json
@@ -46,7 +46,7 @@
 "transport": { "kind": "parameter", "displayName": "Transport", "group": 
"common", "label": "common", "required": false, "type": "string", "javaType": 
"java.lang.String", "enum": [ "tcp", "udp" ], "deprecated": false, "autowired": 
false, "secret": false, "defaultValue": "tcp", "configurationClass": 
"org.apache.camel.component.sip.SipConfiguration", "configurationField": 
"configuration", "description": "Setting for choice of transport protocol. 
Valid choices are tcp or udp." },
 "bridgeErrorHandler": { "kind": "parameter", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Allows for bridging the 
consumer to the Camel routing Error Handler, which mean any exceptions occurred 
while the consumer is trying to pickup incoming messages, or the likes, will 
now be processed as a m [...]
 "consumer": { "kind": "parameter", "displayName": "Consumer", "group": 
"consumer", "label": "consumer", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.sip.SipConfiguration", "configurationField": 
"configuration", "description": "This setting is used to determine whether the 
kind of header (FromHeader,ToHeader etc) that needs to be created fo [...]
-"presenceAgent": { "kind": "parameter", "displayName": "Presence Agent", 
"group": "consumer", "label": "consumer", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.sip.SipConfiguration", "configurationField": 
"configuration", "description": "This setting is used to distinguish between a 
Presence Agent & a consumer. This is due to the fact that [...]
+"presenceAgent": { "kind": "parameter", 

[camel] 03/03: Regen

2020-12-08 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 9356a2247f869a14811ea6ca449f23e2d49c392c
Author: Andrea Cosentino 
AuthorDate: Wed Dec 9 07:02:55 2020 +0100

Regen
---
 .../main/java/org/apache/camel/main/DefaultMainShutdownStrategy.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/core/camel-main/src/main/java/org/apache/camel/main/DefaultMainShutdownStrategy.java
 
b/core/camel-main/src/main/java/org/apache/camel/main/DefaultMainShutdownStrategy.java
index a72243f..a715066 100644
--- 
a/core/camel-main/src/main/java/org/apache/camel/main/DefaultMainShutdownStrategy.java
+++ 
b/core/camel-main/src/main/java/org/apache/camel/main/DefaultMainShutdownStrategy.java
@@ -29,8 +29,8 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 /**
- * Implementation of {@link MainShutdownStrategy} that add a virtual machine 
shutdown hook
- * to properly stop the main instance.
+ * Implementation of {@link MainShutdownStrategy} that add a virtual machine 
shutdown hook to properly stop the main
+ * instance.
  */
 public class DefaultMainShutdownStrategy extends SimpleMainShutdownStrategy {
 protected static final Logger LOG = 
LoggerFactory.getLogger(DefaultMainShutdownStrategy.class);



[camel] 03/03: Regen catalog

2020-12-04 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit ad8b27b83b44986bbb4e9bbfbb8e2858852ae7fd
Author: Andrea Cosentino 
AuthorDate: Fri Dec 4 13:34:30 2020 +0100

Regen catalog
---
 .../resources/org/apache/camel/catalog/components/aws2-sns.json   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sns.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sns.json
index 0443756..b3a880c 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sns.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sns.json
@@ -40,7 +40,7 @@
 "subject": { "kind": "property", "displayName": "Subject", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": "org.apache.camel.component.aws2.sns.Sns2Configuration", 
"configurationField": "configuration", "description": "The subject which is 
used if the message header 'CamelAwsSnsSubject' is not present." },
 "subscribeSNStoSQS": { "kind": "property", "displayName": "Subscribe SNSto 
SQS", "group": "producer", "label": "", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "autowired": false, "secret": 
false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.aws2.sns.Sns2Configuration", "configurationField": 
"configuration", "description": "Define if the subscription between SNS Topic 
and SQS must be done or not" },
 "trustAllCertificates": { "kind": "property", "displayName": "Trust All 
Certificates", "group": "producer", "label": "", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.aws2.sns.Sns2Configuration", "configurationField": 
"configuration", "description": "If we want to trust all certificates in case 
of overriding the endpoint" },
-"useDefaultCredentialsProvider": { "kind": "property", "displayName": "Use 
Default Credentials Provider", "group": "producer", "label": "", "required": 
false, "type": "boolean", "javaType": "boolean", "deprecated": false, 
"autowired": false, "secret": false, "defaultValue": false, 
"configurationClass": "org.apache.camel.component.aws2.sns.Sns2Configuration", 
"configurationField": "configuration", "description": "Set whether the SQS 
client should expect to load credentials on an AWS i [...]
+"useDefaultCredentialsProvider": { "kind": "property", "displayName": "Use 
Default Credentials Provider", "group": "producer", "label": "", "required": 
false, "type": "boolean", "javaType": "boolean", "deprecated": false, 
"autowired": false, "secret": false, "defaultValue": false, 
"configurationClass": "org.apache.camel.component.aws2.sns.Sns2Configuration", 
"configurationField": "configuration", "description": "Set whether the SNS 
client should expect to load credentials on an AWS i [...]
 "autowiredEnabled": { "kind": "property", "displayName": "Autowired 
Enabled", "group": "advanced", "label": "advanced", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": true, "description": "Whether autowiring is 
enabled. This is used for automatic autowiring options (the option must be 
marked as autowired) by looking up in the registry to find if there is a single 
instance of matching type, which t [...]
 "accessKey": { "kind": "property", "displayName": "Access Key", "group": 
"security", "label": "security", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": true, "configurationClass": 
"org.apache.camel.component.aws2.sns.Sns2Configuration", "configurationField": 
"configuration", "description": "Amazon AWS Access Key" },
 "secretKey": { "kind": "property", "displayName": "Secret Key", "group": 
"security", "label": "security", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": true, "configurationClass": 
"org.apache.camel.component.aws2.sns.Sns2Configuration", "configurationField": 
"configuration", "description": "Amazon AWS Secret Key" }
@@ -65,7 +65,7 @@
 "subject": { "kind": "parameter", "displayName": "Subject", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": "org.apache.camel.component.aws2.sns.Sns2Configuration", 
"configurationField": 

[camel] 03/03: Regen docs and sync deps

2020-12-03 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit bb73baed341d0d5c38807a7d6cc598f935663f2b
Author: Andrea Cosentino 
AuthorDate: Fri Dec 4 08:36:05 2020 +0100

Regen docs and sync deps
---
 camel-dependencies/pom.xml  | 2 +-
 .../resources/org/apache/camel/catalog/docs/minio-component.adoc| 2 +-
 docs/components/modules/ROOT/pages/minio-component.adoc | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index df2b6a8..9fea38e 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -420,7 +420,7 @@
 2.1.4
 0.3.4
 0.9.5
-7.1.4
+8.0.3
 1.9
 3.6.28
 0.1.8
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/minio-component.adoc
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/minio-component.adoc
index 22c4f5b..69f089f 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/minio-component.adoc
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/minio-component.adoc
@@ -506,4 +506,4 @@ Maven users will need to add the following dependency to 
their pom.xml.
 
 where `$\{camel-version}` must be replaced by the actual version of Camel.
 
-include::camel-spring-boot::page$minio-starter.adoc[]
+include::camel-spring-boot::page$minio-starter.adoc[]
\ No newline at end of file
diff --git a/docs/components/modules/ROOT/pages/minio-component.adoc 
b/docs/components/modules/ROOT/pages/minio-component.adoc
index 365473c..2109582 100644
--- a/docs/components/modules/ROOT/pages/minio-component.adoc
+++ b/docs/components/modules/ROOT/pages/minio-component.adoc
@@ -508,4 +508,4 @@ Maven users will need to add the following dependency to 
their pom.xml.
 
 where `$\{camel-version}` must be replaced by the actual version of Camel.
 
-include::camel-spring-boot::page$minio-starter.adoc[]
+include::camel-spring-boot::page$minio-starter.adoc[]
\ No newline at end of file



[camel] 03/03: Regen sns and others stuff

2020-11-26 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 6099471e7cbc3a235c26f8baabdd04db739d2c68
Author: Andrea Cosentino 
AuthorDate: Fri Nov 27 08:23:42 2020 +0100

Regen sns and others stuff
---
 .../org/apache/camel/catalog/components/aws2-sns.json  |  4 
 .../resources/org/apache/camel/catalog/others.properties   |  1 -
 .../org/apache/camel/catalog/others/csimple-joor.json  | 14 --
 3 files changed, 4 insertions(+), 15 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sns.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sns.json
index 6ac26c6..0443756 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sns.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sns.json
@@ -27,6 +27,8 @@
 "configuration": { "kind": "property", "displayName": "Configuration", 
"group": "producer", "label": "", "required": false, "type": "object", 
"javaType": "org.apache.camel.component.aws2.sns.Sns2Configuration", 
"deprecated": false, "autowired": false, "secret": false, "description": 
"Component configuration" },
 "kmsMasterKeyId": { "kind": "property", "displayName": "Kms Master Key 
Id", "group": "producer", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.aws2.sns.Sns2Configuration", "configurationField": 
"configuration", "description": "The ID of an AWS-managed customer master key 
(CMK) for Amazon SNS or a custom CMK." },
 "lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Whether the producer 
should be started lazy (on the first message). By starting lazy you can use 
this to allow CamelContext and routes to startup in situations where a producer 
may otherwise fail during star [...]
+"messageDeduplicationIdStrategy": { "kind": "property", "displayName": 
"Message Deduplication Id Strategy", "group": "producer", "label": "producer", 
"required": false, "type": "string", "javaType": "java.lang.String", "enum": [ 
"useExchangeId", "useContentBasedDeduplication" ], "deprecated": false, 
"autowired": false, "secret": false, "defaultValue": "useExchangeId", 
"configurationClass": "org.apache.camel.component.aws2.sns.Sns2Configuration", 
"configurationField": "configuration", [...]
+"messageGroupIdStrategy": { "kind": "property", "displayName": "Message 
Group Id Strategy", "group": "producer", "label": "producer", "required": 
false, "type": "string", "javaType": "java.lang.String", "enum": [ 
"useConstant", "useExchangeId", "usePropertyValue" ], "deprecated": false, 
"autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws2.sns.Sns2Configuration", "configurationField": 
"configuration", "description": "Only for FIFO Topic. Strategy [...]
 "messageStructure": { "kind": "property", "displayName": "Message 
Structure", "group": "producer", "label": "", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws2.sns.Sns2Configuration", "configurationField": 
"configuration", "description": "The message structure to use such as json" },
 "policy": { "kind": "property", "displayName": "Policy", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": "org.apache.camel.component.aws2.sns.Sns2Configuration", 
"configurationField": "configuration", "description": "The policy for this 
queue" },
 "proxyHost": { "kind": "property", "displayName": "Proxy Host", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": "org.apache.camel.component.aws2.sns.Sns2Configuration", 
"configurationField": "configuration", "description": "To define a proxy host 
when instantiating the SNS client" },
@@ -50,6 +52,8 @@
 "headerFilterStrategy": { "kind": "parameter", "displayName": "Header 
Filter Strategy", "group": "producer", "label": "", "required": false, "type": 
"object", "javaType": "org.apache.camel.spi.HeaderFilterStrategy", 
"deprecated": false, "autowired": false, "secret": false, "description": "To 
use a custom HeaderFilterStrategy to map headers to\/from 

[camel] 03/03: Regen catalog

2020-11-19 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit b1432277f1ef2093e730f636be2ee1a22ead0cd9
Author: Andrea Cosentino 
AuthorDate: Fri Nov 20 08:48:50 2020 +0100

Regen catalog
---
 .../resources/org/apache/camel/catalog/components/aws2-s3.json| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-s3.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-s3.json
index 7b4beba..e318fcf 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-s3.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-s3.json
@@ -35,7 +35,7 @@
 "region": { "kind": "property", "displayName": "Region", "group": 
"common", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": "org.apache.camel.component.aws2.s3.AWS2S3Configuration", 
"configurationField": "configuration", "description": "The region in which S3 
client needs to work. When using this parameter, the configuration will expect 
the lowercase name of the region (f [...]
 "trustAllCertificates": { "kind": "property", "displayName": "Trust All 
Certificates", "group": "common", "label": "", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.aws2.s3.AWS2S3Configuration", "configurationField": 
"configuration", "description": "If we want to trust all certificates in case 
of overriding the endpoint" },
 "uriEndpointOverride": { "kind": "property", "displayName": "Uri Endpoint 
Override", "group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.aws2.s3.AWS2S3Configuration", "configurationField": 
"configuration", "description": "Set the overriding uri endpoint. This option 
needs to be used in combination with overrideEndpoint option" },
-"useIAMCredentials": { "kind": "property", "displayName": "Use 
IAMCredentials", "group": "common", "label": "", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "configurationClass": 
"org.apache.camel.component.aws2.s3.AWS2S3Configuration", "configurationField": 
"configuration", "description": "Set whether the S3 client should expect to 
load credentials on an EC2 instance or to expect static  [...]
+"useDefaultCredentialsProvider": { "kind": "property", "displayName": "Use 
Default Credentials Provider", "group": "common", "label": "", "required": 
false, "type": "boolean", "javaType": "boolean", "deprecated": false, 
"autowired": false, "secret": false, "defaultValue": false, 
"configurationClass": "org.apache.camel.component.aws2.s3.AWS2S3Configuration", 
"configurationField": "configuration", "description": "Set whether the S3 
client should expect to load credentials through a def [...]
 "customerAlgorithm": { "kind": "property", "displayName": "Customer 
Algorithm", "group": "common (advanced)", "label": "common,advanced", 
"required": false, "type": "string", "javaType": "java.lang.String", 
"deprecated": false, "autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws2.s3.AWS2S3Configuration", "configurationField": 
"configuration", "description": "Define the customer algorithm to use in case 
CustomerKey is enabled" },
 "customerKeyId": { "kind": "property", "displayName": "Customer Key Id", 
"group": "common (advanced)", "label": "common,advanced", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws2.s3.AWS2S3Configuration", "configurationField": 
"configuration", "description": "Define the id of Customer key to use in case 
CustomerKey is enabled" },
 "customerKeyMD5": { "kind": "property", "displayName": "Customer Key MD5", 
"group": "common (advanced)", "label": "common,advanced", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws2.s3.AWS2S3Configuration", "configurationField": 
"configuration", "description": "Define the MD5 of Customer key to use in case 
CustomerKey is enabled" },
@@ -79,7 +79,7 @@
 "region": { "kind": "parameter", "displayName": "Region", "group": 
"common", "label": "", "required": false, "type": "string", 

[camel] 03/03: Regen

2020-11-06 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 27dbd7484b3f2d9b64f40bb45e13368914a13b1c
Author: Claus Ibsen 
AuthorDate: Fri Nov 6 14:35:48 2020 +0100

Regen
---
 core/camel-main/src/test/java/org/apache/camel/main/MainIoCTest.java | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/core/camel-main/src/test/java/org/apache/camel/main/MainIoCTest.java 
b/core/camel-main/src/test/java/org/apache/camel/main/MainIoCTest.java
index cb013a0..7f47049 100644
--- a/core/camel-main/src/test/java/org/apache/camel/main/MainIoCTest.java
+++ b/core/camel-main/src/test/java/org/apache/camel/main/MainIoCTest.java
@@ -29,7 +29,6 @@ import org.apache.camel.component.seda.SedaComponent;
 import org.apache.camel.model.ModelCamelContext;
 import org.junit.jupiter.api.Test;
 
-
 import static org.junit.jupiter.api.Assertions.*;
 
 public class MainIoCTest {



[camel] 03/03: Regen catalog

2020-11-04 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 4aaf8809520bbd71e41038f6e3627f6119395186
Author: Andrea Cosentino 
AuthorDate: Wed Nov 4 19:51:58 2020 +0100

Regen catalog
---
 .../resources/org/apache/camel/catalog/components/git.json   | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/git.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/git.json
index 0038b5f..6536754 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/git.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/git.json
@@ -28,19 +28,19 @@
   },
   "properties": {
 "localPath": { "kind": "path", "displayName": "Local Path", "group": 
"common", "label": "", "required": true, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "deprecationNote": "", "secret": 
false, "description": "Local repository path" },
-"branchName": { "kind": "parameter", "displayName": "Branch Name", 
"group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "secret": false, 
"description": "The branch name to work on" },
-"password": { "kind": "parameter", "displayName": "Password", "group": 
"common", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "secret": false, "description": 
"Remote repository password" },
-"remoteName": { "kind": "parameter", "displayName": "Remote Name", 
"group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "secret": false, 
"description": "The remote repository name to use in particular operation like 
pull" },
-"remotePath": { "kind": "parameter", "displayName": "Remote Path", 
"group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "secret": false, 
"description": "The remote repository path" },
-"tagName": { "kind": "parameter", "displayName": "Tag Name", "group": 
"common", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "secret": false, "description": "The 
tag name to work on" },
-"username": { "kind": "parameter", "displayName": "Username", "group": 
"common", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "secret": false, "description": 
"Remote repository username" },
 "bridgeErrorHandler": { "kind": "parameter", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "secret": false, 
"defaultValue": false, "description": "Allows for bridging the consumer to the 
Camel routing Error Handler, which mean any exceptions occurred while the 
consumer is trying to pickup incoming messages, or the likes, will now be 
processed as a message and handled b [...]
 "type": { "kind": "parameter", "displayName": "Type", "group": "consumer", 
"label": "consumer", "required": false, "type": "object", "javaType": 
"org.apache.camel.component.git.consumer.GitType", "enum": [ "commit", "tag", 
"branch" ], "deprecated": false, "secret": false, "description": "The consumer 
type" },
 "exceptionHandler": { "kind": "parameter", "displayName": "Exception 
Handler", "group": "consumer (advanced)", "label": "consumer,advanced", 
"required": false, "type": "object", "javaType": 
"org.apache.camel.spi.ExceptionHandler", "optionalPrefix": "consumer.", 
"deprecated": false, "secret": false, "description": "To let the consumer use a 
custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled 
then this option is not in use. By default the consumer will deal with [...]
 "exchangePattern": { "kind": "parameter", "displayName": "Exchange 
Pattern", "group": "consumer (advanced)", "label": "consumer,advanced", 
"required": false, "type": "object", "javaType": 
"org.apache.camel.ExchangePattern", "enum": [ "InOnly", "InOut", 
"InOptionalOut" ], "deprecated": false, "secret": false, "description": "Sets 
the exchange pattern when the consumer creates an exchange." },
 "allowEmpty": { "kind": "parameter", "displayName": "Allow Empty", 
"group": "producer", "label": "producer", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "deprecationNote": "", "secret": 
false, "defaultValue": true, "description": "The flag to manage empty git 
commits" },
+"branchName": { "kind": "parameter", "displayName": "Branch Name", 
"group": "producer", "label": "producer", "required": false, "type": "string", 
"javaType": 

[camel] 03/03: Regen

2020-10-23 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 4747904318bbf92712c1cf5b1d868527760ef2de
Author: Andrea Cosentino 
AuthorDate: Fri Oct 23 11:44:56 2020 +0200

Regen
---
 .../resources/org/apache/camel/catalog/components/vertx-websocket.json   | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/vertx-websocket.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/vertx-websocket.json
index ea1c2bd..3d408be 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/vertx-websocket.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/vertx-websocket.json
@@ -41,6 +41,7 @@
 "exceptionHandler": { "kind": "parameter", "displayName": "Exception 
Handler", "group": "consumer (advanced)", "label": "consumer,advanced", 
"required": false, "type": "object", "javaType": 
"org.apache.camel.spi.ExceptionHandler", "optionalPrefix": "consumer.", 
"deprecated": false, "secret": false, "description": "To let the consumer use a 
custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled 
then this option is not in use. By default the consumer will deal with [...]
 "exchangePattern": { "kind": "parameter", "displayName": "Exchange 
Pattern", "group": "consumer (advanced)", "label": "consumer,advanced", 
"required": false, "type": "object", "javaType": 
"org.apache.camel.ExchangePattern", "enum": [ "InOnly", "InOut", 
"InOptionalOut" ], "deprecated": false, "secret": false, "description": "Sets 
the exchange pattern when the consumer creates an exchange." },
 "clientOptions": { "kind": "parameter", "displayName": "Client Options", 
"group": "producer", "label": "producer", "required": false, "type": "object", 
"javaType": "io.vertx.core.http.HttpClientOptions", "deprecated": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.vertx.websocket.VertxWebsocketConfiguration", 
"configurationField": "configuration", "description": "Sets customized options 
for configuring the WebSocket client used in the producer" },
+"clientSubProtocols": { "kind": "parameter", "displayName": "Client Sub 
Protocols", "group": "producer", "label": "producer", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.vertx.websocket.VertxWebsocketConfiguration", 
"configurationField": "configuration", "description": "Comma separated list of 
WebSocket subprotocols that the client should use for the 
Sec-WebSocket-Protocol [...]
 "lazyStartProducer": { "kind": "parameter", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "secret": false, 
"defaultValue": false, "description": "Whether the producer should be started 
lazy (on the first message). By starting lazy you can use this to allow 
CamelContext and routes to startup in situations where a producer may otherwise 
fail during starting and cause the  [...]
 "sendToAll": { "kind": "parameter", "displayName": "Send To All", "group": 
"producer", "label": "producer", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "secret": false, "defaultValue": 
false, "configurationClass": 
"org.apache.camel.component.vertx.websocket.VertxWebsocketConfiguration", 
"configurationField": "configuration", "description": "To send to all websocket 
subscribers. Can be used to configure on endpoint level, instead of having to 
use  [...]
 "basicPropertyBinding": { "kind": "parameter", "displayName": "Basic 
Property Binding", "group": "advanced", "label": "advanced", "required": false, 
"type": "boolean", "javaType": "boolean", "deprecated": false, "secret": false, 
"defaultValue": false, "description": "Whether the endpoint should use basic 
property binding (Camel 2.x) or the newer property binding with additional 
capabilities" },



[camel] 03/03: Regen

2020-10-16 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 938d912df18b28fa5b341fda8493781830294f6f
Author: Andrea Cosentino 
AuthorDate: Fri Oct 16 09:17:53 2020 +0200

Regen
---
 .../resources/org/apache/camel/catalog/dataformats/json-jsonb.json  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/dataformats/json-jsonb.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/dataformats/json-jsonb.json
index f122d2b..412b40f 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/dataformats/json-jsonb.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/dataformats/json-jsonb.json
@@ -5,7 +5,7 @@
 "title": "JSON JSON-B",
 "description": "Marshal POJOs to JSON and back using JSON-B.",
 "deprecated": false,
-"firstVersion": "3.6.0",
+"firstVersion": "3.7.0",
 "label": "dataformat,transformation,json",
 "javaType": "org.apache.camel.component.jsonb.JsonbDataFormat",
 "supportLevel": "Preview",



[camel] 03/03: Regen main docs and metadata

2020-10-11 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 467d37cde5ae8bbc0dc47325b2ece6bd44f67c40
Author: Andrea Cosentino 
AuthorDate: Mon Oct 12 07:13:34 2020 +0200

Regen main docs and metadata
---
 .../apache/camel/catalog/main/camel-main-configuration-metadata.json  | 4 ++--
 .../resources/META-INF/camel-main-configuration-metadata.json | 4 ++--
 core/camel-main/src/main/docs/main.adoc   | 4 ++--
 docs/components/modules/others/pages/main.adoc| 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
index c03abb2..60b10f9 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
@@ -65,13 +65,13 @@
 { "name": "camel.main.routeControllerThreadPoolSize", "description": "The 
number of threads used by the route controller scheduled thread pool that are 
used for restarting routes. The pool uses 1 thread by default, but you can 
increase this to allow the controller to concurrently attempt to restart 
multiple routes in case more than one route has problems starting.", 
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties", "type": 
"integer", "javaType": "int" },
 { "name": "camel.main.routeControllerUnhealthyOnExhausted", "description": 
"Whether to mark the route as unhealthy (down) when all restarting attempts 
(backoff) have failed and the route is not successfully started and the route 
manager is giving up. Setting this to true allows health checks to know about 
this and can report the Camel application as DOWN. The default is false.", 
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties", "type": 
"boolean", "javaType": "boolean" },
 { "name": "camel.main.routeFilterExcludePattern", "description": "Used for 
filtering routes routes matching the given pattern, which follows the following 
rules: - Match by route id - Match by route input endpoint uri The matching is 
using exact match, by wildcard and regular expression as documented by 
PatternHelper#matchPattern(String,String) . For example to only include routes 
which starts with foo in their route id's, use: include=foo And to exclude 
routes which starts from [...]
-{ "name": "camel.main.routeFilterIncludePattern", "description": "Used for 
filtering routes routes matching the given pattern, which follows the following 
rules: - Match by route id - Match by route input endpoint uri The matching is 
using exact match, by wildcard and regular expression as documented by 
PatternHelper#matchPattern(String,String) . For example to only include routes 
which starts with foo in their route id's, use: include=foo And to exclude 
routes which starts from [...]
+{ "name": "camel.main.routeFilterIncludePattern", "description": "Used for 
filtering routes matching the given pattern, which follows the following rules: 
- Match by route id - Match by route input endpoint uri The matching is using 
exact match, by wildcard and regular expression as documented by 
PatternHelper#matchPattern(String,String) . For example to only include routes 
which starts with foo in their route id's, use: include=foo And to exclude 
routes which starts from JMS en [...]
 { "name": "camel.main.routesBuilderClasses", "description": "Sets classes 
names that implement RoutesBuilder .", "sourceType": 
"org.apache.camel.main.MainConfigurationProperties", "type": "string", 
"javaType": "java.lang.String" },
 { "name": "camel.main.routesBuilders", "description": "Sets the 
RoutesBuilder instances.", "sourceType": 
"org.apache.camel.main.MainConfigurationProperties", "type": "object", 
"javaType": "java.util.List" },
 { "name": "camel.main.routesCollectorEnabled", "description": "Whether the 
routes collector is enabled or not. When enabled Camel will auto-discover 
routes (RouteBuilder instances from the registry and also load additional XML 
routes from the file system. The routes collector is default enabled.", 
"sourceType": "org.apache.camel.main.DefaultConfigurationProperties", "type": 
"boolean", "javaType": "boolean", "defaultValue": true },
 { "name": "camel.main.shutdownLogInflightExchangesOnTimeout", 
"description": "Sets whether to log information about the inflight Exchanges 
which are still running during a shutdown which didn't complete without the 
given timeout. This requires to enable the option 
inflightRepositoryBrowseEnabled.", "sourceType": 

[camel] 03/03: Regen and fixed CS

2020-10-11 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit bb580c056b8f2b6d5b716f9b905a5eeff4bf4bdc
Author: Andrea Cosentino 
AuthorDate: Sun Oct 11 15:34:38 2020 +0200

Regen and fixed CS
---
 .../component/aws2/s3/integration/S3ConsumerIntegrationTest.java  | 3 ++-
 docs/components/modules/ROOT/pages/aws2-s3-component.adoc | 4 ++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git 
a/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/integration/S3ConsumerIntegrationTest.java
 
b/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/integration/S3ConsumerIntegrationTest.java
index f301258..4ba37f0 100644
--- 
a/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/integration/S3ConsumerIntegrationTest.java
+++ 
b/components/camel-aws2-s3/src/test/java/org/apache/camel/component/aws2/s3/integration/S3ConsumerIntegrationTest.java
@@ -201,7 +201,8 @@ public class S3ConsumerIntegrationTest extends 
CamelTestSupport {
 String includeBodyFalseAutoCloseFalse = 
String.format(template, false, false);
 String includeBodyFalseAutoCloseTrue = String.format(template, 
false, true);
 
from("direct:includeBodyTrueAutoCloseTrue").pollEnrich(includeBodyTrueAutoCloseTrue,
 5000).to("mock:result");
-
from("direct:includeBodyFalseAutoCloseFalse").pollEnrich(includeBodyFalseAutoCloseFalse,
 5000).to("mock:result");
+
from("direct:includeBodyFalseAutoCloseFalse").pollEnrich(includeBodyFalseAutoCloseFalse,
 5000)
+.to("mock:result");
 
from("direct:includeBodyFalseAutoCloseTrue").pollEnrich(includeBodyFalseAutoCloseTrue,
 5000).to("mock:result");
 
 String awsEndpoint = 
"aws2-s3://mycamel?autoCreateBucket=false";
diff --git a/docs/components/modules/ROOT/pages/aws2-s3-component.adoc 
b/docs/components/modules/ROOT/pages/aws2-s3-component.adoc
index 203b3b4..da54118 100644
--- a/docs/components/modules/ROOT/pages/aws2-s3-component.adoc
+++ b/docs/components/modules/ROOT/pages/aws2-s3-component.adoc
@@ -80,11 +80,11 @@ The AWS 2 S3 Storage Service component supports 42 options, 
which are listed bel
 | *destinationBucketPrefix* (consumer) | Define the destination bucket prefix 
to use when an object must be moved and moveAfterRead is set to true. |  | 
String
 | *destinationBucketSuffix* (consumer) | Define the destination bucket suffix 
to use when an object must be moved and moveAfterRead is set to true. |  | 
String
 | *fileName* (consumer) | To get the object from the bucket with the given 
file name |  | String
-| *includeBody* (consumer) | If it is true, the S3Object exchange will be 
consumed and put into the body and closed. If false the S3Object stream will be 
put raw into the body and the headers will be set with the S3 object metadata. 
This option is strongly related to autocloseBody option. In case of setting 
includeBody to true because the S3Object stream will be consumed then it will 
also be closed in case of includeBody false then it will be up to the caller to 
close the S3Object stream [...]
+| *includeBody* (consumer) | If it is true, the exchange body will be set to a 
stream to the contents of the file. If false, the headers will be set with the 
S3 object metadata, but the body will be null. This option is strongly related 
to autocloseBody option. In case of setting includeBody to true and 
autocloseBody to false, it will be up to the caller to close the S3Object 
stream. Setting autocloseBody to true, will close the S3Object stream 
automatically. | true | boolean
 | *includeFolders* (consumer) | If it is true, the folders/directories will be 
consumed. If it is false, they will be ignored, and Exchanges will not be 
created for those | true | boolean
 | *moveAfterRead* (consumer) | Move objects from S3 bucket to a different 
bucket after they have been retrieved. To accomplish the operation the 
destinationBucket option must be set. The copy bucket operation is only 
performed if the Exchange is committed. If a rollback occurs, the object is not 
moved. | false | boolean
 | *prefix* (consumer) | The prefix which is used in the 
com.amazonaws.services.s3.model.ListObjectsRequest to only consume objects we 
are interested in. |  | String
-| *autocloseBody* (consumer) | If this option is true and includeBody is 
false, then the S3Object.close() method will be called on exchange completion. 
This option is strongly related to includeBody option. In case of setting 
includeBody to false and autocloseBody to false, it will be up to the caller to 
close the S3Object stream. Setting autocloseBody to true, will close the 
S3Object stream automatically. | true | boolean
+| *autocloseBody* (consumer) | If this option is true and includeBody is true, 
then the 

[camel] 03/03: Regen and sync properties

2020-10-09 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit c9602f9524eaab7a4bbc5222b4a3dc4b247cbbc4
Author: Andrea Cosentino 
AuthorDate: Fri Oct 9 07:56:16 2020 +0200

Regen and sync properties
---
 camel-dependencies/pom.xml   |  2 +-
 .../resources/org/apache/camel/catalog/docs/bean-eip.adoc|  2 +-
 .../resources/org/apache/camel/catalog/languages/bean.json   |  2 +-
 .../org/apache/camel/catalog/schemas/camel-spring.xsd| 12 ++--
 4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index 15968c7..5c4fb99 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -71,7 +71,7 @@
 4.0.3
 1.11.22
 1.11.714
-2.15.5
+2.15.6
 2.6.1
 1.2.14
 
1.2.0
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/bean-eip.adoc
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/bean-eip.adoc
index c6e7b53..e37f30c 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/bean-eip.adoc
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/bean-eip.adoc
@@ -29,7 +29,7 @@ The Bean EIP supports 5 options which are listed below:
 | *method* | Sets the method name on the bean to use |  | String
 | *beanType* | Sets the Class of the bean |  | String
 | *cache* | *Deprecated* Use singleton option instead | true | Boolean
-| *scope* | Scope of bean. When using singleton scope (default) the bean is 
created or looked up only once and reused for the lifetime of the endpoint. The 
bean should be thread-safe in case concurrent threads is calling the bean at 
the same time. When using request scope the bean is created or looked up once 
per request (exchange). This can be used if you want to store state on a bean 
while processing a request and you want to call the same bean instance multiple 
times while processing  [...]
+| *scope* | Scope of bean. When using singleton scope (default) the bean is 
created or looked up only once and reused for the lifetime of the endpoint. The 
bean should be thread-safe in case concurrent threads is calling the bean at 
the same time. When using request scope the bean is created or looked up once 
per request (exchange). This can be used if you want to store state on a bean 
while processing a request and you want to call the same bean instance multiple 
times while processing  [...]
 |===
 // eip options: END
 
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/languages/bean.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/languages/bean.json
index 772bec9..9651c5c 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/languages/bean.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/languages/bean.json
@@ -19,7 +19,7 @@
 "ref": { "kind": "attribute", "displayName": "Ref", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"secret": false, "description": "Reference to bean to lookup in the registry" },
 "method": { "kind": "attribute", "displayName": "Method", "required": 
false, "type": "string", "javaType": "java.lang.String", "deprecated": false, 
"secret": false, "description": "Name of method to call" },
 "beanType": { "kind": "attribute", "displayName": "Bean Type", "required": 
false, "type": "string", "javaType": "java.lang.String", "deprecated": false, 
"secret": false, "description": "Class name of the bean to use" },
-"scope": { "kind": "attribute", "displayName": "Scope", "required": false, 
"type": "enum", "javaType": "java.lang.String", "enum": [ "Prototype", 
"Request", "Singleton" ], "deprecated": false, "secret": false, "defaultValue": 
"Singleton", "description": "Scope of bean. When using singleton scope 
(default) the bean is created or looked up only once and reused for the 
lifetime of the endpoint. The bean should be thread-safe in case concurrent 
threads is calling the bean at the same tim [...]
+"scope": { "kind": "attribute", "displayName": "Scope", "required": false, 
"type": "enum", "javaType": "java.lang.String", "enum": [ "Prototype", 
"Request", "Singleton" ], "deprecated": false, "secret": false, "defaultValue": 
"Singleton", "description": "Scope of bean. When using singleton scope 
(default) the bean is created or looked up only once and reused for the 
lifetime of the endpoint. The bean should be thread-safe in case concurrent 
threads is calling the bean at the same tim [...]
 "trim": { "kind": "attribute", "displayName": "Trim", "required": false, 
"type": "boolean", "javaType": "java.lang.Boolean", "deprecated": false, 
"secret": false, "defaultValue": true, 

[camel] 03/03: Regen xsd

2020-10-01 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit c936fe33bbfeb4d1fb3f28e1b87173da8ac186f7
Author: Andrea Cosentino 
AuthorDate: Thu Oct 1 12:41:55 2020 +0200

Regen xsd
---
 .../resources/org/apache/camel/catalog/schemas/camel-spring.xsd   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
index 4822147..8458f3b 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/schemas/camel-spring.xsd
@@ -5386,8 +5386,8 @@ number of endpoints and/or processors specified in the 
load balancer list.
 
   
 
   
 



[camel] 03/03: Regen

2020-09-23 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit b260e1cc4493f021170231657ffbad308f6cebb6
Author: Andrea Cosentino 
AuthorDate: Thu Sep 24 07:26:45 2020 +0200

Regen
---
 .../apache/camel/catalog/main/camel-main-configuration-metadata.json  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
index 631931e..c03abb2 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/main/camel-main-configuration-metadata.json
@@ -15,7 +15,7 @@
 { "name": "camel.main.autoConfigurationEnvironmentVariablesEnabled", 
"description": "Whether auto configuration should include OS environment 
variables as well. When enabled this allows to overrule any configuration using 
an OS environment variable. For example to set a shutdown timeout of 5 seconds: 
CAMEL_MAIN_SHUTDOWNTIMEOUT=5. This option is default enabled.", "sourceType": 
"org.apache.camel.main.MainConfigurationProperties", "type": "boolean", 
"javaType": "boolean", "defaultValue [...]
 { "name": "camel.main.autoConfigurationFailFast", "description": "Whether 
auto configuration should fail fast when configuring one ore more properties 
fails for whatever reason such as a invalid property name, etc. This option is 
default enabled.", "sourceType": 
"org.apache.camel.main.MainConfigurationProperties", "type": "boolean", 
"javaType": "boolean", "defaultValue": true },
 { "name": "camel.main.autoConfigurationLogSummary", "description": 
"Whether auto configuration should log a summary with the configured 
properties. This option is default enabled.", "sourceType": 
"org.apache.camel.main.MainConfigurationProperties", "type": "boolean", 
"javaType": "boolean", "defaultValue": true },
-{ "name": "camel.main.autoStartup", "description": "Sets whether the 
object should automatically start when Camel starts. Important: Currently only 
routes can be disabled, as CamelContext's are always started. Note: When 
setting auto startup false on CamelContext then that takes precedence and no 
routes is started. You would need to start CamelContext explicit using the 
org.apache.camel.CamelContext.start() method, to start the context, and then 
you would need to start the routes man [...]
+{ "name": "camel.main.autoStartup", "description": "Sets whether the 
object should automatically start when Camel starts. Important: Currently only 
routes can be disabled, as CamelContext's are always started. Note: When 
setting auto startup false on CamelContext then that takes precedence and no 
routes are started. You would need to start CamelContext explicit using the 
org.apache.camel.CamelContext.start() method, to start the context, and then 
you would need to start the routes ma [...]
 { "name": "camel.main.autowireComponentProperties", "description": 
"Whether autowiring components with properties that are of same type, which has 
been added to the Camel registry, as a singleton instance. This is used for 
convention over configuration to inject DataSource, AmazonLogin instances to 
the components. This option is default enabled.", "sourceType": 
"org.apache.camel.main.MainConfigurationProperties", "type": "boolean", 
"javaType": "boolean", "defaultValue": true },
 { "name": "camel.main.autowireComponentPropertiesAllowPrivateSetter", 
"description": "Whether autowiring components allows to use private setter 
method when setting the value. This may be needed in some rare situations when 
some configuration classes may configure via constructors over setters. But 
constructor configuration is more cumbersome to use via .properties files 
etc.", "sourceType": "org.apache.camel.main.MainConfigurationProperties", 
"type": "boolean", "javaType": "boolean" [...]
 { "name": "camel.main.autowireComponentPropertiesDeep", "description": 
"Whether autowiring components (with deep nesting by attempting to walk as deep 
down the object graph by creating new empty objects on the way if needed) with 
properties that are of same type, which has been added to the Camel registry, 
as a singleton instance. This is used for convention over configuration to 
inject DataSource, AmazonLogin instances to the components. This option is 
default disabled.", "sourceTyp [...]
@@ -41,7 +41,7 @@
 { "name": "camel.main.javaRoutesIncludePattern", "description": "Used for 
inclusive filtering component scanning of RouteBuilder classes with Component 
annotation. The exclusive filtering takes precedence over inclusive filtering. 
The pattern is using 

[camel] 03/03: Regen

2020-09-22 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit ad6c4c26d58578e2a9e5432b2b73d08f95c67586
Author: Andrea Cosentino 
AuthorDate: Tue Sep 22 17:44:21 2020 +0200

Regen
---
 .../generated/resources/org/apache/camel/catalog/components/box.json| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/box.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/box.json
index 3e16de5..a243e65 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/box.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/box.json
@@ -82,7 +82,7 @@
 "users": { "consumerOnly": false, "producerOnly": true, "description": 
"Provides operations to manage Box users", "aliases": [ 
"getCurrentUser=currentUser", "getAllEnterpriseOrExternalUsers=users", 
"createAppUser=create", "createEnterpriseUser=create", "deleteUser=delete", 
"addUserEmailAlias=addEmailAlias", "getUserEmailAlias=emailAlias", 
"deleteUserEmailAlias=deleteEmailAlias", "getUserInfo=info", 
"updateUserInfo=updateInfo" ], "methods": { "addUserEmailAlias": { 
"description": "Add [...]
   },
   "apiProperties": {
-"collaborations": { "methods": { "addFolderCollaboration": { "properties": 
{ "collaborator": { "kind": "parameter", "displayName": "Collaborator", 
"group": "producer", "label": "", "required": false, "type": "object", 
"javaType": "com.box.sdk.BoxCollaborator", "deprecated": false, "secret": 
false, "description": "The collaborator to add", "optional": false }, 
"folderId": { "kind": "parameter", "displayName": "Folder Id", "group": 
"producer", "label": "", "required": false, "type": "s [...]
+"collaborations": { "methods": { "addFolderCollaboration": { "properties": 
{ "collaborator": { "kind": "parameter", "displayName": "Collaborator", 
"group": "producer", "label": "", "required": false, "type": "object", 
"javaType": "com.box.sdk.BoxCollaborator", "deprecated": false, "secret": 
false, "description": "The collaborator to add", "optional": false }, 
"folderId": { "kind": "parameter", "displayName": "Folder Id", "group": 
"producer", "label": "", "required": false, "type": "s [...]
 "comments": { "methods": { "addFileComment": { "properties": { "fileId": { 
"kind": "parameter", "displayName": "File Id", "group": "producer", "label": 
"", "required": false, "type": "string", "javaType": "java.lang.String", 
"deprecated": false, "secret": false, "description": "The id of file", 
"optional": false }, "message": { "kind": "parameter", "displayName": 
"Message", "group": "producer", "label": "", "required": false, "type": 
"string", "javaType": "java.lang.String", "depreca [...]
 "event-logs": { "methods": { "getEnterpriseEvents": { "properties": { 
"after": { "kind": "parameter", "displayName": "After", "group": "producer", 
"label": "", "required": false, "type": "string", "javaType": "java.util.Date", 
"deprecated": false, "secret": false, "description": "The lower bound on the 
timestamp of the events returned", "optional": false }, "before": { "kind": 
"parameter", "displayName": "Before", "group": "producer", "label": "", 
"required": false, "type": "string", [...]
 "events": { "methods": { "listen": { "properties": { "startingPosition": { 
"kind": "parameter", "displayName": "Starting Position", "group": "consumer", 
"label": "", "required": false, "type": "integer", "javaType": 
"java.lang.Long", "deprecated": false, "secret": false, "description": "The 
starting position of the event stream", "optional": true } } } } },



[camel] 03/03: Regen catalog

2020-09-22 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit fee23e27a1d8a76d1970dab41660b982be37a510
Author: Andrea Cosentino 
AuthorDate: Tue Sep 22 08:55:43 2020 +0200

Regen catalog
---
 .../resources/org/apache/camel/catalog/components/aws2-eventbridge.json | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-eventbridge.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-eventbridge.json
index 780a3c7..4664ef3 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-eventbridge.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-eventbridge.json
@@ -25,6 +25,7 @@
 "autoDiscoverClient": { "kind": "property", "displayName": "Auto Discover 
Client", "group": "common", "label": "common", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "secret": false, 
"defaultValue": "true", "configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "Setting the 
autoDiscoverClient mechanism, if true, the component will look for a client 
instanc [...]
 "configuration": { "kind": "property", "displayName": "Configuration", 
"group": "producer", "label": "", "required": false, "type": "object", 
"javaType": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"deprecated": false, "secret": false, "description": "Component configuration" 
},
 "eventbridgeClient": { "kind": "property", "displayName": "Eventbridge 
Client", "group": "producer", "label": "", "required": false, "type": "object", 
"javaType": "software.amazon.awssdk.services.eventbridge.EventBridgeClient", 
"deprecated": false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "To use a existing 
configured AWS Eventbridge as client" },
+"eventbusName": { "kind": "property", "displayName": "Eventbus Name", 
"group": "producer", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "secret": false, 
"defaultValue": "default", "configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "The eventbus name, the 
default value is default and this means it will be the AWS event bus of your a 
[...]
 "eventPatternFile": { "kind": "property", "displayName": "Event Pattern 
File", "group": "producer", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "secret": false, 
"configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "EventPattern File" },
 "lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "secret": false, 
"defaultValue": false, "description": "Whether the producer should be started 
lazy (on the first message). By starting lazy you can use this to allow 
CamelContext and routes to startup in situations where a producer may otherwise 
fail during starting and cause the r [...]
 "operation": { "kind": "property", "displayName": "Operation", "group": 
"producer", "label": "", "required": true, "type": "object", "javaType": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeOperations", "enum": [ 
"putRule", "putTargets" ], "deprecated": false, "deprecationNote": "", 
"secret": false, "defaultValue": "putRule", "configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": " [...]
@@ -42,6 +43,7 @@
 "label": { "kind": "path", "displayName": "Label", "group": "producer", 
"label": "", "required": true, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "deprecationNote": "", "secret": 
false, "configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "Logical name" },
 "autoDiscoverClient": { "kind": "parameter", "displayName": "Auto Discover 
Client", "group": "common", "label": "common", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "secret": false, 
"defaultValue": "true", "configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "Setting the 
autoDiscoverClient 

[camel] 03/03: Regen catalog

2020-09-22 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 833cb9771806c6be0e42451b5d8211b8f1323df1
Author: Andrea Cosentino 
AuthorDate: Tue Sep 22 08:25:18 2020 +0200

Regen catalog
---
 .../camel/catalog/components/aws2-eventbridge.json   | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-eventbridge.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-eventbridge.json
index 68d8121..bff15a3 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-eventbridge.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-eventbridge.json
@@ -29,10 +29,10 @@
 "lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "secret": false, 
"defaultValue": false, "description": "Whether the producer should be started 
lazy (on the first message). By starting lazy you can use this to allow 
CamelContext and routes to startup in situations where a producer may otherwise 
fail during starting and cause the r [...]
 "operation": { "kind": "property", "displayName": "Operation", "group": 
"producer", "label": "", "required": true, "type": "object", "javaType": 
"org.apache.camel.component.aws2.eventbridge.EvenbridgeOperations", "enum": [ 
"putRule", "putTargets" ], "deprecated": false, "deprecationNote": "", 
"secret": false, "defaultValue": "putRule", "configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "T [...]
 "pojoRequest": { "kind": "property", "displayName": "Pojo Request", 
"group": "producer", "label": "", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "secret": false, "defaultValue": 
"false", "configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "If we want to use a POJO 
request as body or not" },
-"proxyHost": { "kind": "property", "displayName": "Proxy Host", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "To define a proxy host 
when instantiating the STS client" },
-"proxyPort": { "kind": "property", "displayName": "Proxy Port", "group": 
"producer", "label": "", "required": false, "type": "integer", "javaType": 
"java.lang.Integer", "deprecated": false, "secret": false, 
"configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "To define a proxy port 
when instantiating the STS client" },
-"proxyProtocol": { "kind": "property", "displayName": "Proxy Protocol", 
"group": "producer", "label": "", "required": false, "type": "object", 
"javaType": "software.amazon.awssdk.core.Protocol", "enum": [ "HTTP", "HTTPS" 
], "deprecated": false, "secret": false, "defaultValue": "HTTPS", 
"configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "To define a proxy 
protocol when instantiating the ST [...]
-"region": { "kind": "property", "displayName": "Region", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "The region in which STS 
client needs to work. When using this parameter, the configuration will expect 
the lowercase name of the region (for  [...]
+"proxyHost": { "kind": "property", "displayName": "Proxy Host", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "To define a proxy host 
when instantiating the Eventbridge client" },
+"proxyPort": { "kind": "property", "displayName": "Proxy Port", "group": 
"producer", "label": "", "required": false, "type": "integer", "javaType": 
"java.lang.Integer", "deprecated": false, "secret": false, 
"configurationClass": 

[camel] 03/03: Regen catalog

2020-09-22 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 833cb9771806c6be0e42451b5d8211b8f1323df1
Author: Andrea Cosentino 
AuthorDate: Tue Sep 22 08:25:18 2020 +0200

Regen catalog
---
 .../camel/catalog/components/aws2-eventbridge.json   | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-eventbridge.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-eventbridge.json
index 68d8121..bff15a3 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-eventbridge.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-eventbridge.json
@@ -29,10 +29,10 @@
 "lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "secret": false, 
"defaultValue": false, "description": "Whether the producer should be started 
lazy (on the first message). By starting lazy you can use this to allow 
CamelContext and routes to startup in situations where a producer may otherwise 
fail during starting and cause the r [...]
 "operation": { "kind": "property", "displayName": "Operation", "group": 
"producer", "label": "", "required": true, "type": "object", "javaType": 
"org.apache.camel.component.aws2.eventbridge.EvenbridgeOperations", "enum": [ 
"putRule", "putTargets" ], "deprecated": false, "deprecationNote": "", 
"secret": false, "defaultValue": "putRule", "configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "T [...]
 "pojoRequest": { "kind": "property", "displayName": "Pojo Request", 
"group": "producer", "label": "", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "secret": false, "defaultValue": 
"false", "configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "If we want to use a POJO 
request as body or not" },
-"proxyHost": { "kind": "property", "displayName": "Proxy Host", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "To define a proxy host 
when instantiating the STS client" },
-"proxyPort": { "kind": "property", "displayName": "Proxy Port", "group": 
"producer", "label": "", "required": false, "type": "integer", "javaType": 
"java.lang.Integer", "deprecated": false, "secret": false, 
"configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "To define a proxy port 
when instantiating the STS client" },
-"proxyProtocol": { "kind": "property", "displayName": "Proxy Protocol", 
"group": "producer", "label": "", "required": false, "type": "object", 
"javaType": "software.amazon.awssdk.core.Protocol", "enum": [ "HTTP", "HTTPS" 
], "deprecated": false, "secret": false, "defaultValue": "HTTPS", 
"configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "To define a proxy 
protocol when instantiating the ST [...]
-"region": { "kind": "property", "displayName": "Region", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "The region in which STS 
client needs to work. When using this parameter, the configuration will expect 
the lowercase name of the region (for  [...]
+"proxyHost": { "kind": "property", "displayName": "Proxy Host", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws2.eventbridge.EventbridgeConfiguration", 
"configurationField": "configuration", "description": "To define a proxy host 
when instantiating the Eventbridge client" },
+"proxyPort": { "kind": "property", "displayName": "Proxy Port", "group": 
"producer", "label": "", "required": false, "type": "integer", "javaType": 
"java.lang.Integer", "deprecated": false, "secret": false, 
"configurationClass": 

[camel] 03/03: Regen

2020-09-21 Thread coheigea
This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch camel-3.4.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 2eb9bc33425203bd71a181b0a36237f9442b9891
Author: Colm O hEigeartaigh 
AuthorDate: Mon Sep 21 10:22:57 2020 +0100

Regen
---
 camel-dependencies/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index 5f4c43d..aa1f1b0 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -495,7 +495,7 @@
 1.7.7.1
 2.3.0
 2.21.2.Final
-3.2.1
+3.2.2
 1.12.2
 1.3.8
 2.2.19



[camel] 03/03: Regen

2020-09-21 Thread coheigea
This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch camel-3.4.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 2eb9bc33425203bd71a181b0a36237f9442b9891
Author: Colm O hEigeartaigh 
AuthorDate: Mon Sep 21 10:22:57 2020 +0100

Regen
---
 camel-dependencies/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index 5f4c43d..aa1f1b0 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -495,7 +495,7 @@
 1.7.7.1
 2.3.0
 2.21.2.Final
-3.2.1
+3.2.2
 1.12.2
 1.3.8
 2.2.19



[camel] 03/03: Regen

2020-09-09 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit cbef6740f7856a5e5c2762ddd74b89dadc0cfacc
Author: Andrea Cosentino 
AuthorDate: Wed Sep 9 19:20:06 2020 +0200

Regen
---
 .../camel/catalog/docs/azure-eventhubs-component.adoc  |  2 +-
 .../camel/component/azure/eventhubs/azure-eventhubs.json   |  2 +-
 .../src/main/docs/azure-eventhubs-component.adoc   |  2 +-
 .../modules/ROOT/pages/azure-eventhubs-component.adoc  | 14 ++
 4 files changed, 17 insertions(+), 3 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/azure-eventhubs-component.adoc
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/azure-eventhubs-component.adoc
index ca0c6cb..cd8a333 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/azure-eventhubs-component.adoc
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/azure-eventhubs-component.adoc
@@ -133,7 +133,7 @@ The Azure Event Hubs component supports 21 options, which 
are listed below.
 | *partitionId* (producer) | Sets the identifier of the Event Hub partition 
that the {link EventData events} will be sent to. If the identifier is not 
specified, the Event Hubs service will be responsible for routing events that 
are sent to an available partition. |  | String
 | *partitionKey* (producer) | Sets a hashing key to be provided for the batch 
of events, which instructs the Event Hubs service to map this key to a specific 
partition. The selection of a partition is stable for a given partition hashing 
key. Should any other batches of events be sent using the same exact partition 
hashing key, the Event Hubs service will route them all to the same partition. 
This should be specified only when there is a need to group events by 
partition, but there is fl [...]
 | *producerAsyncClient* (producer) | Sets the EventHubProducerAsyncClient.An 
asynchronous producer responsible for transmitting EventData to a specific 
Event Hub, grouped together in batches. Depending on the {link 
CreateBatchOptions options} specified when creating an \{linkEventDataBatch\}, 
the events may be automatically routed to an available partition or specific to 
a partition. Use by this component to produce the data in camel producer. |  | 
EventHubProducerAsyncClient
-| *basicPropertyBinding* (advanced) | Whether the component should use basic 
property binding (Camel 2.x) or the newer property binding with additional 
capabilities | false | boolean
+| *basicPropertyBinding* (advanced) | *Deprecated* Whether the component 
should use basic property binding (Camel 2.x) or the newer property binding 
with additional capabilities | false | boolean
 | *connectionString* (security) | Instead of supplying namespace, 
sharedAccessKey, sharedAccessName ... etc, you can just supply the connection 
string for your eventHub. The connection string for EventHubs already include 
all the necessary information to connection to your EventHub. To learn on how 
to generate the connection string, take a look at this documentation: 
\https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-get-connection-string
 |  | String
 | *sharedAccessKey* (security) | The generated value for the SharedAccessName 
|  | String
 | *sharedAccessName* (security) | The name you chose for your EventHubs SAS 
keys |  | String
diff --git 
a/components/camel-azure-eventhubs/src/generated/resources/org/apache/camel/component/azure/eventhubs/azure-eventhubs.json
 
b/components/camel-azure-eventhubs/src/generated/resources/org/apache/camel/component/azure/eventhubs/azure-eventhubs.json
index 7836480..b564024 100644
--- 
a/components/camel-azure-eventhubs/src/generated/resources/org/apache/camel/component/azure/eventhubs/azure-eventhubs.json
+++ 
b/components/camel-azure-eventhubs/src/generated/resources/org/apache/camel/component/azure/eventhubs/azure-eventhubs.json
@@ -40,7 +40,7 @@
 "partitionId": { "kind": "property", "displayName": "Partition Id", 
"group": "producer", "label": "producer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "secret": false, 
"configurationClass": 
"org.apache.camel.component.azure.eventhubs.EventHubsConfiguration", 
"configurationField": "configuration", "description": "Sets the identifier of 
the Event Hub partition that the {link EventData events} will be sent to. If 
the identifier is not spe [...]
 "partitionKey": { "kind": "property", "displayName": "Partition Key", 
"group": "producer", "label": "producer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "secret": false, 
"configurationClass": 
"org.apache.camel.component.azure.eventhubs.EventHubsConfiguration", 
"configurationField": "configuration", "description": "Sets 

[camel] 03/03: Regen

2020-09-04 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 5626fdd0db2f6fdcd47cb702cc6e755e3d764450
Author: Andrea Cosentino 
AuthorDate: Fri Sep 4 09:18:17 2020 +0200

Regen
---
 .../org/apache/camel/catalog/components/azure-storage-queue.json| 2 +-
 .../org/apache/camel/catalog/docs/azure-storage-queue-component.adoc| 2 +-
 docs/components/modules/ROOT/pages/azure-storage-queue-component.adoc   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-queue.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-queue.json
index 47d5f02..37d7151 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-queue.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-storage-queue.json
@@ -14,7 +14,7 @@
 "version": "3.5.0-SNAPSHOT",
 "scheme": "azure-storage-queue",
 "extendsScheme": "",
-"syntax": "azure-storage-queue:queueName",
+"syntax": "azure-storage-queue:accountName\/queueName",
 "async": false,
 "api": false,
 "apiPropertyQualifier": "",
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/azure-storage-queue-component.adoc
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/azure-storage-queue-component.adoc
index 4fd6649..44e3b3c 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/azure-storage-queue-component.adoc
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/azure-storage-queue-component.adoc
@@ -91,7 +91,7 @@ The Azure Storage Queue Service component supports 16 
options, which are listed
 The Azure Storage Queue Service endpoint is configured using URI syntax:
 
 
-azure-storage-queue:queueName
+azure-storage-queue:accountName/queueName
 
 
 with the following path and query parameters:
diff --git 
a/docs/components/modules/ROOT/pages/azure-storage-queue-component.adoc 
b/docs/components/modules/ROOT/pages/azure-storage-queue-component.adoc
index b0a03a97..4164674 100644
--- a/docs/components/modules/ROOT/pages/azure-storage-queue-component.adoc
+++ b/docs/components/modules/ROOT/pages/azure-storage-queue-component.adoc
@@ -93,7 +93,7 @@ The Azure Storage Queue Service component supports 16 
options, which are listed
 The Azure Storage Queue Service endpoint is configured using URI syntax:
 
 
-azure-storage-queue:queueName
+azure-storage-queue:accountName/queueName
 
 
 with the following path and query parameters:



[camel] 03/03: Regen

2020-09-03 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch CAMEL-15500-3.4.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 0a8a7fa071414bc26f2012d77c55ce88116c6761
Author: Andrea Cosentino 
AuthorDate: Thu Sep 3 19:13:42 2020 +0200

Regen
---
 .../camel/component/azure/storage/blob/azure-storage-blob.json| 2 +-
 .../src/main/docs/azure-storage-blob-component.adoc   | 2 +-
 core/camel-componentdsl/src/generated/resources/metadata.json | 2 +-
 .../org/apache/camel/builder/endpoint/StaticEndpointBuilders.java | 8 
 .../camel/builder/endpoint/dsl/BlobEndpointBuilderFactory.java| 8 
 .../modules/ROOT/pages/azure-storage-blob-component.adoc  | 2 +-
 6 files changed, 12 insertions(+), 12 deletions(-)

diff --git 
a/components/camel-azure-storage-blob/src/generated/resources/org/apache/camel/component/azure/storage/blob/azure-storage-blob.json
 
b/components/camel-azure-storage-blob/src/generated/resources/org/apache/camel/component/azure/storage/blob/azure-storage-blob.json
index 6be4e10..85f7c26 100644
--- 
a/components/camel-azure-storage-blob/src/generated/resources/org/apache/camel/component/azure/storage/blob/azure-storage-blob.json
+++ 
b/components/camel-azure-storage-blob/src/generated/resources/org/apache/camel/component/azure/storage/blob/azure-storage-blob.json
@@ -14,7 +14,7 @@
 "version": "3.4.4-SNAPSHOT",
 "scheme": "azure-storage-blob",
 "extendsScheme": "",
-"syntax": "azure-storage-blob:\/accountName\/containerName",
+"syntax": "azure-storage-blob:accountName\/containerName",
 "async": false,
 "consumerOnly": false,
 "producerOnly": false,
diff --git 
a/components/camel-azure-storage-blob/src/main/docs/azure-storage-blob-component.adoc
 
b/components/camel-azure-storage-blob/src/main/docs/azure-storage-blob-component.adoc
index 56a98ed..4c26584 100644
--- 
a/components/camel-azure-storage-blob/src/main/docs/azure-storage-blob-component.adoc
+++ 
b/components/camel-azure-storage-blob/src/main/docs/azure-storage-blob-component.adoc
@@ -94,7 +94,7 @@ The Azure Storage Blob Service component supports 16 options, 
which are listed b
 The Azure Storage Blob Service endpoint is configured using URI syntax:
 
 
-azure-storage-blob:/accountName/containerName
+azure-storage-blob:accountName/containerName
 
 
 with the following path and query parameters:
diff --git a/core/camel-componentdsl/src/generated/resources/metadata.json 
b/core/camel-componentdsl/src/generated/resources/metadata.json
index f32b134..6086e03 100644
--- a/core/camel-componentdsl/src/generated/resources/metadata.json
+++ b/core/camel-componentdsl/src/generated/resources/metadata.json
@@ -1256,7 +1256,7 @@
 "version": "3.4.4-SNAPSHOT",
 "scheme": "azure-storage-blob",
 "extendsScheme": "",
-"syntax": "azure-storage-blob:\/accountName\/containerName",
+"syntax": "azure-storage-blob:accountName\/containerName",
 "async": false,
 "consumerOnly": false,
 "producerOnly": false,
diff --git 
a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
 
b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
index 2e6acae..6e5de6c 100644
--- 
a/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
+++ 
b/core/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
@@ -2483,7 +2483,7 @@ public class StaticEndpointBuilders {
  * Since: 3.3
  * Maven coordinates: org.apache.camel:camel-azure-storage-blob
  * 
- * Syntax: azure-storage-blob:/accountName/containerName
+ * Syntax: azure-storage-blob:accountName/containerName
  * 
  * Path parameter: accountName
  * Azure account name to be used for authentication with azure blob 
services
@@ -2491,7 +2491,7 @@ public class StaticEndpointBuilders {
  * Path parameter: containerName
  * The blob container name
  * 
- * @param path /accountName/containerName
+ * @param path accountName/containerName
  */
 public static 
org.apache.camel.builder.endpoint.dsl.BlobEndpointBuilderFactory.BlobEndpointBuilder
 azureStorageBlob(
 String path) {
@@ -2505,7 +2505,7 @@ public class StaticEndpointBuilders {
  * Since: 3.3
  * Maven coordinates: org.apache.camel:camel-azure-storage-blob
  * 
- * Syntax: azure-storage-blob:/accountName/containerName
+ * Syntax: azure-storage-blob:accountName/containerName
  * 
  * Path parameter: accountName
  * Azure account name to be used for authentication with azure blob 
services
@@ -2515,7 +2515,7 @@ public class StaticEndpointBuilders {
  * 
  * @param componentName to use a custom component name for the endpoint
  * instead of the default name
- * @param path 

[camel] 03/03: Regen

2020-09-03 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit a4d94e66ec24eb5a844691669c140a638bd98247
Author: Andrea Cosentino 
AuthorDate: Thu Sep 3 17:27:59 2020 +0200

Regen
---
 .../resources/org/apache/camel/catalog/components/as2.json   |  2 +-
 .../apache/camel/catalog/components/azure-storage-blob.json  |  2 +-
 .../resources/org/apache/camel/catalog/components/box.json   |  2 +-
 .../org/apache/camel/catalog/components/braintree.json   |  8 
 .../resources/org/apache/camel/catalog/components/fhir.json  |  2 +-
 .../org/apache/camel/catalog/components/google-calendar.json |  2 +-
 .../org/apache/camel/catalog/components/google-drive.json|  2 +-
 .../org/apache/camel/catalog/components/google-mail.json |  2 +-
 .../org/apache/camel/catalog/components/google-sheets.json   |  2 +-
 .../org/apache/camel/catalog/components/olingo2.json |  2 +-
 .../org/apache/camel/catalog/components/olingo4.json |  2 +-
 .../org/apache/camel/catalog/components/twilio.json  |  2 +-
 .../org/apache/camel/catalog/components/vertx-http.json  |  2 +-
 .../org/apache/camel/catalog/components/vertx-websocket.json |  2 +-
 .../org/apache/camel/catalog/components/zendesk.json |  2 +-
 .../org/apache/camel/catalog/docs/as2-component.adoc |  2 +-
 .../camel/catalog/docs/azure-storage-blob-component.adoc |  2 +-
 .../org/apache/camel/catalog/docs/box-component.adoc |  2 +-
 .../org/apache/camel/catalog/docs/braintree-component.adoc   | 12 ++--
 .../org/apache/camel/catalog/docs/fhir-component.adoc|  2 +-
 .../apache/camel/catalog/docs/google-calendar-component.adoc |  2 +-
 .../apache/camel/catalog/docs/google-drive-component.adoc|  2 +-
 .../org/apache/camel/catalog/docs/google-mail-component.adoc |  2 +-
 .../apache/camel/catalog/docs/google-sheets-component.adoc   |  2 +-
 .../org/apache/camel/catalog/docs/olingo2-component.adoc |  2 +-
 .../org/apache/camel/catalog/docs/olingo4-component.adoc |  2 +-
 .../org/apache/camel/catalog/docs/twilio-component.adoc  |  2 +-
 .../org/apache/camel/catalog/docs/vertx-http-component.adoc  |  2 +-
 .../apache/camel/catalog/docs/vertx-websocket-component.adoc |  2 +-
 .../org/apache/camel/catalog/docs/zendesk-component.adoc |  2 +-
 .../component/azure/storage/blob/azure-storage-blob.json |  2 +-
 .../src/main/docs/azure-storage-blob-component.adoc  |  2 +-
 .../camel-componentdsl/src/generated/resources/metadata.json |  2 +-
 .../camel/builder/endpoint/StaticEndpointBuilders.java   |  8 
 .../builder/endpoint/dsl/BlobEndpointBuilderFactory.java |  8 
 docs/components/modules/ROOT/pages/as2-component.adoc|  2 +-
 .../modules/ROOT/pages/azure-storage-blob-component.adoc |  2 +-
 docs/components/modules/ROOT/pages/box-component.adoc|  2 +-
 docs/components/modules/ROOT/pages/braintree-component.adoc  | 12 ++--
 docs/components/modules/ROOT/pages/fhir-component.adoc   |  2 +-
 .../modules/ROOT/pages/google-calendar-component.adoc|  2 +-
 .../modules/ROOT/pages/google-drive-component.adoc   |  2 +-
 .../components/modules/ROOT/pages/google-mail-component.adoc |  2 +-
 .../modules/ROOT/pages/google-sheets-component.adoc  |  2 +-
 docs/components/modules/ROOT/pages/olingo2-component.adoc|  2 +-
 docs/components/modules/ROOT/pages/olingo4-component.adoc|  2 +-
 docs/components/modules/ROOT/pages/twilio-component.adoc |  2 +-
 docs/components/modules/ROOT/pages/zendesk-component.adoc|  2 +-
 48 files changed, 67 insertions(+), 67 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/as2.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/as2.json
index a4d6c8d..8405395 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/as2.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/as2.json
@@ -29,7 +29,7 @@
 "configuration": { "kind": "property", "displayName": "Configuration", 
"group": "advanced", "label": "advanced", "required": false, "type": "object", 
"javaType": "org.apache.camel.component.as2.AS2Configuration", "deprecated": 
false, "secret": false, "description": "Component configuration" }
   },
   "properties": {
-"apiName": { "kind": "path", "displayName": "Api Name", "group": "common", 
"label": "", "required": true, "type": "object", "javaType": 
"org.apache.camel.component.as2.internal.AS2ApiName", "enum": [ "client", 
"server" ], "deprecated": false, "deprecationNote": "", "secret": false, 
"configurationClass": "org.apache.camel.component.as2.AS2Configuration", 
"configurationField": "configuration", "description": "What kind of operation 
to perform" },
+

[camel] 03/03: Regen back

2020-08-27 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit e118d06041e8a0916de76243b46687e85c05b039
Author: Andrea Cosentino 
AuthorDate: Thu Aug 27 08:08:08 2020 +0200

Regen back
---
 .../org/apache/camel/catalog/components.properties |  1 +
 .../apache/camel/catalog/components/aws-sdb.json   | 43 ++
 2 files changed, 44 insertions(+)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
index 76058b0..cdb4e8a 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
@@ -31,6 +31,7 @@ aws-lambda
 aws-mq
 aws-msk
 aws-s3
+aws-sdb
 aws-ses
 aws-sns
 aws-sqs
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws-sdb.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws-sdb.json
new file mode 100644
index 000..d2b9145
--- /dev/null
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws-sdb.json
@@ -0,0 +1,43 @@
+{
+  "component": {
+"kind": "component",
+"name": "aws-sdb",
+"title": "AWS SimpleDB",
+"description": "Store and Retrieve data from\/to AWS SDB service.",
+"deprecated": false,
+"firstVersion": "2.9.0",
+"label": "cloud,database,nosql",
+"javaType": "org.apache.camel.component.aws.sdb.SdbComponent",
+"supportLevel": "Stable",
+"groupId": "org.apache.camel",
+"artifactId": "camel-aws-sdb",
+"version": "3.5.0-SNAPSHOT",
+"scheme": "aws-sdb",
+"extendsScheme": "",
+"syntax": "aws-sdb:domainName",
+"async": false,
+"consumerOnly": false,
+"producerOnly": true,
+"lenientProperties": false
+  },
+  "componentProperties": {
+"lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "secret": false, 
"defaultValue": false, "description": "Whether the producer should be started 
lazy (on the first message). By starting lazy you can use this to allow 
CamelContext and routes to startup in situations where a producer may otherwise 
fail during starting and cause the r [...]
+"basicPropertyBinding": { "kind": "property", "displayName": "Basic 
Property Binding", "group": "advanced", "label": "advanced", "required": false, 
"type": "boolean", "javaType": "boolean", "deprecated": false, "secret": false, 
"defaultValue": false, "description": "Whether the component should use basic 
property binding (Camel 2.x) or the newer property binding with additional 
capabilities" }
+  },
+  "properties": {
+"domainName": { "kind": "path", "displayName": "Domain Name", "group": 
"producer", "label": "", "required": true, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "deprecationNote": "", "secret": 
false, "configurationClass": 
"org.apache.camel.component.aws.sdb.SdbConfiguration", "configurationField": 
"configuration", "description": "The name of the domain currently worked with." 
},
+"accessKey": { "kind": "parameter", "displayName": "Access Key", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws.sdb.SdbConfiguration", "configurationField": 
"configuration", "description": "Amazon AWS Access Key" },
+"amazonSDBClient": { "kind": "parameter", "displayName": "Amazon 
SDBClient", "group": "producer", "label": "", "required": false, "type": 
"object", "javaType": "com.amazonaws.services.simpledb.AmazonSimpleDB", 
"deprecated": false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws.sdb.SdbConfiguration", "configurationField": 
"configuration", "description": "To use the AmazonSimpleDB as the client" },
+"consistentRead": { "kind": "parameter", "displayName": "Consistent Read", 
"group": "producer", "label": "", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "secret": false, "defaultValue": 
false, "configurationClass": 
"org.apache.camel.component.aws.sdb.SdbConfiguration", "configurationField": 
"configuration", "description": "Determines whether or not strong consistency 
should be enforced when data is read." },
+"lazyStartProducer": { "kind": "parameter", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "secret": false, 
"defaultValue": false, "description": 

[camel] 03/03: Regen

2020-08-23 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 7b934045ae53bc575006c6636aa7b732c4a6925c
Author: Claus Ibsen 
AuthorDate: Sun Aug 23 15:56:09 2020 +0200

Regen
---
 .../org/apache/camel/support/PropertyBindingSupportConfigurerTest.java | 3 ++-
 .../test/java/org/apache/camel/support/PropertyBindingSupportTest.java | 1 -
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportConfigurerTest.java
 
b/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportConfigurerTest.java
index b2b2332..cc33d46 100644
--- 
a/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportConfigurerTest.java
+++ 
b/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportConfigurerTest.java
@@ -235,7 +235,8 @@ public class PropertyBindingSupportConfigurerTest extends 
ContextTestSupport {
 prop.put("work.name", "{{companyName}}");
 
 myConfigurer.reset();
-
PropertyBindingSupport.build().withReflection(false).withConfigurer(myConfigurer).withIgnoreCase(true).bind(context,
 bar, prop);
+
PropertyBindingSupport.build().withReflection(false).withConfigurer(myConfigurer).withIgnoreCase(true).bind(context,
+bar, prop);
 assertEquals(6, myConfigurer.getCounter());
 
 assertEquals(33, bar.getAge());
diff --git 
a/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportTest.java
 
b/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportTest.java
index 39c512c..5a61244 100644
--- 
a/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportTest.java
+++ 
b/core/camel-core/src/test/java/org/apache/camel/support/PropertyBindingSupportTest.java
@@ -27,7 +27,6 @@ import org.apache.camel.spi.Injector;
 import org.apache.camel.spi.PropertiesComponent;
 import org.junit.jupiter.api.Test;
 
-
 import static org.junit.jupiter.api.Assertions.*;
 
 /**



[camel] 03/03: Regen

2020-08-18 Thread gnodet
This is an automated email from the ASF dual-hosted git repository.

gnodet pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 992a6b9685f4db49236e540af2546548cf99a7d3
Author: Guillaume Nodet 
AuthorDate: Tue Aug 18 09:33:44 2020 +0200

Regen
---
 .../org/apache/camel/catalog/components/azure-eventhubs.json  | 4 ++--
 .../generated/resources/org/apache/camel/catalog/components/cql.json  | 2 +-
 .../org/apache/camel/catalog/docs/azure-eventhubs-component.adoc  | 4 ++--
 .../resources/org/apache/camel/catalog/docs/cql-component.adoc| 2 +-
 .../generated/resources/org/apache/camel/component/cassandra/cql.json | 2 +-
 components/camel-cassandraql/src/main/docs/cql-component.adoc | 2 +-
 core/camel-componentdsl/src/generated/resources/metadata.json | 2 +-
 docs/components/modules/ROOT/pages/cql-component.adoc | 2 +-
 8 files changed, 10 insertions(+), 10 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-eventhubs.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-eventhubs.json
index 8b50393..bd27606 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-eventhubs.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/azure-eventhubs.json
@@ -22,7 +22,7 @@
   },
   "componentProperties": {
 "amqpRetryOptions": { "kind": "property", "displayName": "Amqp Retry 
Options", "group": "common", "label": "common", "required": false, "type": 
"object", "javaType": "com.azure.core.amqp.AmqpRetryOptions", "deprecated": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.azure.eventhubs.EventHubsConfiguration", 
"configurationField": "configuration", "description": "Sets the retry policy 
for EventHubAsyncClient. If not specified, the default retry options are used." 
},
-"amqpTransportType": { "kind": "property", "displayName": "Amqp Transport 
Type", "group": "common", "label": "common", "required": false, "type": 
"object", "javaType": "com.azure.core.amqp.AmqpTransportType", "enum": [ 
"Amqp", "AmqpWebSockets" ], "deprecated": false, "secret": false, 
"defaultValue": "Amqp", "configurationClass": 
"org.apache.camel.component.azure.eventhubs.EventHubsConfiguration", 
"configurationField": "configuration", "description": "Sets the transport type 
by which  [...]
+"amqpTransportType": { "kind": "property", "displayName": "Amqp Transport 
Type", "group": "common", "label": "common", "required": false, "type": 
"object", "javaType": "com.azure.core.amqp.AmqpTransportType", "enum": [ 
"Amqp", "AmqpWebSockets" ], "deprecated": false, "secret": false, 
"defaultValue": "AMQP", "configurationClass": 
"org.apache.camel.component.azure.eventhubs.EventHubsConfiguration", 
"configurationField": "configuration", "description": "Sets the transport type 
by which  [...]
 "autoDiscoverClient": { "kind": "property", "displayName": "Auto Discover 
Client", "group": "common", "label": "common", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "secret": false, 
"defaultValue": "true", "configurationClass": 
"org.apache.camel.component.azure.eventhubs.EventHubsConfiguration", 
"configurationField": "configuration", "description": "Setting the 
autoDiscoverClient mechanism, if true, the component will look for a client 
instance i [...]
 "configuration": { "kind": "property", "displayName": "Configuration", 
"group": "common", "label": "", "required": false, "type": "object", 
"javaType": 
"org.apache.camel.component.azure.eventhubs.EventHubsConfiguration", 
"deprecated": false, "secret": false, "description": "The component 
configurations" },
 "blobAccessKey": { "kind": "property", "displayName": "Blob Access Key", 
"group": "consumer", "label": "consumer", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "secret": true, 
"configurationClass": 
"org.apache.camel.component.azure.eventhubs.EventHubsConfiguration", 
"configurationField": "configuration", "description": "In case you chose the 
default BlobCheckpointStore, this sets access key for the associated azure 
account name to be used  [...]
@@ -47,7 +47,7 @@
 "namespace": { "kind": "path", "displayName": "Namespace", "group": 
"common", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "secret": false, "configurationClass": 
"org.apache.camel.component.azure.eventhubs.EventHubsConfiguration", 
"configurationField": "configuration", "description": "EventHubs namespace 
created in Azure Portal" },
 "eventHubName": { "kind": "path", "displayName": "Event Hub Name", 
"group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "secret": false, 

[camel] 03/03: Regen

2020-08-09 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-3.4.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit a21b97ef090222ce46d197df394fd6566269b76f
Author: Claus Ibsen 
AuthorDate: Sun Aug 9 19:04:54 2020 +0200

Regen
---
 docs/components/modules/ROOT/pages/pgevent-component.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/components/modules/ROOT/pages/pgevent-component.adoc 
b/docs/components/modules/ROOT/pages/pgevent-component.adoc
index b3fb80c..ca0e787 100644
--- a/docs/components/modules/ROOT/pages/pgevent-component.adoc
+++ b/docs/components/modules/ROOT/pages/pgevent-component.adoc
@@ -80,7 +80,7 @@ with the following path and query parameters:
 | Name | Description | Default | Type
 | *host* | To connect using hostname and port to the database. | localhost | 
String
 | *port* | To connect using hostname and port to the database. | 5432 | Integer
-| *database* | *Required* The database name |  | String
+| *database* | *Required* The database name. The database name can take any 
characters because it is sent as a quoted identifier. It is part of the 
endpoint URI, so diacritical marks and non-Latin letters have to be URL 
encoded. |  | String
 | *channel* | *Required* The channel name |  | String
 |===
 



[camel] 03/03: Regen

2020-08-05 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 397e960c5fd6eb36ddbccde42fd34d4a6aa7dedc
Author: Claus Ibsen 
AuthorDate: Wed Aug 5 19:19:09 2020 +0200

Regen
---
 .../apache/camel/catalog/components/aws2-sts.json  | 22 +++---
 .../modules/ROOT/pages/pgevent-component.adoc  |  2 +-
 2 files changed, 12 insertions(+), 12 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sts.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sts.json
index b256f65..0a28ea2 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sts.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sts.json
@@ -3,7 +3,7 @@
 "kind": "component",
 "name": "aws2-sts",
 "title": "AWS 2 Security Token Service (STS)",
-"description": "Manage AWS STS cluster instances using AWS SDK version 
2.x.",
+"description": "Manage AWS ECS cluster instances using AWS SDK version 
2.x.",
 "deprecated": false,
 "firstVersion": "3.5.0",
 "label": "cloud,management",
@@ -26,11 +26,11 @@
 "lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "secret": false, 
"defaultValue": false, "description": "Whether the producer should be started 
lazy (on the first message). By starting lazy you can use this to allow 
CamelContext and routes to startup in situations where a producer may otherwise 
fail during starting and cause the r [...]
 "operation": { "kind": "property", "displayName": "Operation", "group": 
"producer", "label": "", "required": true, "type": "object", "javaType": 
"org.apache.camel.component.aws2.sts.STS2Operations", "enum": [ "assumeRole" ], 
"deprecated": false, "deprecationNote": "", "secret": false, "defaultValue": 
"assumeRole", "configurationClass": 
"org.apache.camel.component.aws2.sts.STS2Configuration", "configurationField": 
"configuration", "description": "The operation to perform" },
 "pojoRequest": { "kind": "property", "displayName": "Pojo Request", 
"group": "producer", "label": "", "required": false, "type": "boolean", 
"javaType": "boolean", "deprecated": false, "secret": false, "defaultValue": 
"false", "configurationClass": 
"org.apache.camel.component.aws2.sts.STS2Configuration", "configurationField": 
"configuration", "description": "If we want to use a POJO request as body or 
not" },
-"proxyHost": { "kind": "property", "displayName": "Proxy Host", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws2.sts.STS2Configuration", "configurationField": 
"configuration", "description": "To define a proxy host when instantiating the 
STS client" },
-"proxyPort": { "kind": "property", "displayName": "Proxy Port", "group": 
"producer", "label": "", "required": false, "type": "integer", "javaType": 
"java.lang.Integer", "deprecated": false, "secret": false, 
"configurationClass": "org.apache.camel.component.aws2.sts.STS2Configuration", 
"configurationField": "configuration", "description": "To define a proxy port 
when instantiating the STS client" },
-"proxyProtocol": { "kind": "property", "displayName": "Proxy Protocol", 
"group": "producer", "label": "", "required": false, "type": "object", 
"javaType": "software.amazon.awssdk.core.Protocol", "enum": [ "HTTP", "HTTPS" 
], "deprecated": false, "secret": false, "defaultValue": "HTTPS", 
"configurationClass": "org.apache.camel.component.aws2.sts.STS2Configuration", 
"configurationField": "configuration", "description": "To define a proxy 
protocol when instantiating the STS client" },
-"region": { "kind": "property", "displayName": "Region", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "secret": false, "defaultValue": 
"aws-global", "configurationClass": 
"org.apache.camel.component.aws2.sts.STS2Configuration", "configurationField": 
"configuration", "description": "The region in which STS client needs to work. 
When using this parameter, the configuration will expect the lowercase name of 
t [...]
-"stsClient": { "kind": "property", "displayName": "Sts Client", "group": 
"producer", "label": "", "required": false, "type": "object", "javaType": 
"software.amazon.awssdk.services.sts.StsClient", "deprecated": false, "secret": 
false, "configurationClass": 
"org.apache.camel.component.aws2.sts.STS2Configuration", "configurationField": 
"configuration", "description": "To use a existing configured AWS STS as 

[camel] 03/03: Regen catalog

2020-08-05 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 1d3fc0a8581f2cc40d2aedce03927fb84024cdd6
Author: Andrea Cosentino 
AuthorDate: Wed Aug 5 11:38:33 2020 +0200

Regen catalog
---
 .../resources/org/apache/camel/catalog/components/aws2-sts.json   | 4 ++--
 .../resources/org/apache/camel/catalog/docs/aws2-sts-component.adoc   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sts.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sts.json
index 230405d..b256f65 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sts.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/aws2-sts.json
@@ -29,7 +29,7 @@
 "proxyHost": { "kind": "property", "displayName": "Proxy Host", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws2.sts.STS2Configuration", "configurationField": 
"configuration", "description": "To define a proxy host when instantiating the 
STS client" },
 "proxyPort": { "kind": "property", "displayName": "Proxy Port", "group": 
"producer", "label": "", "required": false, "type": "integer", "javaType": 
"java.lang.Integer", "deprecated": false, "secret": false, 
"configurationClass": "org.apache.camel.component.aws2.sts.STS2Configuration", 
"configurationField": "configuration", "description": "To define a proxy port 
when instantiating the STS client" },
 "proxyProtocol": { "kind": "property", "displayName": "Proxy Protocol", 
"group": "producer", "label": "", "required": false, "type": "object", 
"javaType": "software.amazon.awssdk.core.Protocol", "enum": [ "HTTP", "HTTPS" 
], "deprecated": false, "secret": false, "defaultValue": "HTTPS", 
"configurationClass": "org.apache.camel.component.aws2.sts.STS2Configuration", 
"configurationField": "configuration", "description": "To define a proxy 
protocol when instantiating the STS client" },
-"region": { "kind": "property", "displayName": "Region", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws2.sts.STS2Configuration", "configurationField": 
"configuration", "description": "The region in which STS client needs to work. 
When using this parameter, the configuration will expect the lowercase name of 
the region (for example ap-east [...]
+"region": { "kind": "property", "displayName": "Region", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "secret": false, "defaultValue": 
"aws-global", "configurationClass": 
"org.apache.camel.component.aws2.sts.STS2Configuration", "configurationField": 
"configuration", "description": "The region in which STS client needs to work. 
When using this parameter, the configuration will expect the lowercase name of 
t [...]
 "stsClient": { "kind": "property", "displayName": "Sts Client", "group": 
"producer", "label": "", "required": false, "type": "object", "javaType": 
"software.amazon.awssdk.services.sts.StsClient", "deprecated": false, "secret": 
false, "configurationClass": 
"org.apache.camel.component.aws2.sts.STS2Configuration", "configurationField": 
"configuration", "description": "To use a existing configured AWS STS as 
client" },
 "trustAllCertificates": { "kind": "property", "displayName": "Trust All 
Certificates", "group": "producer", "label": "", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "secret": false, 
"defaultValue": "false", "configurationClass": 
"org.apache.camel.component.aws2.sts.STS2Configuration", "configurationField": 
"configuration", "description": "If we want to trust all certificates in case 
of overriding the endpoint" },
 "basicPropertyBinding": { "kind": "property", "displayName": "Basic 
Property Binding", "group": "advanced", "label": "advanced", "required": false, 
"type": "boolean", "javaType": "boolean", "deprecated": false, "secret": false, 
"defaultValue": false, "description": "Whether the component should use basic 
property binding (Camel 2.x) or the newer property binding with additional 
capabilities" },
@@ -45,7 +45,7 @@
 "proxyHost": { "kind": "parameter", "displayName": "Proxy Host", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "secret": false, "configurationClass": 
"org.apache.camel.component.aws2.sts.STS2Configuration", "configurationField": 
"configuration", "description": "To 

[camel] 03/03: Regen

2020-08-04 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 80bf5f5ff5dc9b7d4afc83b3c687fa185a1e2b7b
Author: Andrea Cosentino 
AuthorDate: Tue Aug 4 08:03:27 2020 +0200

Regen
---
 .../generated/resources/org/apache/camel/catalog/components/sjms.json | 4 ++--
 .../resources/org/apache/camel/catalog/components/sjms2.json  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sjms.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sjms.json
index f81be5e..e031e2f 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sjms.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sjms.json
@@ -78,8 +78,8 @@
 "errorHandlerLoggingLevel": { "kind": "parameter", "displayName": "Error 
Handler Logging Level", "group": "logging", "label": "consumer,logging", 
"required": false, "type": "object", "javaType": 
"org.apache.camel.LoggingLevel", "enum": [ "TRACE", "DEBUG", "INFO", "WARN", 
"ERROR", "OFF" ], "deprecated": false, "secret": false, "defaultValue": "WARN", 
"description": "Allows to configure the default errorHandler logging level for 
logging uncaught exceptions." },
 "errorHandlerLogStackTrace": { "kind": "parameter", "displayName": "Error 
Handler Log Stack Trace", "group": "logging", "label": "consumer,logging", 
"required": false, "type": "boolean", "javaType": "boolean", "deprecated": 
false, "secret": false, "defaultValue": "true", "description": "Allows to 
control whether stacktraces should be logged or not, by the default 
errorHandler." },
 "transacted": { "kind": "parameter", "displayName": "Transacted", "group": 
"transaction", "label": "consumer,transaction", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "secret": false, 
"defaultValue": false, "description": "Specifies whether to use transacted 
mode" },
-"transactionBatchCount": { "kind": "parameter", "displayName": 
"Transaction Batch Count", "group": "transaction", "label": 
"consumer,transaction", "required": false, "type": "integer", "javaType": 
"int", "deprecated": false, "secret": false, "defaultValue": "-1", 
"description": "If transacted sets the number of messages to process before 
committing a transaction." },
-"transactionBatchTimeout": { "kind": "parameter", "displayName": 
"Transaction Batch Timeout", "group": "transaction", "label": 
"consumer,transaction", "required": false, "type": "duration", "javaType": 
"long", "deprecated": false, "secret": false, "defaultValue": "5s", 
"description": "Sets timeout (in millis) for batch transactions, the value 
should be 1000 or higher." },
+"transactionBatchCount": { "kind": "parameter", "displayName": 
"Transaction Batch Count", "group": "transaction", "label": 
"consumer,transaction", "required": false, "type": "integer", "javaType": 
"int", "deprecated": true, "secret": false, "defaultValue": "-1", 
"description": "If transacted sets the number of messages to process before 
committing a transaction." },
+"transactionBatchTimeout": { "kind": "parameter", "displayName": 
"Transaction Batch Timeout", "group": "transaction", "label": 
"consumer,transaction", "required": false, "type": "duration", "javaType": 
"long", "deprecated": true, "secret": false, "defaultValue": "5s", 
"description": "Sets timeout (in millis) for batch transactions, the value 
should be 1000 or higher." },
 "transactionCommitStrategy": { "kind": "parameter", "displayName": 
"Transaction Commit Strategy", "group": "transaction", "label": "transaction", 
"required": false, "type": "object", "javaType": 
"org.apache.camel.component.sjms.TransactionCommitStrategy", "deprecated": 
false, "secret": false, "description": "Sets the commit strategy." },
 "sharedJMSSession": { "kind": "parameter", "displayName": "Shared 
JMSSession", "group": "transaction (advanced)", "label": 
"transaction,advanced", "required": false, "type": "boolean", "javaType": 
"boolean", "deprecated": false, "secret": false, "defaultValue": "true", 
"description": "Specifies whether to share JMS session with other SJMS 
endpoints. Turn this off if your route is accessing to multiple JMS providers. 
If you need transaction against multiple JMS providers, use jms comp [...]
   }
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sjms2.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sjms2.json
index 4d48514..e9e757a 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sjms2.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/sjms2.json
@@ -81,8 +81,8 @@
 

  1   2   >