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 ed33085dae76b4c13619827b925c3afbd781be58 Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Feb 7 14:17:28 2023 +0100 Convert all the parameters with multiple possible values to enum - Azure Storage Blob Source Signed-off-by: Andrea Cosentino <[email protected]> --- .../src/main/resources/kamelets/azure-storage-blob-source.kamelet.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-source.kamelet.yaml index 95225f78..052c2a70 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/azure-storage-blob-source.kamelet.yaml @@ -60,9 +60,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"] delay: title: Delay description: The number of milliseconds before the next poll of the selected blob.
