You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/03/10 09:14:54 UTC

[camel-kamelets] 03/04: FTPS Sink - Add autoCreate parameter

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch ftps-autoCreate
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit ff209148797c6b1eb632c2847c91fd811943602d
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Mar 10 10:12:59 2023 +0100

    FTPS Sink - Add autoCreate parameter
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/ftps-sink.kamelet.yaml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/kamelets/ftps-sink.kamelet.yaml b/kamelets/ftps-sink.kamelet.yaml
index eb7768cf..92fe2c65 100644
--- a/kamelets/ftps-sink.kamelet.yaml
+++ b/kamelets/ftps-sink.kamelet.yaml
@@ -91,6 +91,13 @@ spec:
         default: false
         x-descriptors:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
+      autoCreate:
+        title: Autocreate Missing Directories
+        description: Automatically create the directory the files should be written to.
+        type: boolean
+        default: true
+        x-descriptors:
+        - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
   dependencies:
     - "camel:ftp"
     - "camel:core"
@@ -118,3 +125,4 @@ spec:
             passiveMode: "{{passiveMode}}"
             fileExist: "{{fileExist}}"
             binary: "{{binary}}"
+            autoCreate: "{{autoCreate}}"