This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch azure-storage-blob-sink-source in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit 4f7066f93bd757dcf01f6a48b018b7814f1c7b1d 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 07f18fbf..0a720ede 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"
