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 c2eb20f98ef Regen
c2eb20f98ef is described below
commit c2eb20f98efc7ed75fed562a6a276cb291882f52
Author: Claus Ibsen <[email protected]>
AuthorDate: Wed Sep 14 06:33:56 2022 +0200
Regen
---
.../dsl/GooglePubsubEndpointBuilderFactory.java | 34 ++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/GooglePubsubEndpointBuilderFactory.java
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/GooglePubsubEndpointBuilderFactory.java
index 277be28377b..af5a072b68b 100644
---
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/GooglePubsubEndpointBuilderFactory.java
+++
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/GooglePubsubEndpointBuilderFactory.java
@@ -178,6 +178,40 @@ public interface GooglePubsubEndpointBuilderFactory {
doSetProperty("concurrentConsumers", concurrentConsumers);
return this;
}
+ /**
+ * Set the maximum period a message ack deadline will be extended.
Value
+ * in seconds.
+ *
+ * The option is a: <code>int</code> type.
+ *
+ * Default: 3600
+ * Group: consumer
+ *
+ * @param maxAckExtensionPeriod the value to set
+ * @return the dsl builder
+ */
+ default GooglePubsubEndpointConsumerBuilder maxAckExtensionPeriod(
+ int maxAckExtensionPeriod) {
+ doSetProperty("maxAckExtensionPeriod", maxAckExtensionPeriod);
+ return this;
+ }
+ /**
+ * Set the maximum period a message ack deadline will be extended.
Value
+ * in seconds.
+ *
+ * The option will be converted to a <code>int</code> type.
+ *
+ * Default: 3600
+ * Group: consumer
+ *
+ * @param maxAckExtensionPeriod the value to set
+ * @return the dsl builder
+ */
+ default GooglePubsubEndpointConsumerBuilder maxAckExtensionPeriod(
+ String maxAckExtensionPeriod) {
+ doSetProperty("maxAckExtensionPeriod", maxAckExtensionPeriod);
+ return this;
+ }
/**
* The max number of messages to receive from the server in a single
API
* call.