This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch 3.20.x in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit bbd037b82736326bf25f0beeb19ae75f55d59e03 Author: Andrea Cosentino <[email protected]> AuthorDate: Thu Feb 9 10:49:56 2023 +0100 Convert all the parameters with multiple possible values to enum - Jolt Action Signed-off-by: Andrea Cosentino <[email protected]> --- kamelets/jolt-transformation-action.kamelet.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kamelets/jolt-transformation-action.kamelet.yaml b/kamelets/jolt-transformation-action.kamelet.yaml index d7b0b27a..fc972b2d 100644 --- a/kamelets/jolt-transformation-action.kamelet.yaml +++ b/kamelets/jolt-transformation-action.kamelet.yaml @@ -43,9 +43,10 @@ spec: pattern: "^(http|https|file|classpath)://.*" transform: title: Transform DSL - description: Specifies the Transform DSL of the endpoint resource. If none is specified Chainr will be used. Possible values are Chainr, Shiftr, Defaultr, Removr and Sortr. + description: Specifies the Transform DSL of the endpoint resource. If none is specified Chainr will be used. type: string default: "Chainr" + enum: ["Chainr", "Shiftr", "Defaultr", "Removr", "Sortr"] dependencies: - "camel:jolt" - "camel:kamelet"
