This is an automated email from the ASF dual-hosted git repository.

orpiske 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 80ceba0eb35 Regen for commit 51fbe04eb0d89694d8a05c6dd3b059951133f32f
80ceba0eb35 is described below

commit 80ceba0eb35afa2790fada3502273732ebaf76f3
Author: essobedo <essob...@users.noreply.github.com>
AuthorDate: Fri Jul 8 17:53:20 2022 +0000

    Regen for commit 51fbe04eb0d89694d8a05c6dd3b059951133f32f
    
    Signed-off-by: GitHub <nore...@github.com>
---
 .../builder/endpoint/StaticEndpointBuilders.java   | 10 +++--
 .../endpoint/dsl/SplunkEndpointBuilderFactory.java | 45 ++++++++++++++++++++++
 .../dsl/SplunkHECEndpointBuilderFactory.java       | 13 ++++---
 3 files changed, 59 insertions(+), 9 deletions(-)

diff --git 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
index 02af2a9cfc8..a55dcd90366 100644
--- 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
+++ 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/StaticEndpointBuilders.java
@@ -13457,10 +13457,11 @@ public class StaticEndpointBuilders {
      * Syntax: <code>splunk-hec:splunkURL/token</code>
      * 
      * Path parameter: splunkURL (required)
-     * Splunk Host URL
+     * Splunk Host and Port (example: my_splunk_server:8089)
      * 
      * Path parameter: token (required)
-     * Splunk authorization token
+     * Splunk HEC token (this is the token created for HEC and not the user's
+     * token)
      * 
      * @param path splunkURL/token
      * @return the dsl builder
@@ -13481,10 +13482,11 @@ public class StaticEndpointBuilders {
      * Syntax: <code>splunk-hec:splunkURL/token</code>
      * 
      * Path parameter: splunkURL (required)
-     * Splunk Host URL
+     * Splunk Host and Port (example: my_splunk_server:8089)
      * 
      * Path parameter: token (required)
-     * Splunk authorization token
+     * Splunk HEC token (this is the token created for HEC and not the user's
+     * token)
      * 
      * @param componentName to use a custom component name for the endpoint
      * instead of the default name
diff --git 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/SplunkEndpointBuilderFactory.java
 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/SplunkEndpointBuilderFactory.java
index 352b326920e..7b9e8877e8f 100644
--- 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/SplunkEndpointBuilderFactory.java
+++ 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/SplunkEndpointBuilderFactory.java
@@ -854,6 +854,21 @@ public interface SplunkEndpointBuilderFactory {
             doSetProperty("sslProtocol", sslProtocol);
             return this;
         }
+        /**
+         * User's token for Splunk. This takes precedence over password when
+         * both are set.
+         * 
+         * The option is a: &lt;code&gt;java.lang.String&lt;/code&gt; type.
+         * 
+         * Group: security
+         * 
+         * @param token the value to set
+         * @return the dsl builder
+         */
+        default SplunkEndpointConsumerBuilder token(String token) {
+            doSetProperty("token", token);
+            return this;
+        }
         /**
          * Username for Splunk.
          * 
@@ -1399,6 +1414,21 @@ public interface SplunkEndpointBuilderFactory {
             doSetProperty("sslProtocol", sslProtocol);
             return this;
         }
+        /**
+         * User's token for Splunk. This takes precedence over password when
+         * both are set.
+         * 
+         * The option is a: &lt;code&gt;java.lang.String&lt;/code&gt; type.
+         * 
+         * Group: security
+         * 
+         * @param token the value to set
+         * @return the dsl builder
+         */
+        default SplunkEndpointProducerBuilder token(String token) {
+            doSetProperty("token", token);
+            return this;
+        }
         /**
          * Username for Splunk.
          * 
@@ -1687,6 +1717,21 @@ public interface SplunkEndpointBuilderFactory {
             doSetProperty("sslProtocol", sslProtocol);
             return this;
         }
+        /**
+         * User's token for Splunk. This takes precedence over password when
+         * both are set.
+         * 
+         * The option is a: &lt;code&gt;java.lang.String&lt;/code&gt; type.
+         * 
+         * Group: security
+         * 
+         * @param token the value to set
+         * @return the dsl builder
+         */
+        default SplunkEndpointBuilder token(String token) {
+            doSetProperty("token", token);
+            return this;
+        }
         /**
          * Username for Splunk.
          * 
diff --git 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/SplunkHECEndpointBuilderFactory.java
 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/SplunkHECEndpointBuilderFactory.java
index 532d149f486..73db8b43b03 100644
--- 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/SplunkHECEndpointBuilderFactory.java
+++ 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/SplunkHECEndpointBuilderFactory.java
@@ -105,7 +105,8 @@ public interface SplunkHECEndpointBuilderFactory {
             return this;
         }
         /**
-         * Splunk host.
+         * Splunk host field of the event message. This is not the Splunk host
+         * to connect to.
          * 
          * The option is a: &lt;code&gt;java.lang.String&lt;/code&gt; type.
          * 
@@ -345,10 +346,11 @@ public interface SplunkHECEndpointBuilderFactory {
          * Syntax: <code>splunk-hec:splunkURL/token</code>
          * 
          * Path parameter: splunkURL (required)
-         * Splunk Host URL
+         * Splunk Host and Port (example: my_splunk_server:8089)
          * 
          * Path parameter: token (required)
-         * Splunk authorization token
+         * Splunk HEC token (this is the token created for HEC and not the
+         * user's token)
          * 
          * @param path splunkURL/token
          * @return the dsl builder
@@ -368,10 +370,11 @@ public interface SplunkHECEndpointBuilderFactory {
          * Syntax: <code>splunk-hec:splunkURL/token</code>
          * 
          * Path parameter: splunkURL (required)
-         * Splunk Host URL
+         * Splunk Host and Port (example: my_splunk_server:8089)
          * 
          * Path parameter: token (required)
-         * Splunk authorization token
+         * Splunk HEC token (this is the token created for HEC and not the
+         * user's token)
          * 
          * @param componentName to use a custom component name for the endpoint
          * instead of the default name

Reply via email to