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/25 13:53:36 UTC

[camel-kamelets] branch main updated (a49219a4 -> 2416fc81)

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

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


    from a49219a4 Bean: Use properties instead of property with key and value - Kafka SSL Source
     new 360793db Bean: Use properties instead of property with key and value - MariaDB Source
     new d472a29e Bean: Use properties instead of property with key and value - MariaDB Source
     new 63230db5 Bean: Use properties instead of property with key and value - MariaDB Sink
     new ae9ac2e2 Bean: Use properties instead of property with key and value - MariaDB Sink
     new ba22d2a6 Bean: Use properties instead of property with key and value - MySQL Source
     new 89dd1bec Bean: Use properties instead of property with key and value - MySQL Source
     new 7e858f10 Bean: Use properties instead of property with key and value - MySQL Sink
     new 3ab51718 Bean: Use properties instead of property with key and value - MySQL Sink
     new 6ba566a1 Bean: Use properties instead of property with key and value - Oracle Source
     new 386ddf04 Bean: Use properties instead of property with key and value - Oracle Source
     new 0e5f5062 Bean: Use properties instead of property with key and value - Oracle Sink
     new 177f815a Bean: Use properties instead of property with key and value - Oracle Sink
     new 5eb5b955 Bean: Use properties instead of property with key and value - PostgreSQL Source
     new df64f5eb Bean: Use properties instead of property with key and value - PostgreSQL Source
     new be6f4da5 Bean: Use properties instead of property with key and value - PostgreSQL Sink
     new 3790021b Bean: Use properties instead of property with key and value - PostgreSQL Sink
     new 82554c1c Bean: Use properties instead of property with key and value - SQLServer Source
     new 94078e46 Bean: Use properties instead of property with key and value - SQLServer Source
     new db6ee4db Bean: Use properties instead of property with key and value - SQLServer Sink
     new 2416fc81 Bean: Use properties instead of property with key and value - SQLServer Sink

The 20 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/mariadb-sink.kamelet.yaml                         | 14 +++++---------
 kamelets/mariadb-source.kamelet.yaml                       | 14 +++++---------
 kamelets/mysql-sink.kamelet.yaml                           | 14 +++++---------
 kamelets/mysql-source.kamelet.yaml                         | 14 +++++---------
 kamelets/oracle-database-sink.kamelet.yaml                 | 14 +++++---------
 kamelets/oracle-database-source.kamelet.yaml               | 14 +++++---------
 kamelets/postgresql-sink.kamelet.yaml                      | 14 +++++---------
 kamelets/postgresql-source.kamelet.yaml                    | 14 +++++---------
 kamelets/sqlserver-sink.kamelet.yaml                       | 14 +++++---------
 kamelets/sqlserver-source.kamelet.yaml                     | 14 +++++---------
 .../src/main/resources/kamelets/mariadb-sink.kamelet.yaml  | 14 +++++---------
 .../main/resources/kamelets/mariadb-source.kamelet.yaml    | 14 +++++---------
 .../src/main/resources/kamelets/mysql-sink.kamelet.yaml    | 14 +++++---------
 .../src/main/resources/kamelets/mysql-source.kamelet.yaml  | 14 +++++---------
 .../resources/kamelets/oracle-database-sink.kamelet.yaml   | 14 +++++---------
 .../resources/kamelets/oracle-database-source.kamelet.yaml | 14 +++++---------
 .../main/resources/kamelets/postgresql-sink.kamelet.yaml   | 14 +++++---------
 .../main/resources/kamelets/postgresql-source.kamelet.yaml | 14 +++++---------
 .../main/resources/kamelets/sqlserver-sink.kamelet.yaml    | 14 +++++---------
 .../main/resources/kamelets/sqlserver-source.kamelet.yaml  | 14 +++++---------
 20 files changed, 100 insertions(+), 180 deletions(-)


[camel-kamelets] 05/20: Bean: Use properties instead of property with key and value - MySQL Source

Posted by ac...@apache.org.
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-kamelets.git

commit ba22d2a6626d36ae3848483c17e8d3d6e4e9eb89
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:16:53 2023 +0200

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

diff --git a/kamelets/mysql-source.kamelet.yaml b/kamelets/mysql-source.kamelet.yaml
index 31fd5624..e917b1c3 100644
--- a/kamelets/mysql-source.kamelet.yaml
+++ b/kamelets/mysql-source.kamelet.yaml
@@ -99,15 +99,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:mysql://{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'com.mysql.cj.jdbc.Driver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:mysql://{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'com.mysql.cj.jdbc.Driver'
     from:
       uri: "sql:{{query}}"
       parameters:


[camel-kamelets] 01/20: Bean: Use properties instead of property with key and value - MariaDB Source

Posted by ac...@apache.org.
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-kamelets.git

commit 360793db05ccfdd5d1083e5ea05f02ec8345ff52
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:10:53 2023 +0200

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

diff --git a/kamelets/mariadb-source.kamelet.yaml b/kamelets/mariadb-source.kamelet.yaml
index 0516d4c8..18332582 100644
--- a/kamelets/mariadb-source.kamelet.yaml
+++ b/kamelets/mariadb-source.kamelet.yaml
@@ -99,15 +99,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:mariadb://{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'org.mariadb.jdbc.Driver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:mariadb://{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'org.mariadb.jdbc.Driver'
     from:
       uri: "sql:{{query}}"
       parameters:


[camel-kamelets] 07/20: Bean: Use properties instead of property with key and value - MySQL Sink

Posted by ac...@apache.org.
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-kamelets.git

commit 7e858f105efca01a6b00e4a50b7c4500bb0228f2
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:18:16 2023 +0200

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

diff --git a/kamelets/mysql-sink.kamelet.yaml b/kamelets/mysql-sink.kamelet.yaml
index 90ea5ad5..29f4be2a 100644
--- a/kamelets/mysql-sink.kamelet.yaml
+++ b/kamelets/mysql-sink.kamelet.yaml
@@ -97,15 +97,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:mysql://{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'com.mysql.cj.jdbc.Driver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:mysql://{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'com.mysql.cj.jdbc.Driver'
     from:
       uri: "kamelet:source"
       steps:


[camel-kamelets] 17/20: Bean: Use properties instead of property with key and value - SQLServer Source

Posted by ac...@apache.org.
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-kamelets.git

commit 82554c1cb7fb537135974dd885be9af7f9907f90
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:32:07 2023 +0200

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

diff --git a/kamelets/sqlserver-source.kamelet.yaml b/kamelets/sqlserver-source.kamelet.yaml
index 2fd5184c..ba114ae4 100644
--- a/kamelets/sqlserver-source.kamelet.yaml
+++ b/kamelets/sqlserver-source.kamelet.yaml
@@ -113,15 +113,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:sqlserver://{{serverName}}:{{serverPort}};databaseName={{databaseName}};encrypt={{encrypt}};trustServerCertificate={{trustServerCertificate}};'
-          - key: driverClassName
-            value: 'com.microsoft.sqlserver.jdbc.SQLServerDriver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:sqlserver://{{serverName}}:{{serverPort}};databaseName={{databaseName}};encrypt={{encrypt}};trustServerCertificate={{trustServerCertificate}};'
+          driverClassName: 'com.microsoft.sqlserver.jdbc.SQLServerDriver'
     from:
       uri: "sql:{{query}}"
       parameters:


[camel-kamelets] 16/20: Bean: Use properties instead of property with key and value - PostgreSQL Sink

Posted by ac...@apache.org.
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-kamelets.git

commit 3790021b56ed243d5195ae197dcd5a1d56c4776b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:28:33 2023 +0200

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

diff --git a/library/camel-kamelets/src/main/resources/kamelets/postgresql-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/postgresql-sink.kamelet.yaml
index a0500e18..2df15ee8 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/postgresql-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/postgresql-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:postgresql://{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'org.postgresql.Driver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:postgresql://{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'org.postgresql.Driver'
     from:
       uri: "kamelet:source"
       steps:


[camel-kamelets] 06/20: Bean: Use properties instead of property with key and value - MySQL Source

Posted by ac...@apache.org.
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-kamelets.git

commit 89dd1beccff566b5bca949e710365425cbfc60ee
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:17:35 2023 +0200

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

diff --git a/library/camel-kamelets/src/main/resources/kamelets/mysql-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/mysql-source.kamelet.yaml
index 31fd5624..e917b1c3 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/mysql-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/mysql-source.kamelet.yaml
@@ -99,15 +99,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:mysql://{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'com.mysql.cj.jdbc.Driver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:mysql://{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'com.mysql.cj.jdbc.Driver'
     from:
       uri: "sql:{{query}}"
       parameters:


[camel-kamelets] 02/20: Bean: Use properties instead of property with key and value - MariaDB Source

Posted by ac...@apache.org.
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-kamelets.git

commit d472a29e60039df4b2d07e5d5f9f9a5ace9d4cf2
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:13:13 2023 +0200

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

diff --git a/library/camel-kamelets/src/main/resources/kamelets/mariadb-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/mariadb-source.kamelet.yaml
index 0516d4c8..18332582 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/mariadb-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/mariadb-source.kamelet.yaml
@@ -99,15 +99,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:mariadb://{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'org.mariadb.jdbc.Driver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:mariadb://{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'org.mariadb.jdbc.Driver'
     from:
       uri: "sql:{{query}}"
       parameters:


[camel-kamelets] 09/20: Bean: Use properties instead of property with key and value - Oracle Source

Posted by ac...@apache.org.
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-kamelets.git

commit 6ba566a1252b8ae1afaa9a500e03a4bb65aa88b5
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:20:22 2023 +0200

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

diff --git a/kamelets/oracle-database-source.kamelet.yaml b/kamelets/oracle-database-source.kamelet.yaml
index e9533f28..ec9349b9 100644
--- a/kamelets/oracle-database-source.kamelet.yaml
+++ b/kamelets/oracle-database-source.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:oracle:thin:@{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'oracle.jdbc.driver.OracleDriver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:oracle:thin:@{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'oracle.jdbc.driver.OracleDriver'
     from:
       uri: "sql:{{query}}"
       parameters:


[camel-kamelets] 03/20: Bean: Use properties instead of property with key and value - MariaDB Sink

Posted by ac...@apache.org.
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-kamelets.git

commit 63230db52412668cd9915c1863902eba66891466
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:14:38 2023 +0200

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

diff --git a/kamelets/mariadb-sink.kamelet.yaml b/kamelets/mariadb-sink.kamelet.yaml
index 22665090..b759eb5a 100644
--- a/kamelets/mariadb-sink.kamelet.yaml
+++ b/kamelets/mariadb-sink.kamelet.yaml
@@ -97,15 +97,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:mariadb://{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'org.mariadb.jdbc.Driver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:mariadb://{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'org.mariadb.jdbc.Driver'
     from:
       uri: "kamelet:source"
       steps:


[camel-kamelets] 14/20: Bean: Use properties instead of property with key and value - PostgreSQL Source

Posted by ac...@apache.org.
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-kamelets.git

commit df64f5eb49f244d1c21825be73e7659af43e9fd7
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:26:12 2023 +0200

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

diff --git a/library/camel-kamelets/src/main/resources/kamelets/postgresql-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/postgresql-source.kamelet.yaml
index f4ebe6ef..eed54018 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/postgresql-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/postgresql-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:postgresql://{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'org.postgresql.Driver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:postgresql://{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'org.postgresql.Driver'
     from:
       uri: "sql:{{query}}"
       parameters:


[camel-kamelets] 11/20: Bean: Use properties instead of property with key and value - Oracle Sink

Posted by ac...@apache.org.
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-kamelets.git

commit 0e5f50626ba8231f0649b911c4ee02c130c83c26
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:22:50 2023 +0200

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

diff --git a/kamelets/oracle-database-sink.kamelet.yaml b/kamelets/oracle-database-sink.kamelet.yaml
index 679fde72..d0a79939 100644
--- a/kamelets/oracle-database-sink.kamelet.yaml
+++ b/kamelets/oracle-database-sink.kamelet.yaml
@@ -97,15 +97,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:oracle:thin:@{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'oracle.jdbc.driver.OracleDriver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:oracle:thin:@{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'oracle.jdbc.driver.OracleDriver'
     from:
       uri: "kamelet:source"
       steps:


[camel-kamelets] 15/20: Bean: Use properties instead of property with key and value - PostgreSQL Sink

Posted by ac...@apache.org.
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-kamelets.git

commit be6f4da5eda64ba905bcfcafac30206f4e88cf54
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:26:45 2023 +0200

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

diff --git a/kamelets/postgresql-sink.kamelet.yaml b/kamelets/postgresql-sink.kamelet.yaml
index a0500e18..2df15ee8 100644
--- a/kamelets/postgresql-sink.kamelet.yaml
+++ b/kamelets/postgresql-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:postgresql://{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'org.postgresql.Driver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:postgresql://{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'org.postgresql.Driver'
     from:
       uri: "kamelet:source"
       steps:


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

Posted by ac...@apache.org.
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-kamelets.git

commit 386ddf0475c30186405383865b6a5b92aec5054c
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:22:16 2023 +0200

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

diff --git a/library/camel-kamelets/src/main/resources/kamelets/oracle-database-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/oracle-database-source.kamelet.yaml
index e9533f28..ec9349b9 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/oracle-database-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/oracle-database-source.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:oracle:thin:@{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'oracle.jdbc.driver.OracleDriver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:oracle:thin:@{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'oracle.jdbc.driver.OracleDriver'
     from:
       uri: "sql:{{query}}"
       parameters:


[camel-kamelets] 18/20: Bean: Use properties instead of property with key and value - SQLServer Source

Posted by ac...@apache.org.
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-kamelets.git

commit 94078e46fd7cfd7b3b9e9b4be0ba744fa80869c2
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:32:50 2023 +0200

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

diff --git a/library/camel-kamelets/src/main/resources/kamelets/sqlserver-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/sqlserver-source.kamelet.yaml
index 2fd5184c..ba114ae4 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/sqlserver-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/sqlserver-source.kamelet.yaml
@@ -113,15 +113,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:sqlserver://{{serverName}}:{{serverPort}};databaseName={{databaseName}};encrypt={{encrypt}};trustServerCertificate={{trustServerCertificate}};'
-          - key: driverClassName
-            value: 'com.microsoft.sqlserver.jdbc.SQLServerDriver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:sqlserver://{{serverName}}:{{serverPort}};databaseName={{databaseName}};encrypt={{encrypt}};trustServerCertificate={{trustServerCertificate}};'
+          driverClassName: 'com.microsoft.sqlserver.jdbc.SQLServerDriver'
     from:
       uri: "sql:{{query}}"
       parameters:


[camel-kamelets] 12/20: Bean: Use properties instead of property with key and value - Oracle Sink

Posted by ac...@apache.org.
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-kamelets.git

commit 177f815a5385730f376edb90635e511e00b9b53c
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:23:25 2023 +0200

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

diff --git a/library/camel-kamelets/src/main/resources/kamelets/oracle-database-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/oracle-database-sink.kamelet.yaml
index 679fde72..d0a79939 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/oracle-database-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/oracle-database-sink.kamelet.yaml
@@ -97,15 +97,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:oracle:thin:@{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'oracle.jdbc.driver.OracleDriver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:oracle:thin:@{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'oracle.jdbc.driver.OracleDriver'
     from:
       uri: "kamelet:source"
       steps:


[camel-kamelets] 08/20: Bean: Use properties instead of property with key and value - MySQL Sink

Posted by ac...@apache.org.
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-kamelets.git

commit 3ab5171881e35a95371410adfc9b28dc7c78d4dc
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:18:46 2023 +0200

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

diff --git a/library/camel-kamelets/src/main/resources/kamelets/mysql-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/mysql-sink.kamelet.yaml
index 90ea5ad5..29f4be2a 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/mysql-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/mysql-sink.kamelet.yaml
@@ -97,15 +97,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:mysql://{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'com.mysql.cj.jdbc.Driver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:mysql://{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'com.mysql.cj.jdbc.Driver'
     from:
       uri: "kamelet:source"
       steps:


[camel-kamelets] 20/20: Bean: Use properties instead of property with key and value - SQLServer Sink

Posted by ac...@apache.org.
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-kamelets.git

commit 2416fc81a1a87f65461bac84328c75433d195e6f
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:35:26 2023 +0200

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

diff --git a/library/camel-kamelets/src/main/resources/kamelets/sqlserver-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/sqlserver-sink.kamelet.yaml
index 163d615e..13e5865a 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/sqlserver-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/sqlserver-sink.kamelet.yaml
@@ -111,15 +111,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:sqlserver://{{serverName}}:{{serverPort}};databaseName={{databaseName}};encrypt={{encrypt}};trustServerCertificate={{trustServerCertificate}};'
-          - key: driverClassName
-            value: 'com.microsoft.sqlserver.jdbc.SQLServerDriver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:sqlserver://{{serverName}}:{{serverPort}};databaseName={{databaseName}};encrypt={{encrypt}};trustServerCertificate={{trustServerCertificate}};'
+          driverClassName: 'com.microsoft.sqlserver.jdbc.SQLServerDriver'
     from:
       uri: "kamelet:source"
       steps:


[camel-kamelets] 19/20: Bean: Use properties instead of property with key and value - SQLServer Sink

Posted by ac...@apache.org.
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-kamelets.git

commit db6ee4db6780a91d9361b9de812405d0ad56e00a
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:33:22 2023 +0200

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

diff --git a/kamelets/sqlserver-sink.kamelet.yaml b/kamelets/sqlserver-sink.kamelet.yaml
index 163d615e..13e5865a 100644
--- a/kamelets/sqlserver-sink.kamelet.yaml
+++ b/kamelets/sqlserver-sink.kamelet.yaml
@@ -111,15 +111,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:sqlserver://{{serverName}}:{{serverPort}};databaseName={{databaseName}};encrypt={{encrypt}};trustServerCertificate={{trustServerCertificate}};'
-          - key: driverClassName
-            value: 'com.microsoft.sqlserver.jdbc.SQLServerDriver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:sqlserver://{{serverName}}:{{serverPort}};databaseName={{databaseName}};encrypt={{encrypt}};trustServerCertificate={{trustServerCertificate}};'
+          driverClassName: 'com.microsoft.sqlserver.jdbc.SQLServerDriver'
     from:
       uri: "kamelet:source"
       steps:


[camel-kamelets] 04/20: Bean: Use properties instead of property with key and value - MariaDB Sink

Posted by ac...@apache.org.
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-kamelets.git

commit ae9ac2e28c0adaef994a1df89f37a7645b5f71d4
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:15:31 2023 +0200

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

diff --git a/library/camel-kamelets/src/main/resources/kamelets/mariadb-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/mariadb-sink.kamelet.yaml
index 22665090..b759eb5a 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/mariadb-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/mariadb-sink.kamelet.yaml
@@ -97,15 +97,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:mariadb://{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'org.mariadb.jdbc.Driver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:mariadb://{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'org.mariadb.jdbc.Driver'
     from:
       uri: "kamelet:source"
       steps:


[camel-kamelets] 13/20: Bean: Use properties instead of property with key and value - PostgreSQL Source

Posted by ac...@apache.org.
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-kamelets.git

commit 5eb5b9554a2df9837cd55ec6c47ef676b0af298b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu May 25 15:24:29 2023 +0200

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

diff --git a/kamelets/postgresql-source.kamelet.yaml b/kamelets/postgresql-source.kamelet.yaml
index f4ebe6ef..eed54018 100644
--- a/kamelets/postgresql-source.kamelet.yaml
+++ b/kamelets/postgresql-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:postgresql://{{serverName}}:{{serverPort}}/{{databaseName}}'
-          - key: driverClassName
-            value: 'org.postgresql.Driver'
+        properties:
+          username: '{{username}}'
+          password: '{{password}}'
+          url: 'jdbc:postgresql://{{serverName}}:{{serverPort}}/{{databaseName}}'
+          driverClassName: 'org.postgresql.Driver'
     from:
       uri: "sql:{{query}}"
       parameters: