This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch azure-storage-blob-sink-source-3.20.x in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit d85a05ca9f7318a9c417233e7a2fe8835ec3815f Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Feb 7 14:16:18 2023 +0100 Convert all the parameters with multiple possible values to enum - Azure Storage Blob Sink Signed-off-by: Andrea Cosentino <[email protected]> --- .../src/main/resources/kamelets/azure-storage-blob-sink.kamelet.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-sink.kamelet.yaml index 5fdc4b5b..c72d10a2 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-sink.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-sink.kamelet.yaml @@ -65,9 +65,10 @@ spec: default: uploadBlockBlob 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"] dependencies: - "camel:core" - "camel:azure-storage-blob"
