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/02/07 13:43:23 UTC

[camel-kamelets] branch 3.20.x updated (49cf7305 -> bb11a1f2)

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

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


    from 49cf7305 Convert all the parameters with multiple possible values to enum - Azure Storage Blob Source
     new 77119138 Convert all the parameters with multiple possible values to enum - Azure Servicebus Source
     new bb11a1f2 Convert all the parameters with multiple possible values to enum - Azure Servicebus Source

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.


Summary of changes:
 kamelets/azure-servicebus-source.kamelet.yaml                          | 3 ++-
 .../src/main/resources/kamelets/azure-servicebus-source.kamelet.yaml   | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)


[camel-kamelets] 01/02: Convert all the parameters with multiple possible values to enum - Azure Servicebus Source

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

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

commit 7711913858985a4babf7ae27eafa52f12cf77c7c
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Feb 7 14:36:23 2023 +0100

    Convert all the parameters with multiple possible values to enum - Azure Servicebus Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/azure-servicebus-source.kamelet.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/kamelets/azure-servicebus-source.kamelet.yaml b/kamelets/azure-servicebus-source.kamelet.yaml
index 54e1b37a..6401c687 100644
--- a/kamelets/azure-servicebus-source.kamelet.yaml
+++ b/kamelets/azure-servicebus-source.kamelet.yaml
@@ -53,9 +53,10 @@ spec:
         - 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
+        description: Sets the receive mode for the receiver
         type: string
         default: PEEK_LOCK
+        enum: ["PEEK_LOCK", "RECEIVE_AND_DELETE"]
       subscriptionName:
         title: Subscription Name
         description: Sets the name of the subscription in the topic to listen to. This parameter is mandatory in case of topic.


[camel-kamelets] 02/02: Convert all the parameters with multiple possible values to enum - Azure Servicebus Source

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

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

commit bb11a1f2be442df13d919b86c2c3ec22223bd099
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Feb 7 14:37:03 2023 +0100

    Convert all the parameters with multiple possible values to enum - Azure Servicebus Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/azure-servicebus-source.kamelet.yaml   | 3 ++-
 1 file changed, 2 insertions(+), 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 54e1b37a..6401c687 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
@@ -53,9 +53,10 @@ spec:
         - 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
+        description: Sets the receive mode for the receiver
         type: string
         default: PEEK_LOCK
+        enum: ["PEEK_LOCK", "RECEIVE_AND_DELETE"]
       subscriptionName:
         title: Subscription Name
         description: Sets the name of the subscription in the topic to listen to. This parameter is mandatory in case of topic.