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 24040e8128567a7394498629952d60cfda319cbd Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon Feb 12 13:16:38 2024 +0100 Added Azure Files Source Kamelet Signed-off-by: Andrea Cosentino <anco...@gmail.com> --- .../azure-storage-files-source.kamelet.yaml | 100 +++++++++++++++++++++ 1 file changed, 100 insertions(+) diff --git a/library/camel-kamelets/src/main/resources/kamelets/azure-storage-files-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/azure-storage-files-source.kamelet.yaml new file mode 100644 index 00000000..5beaf9e1 --- /dev/null +++ b/library/camel-kamelets/src/main/resources/kamelets/azure-storage-files-source.kamelet.yaml @@ -0,0 +1,100 @@ +# --------------------------------------------------------------------------- +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# --------------------------------------------------------------------------- + +apiVersion: camel.apache.org/v1 +kind: Kamelet +metadata: + name: azure-storage-files-source + annotations: + camel.apache.org/kamelet.support.level: "Stable" + camel.apache.org/catalog.version: "4.4.0-SNAPSHOT" + camel.apache.org/kamelet.icon: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgOTEgODEiIGZpbGw9IiNmZmYiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlPSIjMDAwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjx1c2UgeGxpbms6aHJlZj0iI0EiIHg9Ii41IiB5PSIuNSIvPjxzeW1ib2wgaWQ9IkEiIG92ZXJmbG93PSJ2aXNpYmxlIj48cGF0aCBkPSJNNjcuNTU4IDBIMjIuNDQxTDAgNDBsMjIuNDQxIDQwaDQ1LjExN0w5MCA0MCA2Ny [...] + camel.apache.org/provider: "Apache Software Foundation" + camel.apache.org/kamelet.group: "Azure Storage Blob" + camel.apache.org/kamelet.namespace: "Azure" + labels: + camel.apache.org/kamelet.type: "source" +spec: + definition: + title: "Azure Storage File Source" + description: |- + Consume files from Azure Storage File Shares. + required: + - accountName + - shareName + type: object + properties: + accountName: + title: Account Name + description: The Azure Storage File Share account name. + type: string + x-descriptors: + - urn:camel:group:credentials + shareName: + title: Share Name + description: The Azure Storage File Share share name. + type: string + sharedKey: + title: Shared Access Key + description: The Azure Storage Blob access key. + type: string + format: password + x-descriptors: + - urn:camel:group:credentials + delay: + title: Delay + description: The number of milliseconds before the next poll of the selected blob. + type: integer + default: 500 + deleteAfterRead: + title: Auto-delete Blob + description: Specifies to delete blobs after consuming them + type: boolean + default: false + credentialType: + title: Credential Type + description: Determines the credential strategy to adopt. + type: string + enum: ["SHARED_ACCOUNT_KEY", "AZURE_IDENTITY", "SHARED_KEY_CREDENTIAL", "AZURE_SAS"] + default: "SHARED_ACCOUNT_KEY" + directoryName: + title: Directory Name + description: The directory from where the consumer will start reading files. + type: string + default: "." + recursive: + title: Recursive Mode + description: If a directory, the consumer will look for files in all the sub-directories as well. + type: boolean + default: false + dependencies: + - "camel:azure-files" + - "camel:kamelet" + - "camel:core" + - "camel:timer" + template: + from: + uri: "azure-files:{{accountName}}/{{shareName}}/{{directoryName}}" + parameters: + sharedKey: "{{?sharedKey}}" + credentialType: "{{credentialType}}" + delay: "{{delay}}" + delete: "{{deleteAfterRead}}" + recursive: "{{recursive}}" + steps: + - to: "kamelet:sink" +