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