This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch 2453 in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit 8a03d8bfa095acd9c25a6a121656afcf2d8807a0 Author: Andrea Cosentino <[email protected]> AuthorDate: Mon Apr 28 17:44:54 2025 +0200 JSON Schema int type seems not right Signed-off-by: Andrea Cosentino <[email protected]> --- kamelets/jms-pooled-apache-artemis-sink.kamelet.yaml | 6 +++--- kamelets/jms-pooled-apache-artemis-source.kamelet.yaml | 6 +++--- .../kafka-batch-apicurio-registry-not-secured-source.kamelet.yaml | 8 ++++---- kamelets/kafka-batch-apicurio-registry-source.kamelet.yaml | 8 ++++---- kamelets/kafka-batch-azure-schema-registry-source.kamelet.yaml | 8 ++++---- kamelets/kafka-batch-not-secured-source.kamelet.yaml | 8 ++++---- kamelets/kafka-batch-scram-source.kamelet.yaml | 8 ++++---- kamelets/kafka-batch-source.kamelet.yaml | 8 ++++---- kamelets/kafka-batch-ssl-source.kamelet.yaml | 8 ++++---- kamelets/spring-rabbitmq-sink.kamelet.yaml | 2 +- kamelets/spring-rabbitmq-source.kamelet.yaml | 2 +- .../kamelets/jms-pooled-apache-artemis-sink.kamelet.yaml | 6 +++--- .../kamelets/jms-pooled-apache-artemis-source.kamelet.yaml | 6 +++--- .../kafka-batch-apicurio-registry-not-secured-source.kamelet.yaml | 8 ++++---- .../kamelets/kafka-batch-apicurio-registry-source.kamelet.yaml | 8 ++++---- .../kafka-batch-azure-schema-registry-source.kamelet.yaml | 8 ++++---- .../kamelets/kafka-batch-not-secured-source.kamelet.yaml | 8 ++++---- .../main/resources/kamelets/kafka-batch-scram-source.kamelet.yaml | 8 ++++---- .../src/main/resources/kamelets/kafka-batch-source.kamelet.yaml | 8 ++++---- .../main/resources/kamelets/kafka-batch-ssl-source.kamelet.yaml | 8 ++++---- .../src/main/resources/kamelets/spring-rabbitmq-sink.kamelet.yaml | 2 +- .../main/resources/kamelets/spring-rabbitmq-source.kamelet.yaml | 2 +- 22 files changed, 72 insertions(+), 72 deletions(-) diff --git a/kamelets/jms-pooled-apache-artemis-sink.kamelet.yaml b/kamelets/jms-pooled-apache-artemis-sink.kamelet.yaml index 8b6eabbfd..0da598564 100644 --- a/kamelets/jms-pooled-apache-artemis-sink.kamelet.yaml +++ b/kamelets/jms-pooled-apache-artemis-sink.kamelet.yaml @@ -71,17 +71,17 @@ spec: maxSessionsPerConnection: title: "Max Sessions Per Connection" description: "The maximum number of pooled sessions per connection in the pool" - type: int + type: integer default: 500 maxIdleSessionsPerConnection: title: "Max Idle Sessions Per Connection" description: "The number of idle sessions allowed per connection before they are closed." - type: int + type: integer default: 500 connectionIdleTimeout: title: "Connection Idle Timeout" description: "The maximum time a pooled Connection can sit unused before it is eligible for removal (in milliseconds)" - type: int + type: integer default: 30000 dependencies: - "camel:jms" diff --git a/kamelets/jms-pooled-apache-artemis-source.kamelet.yaml b/kamelets/jms-pooled-apache-artemis-source.kamelet.yaml index 8d8dddb0f..4878a3734 100644 --- a/kamelets/jms-pooled-apache-artemis-source.kamelet.yaml +++ b/kamelets/jms-pooled-apache-artemis-source.kamelet.yaml @@ -70,17 +70,17 @@ spec: maxSessionsPerConnection: title: "Max Session Per Connection" description: "The maximum number of pooled sessions per connection in the pool" - type: int + type: integer default: 500 maxIdleSessionsPerConnection: title: "Max Idle Sessions Per Connection" description: "The number of idle sessions allowed per connection before they are closed." - type: int + type: integer default: 500 connectionIdleTimeout: title: "Connection Idle Timeout" description: "The maximum time a pooled Connection can sit unused before it is eligible for removal (in milliseconds)" - type: int + type: integer default: 30000 dependencies: - "camel:jms" diff --git a/kamelets/kafka-batch-apicurio-registry-not-secured-source.kamelet.yaml b/kamelets/kafka-batch-apicurio-registry-not-secured-source.kamelet.yaml index cadab00e7..b1fb76b38 100644 --- a/kamelets/kafka-batch-apicurio-registry-not-secured-source.kamelet.yaml +++ b/kamelets/kafka-batch-apicurio-registry-not-secured-source.kamelet.yaml @@ -108,21 +108,21 @@ spec: batchSize: title: Batch Dimension description: The maximum number of records returned in a single call to poll() - type: int + type: integer default: 500 pollTimeout: title: Poll Timeout Interval description: The timeout used when polling the KafkaConsumer - type: int + type: integer default: 5000 maxPollIntervalMs: title: Max Poll Interval description: The maximum delay between invocations of poll() when using consumer group management - type: int + type: integer batchingIntervalMs: title: Batching Interval description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option). - type: int + type: integer topicIsPattern: title: Topic Is Pattern description: Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern. diff --git a/kamelets/kafka-batch-apicurio-registry-source.kamelet.yaml b/kamelets/kafka-batch-apicurio-registry-source.kamelet.yaml index 208ee4914..810da83f4 100644 --- a/kamelets/kafka-batch-apicurio-registry-source.kamelet.yaml +++ b/kamelets/kafka-batch-apicurio-registry-source.kamelet.yaml @@ -114,21 +114,21 @@ spec: batchSize: title: Batch Dimension description: The maximum number of records returned in a single call to poll() - type: int + type: integer default: 500 pollTimeout: title: Poll Timeout Interval description: The timeout used when polling the KafkaConsumer - type: int + type: integer default: 5000 maxPollIntervalMs: title: Max Poll Interval description: The maximum delay between invocations of poll() when using consumer group management - type: int + type: integer batchingIntervalMs: title: Batching Interval description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option). - type: int + type: integer apicurioAuthServiceUrl: title: Apicurio Registry Auth Service URL description: The URL for Keycloak instance securing the Apicurio Registry diff --git a/kamelets/kafka-batch-azure-schema-registry-source.kamelet.yaml b/kamelets/kafka-batch-azure-schema-registry-source.kamelet.yaml index 6d5a5ccbb..2a7f4f416 100644 --- a/kamelets/kafka-batch-azure-schema-registry-source.kamelet.yaml +++ b/kamelets/kafka-batch-azure-schema-registry-source.kamelet.yaml @@ -128,21 +128,21 @@ spec: batchSize: title: Batch Dimension description: The maximum number of records returned in a single call to poll() - type: int + type: integer default: 500 pollTimeout: title: Poll Timeout Interval description: The timeout used when polling the KafkaConsumer - type: int + type: integer default: 5000 maxPollIntervalMs: title: Max Poll Interval description: The maximum delay between invocations of poll() when using consumer group management - type: int + type: integer batchingIntervalMs: title: Batching Interval description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option). - type: int + type: integer topicIsPattern: title: Topic Is Pattern description: Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern. diff --git a/kamelets/kafka-batch-not-secured-source.kamelet.yaml b/kamelets/kafka-batch-not-secured-source.kamelet.yaml index fb75b3900..2d0dc9bef 100644 --- a/kamelets/kafka-batch-not-secured-source.kamelet.yaml +++ b/kamelets/kafka-batch-not-secured-source.kamelet.yaml @@ -90,21 +90,21 @@ spec: batchSize: title: Batch Dimension description: The maximum number of records returned in a single call to poll() - type: int + type: integer default: 500 pollTimeout: title: Poll Timeout Interval description: The timeout used when polling the KafkaConsumer - type: int + type: integer default: 5000 maxPollIntervalMs: title: Max Poll Interval description: The maximum delay between invocations of poll() when using consumer group management - type: int + type: integer batchingIntervalMs: title: Batching Interval description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option). - type: int + type: integer topicIsPattern: title: Topic Is Pattern description: Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern. diff --git a/kamelets/kafka-batch-scram-source.kamelet.yaml b/kamelets/kafka-batch-scram-source.kamelet.yaml index fbe3b3988..5a71a096f 100644 --- a/kamelets/kafka-batch-scram-source.kamelet.yaml +++ b/kamelets/kafka-batch-scram-source.kamelet.yaml @@ -121,21 +121,21 @@ spec: batchSize: title: Batch Dimension description: The maximum number of records returned in a single call to poll() - type: int + type: integer default: 500 pollTimeout: title: Poll Timeout Interval description: The timeout used when polling the KafkaConsumer - type: int + type: integer default: 5000 maxPollIntervalMs: title: Max Poll Interval description: The maximum delay between invocations of poll() when using consumer group management - type: int + type: integer batchingIntervalMs: title: Batching Interval description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option). - type: int + type: integer topicIsPattern: title: Topic Is Pattern description: Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern. diff --git a/kamelets/kafka-batch-source.kamelet.yaml b/kamelets/kafka-batch-source.kamelet.yaml index 9dd871cd9..f8c835362 100644 --- a/kamelets/kafka-batch-source.kamelet.yaml +++ b/kamelets/kafka-batch-source.kamelet.yaml @@ -121,21 +121,21 @@ spec: batchSize: title: Batch Dimension description: The maximum number of records returned in a single call to poll() - type: int + type: integer default: 500 pollTimeout: title: Poll Timeout Interval description: The timeout used when polling the KafkaConsumer - type: int + type: integer default: 5000 maxPollIntervalMs: title: Max Poll Interval description: The maximum delay between invocations of poll() when using consumer group management - type: int + type: integer batchingIntervalMs: title: Batching Interval description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option). - type: int + type: integer topicIsPattern: title: Topic Is Pattern description: Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern. diff --git a/kamelets/kafka-batch-ssl-source.kamelet.yaml b/kamelets/kafka-batch-ssl-source.kamelet.yaml index 0433f4e83..0a26b041c 100644 --- a/kamelets/kafka-batch-ssl-source.kamelet.yaml +++ b/kamelets/kafka-batch-ssl-source.kamelet.yaml @@ -145,21 +145,21 @@ spec: batchSize: title: Batch Dimension description: The maximum number of records returned in a single call to poll() - type: int + type: integer default: 500 pollTimeout: title: Poll Timeout Interval description: The timeout used when polling the KafkaConsumer - type: int + type: integer default: 5000 maxPollIntervalMs: title: Max Poll Interval description: The maximum delay between invocations of poll() when using consumer group management - type: int + type: integer batchingIntervalMs: title: Batching Interval description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option). - type: int + type: integer topicIsPattern: title: Topic Is Pattern description: Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern. diff --git a/kamelets/spring-rabbitmq-sink.kamelet.yaml b/kamelets/spring-rabbitmq-sink.kamelet.yaml index 81e741f17..bbc6758f6 100644 --- a/kamelets/spring-rabbitmq-sink.kamelet.yaml +++ b/kamelets/spring-rabbitmq-sink.kamelet.yaml @@ -46,7 +46,7 @@ spec: port: title: Server Port description: RabbitMQ broker port - type: int + type: integer example: 5672 routingKey: title: Routing Key diff --git a/kamelets/spring-rabbitmq-source.kamelet.yaml b/kamelets/spring-rabbitmq-source.kamelet.yaml index b1b52ede7..14389214a 100644 --- a/kamelets/spring-rabbitmq-source.kamelet.yaml +++ b/kamelets/spring-rabbitmq-source.kamelet.yaml @@ -46,7 +46,7 @@ spec: port: title: Server Port description: RabbitMQ broker port - type: int + type: integer example: 5672 routingKey: title: Routing Key diff --git a/library/camel-kamelets/src/main/resources/kamelets/jms-pooled-apache-artemis-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/jms-pooled-apache-artemis-sink.kamelet.yaml index 8b6eabbfd..0da598564 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/jms-pooled-apache-artemis-sink.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/jms-pooled-apache-artemis-sink.kamelet.yaml @@ -71,17 +71,17 @@ spec: maxSessionsPerConnection: title: "Max Sessions Per Connection" description: "The maximum number of pooled sessions per connection in the pool" - type: int + type: integer default: 500 maxIdleSessionsPerConnection: title: "Max Idle Sessions Per Connection" description: "The number of idle sessions allowed per connection before they are closed." - type: int + type: integer default: 500 connectionIdleTimeout: title: "Connection Idle Timeout" description: "The maximum time a pooled Connection can sit unused before it is eligible for removal (in milliseconds)" - type: int + type: integer default: 30000 dependencies: - "camel:jms" diff --git a/library/camel-kamelets/src/main/resources/kamelets/jms-pooled-apache-artemis-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/jms-pooled-apache-artemis-source.kamelet.yaml index 8d8dddb0f..4878a3734 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/jms-pooled-apache-artemis-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/jms-pooled-apache-artemis-source.kamelet.yaml @@ -70,17 +70,17 @@ spec: maxSessionsPerConnection: title: "Max Session Per Connection" description: "The maximum number of pooled sessions per connection in the pool" - type: int + type: integer default: 500 maxIdleSessionsPerConnection: title: "Max Idle Sessions Per Connection" description: "The number of idle sessions allowed per connection before they are closed." - type: int + type: integer default: 500 connectionIdleTimeout: title: "Connection Idle Timeout" description: "The maximum time a pooled Connection can sit unused before it is eligible for removal (in milliseconds)" - type: int + type: integer default: 30000 dependencies: - "camel:jms" diff --git a/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-apicurio-registry-not-secured-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-apicurio-registry-not-secured-source.kamelet.yaml index cadab00e7..b1fb76b38 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-apicurio-registry-not-secured-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-apicurio-registry-not-secured-source.kamelet.yaml @@ -108,21 +108,21 @@ spec: batchSize: title: Batch Dimension description: The maximum number of records returned in a single call to poll() - type: int + type: integer default: 500 pollTimeout: title: Poll Timeout Interval description: The timeout used when polling the KafkaConsumer - type: int + type: integer default: 5000 maxPollIntervalMs: title: Max Poll Interval description: The maximum delay between invocations of poll() when using consumer group management - type: int + type: integer batchingIntervalMs: title: Batching Interval description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option). - type: int + type: integer topicIsPattern: title: Topic Is Pattern description: Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern. diff --git a/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-apicurio-registry-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-apicurio-registry-source.kamelet.yaml index 208ee4914..810da83f4 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-apicurio-registry-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-apicurio-registry-source.kamelet.yaml @@ -114,21 +114,21 @@ spec: batchSize: title: Batch Dimension description: The maximum number of records returned in a single call to poll() - type: int + type: integer default: 500 pollTimeout: title: Poll Timeout Interval description: The timeout used when polling the KafkaConsumer - type: int + type: integer default: 5000 maxPollIntervalMs: title: Max Poll Interval description: The maximum delay between invocations of poll() when using consumer group management - type: int + type: integer batchingIntervalMs: title: Batching Interval description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option). - type: int + type: integer apicurioAuthServiceUrl: title: Apicurio Registry Auth Service URL description: The URL for Keycloak instance securing the Apicurio Registry diff --git a/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-azure-schema-registry-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-azure-schema-registry-source.kamelet.yaml index 6d5a5ccbb..2a7f4f416 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-azure-schema-registry-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-azure-schema-registry-source.kamelet.yaml @@ -128,21 +128,21 @@ spec: batchSize: title: Batch Dimension description: The maximum number of records returned in a single call to poll() - type: int + type: integer default: 500 pollTimeout: title: Poll Timeout Interval description: The timeout used when polling the KafkaConsumer - type: int + type: integer default: 5000 maxPollIntervalMs: title: Max Poll Interval description: The maximum delay between invocations of poll() when using consumer group management - type: int + type: integer batchingIntervalMs: title: Batching Interval description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option). - type: int + type: integer topicIsPattern: title: Topic Is Pattern description: Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern. diff --git a/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-not-secured-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-not-secured-source.kamelet.yaml index fb75b3900..2d0dc9bef 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-not-secured-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-not-secured-source.kamelet.yaml @@ -90,21 +90,21 @@ spec: batchSize: title: Batch Dimension description: The maximum number of records returned in a single call to poll() - type: int + type: integer default: 500 pollTimeout: title: Poll Timeout Interval description: The timeout used when polling the KafkaConsumer - type: int + type: integer default: 5000 maxPollIntervalMs: title: Max Poll Interval description: The maximum delay between invocations of poll() when using consumer group management - type: int + type: integer batchingIntervalMs: title: Batching Interval description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option). - type: int + type: integer topicIsPattern: title: Topic Is Pattern description: Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern. diff --git a/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-scram-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-scram-source.kamelet.yaml index fbe3b3988..5a71a096f 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-scram-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-scram-source.kamelet.yaml @@ -121,21 +121,21 @@ spec: batchSize: title: Batch Dimension description: The maximum number of records returned in a single call to poll() - type: int + type: integer default: 500 pollTimeout: title: Poll Timeout Interval description: The timeout used when polling the KafkaConsumer - type: int + type: integer default: 5000 maxPollIntervalMs: title: Max Poll Interval description: The maximum delay between invocations of poll() when using consumer group management - type: int + type: integer batchingIntervalMs: title: Batching Interval description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option). - type: int + type: integer topicIsPattern: title: Topic Is Pattern description: Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern. diff --git a/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-source.kamelet.yaml index 9dd871cd9..f8c835362 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-source.kamelet.yaml @@ -121,21 +121,21 @@ spec: batchSize: title: Batch Dimension description: The maximum number of records returned in a single call to poll() - type: int + type: integer default: 500 pollTimeout: title: Poll Timeout Interval description: The timeout used when polling the KafkaConsumer - type: int + type: integer default: 5000 maxPollIntervalMs: title: Max Poll Interval description: The maximum delay between invocations of poll() when using consumer group management - type: int + type: integer batchingIntervalMs: title: Batching Interval description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option). - type: int + type: integer topicIsPattern: title: Topic Is Pattern description: Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern. diff --git a/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-ssl-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-ssl-source.kamelet.yaml index 0433f4e83..0a26b041c 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-ssl-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/kafka-batch-ssl-source.kamelet.yaml @@ -145,21 +145,21 @@ spec: batchSize: title: Batch Dimension description: The maximum number of records returned in a single call to poll() - type: int + type: integer default: 500 pollTimeout: title: Poll Timeout Interval description: The timeout used when polling the KafkaConsumer - type: int + type: integer default: 5000 maxPollIntervalMs: title: Max Poll Interval description: The maximum delay between invocations of poll() when using consumer group management - type: int + type: integer batchingIntervalMs: title: Batching Interval description: In consumer batching mode, then this option is specifying a time in millis, to trigger batch completion eager when the current batch size has not reached the maximum size defined by maxPollRecords. Notice the trigger is not exact at the given interval, as this can only happen between kafka polls (see pollTimeoutMs option). - type: int + type: integer topicIsPattern: title: Topic Is Pattern description: Whether the topic is a pattern (regular expression). This can be used to subscribe to dynamic number of topics matching the pattern. diff --git a/library/camel-kamelets/src/main/resources/kamelets/spring-rabbitmq-sink.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/spring-rabbitmq-sink.kamelet.yaml index 81e741f17..bbc6758f6 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/spring-rabbitmq-sink.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/spring-rabbitmq-sink.kamelet.yaml @@ -46,7 +46,7 @@ spec: port: title: Server Port description: RabbitMQ broker port - type: int + type: integer example: 5672 routingKey: title: Routing Key diff --git a/library/camel-kamelets/src/main/resources/kamelets/spring-rabbitmq-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/spring-rabbitmq-source.kamelet.yaml index b1b52ede7..14389214a 100644 --- a/library/camel-kamelets/src/main/resources/kamelets/spring-rabbitmq-source.kamelet.yaml +++ b/library/camel-kamelets/src/main/resources/kamelets/spring-rabbitmq-source.kamelet.yaml @@ -46,7 +46,7 @@ spec: port: title: Server Port description: RabbitMQ broker port - type: int + type: integer example: 5672 routingKey: title: Routing Key
