This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 6baac1f98aa Regen 6baac1f98aa is described below commit 6baac1f98aae984a03f0ec1f06059149f243bce5 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Mon Nov 7 16:12:26 2022 +0100 Regen --- .../org/apache/camel/catalog/components/git.json | 3 +- .../endpoint/dsl/GitEndpointBuilderFactory.java | 44 ++++++++++++++++++++++ 2 files changed, 46 insertions(+), 1 deletion(-) diff --git a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/git.json b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/git.json index 7dcb8c41c80..0ba084eb632 100644 --- a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/git.json +++ b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/git.json @@ -55,6 +55,7 @@ "tagName": { "kind": "parameter", "displayName": "Tag Name", "group": "producer", "label": "producer", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "The tag name to work on" }, "targetBranchName": { "kind": "parameter", "displayName": "Target Branch Name", "group": "producer", "label": "producer", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "defaultValue": "master", "description": "Name of target branch in merge operation. If not supplied will try to use init.defaultBranch git configs. If not configured will use default value" }, "username": { "kind": "parameter", "displayName": "Username", "group": "producer", "label": "producer", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "Remote repository username" }, - "lazyStartProducer": { "kind": "parameter", "displayName": "Lazy Start Producer", "group": "producer (advanced)", "label": "producer,advanced", "required": false, "type": "boolean", "javaType": "boolean", "deprecated": false, "autowired": false, "secret": false, "defaultValue": false, "description": "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may other [...] + "lazyStartProducer": { "kind": "parameter", "displayName": "Lazy Start Producer", "group": "producer (advanced)", "label": "producer,advanced", "required": false, "type": "boolean", "javaType": "boolean", "deprecated": false, "autowired": false, "secret": false, "defaultValue": false, "description": "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may other [...] + "gitConfigFile": { "kind": "parameter", "displayName": "Git Config File", "group": "advanced", "label": "advanced", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "description": "A String with path to a .gitconfig file" } } } diff --git a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/GitEndpointBuilderFactory.java b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/GitEndpointBuilderFactory.java index aaa202b14d1..d3e8401a516 100644 --- a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/GitEndpointBuilderFactory.java +++ b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/GitEndpointBuilderFactory.java @@ -214,6 +214,21 @@ public interface GitEndpointBuilderFactory { doSetProperty("exchangePattern", exchangePattern); return this; } + /** + * A String with path to a .gitconfig file. + * + * The option is a: <code>java.lang.String</code> type. + * + * Group: advanced + * + * @param gitConfigFile the value to set + * @return the dsl builder + */ + default AdvancedGitEndpointConsumerBuilder gitConfigFile( + String gitConfigFile) { + doSetProperty("gitConfigFile", gitConfigFile); + return this; + } } /** @@ -432,6 +447,21 @@ public interface GitEndpointBuilderFactory { doSetProperty("lazyStartProducer", lazyStartProducer); return this; } + /** + * A String with path to a .gitconfig file. + * + * The option is a: <code>java.lang.String</code> type. + * + * Group: advanced + * + * @param gitConfigFile the value to set + * @return the dsl builder + */ + default AdvancedGitEndpointProducerBuilder gitConfigFile( + String gitConfigFile) { + doSetProperty("gitConfigFile", gitConfigFile); + return this; + } } /** @@ -470,6 +500,20 @@ public interface GitEndpointBuilderFactory { default GitEndpointBuilder basic() { return (GitEndpointBuilder) this; } + /** + * A String with path to a .gitconfig file. + * + * The option is a: <code>java.lang.String</code> type. + * + * Group: advanced + * + * @param gitConfigFile the value to set + * @return the dsl builder + */ + default AdvancedGitEndpointBuilder gitConfigFile(String gitConfigFile) { + doSetProperty("gitConfigFile", gitConfigFile); + return this; + } } public interface GitBuilders {