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 2022/03/09 12:17:09 UTC

[camel-kamelets] branch main updated (f8a9a56 -> 941080b)

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 f8a9a56  Azure Service bus Sink Kamelet: added in data shape
     new 12a37ba  Azure Servicebus Source Kamelet: add serviceBusReceiveMode option
     new 03cc93e  Azure Servicebus Source Kamelet: add serviceBusReceiveMode option
     new 830dafc  Azure Servicebus Source Kamelet: add serviceBusReceiveMode option
     new 941080b  Azure Servicebus Source Kamelet: add serviceBusReceiveMode option

The 4 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/azure-servicebus-source.kamelet.yaml                       | 6 ++++++
 .../main/resources/kamelets/azure-servicebus-source.kamelet.yaml    | 6 ++++++
 2 files changed, 12 insertions(+)

[camel-kamelets] 01/04: Azure Servicebus Source Kamelet: add serviceBusReceiveMode option

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 12a37ba346aeaba562234b5bdb4e28736fc264ea
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Mar 9 13:09:35 2022 +0100

    Azure Servicebus Source Kamelet: add serviceBusReceiveMode option
---
 kamelets/azure-servicebus-source.kamelet.yaml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/kamelets/azure-servicebus-source.kamelet.yaml b/kamelets/azure-servicebus-source.kamelet.yaml
index fe438fc..257b298 100644
--- a/kamelets/azure-servicebus-source.kamelet.yaml
+++ b/kamelets/azure-servicebus-source.kamelet.yaml
@@ -49,6 +49,11 @@ spec:
         x-descriptors:
         - urn:alm:descriptor:com.tectonic.ui:password
         - urn:camel:group:credentials
+      serviceBusReceiveMode:
+        title: Servicebus Receive mode
+        description: Sets the receive mode for the receiver, possible values are PEEK_LOCK and RECEIVE_AND_DELETE
+        type: String
+        default: PEEK_LOCK
   types:
     out:
       mediaType: application/octet-stream
@@ -61,6 +66,7 @@ spec:
       uri: "azure-servicebus:{{topicOrQueueName}}"
       parameters:
         connectionString: "{{connectionString}}"
+        serviceBusReceiveMode: "{{serviceBusReceiveMode}}"
       steps:
       - to: "kamelet:sink"
 

[camel-kamelets] 04/04: Azure Servicebus Source Kamelet: add serviceBusReceiveMode option

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 941080b9cfc9c13dd9dc09c95d7e61243ca35c5a
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Mar 9 13:14:16 2022 +0100

    Azure Servicebus Source Kamelet: add serviceBusReceiveMode option
---
 .../src/main/resources/kamelets/azure-servicebus-source.kamelet.yaml    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/azure-servicebus-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/azure-servicebus-source.kamelet.yaml
index 257b298..aafaf72 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/azure-servicebus-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/azure-servicebus-source.kamelet.yaml
@@ -50,7 +50,7 @@ spec:
         - urn:alm:descriptor:com.tectonic.ui:password
         - urn:camel:group:credentials
       serviceBusReceiveMode:
-        title: Servicebus Receive mode
+        title: Servicebus Receive Mode
         description: Sets the receive mode for the receiver, possible values are PEEK_LOCK and RECEIVE_AND_DELETE
         type: String
         default: PEEK_LOCK

[camel-kamelets] 02/04: Azure Servicebus Source Kamelet: add serviceBusReceiveMode option

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 03cc93eaaec1c91d9b08ba85c2f7aa84efd08e84
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Mar 9 13:11:45 2022 +0100

    Azure Servicebus Source Kamelet: add serviceBusReceiveMode option
---
 .../main/resources/kamelets/azure-servicebus-source.kamelet.yaml    | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/azure-servicebus-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/azure-servicebus-source.kamelet.yaml
index fe438fc..257b298 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/azure-servicebus-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/azure-servicebus-source.kamelet.yaml
@@ -49,6 +49,11 @@ spec:
         x-descriptors:
         - urn:alm:descriptor:com.tectonic.ui:password
         - urn:camel:group:credentials
+      serviceBusReceiveMode:
+        title: Servicebus Receive mode
+        description: Sets the receive mode for the receiver, possible values are PEEK_LOCK and RECEIVE_AND_DELETE
+        type: String
+        default: PEEK_LOCK
   types:
     out:
       mediaType: application/octet-stream
@@ -61,6 +66,7 @@ spec:
       uri: "azure-servicebus:{{topicOrQueueName}}"
       parameters:
         connectionString: "{{connectionString}}"
+        serviceBusReceiveMode: "{{serviceBusReceiveMode}}"
       steps:
       - to: "kamelet:sink"
 

[camel-kamelets] 03/04: Azure Servicebus Source Kamelet: add serviceBusReceiveMode option

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 830dafcffe440de79ce3a37b0cc856727cc824b7
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Mar 9 13:13:47 2022 +0100

    Azure Servicebus Source Kamelet: add serviceBusReceiveMode option
---
 kamelets/azure-servicebus-source.kamelet.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kamelets/azure-servicebus-source.kamelet.yaml b/kamelets/azure-servicebus-source.kamelet.yaml
index 257b298..aafaf72 100644
--- a/kamelets/azure-servicebus-source.kamelet.yaml
+++ b/kamelets/azure-servicebus-source.kamelet.yaml
@@ -50,7 +50,7 @@ spec:
         - urn:alm:descriptor:com.tectonic.ui:password
         - urn:camel:group:credentials
       serviceBusReceiveMode:
-        title: Servicebus Receive mode
+        title: Servicebus Receive Mode
         description: Sets the receive mode for the receiver, possible values are PEEK_LOCK and RECEIVE_AND_DELETE
         type: String
         default: PEEK_LOCK