This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit 9098ac5734d88eaa661a2f96327781c1813a99e6 Author: Andrea Cosentino <[email protected]> AuthorDate: Thu Mar 23 11:15:28 2023 +0100 Azure Storage Blob Sink: Remove operation parameter, since the kamelet has been developed just for uploadBlockBlob operation Signed-off-by: Andrea Cosentino <[email protected]> --- .../main/resources/kamelets/azure-storage-blob-sink.kamelet.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) 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 b2c9242e..3c5f189f 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 @@ -59,11 +59,6 @@ spec: x-descriptors: - urn:alm:descriptor:com.tectonic.ui:password - urn:camel:group:credentials - operation: - title: Operation name - description: The operation to perform. - type: string - default: uploadBlockBlob dependencies: - "camel:core" - "camel:azure-storage-blob" @@ -93,5 +88,5 @@ spec: uri: "azure-storage-blob://{{accountName}}/{{containerName}}" parameters: accessKey: "{{accessKey}}" - operation: "{{operation}}" + operation: "uploadBlockBlob" credentialType: "SHARED_ACCOUNT_KEY"
