This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch ftp-ftps-source in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit 5639ace467a2c6c327a9d3bd9f07e5003ac60e7a Author: Andrea Cosentino <[email protected]> AuthorDate: Wed Feb 8 12:01:45 2023 +0100 Convert all the parameters with multiple possible values to enum - FTP Source Signed-off-by: Andrea Cosentino <[email protected]> --- .../camel-kamelets/src/main/resources/kamelets/ftp-sink.kamelet.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/library/camel-kamelets/src/main/resources/kamelets/ftp-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/ftp-sink.kamelet.yaml index 5198f0fd..961d035b 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/ftp-sink.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/ftp-sink.kamelet.yaml @@ -79,9 +79,10 @@ spec: - 'urn:alm:descriptor:com.tectonic.ui:checkbox' fileExist: title: File Existence - description: How to behave in case of file already existent. There are 4 enums. Possible values are Override, Append, Fail, or Ignore. + description: How to behave in case of file already existent. type: string default: Override + enum: ["Override", "Append", "Fail", "Ignore"] binary: title: Binary description: Specifies the file transfer mode, BINARY or ASCII. Default is ASCII (false).
