Skip to content

Commit

Permalink
Convert all the parameters with multiple possible values to enum - Az…
Browse files Browse the repository at this point in the history
…ure Storage Blob CDC

Signed-off-by: Andrea Cosentino <ancosen@gmail.com>
  • Loading branch information
oscerd committed Feb 7, 2023
1 parent 02c13b2 commit c5688b9
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ spec:
description: Sets the receive mode for the receiver, possible values are PEEK_LOCK and RECEIVE_AND_DELETE
type: string
default: RECEIVE_AND_DELETE
enum: ["RECEIVE_AND_DELETE", "PEEK_LOCK"]
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.
Expand All @@ -85,9 +86,10 @@ spec:
- urn:camel:group:credentials
credentialType:
title: Credential Type
description: Determines the credential strategy to adopt. Possible values are SHARED_ACCOUNT_KEY, SHARED_KEY_CREDENTIAL and AZURE_IDENTITY
description: Determines the credential strategy to adopt.
type: string
default: SHARED_ACCOUNT_KEY
enum: ["SHARED_ACCOUNT_KEY", "SHARED_KEY_CREDENTIAL", "AZURE_IDENTITY"]
getBlob:
title: Get Object in Container
description: >-
Expand Down

0 comments on commit c5688b9

Please sign in to comment.