You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/05/23 09:59:18 UTC

[camel-kamelets] branch 1475 created (now 26884583)

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch 1475
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git


      at 26884583 Bean: Use properties instead of property with key and value - AWS DDB Sink

This branch includes the following new commits:

     new a1874d5e Bean: Use properties instead of property with key and value - AWS DDB Sink
     new 26884583 Bean: Use properties instead of property with key and value - AWS DDB Sink

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[camel-kamelets] 02/02: Bean: Use properties instead of property with key and value - AWS DDB Sink

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 2688458334151316b5694ee50795e76bfe855e0f
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue May 23 11:57:57 2023 +0200

    Bean: Use properties instead of property with key and value - AWS DDB Sink
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/aws-ddb-sink.kamelet.yaml     | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/aws-ddb-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/aws-ddb-sink.kamelet.yaml
index b930793d..e3a7696d 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/aws-ddb-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/aws-ddb-sink.kamelet.yaml
@@ -119,13 +119,10 @@ spec:
         type: "#class:org.apache.camel.kamelets.utils.format.DefaultDataTypeRegistry"
       - name: dataTypeProcessor
         type: "#class:org.apache.camel.kamelets.utils.format.DataTypeProcessor"
-        property:
-          - key: scheme
-            value: 'aws2-ddb'
-          - key: format
-            value: 'json'
-          - key: registry
-            value: '#bean:{{dataTypeRegistry}}'
+        properties:
+          scheme: 'aws2-ddb'
+          format: 'json'
+          registry: '#bean:{{dataTypeRegistry}}'
     from:
       uri: "kamelet:source"
       steps:


[camel-kamelets] 01/02: Bean: Use properties instead of property with key and value - AWS DDB Sink

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit a1874d5e2551fe6368fb8fd20953dc3a01da32ea
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue May 23 11:56:26 2023 +0200

    Bean: Use properties instead of property with key and value - AWS DDB Sink
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/aws-ddb-sink.kamelet.yaml | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/kamelets/aws-ddb-sink.kamelet.yaml b/kamelets/aws-ddb-sink.kamelet.yaml
index b930793d..e3a7696d 100644
--- a/kamelets/aws-ddb-sink.kamelet.yaml
+++ b/kamelets/aws-ddb-sink.kamelet.yaml
@@ -119,13 +119,10 @@ spec:
         type: "#class:org.apache.camel.kamelets.utils.format.DefaultDataTypeRegistry"
       - name: dataTypeProcessor
         type: "#class:org.apache.camel.kamelets.utils.format.DataTypeProcessor"
-        property:
-          - key: scheme
-            value: 'aws2-ddb'
-          - key: format
-            value: 'json'
-          - key: registry
-            value: '#bean:{{dataTypeRegistry}}'
+        properties:
+          scheme: 'aws2-ddb'
+          format: 'json'
+          registry: '#bean:{{dataTypeRegistry}}'
     from:
       uri: "kamelet:source"
       steps: