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 12:25:15 UTC

[camel-kamelets] branch 1475 updated (26884583 -> f7ca9425)

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


    omit 26884583 Bean: Use properties instead of property with key and value - AWS DDB Sink
    omit a1874d5e Bean: Use properties instead of property with key and value - AWS DDB Sink
     add f09915b9 Bean: Use properties instead of property with key and value - AWS DDB Sink
     add c6227b61 Bean: Use properties instead of property with key and value - AWS DDB Sink
     new a128cb9a Bean: Use properties instead of property with key and value - AWS Kinesis Source
     new 3c1b6754 Bean: Use properties instead of property with key and value - AWS Kinesis Source
     new d13154c5 Bean: Use properties instead of property with key and value - AWS Redshift Sink
     new 28fb6acf Bean: Use properties instead of property with key and value - AWS Redshift Sink
     new 480cb0de Bean: Use properties instead of property with key and value - AWS Redshift Source
     new 04a5dd6c Bean: Use properties instead of property with key and value - AWS Redshift Source
     new 03bbad59 Bean: Use properties instead of property with key and value - AWS S3 Source
     new afa3741b Bean: Use properties instead of property with key and value - AWS S3 Source
     new 4089bbdd Bean: Use properties instead of property with key and value - AWS SQS Source
     new f7ca9425 Bean: Use properties instead of property with key and value - AWS SQS Source

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (26884583)
            \
             N -- N -- N   refs/heads/1475 (f7ca9425)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 10 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.


Summary of changes:
 kamelets/aws-kinesis-source.kamelet.yaml                   | 14 +++++---------
 kamelets/aws-redshift-sink.kamelet.yaml                    | 14 +++++---------
 kamelets/aws-redshift-source.kamelet.yaml                  | 14 +++++---------
 kamelets/aws-s3-source.kamelet.yaml                        | 14 +++++---------
 kamelets/aws-sqs-source.kamelet.yaml                       | 14 +++++---------
 .../resources/kamelets/aws-kinesis-source.kamelet.yaml     | 14 +++++---------
 .../main/resources/kamelets/aws-redshift-sink.kamelet.yaml | 14 +++++---------
 .../resources/kamelets/aws-redshift-source.kamelet.yaml    | 14 +++++---------
 .../src/main/resources/kamelets/aws-s3-source.kamelet.yaml | 14 +++++---------
 .../main/resources/kamelets/aws-sqs-source.kamelet.yaml    | 14 +++++---------
 10 files changed, 50 insertions(+), 90 deletions(-)


[camel-kamelets] 01/10: Bean: Use properties instead of property with key and value - AWS Kinesis Source

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 a128cb9af94ac9ff108aa9fcb725ef67a611f183
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue May 23 13:38:01 2023 +0200

    Bean: Use properties instead of property with key and value - AWS Kinesis Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/aws-kinesis-source.kamelet.yaml | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/kamelets/aws-kinesis-source.kamelet.yaml b/kamelets/aws-kinesis-source.kamelet.yaml
index d5b2432e..3acd16bd 100644
--- a/kamelets/aws-kinesis-source.kamelet.yaml
+++ b/kamelets/aws-kinesis-source.kamelet.yaml
@@ -104,15 +104,11 @@ spec:
     beans:
       - name: duplicateHeaders
         type: "#class:org.apache.camel.kamelets.utils.headers.DuplicateNamingHeaders"
-        property:
-          - key: prefix
-            value: 'CamelAwsKinesis'
-          - key: renamingPrefix
-            value: 'aws.kinesis.'
-          - key: mode
-            value: 'filtering'
-          - key: selectedHeaders
-            value: 'CamelAwsKinesisPartitionKey,CamelAwsKinesisSequenceNumber'
+        properties:
+          prefix: 'CamelAwsKinesis'
+          renamingPrefix: 'aws.kinesis.'
+          mode: 'filtering'
+          selectedHeaders: 'CamelAwsKinesisPartitionKey,CamelAwsKinesisSequenceNumber'
     from:
       uri: aws2-kinesis:{{stream}}
       parameters:


[camel-kamelets] 04/10: Bean: Use properties instead of property with key and value - AWS Redshift 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 28fb6acfebc64146cddef35a4d19baaf37d535e2
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue May 23 13:49:28 2023 +0200

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

diff --git a/library/camel-kamelets/src/main/resources/kamelets/aws-redshift-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/aws-redshift-sink.kamelet.yaml
index a1e22215..08ec2a65 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/aws-redshift-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/aws-redshift-sink.kamelet.yaml
@@ -94,15 +94,11 @@ spec:
     beans:
       - name: dsBean
         type: "#class:org.apache.commons.dbcp2.BasicDataSource"
-        property:
-          - key: username
-            value: '{{username}}'
-          - key: password
-            value: '{{password}}'
-          - key: url
-            value: 'jdbc:redshift://{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'com.amazon.redshift.jdbc.Driver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:redshift://{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'com.amazon.redshift.jdbc.Driver'
     from:
       uri: "kamelet:source"
       steps:


[camel-kamelets] 08/10: Bean: Use properties instead of property with key and value - AWS S3 Source

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 afa3741b936163bdbc2923ce9608991a6fc7f29b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue May 23 14:14:52 2023 +0200

    Bean: Use properties instead of property with key and value - AWS S3 Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/aws-s3-source.kamelet.yaml | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/aws-s3-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/aws-s3-source.kamelet.yaml
index 994c8ae3..044b1d4f 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/aws-s3-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/aws-s3-source.kamelet.yaml
@@ -110,15 +110,11 @@ spec:
     beans:
       - name: renameHeaders
         type: "#class:org.apache.camel.kamelets.utils.headers.DuplicateNamingHeaders"
-        property:
-          - key: prefix
-            value: 'CamelAwsS3'
-          - key: renamingPrefix
-            value: 'aws.s3.'
-          - key: mode
-            value: 'filtering'
-          - key: selectedHeaders
-            value: 'CamelAwsS3Key,CamelAwsS3BucketName'
+        properties:
+          prefix: 'CamelAwsS3'
+          renamingPrefix: 'aws.s3.'
+          mode: 'filtering'
+          selectedHeaders: 'CamelAwsS3Key,CamelAwsS3BucketName'
     from:
       uri: "aws2-s3:{{bucketNameOrArn}}"
       parameters:


[camel-kamelets] 09/10: Bean: Use properties instead of property with key and value - AWS SQS Source

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 4089bbddfdd16143a0706d7350726fef815323b2
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue May 23 14:24:11 2023 +0200

    Bean: Use properties instead of property with key and value - AWS SQS Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/aws-sqs-source.kamelet.yaml | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/kamelets/aws-sqs-source.kamelet.yaml b/kamelets/aws-sqs-source.kamelet.yaml
index 9f6a2dae..f7736526 100644
--- a/kamelets/aws-sqs-source.kamelet.yaml
+++ b/kamelets/aws-sqs-source.kamelet.yaml
@@ -148,15 +148,11 @@ spec:
     beans:
       - name: renameHeaders
         type: "#class:org.apache.camel.kamelets.utils.headers.DuplicateNamingHeaders"
-        property:
-          - key: prefix
-            value: 'CamelAwsSqs'
-          - key: renamingPrefix
-            value: 'aws.sqs.'
-          - key: mode
-            value: 'filtering'
-          - key: selectedHeaders
-            value: 'CamelAwsSqsReceiptHandle,CamelAwsSqsMessageId'
+        properties:
+          prefix: 'CamelAwsSqs'
+          renamingPrefix: 'aws.sqs.'
+          mode: 'filtering'
+          selectedHeaders: 'CamelAwsSqsReceiptHandle,CamelAwsSqsMessageId'
     from:
       uri: "aws2-sqs:{{queueNameOrArn}}"
       parameters:


[camel-kamelets] 06/10: Bean: Use properties instead of property with key and value - AWS Redshift Source

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 04a5dd6c3b01570c6dea6045804fa18cc319c480
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue May 23 13:57:22 2023 +0200

    Bean: Use properties instead of property with key and value - AWS Redshift Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../resources/kamelets/aws-redshift-source.kamelet.yaml    | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/aws-redshift-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/aws-redshift-source.kamelet.yaml
index 3be9fa3f..d31ff4d0 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/aws-redshift-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/aws-redshift-source.kamelet.yaml
@@ -96,15 +96,11 @@ spec:
     beans:
       - name: dsBean
         type: "#class:org.apache.commons.dbcp2.BasicDataSource"
-        property:
-          - key: username
-            value: '{{username}}'
-          - key: password
-            value: '{{password}}'
-          - key: url
-            value: 'jdbc:redshift://{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'com.amazon.redshift.jdbc.Driver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:redshift://{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'com.amazon.redshift.jdbc.Driver'
     from:
       uri: "sql:{{query}}"
       parameters:


[camel-kamelets] 03/10: Bean: Use properties instead of property with key and value - AWS Redshift 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 d13154c55681598ad5687daf20ff2976513c2712
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue May 23 13:48:47 2023 +0200

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

diff --git a/kamelets/aws-redshift-sink.kamelet.yaml b/kamelets/aws-redshift-sink.kamelet.yaml
index a1e22215..08ec2a65 100644
--- a/kamelets/aws-redshift-sink.kamelet.yaml
+++ b/kamelets/aws-redshift-sink.kamelet.yaml
@@ -94,15 +94,11 @@ spec:
     beans:
       - name: dsBean
         type: "#class:org.apache.commons.dbcp2.BasicDataSource"
-        property:
-          - key: username
-            value: '{{username}}'
-          - key: password
-            value: '{{password}}'
-          - key: url
-            value: 'jdbc:redshift://{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'com.amazon.redshift.jdbc.Driver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:redshift://{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'com.amazon.redshift.jdbc.Driver'
     from:
       uri: "kamelet:source"
       steps:


[camel-kamelets] 05/10: Bean: Use properties instead of property with key and value - AWS Redshift Source

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 480cb0dee38f0a2197caaed66d8dc032ebd86678
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue May 23 13:56:51 2023 +0200

    Bean: Use properties instead of property with key and value - AWS Redshift Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/aws-redshift-source.kamelet.yaml | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/kamelets/aws-redshift-source.kamelet.yaml b/kamelets/aws-redshift-source.kamelet.yaml
index 3be9fa3f..d31ff4d0 100644
--- a/kamelets/aws-redshift-source.kamelet.yaml
+++ b/kamelets/aws-redshift-source.kamelet.yaml
@@ -96,15 +96,11 @@ spec:
     beans:
       - name: dsBean
         type: "#class:org.apache.commons.dbcp2.BasicDataSource"
-        property:
-          - key: username
-            value: '{{username}}'
-          - key: password
-            value: '{{password}}'
-          - key: url
-            value: 'jdbc:redshift://{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'com.amazon.redshift.jdbc.Driver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:redshift://{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'com.amazon.redshift.jdbc.Driver'
     from:
       uri: "sql:{{query}}"
       parameters:


[camel-kamelets] 02/10: Bean: Use properties instead of property with key and value - AWS Kinesis Source

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 3c1b67542757c8796acabf9a6087c2cea006b3e8
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue May 23 13:43:07 2023 +0200

    Bean: Use properties instead of property with key and value - AWS Kinesis Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../resources/kamelets/aws-kinesis-source.kamelet.yaml     | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/aws-kinesis-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/aws-kinesis-source.kamelet.yaml
index d5b2432e..3acd16bd 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/aws-kinesis-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/aws-kinesis-source.kamelet.yaml
@@ -104,15 +104,11 @@ spec:
     beans:
       - name: duplicateHeaders
         type: "#class:org.apache.camel.kamelets.utils.headers.DuplicateNamingHeaders"
-        property:
-          - key: prefix
-            value: 'CamelAwsKinesis'
-          - key: renamingPrefix
-            value: 'aws.kinesis.'
-          - key: mode
-            value: 'filtering'
-          - key: selectedHeaders
-            value: 'CamelAwsKinesisPartitionKey,CamelAwsKinesisSequenceNumber'
+        properties:
+          prefix: 'CamelAwsKinesis'
+          renamingPrefix: 'aws.kinesis.'
+          mode: 'filtering'
+          selectedHeaders: 'CamelAwsKinesisPartitionKey,CamelAwsKinesisSequenceNumber'
     from:
       uri: aws2-kinesis:{{stream}}
       parameters:


[camel-kamelets] 10/10: Bean: Use properties instead of property with key and value - AWS SQS Source

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 f7ca942542f717ea393df4e238f9eb182abb5a16
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue May 23 14:24:51 2023 +0200

    Bean: Use properties instead of property with key and value - AWS SQS Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../main/resources/kamelets/aws-sqs-source.kamelet.yaml    | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/aws-sqs-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/aws-sqs-source.kamelet.yaml
index 9f6a2dae..f7736526 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/aws-sqs-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/aws-sqs-source.kamelet.yaml
@@ -148,15 +148,11 @@ spec:
     beans:
       - name: renameHeaders
         type: "#class:org.apache.camel.kamelets.utils.headers.DuplicateNamingHeaders"
-        property:
-          - key: prefix
-            value: 'CamelAwsSqs'
-          - key: renamingPrefix
-            value: 'aws.sqs.'
-          - key: mode
-            value: 'filtering'
-          - key: selectedHeaders
-            value: 'CamelAwsSqsReceiptHandle,CamelAwsSqsMessageId'
+        properties:
+          prefix: 'CamelAwsSqs'
+          renamingPrefix: 'aws.sqs.'
+          mode: 'filtering'
+          selectedHeaders: 'CamelAwsSqsReceiptHandle,CamelAwsSqsMessageId'
     from:
       uri: "aws2-sqs:{{queueNameOrArn}}"
       parameters:


[camel-kamelets] 07/10: Bean: Use properties instead of property with key and value - AWS S3 Source

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 03bbad5992cdd7f59af93341b72e6a324601736b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue May 23 14:13:35 2023 +0200

    Bean: Use properties instead of property with key and value - AWS S3 Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/aws-s3-source.kamelet.yaml | 14 +++++---------
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/kamelets/aws-s3-source.kamelet.yaml b/kamelets/aws-s3-source.kamelet.yaml
index 994c8ae3..044b1d4f 100644
--- a/kamelets/aws-s3-source.kamelet.yaml
+++ b/kamelets/aws-s3-source.kamelet.yaml
@@ -110,15 +110,11 @@ spec:
     beans:
       - name: renameHeaders
         type: "#class:org.apache.camel.kamelets.utils.headers.DuplicateNamingHeaders"
-        property:
-          - key: prefix
-            value: 'CamelAwsS3'
-          - key: renamingPrefix
-            value: 'aws.s3.'
-          - key: mode
-            value: 'filtering'
-          - key: selectedHeaders
-            value: 'CamelAwsS3Key,CamelAwsS3BucketName'
+        properties:
+          prefix: 'CamelAwsS3'
+          renamingPrefix: 'aws.s3.'
+          mode: 'filtering'
+          selectedHeaders: 'CamelAwsS3Key,CamelAwsS3BucketName'
     from:
       uri: "aws2-s3:{{bucketNameOrArn}}"
       parameters: