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 <[email protected]> AuthorDate: Mon Mar 13 10:07:58 2023 +0100 Enum Http Method in Http Sink Kamelet Signed-off-by: Andrea Cosentino <[email protected]> --- .../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"
