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 <[email protected]> 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 <[email protected]> --- 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.
