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/02/08 11:09:14 UTC

[camel-kamelets] branch main updated (5da1aac8 -> 9808fd5c)

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

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


    from 5da1aac8 Convert all the parameters with multiple possible values to enum - Fhir Source
     new 03259928 Convert all the parameters with multiple possible values to enum - FTP Source
     new 173d8f9f Convert all the parameters with multiple possible values to enum - FTP Source
     new 50319038 Convert all the parameters with multiple possible values to enum - FTPS Source
     new 9808fd5c Convert all the parameters with multiple possible values to enum - FTPS Source

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 kamelets/ftp-sink.kamelet.yaml                                         | 3 ++-
 kamelets/ftps-sink.kamelet.yaml                                        | 3 ++-
 .../camel-kamelets/src/main/resources/kamelets/ftp-sink.kamelet.yaml   | 3 ++-
 .../camel-kamelets/src/main/resources/kamelets/ftps-sink.kamelet.yaml  | 3 ++-
 4 files changed, 8 insertions(+), 4 deletions(-)


[camel-kamelets] 01/04: Convert all the parameters with multiple possible values to enum - FTP Source

Posted by ac...@apache.org.
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 03259928698ebb529d948f9ff024a26b96f8df7c
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Feb 8 12:01:08 2023 +0100

    Convert all the parameters with multiple possible values to enum - FTP Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/ftp-sink.kamelet.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/kamelets/ftp-sink.kamelet.yaml b/kamelets/ftp-sink.kamelet.yaml
index 5198f0fd..961d035b 100644
--- a/kamelets/ftp-sink.kamelet.yaml
+++ b/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).


[camel-kamelets] 03/04: Convert all the parameters with multiple possible values to enum - FTPS Source

Posted by ac...@apache.org.
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 5031903874a460b505a82e11325ca6dd8c1cb60d
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Feb 8 12:03:07 2023 +0100

    Convert all the parameters with multiple possible values to enum - FTPS Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/ftps-sink.kamelet.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/kamelets/ftps-sink.kamelet.yaml b/kamelets/ftps-sink.kamelet.yaml
index a4c067d3..cdb8e9cc 100644
--- a/kamelets/ftps-sink.kamelet.yaml
+++ b/kamelets/ftps-sink.kamelet.yaml
@@ -79,9 +79,10 @@ spec:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
       fileExist:
         title: File Existence
-        description: "Specifies how the Kamelet behaves if the file already exists. Possible values are Override, Append, Fail, or Ignore."
+        description: "Specifies how the Kamelet behaves if the file already exists."
         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).


[camel-kamelets] 02/04: Convert all the parameters with multiple possible values to enum - FTP Source

Posted by ac...@apache.org.
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 173d8f9fff3a3944367dc61518de28506ed01760
Author: Andrea Cosentino <an...@gmail.com>
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 <an...@gmail.com>
---
 .../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).


[camel-kamelets] 04/04: Convert all the parameters with multiple possible values to enum - FTPS Source

Posted by ac...@apache.org.
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 9808fd5c35af2ebdefe433ef0439bde48cc9bde2
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Feb 8 12:03:54 2023 +0100

    Convert all the parameters with multiple possible values to enum - FTPS Source
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../camel-kamelets/src/main/resources/kamelets/ftps-sink.kamelet.yaml  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

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 a4c067d3..cdb8e9cc 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
@@ -79,9 +79,10 @@ spec:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
       fileExist:
         title: File Existence
-        description: "Specifies how the Kamelet behaves if the file already exists. Possible values are Override, Append, Fail, or Ignore."
+        description: "Specifies how the Kamelet behaves if the file already exists."
         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).