This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch 3.20.x-ftps-autocreate in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit 62857d6cc81a9b41a31f88b40a9a12136aadc3e4 Author: Andrea Cosentino <[email protected]> AuthorDate: Fri Mar 10 10:13:56 2023 +0100 FTPS Sink - Add autoCreate parameter Signed-off-by: Andrea Cosentino <[email protected]> --- .../src/main/resources/kamelets/ftps-sink.kamelet.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/library/camel-kamelets/src/main/resources/kamelets/ftps-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/ftps-sink.kamelet.yaml index e2006f55..bd8ef9b4 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/ftps-sink.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/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}}"
