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/13 09:37:11 UTC

[camel-kamelets] branch main updated (4ae51798 -> 5788a204)

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 4ae51798 Regen SBOM from commit 352500345afc910999b2d7059c268a6e46490498
     new 7874f2d4 Enum Method in Http Sink Kamelet
     new a7da07b8 Enum Http Method in Http Sink Kamelet
     new 43c6306c Enum Http Method in Http Secured Sink Kamelet
     new 5788a204 Enum Http Method in Http Secured Sink Kamelet

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/http-secured-sink.kamelet.yaml                                  | 1 +
 kamelets/http-sink.kamelet.yaml                                          | 1 +
 .../src/main/resources/kamelets/http-secured-sink.kamelet.yaml           | 1 +
 .../camel-kamelets/src/main/resources/kamelets/http-sink.kamelet.yaml    | 1 +
 4 files changed, 4 insertions(+)


[camel-kamelets] 03/04: Enum Http Method in Http Secured Sink Kamelet

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 43c6306cfaa5f7f2f6e7ce92482d0016be1a3144
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Mar 13 10:08:45 2023 +0100

    Enum Http Method in Http Secured Sink Kamelet
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/http-secured-sink.kamelet.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kamelets/http-secured-sink.kamelet.yaml b/kamelets/http-secured-sink.kamelet.yaml
index 65bbec88..8fa1582c 100644
--- a/kamelets/http-secured-sink.kamelet.yaml
+++ b/kamelets/http-secured-sink.kamelet.yaml
@@ -46,6 +46,7 @@ spec:
         description: The HTTP method to use
         type: string
         default: POST
+        enum: ["GET", "POST", "PUT", "DELETE", "HEAD", "OPTIONS", "TRACE", "PATCH"]
       authMethod:
         title: Authentication Method
         description: Authentication methods allowed to use as a comma separated list of values Basic, Digest or NTLM.


[camel-kamelets] 04/04: Enum Http Method in Http Secured Sink Kamelet

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 5788a204ec7bfa99ebb05953e9a1779be81365da
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Mar 13 10:09:09 2023 +0100

    Enum Http Method in Http Secured Sink Kamelet
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../src/main/resources/kamelets/http-secured-sink.kamelet.yaml           | 1 +
 1 file changed, 1 insertion(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/http-secured-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/http-secured-sink.kamelet.yaml
index 65bbec88..8fa1582c 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/http-secured-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/http-secured-sink.kamelet.yaml
@@ -46,6 +46,7 @@ spec:
         description: The HTTP method to use
         type: string
         default: POST
+        enum: ["GET", "POST", "PUT", "DELETE", "HEAD", "OPTIONS", "TRACE", "PATCH"]
       authMethod:
         title: Authentication Method
         description: Authentication methods allowed to use as a comma separated list of values Basic, Digest or NTLM.


[camel-kamelets] 02/04: Enum Http Method in Http Sink Kamelet

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 a7da07b888bcdad35642f45226b7a4b99b8389b8
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Mar 13 10:07:58 2023 +0100

    Enum Http Method in Http Sink Kamelet
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../camel-kamelets/src/main/resources/kamelets/http-sink.kamelet.yaml    | 1 +
 1 file changed, 1 insertion(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/http-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/http-sink.kamelet.yaml
index 6da45c91..618c9265 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/http-sink.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/http-sink.kamelet.yaml
@@ -46,6 +46,7 @@ spec:
         description: The HTTP method to use.
         type: string
         default: POST
+        enum: ["GET", "POST", "PUT", "DELETE", "HEAD", "OPTIONS", "TRACE", "PATCH"]
   dependencies:
   - "camel:http"
   - "camel:kamelet"


[camel-kamelets] 01/04: Enum Method in Http Sink Kamelet

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 7874f2d427fd73a7ac5b44ce4581d77d85bc189f
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Mar 13 10:06:11 2023 +0100

    Enum Method in Http Sink Kamelet
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 kamelets/http-sink.kamelet.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kamelets/http-sink.kamelet.yaml b/kamelets/http-sink.kamelet.yaml
index 6da45c91..618c9265 100644
--- a/kamelets/http-sink.kamelet.yaml
+++ b/kamelets/http-sink.kamelet.yaml
@@ -46,6 +46,7 @@ spec:
         description: The HTTP method to use.
         type: string
         default: POST
+        enum: ["GET", "POST", "PUT", "DELETE", "HEAD", "OPTIONS", "TRACE", "PATCH"]
   dependencies:
   - "camel:http"
   - "camel:kamelet"