Skip to content

Commit

Permalink
Regen
Browse files Browse the repository at this point in the history
  • Loading branch information
davsclaus committed Oct 14, 2023
1 parent bf4532b commit 5f4b010
Show file tree
Hide file tree
Showing 18 changed files with 764 additions and 447 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ static org.apache.camel.builder.component.dsl.Aws2StsComponentBuilderFactory.Aws
}
/**
* AWS Timestream (camel-aws2-timestream)
* A Camel Amazon Web Services TimeStream component
* Write records and execute queries on AWS time-series database
*
* Category: cloud,database
* Since: 4.1
Expand Down Expand Up @@ -1627,6 +1627,7 @@ static org.apache.camel.builder.component.dsl.GoogleStorageComponentBuilderFacto
*
* @return the dsl builder
*/
@Deprecated
static org.apache.camel.builder.component.dsl.GrapeComponentBuilderFactory.GrapeComponentBuilder grape() {
return org.apache.camel.builder.component.dsl.GrapeComponentBuilderFactory.grape();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import org.apache.camel.component.aws2.timestream.Timestream2Component;

/**
* A Camel Amazon Web Services TimeStream component
* Write records and execute queries on AWS time-series database
*
* Generated by camel-package-maven-plugin - do not edit this file!
*/
Expand All @@ -32,7 +32,7 @@ public interface Aws2TimestreamComponentBuilderFactory {

/**
* AWS Timestream (camel-aws2-timestream)
* A Camel Amazon Web Services TimeStream component
* Write records and execute queries on AWS time-series database
*
* Category: cloud,database
* Since: 4.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public interface GrapeComponentBuilderFactory {
*
* @return the dsl builder
*/
@Deprecated
static GrapeComponentBuilder grape() {
return new GrapeComponentBuilderImpl();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -653,6 +653,27 @@ default KafkaComponentBuilder pollTimeoutMs(java.lang.Long pollTimeoutMs) {
doSetProperty("pollTimeoutMs", pollTimeoutMs);
return this;
}
/**
* Whether to eager validate that broker host:port is valid and can be
* DNS resolved to known host during starting this consumer. If the
* validation fails then an exception is thrown which makes Camel fail
* fast. Disabling this will postpone the validation after the consumer
* is started, and Camel will keep re-connecting in case of validation
* or DNS resolution error.
*
* The option is a: <code>boolean</code> type.
*
* Default: true
* Group: consumer
*
* @param preValidateHostAndPort the value to set
* @return the dsl builder
*/
default KafkaComponentBuilder preValidateHostAndPort(
boolean preValidateHostAndPort) {
doSetProperty("preValidateHostAndPort", preValidateHostAndPort);
return this;
}
/**
* Set if KafkaConsumer will read from the beginning or the end on
* startup: SeekPolicy.BEGINNING: read from the beginning.
Expand Down Expand Up @@ -2234,6 +2255,7 @@ protected boolean setPropertyOnComponent(
case "partitionAssignor": getOrCreateConfiguration((KafkaComponent) component).setPartitionAssignor((java.lang.String) value); return true;
case "pollOnError": getOrCreateConfiguration((KafkaComponent) component).setPollOnError((org.apache.camel.component.kafka.PollOnError) value); return true;
case "pollTimeoutMs": getOrCreateConfiguration((KafkaComponent) component).setPollTimeoutMs((java.lang.Long) value); return true;
case "preValidateHostAndPort": getOrCreateConfiguration((KafkaComponent) component).setPreValidateHostAndPort((boolean) value); return true;
case "seekTo": getOrCreateConfiguration((KafkaComponent) component).setSeekTo((org.apache.camel.component.kafka.SeekPolicy) value); return true;
case "sessionTimeoutMs": getOrCreateConfiguration((KafkaComponent) component).setSessionTimeoutMs((java.lang.Integer) value); return true;
case "specificAvroReader": getOrCreateConfiguration((KafkaComponent) component).setSpecificAvroReader((boolean) value); return true;
Expand Down
Loading

0 comments on commit 5f4b010

Please sign in to comment.