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 c4c3621  Regen
c4c3621 is described below

commit c4c36216b0692c70df92ee50f5b3d1051521c888
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Mon Jan 17 15:56:41 2022 +0100

    Regen
---
 .../org/apache/camel/catalog/components/mongodb.json     |  4 ++--
 .../org/apache/camel/catalog/models/dataFormats.json     |  2 +-
 .../org/apache/camel/model/dataformat/dataFormats.json   |  2 +-
 .../camel/builder/endpoint/StaticEndpointBuilders.java   |  4 ++--
 .../endpoint/dsl/MongoDbEndpointBuilderFactory.java      | 16 ++++++++--------
 .../camel/dsl/yaml/deserializers/ModelDeserializers.java |  4 ++--
 .../src/generated/resources/camel-yaml-dsl.json          |  2 +-
 7 files changed, 17 insertions(+), 17 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/mongodb.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/mongodb.json
index 6499270..c0a97ed 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/mongodb.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/mongodb.json
@@ -28,12 +28,12 @@
     "autowiredEnabled": { "kind": "property", "displayName": "Autowired 
Enabled", "group": "advanced", "label": "advanced", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": true, "description": "Whether autowiring is 
enabled. This is used for automatic autowiring options (the option must be 
marked as autowired) by looking up in the registry to find if there is a single 
instance of matching type, which t [...]
   },
   "properties": {
-    "connectionBean": { "kind": "path", "displayName": "Connection Bean", 
"group": "common", "label": "", "required": true, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "deprecationNote": "", "autowired": 
false, "secret": false, "description": "Sets the connection bean reference used 
to lookup a client for connecting to a database." },
+    "connectionBean": { "kind": "path", "displayName": "Connection Bean", 
"group": "common", "label": "", "required": true, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "deprecationNote": "", "autowired": 
false, "secret": false, "description": "Sets the connection bean reference used 
to lookup a client for connecting to a database if no hosts parameter is 
present." },
     "collection": { "kind": "parameter", "displayName": "Collection", "group": 
"common", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "Sets the name of the MongoDB collection to bind to this 
endpoint" },
     "collectionIndex": { "kind": "parameter", "displayName": "Collection 
Index", "group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "description": "Sets the collection index (JSON FORMAT : { 
field1 : order1, field2 : order2})" },
     "createCollection": { "kind": "parameter", "displayName": "Create 
Collection", "group": "common", "label": "", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": true, "description": "Create collection during 
initialisation if it doesn't exist. Default is true." },
     "database": { "kind": "parameter", "displayName": "Database", "group": 
"common", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "Sets the name of the MongoDB database to target" },
-    "hosts": { "kind": "parameter", "displayName": "Hosts", "group": "common", 
"label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "Host address of mongodb server in host:port format. It's 
possible also use more than one address, as comma separated list of hosts: 
host1:port1,host2:port2. If hosts parameter is specified, provided 
connectionBean is ignored." },
+    "hosts": { "kind": "parameter", "displayName": "Hosts", "group": "common", 
"label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "Host address of mongodb server in host:port format. It's 
possible also use more than one address, as comma separated list of hosts: 
host1:port1,host2:port2. If the hosts parameter is specified, the provided 
connectionBean is ignored." },
     "mongoConnection": { "kind": "parameter", "displayName": "Mongo 
Connection", "group": "common", "label": "", "required": false, "type": 
"object", "javaType": "com.mongodb.client.MongoClient", "deprecated": false, 
"autowired": false, "secret": false, "description": "Sets the connection bean 
used as a client for connecting to a database." },
     "operation": { "kind": "parameter", "displayName": "Operation", "group": 
"common", "label": "", "required": false, "type": "object", "javaType": 
"org.apache.camel.component.mongodb.MongoDbOperation", "enum": [ "findById", 
"findOneByQuery", "findAll", "findDistinct", "insert", "save", "update", 
"remove", "bulkWrite", "aggregate", "getDbStats", "getColStats", "count", 
"command" ], "deprecated": false, "autowired": false, "secret": false, 
"description": "Sets the operation this endpoint [...]
     "outputType": { "kind": "parameter", "displayName": "Output Type", 
"group": "common", "label": "common", "required": false, "type": "object", 
"javaType": "org.apache.camel.component.mongodb.MongoDbOutputType", "enum": [ 
"DocumentList", "Document", "MongoIterable" ], "deprecated": false, 
"autowired": false, "secret": false, "description": "Convert the output of the 
producer to the selected type : DocumentList Document or MongoIterable. 
DocumentList or MongoIterable applies to findAll  [...]
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/dataFormats.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/dataFormats.json
index ca047ed..4663241 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/dataFormats.json
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/dataFormats.json
@@ -12,6 +12,6 @@
     "output": false
   },
   "properties": {
-    "dataFormats": { "kind": "element", "displayName": "Data Formats", 
"required": true, "type": "array", "javaType": 
"java.util.List<org.apache.camel.model.DataFormatDefinition>", "oneOf": [ 
"any23", "asn1", "avro", "barcode", "base64", "beanio", "bindy", "cbor", 
"crypto", "csv", "custom", "fhirJson", "fhirXml", "flatpack", "grok", 
"gzipDeflator", "hl7", "ical", "jacksonXml", "jaxb", "json", "jsonApi", "lzf", 
"mimeMultipart", "pgp", "protobuf", "rss", "soap", "syslog", "tarFile", "thrif 
[...]
+    "dataFormats": { "kind": "element", "displayName": "Data Formats", 
"required": true, "type": "array", "javaType": 
"java.util.List<org.apache.camel.model.DataFormatDefinition>", "oneOf": [ 
"any23", "asn1", "avro", "barcode", "base64", "beanio", "bindy", "cbor", 
"crypto", "csv", "custom", "fhirJson", "fhirXml", "flatpack", "grok", 
"gzipDeflater", "hl7", "ical", "jacksonXml", "jaxb", "json", "jsonApi", "lzf", 
"mimeMultipart", "pgp", "protobuf", "rss", "soap", "syslog", "tarFile", "thrif 
[...]
   }
 }
diff --git 
a/core/camel-core-model/src/generated/resources/org/apache/camel/model/dataformat/dataFormats.json
 
b/core/camel-core-model/src/generated/resources/org/apache/camel/model/dataformat/dataFormats.json
index ca047ed..4663241 100644
--- 
a/core/camel-core-model/src/generated/resources/org/apache/camel/model/dataformat/dataFormats.json
+++ 
b/core/camel-core-model/src/generated/resources/org/apache/camel/model/dataformat/dataFormats.json
@@ -12,6 +12,6 @@
     "output": false
   },
   "properties": {
-    "dataFormats": { "kind": "element", "displayName": "Data Formats", 
"required": true, "type": "array", "javaType": 
"java.util.List<org.apache.camel.model.DataFormatDefinition>", "oneOf": [ 
"any23", "asn1", "avro", "barcode", "base64", "beanio", "bindy", "cbor", 
"crypto", "csv", "custom", "fhirJson", "fhirXml", "flatpack", "grok", 
"gzipDeflator", "hl7", "ical", "jacksonXml", "jaxb", "json", "jsonApi", "lzf", 
"mimeMultipart", "pgp", "protobuf", "rss", "soap", "syslog", "tarFile", "thrif 
[...]
+    "dataFormats": { "kind": "element", "displayName": "Data Formats", 
"required": true, "type": "array", "javaType": 
"java.util.List<org.apache.camel.model.DataFormatDefinition>", "oneOf": [ 
"any23", "asn1", "avro", "barcode", "base64", "beanio", "bindy", "cbor", 
"crypto", "csv", "custom", "fhirJson", "fhirXml", "flatpack", "grok", 
"gzipDeflater", "hl7", "ical", "jacksonXml", "jaxb", "json", "jsonApi", "lzf", 
"mimeMultipart", "pgp", "protobuf", "rss", "soap", "syslog", "tarFile", "thrif 
[...]
   }
 }
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 03924e8..baffeda 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
@@ -10664,7 +10664,7 @@ public class StaticEndpointBuilders {
      * 
      * Path parameter: connectionBean (required)
      * Sets the connection bean reference used to lookup a client for 
connecting
-     * to a database.
+     * to a database if no hosts parameter is present.
      * 
      * @param path connectionBean
      * @return the dsl builder
@@ -10685,7 +10685,7 @@ public class StaticEndpointBuilders {
      * 
      * Path parameter: connectionBean (required)
      * Sets the connection bean reference used to lookup a client for 
connecting
-     * to a database.
+     * to a database if no hosts parameter is present.
      * 
      * @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/MongoDbEndpointBuilderFactory.java
 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/MongoDbEndpointBuilderFactory.java
index 7a8b75f..1bd0354 100644
--- 
a/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/MongoDbEndpointBuilderFactory.java
+++ 
b/dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/MongoDbEndpointBuilderFactory.java
@@ -125,8 +125,8 @@ public interface MongoDbEndpointBuilderFactory {
         /**
          * Host address of mongodb server in host:port format. It's possible
          * also use more than one address, as comma separated list of hosts:
-         * host1:port1,host2:port2. If hosts parameter is specified, provided
-         * connectionBean is ignored.
+         * host1:port1,host2:port2. If the hosts parameter is specified, the
+         * provided connectionBean is ignored.
          * 
          * The option is a: &lt;code&gt;java.lang.String&lt;/code&gt; type.
          * 
@@ -803,8 +803,8 @@ public interface MongoDbEndpointBuilderFactory {
         /**
          * Host address of mongodb server in host:port format. It's possible
          * also use more than one address, as comma separated list of hosts:
-         * host1:port1,host2:port2. If hosts parameter is specified, provided
-         * connectionBean is ignored.
+         * host1:port1,host2:port2. If the hosts parameter is specified, the
+         * provided connectionBean is ignored.
          * 
          * The option is a: &lt;code&gt;java.lang.String&lt;/code&gt; type.
          * 
@@ -1259,8 +1259,8 @@ public interface MongoDbEndpointBuilderFactory {
         /**
          * Host address of mongodb server in host:port format. It's possible
          * also use more than one address, as comma separated list of hosts:
-         * host1:port1,host2:port2. If hosts parameter is specified, provided
-         * connectionBean is ignored.
+         * host1:port1,host2:port2. If the hosts parameter is specified, the
+         * provided connectionBean is ignored.
          * 
          * The option is a: &lt;code&gt;java.lang.String&lt;/code&gt; type.
          * 
@@ -1587,7 +1587,7 @@ public interface MongoDbEndpointBuilderFactory {
          * 
          * Path parameter: connectionBean (required)
          * Sets the connection bean reference used to lookup a client for
-         * connecting to a database.
+         * connecting to a database if no hosts parameter is present.
          * 
          * @param path connectionBean
          * @return the dsl builder
@@ -1607,7 +1607,7 @@ public interface MongoDbEndpointBuilderFactory {
          * 
          * Path parameter: connectionBean (required)
          * Sets the connection bean reference used to lookup a client for
-         * connecting to a database.
+         * connecting to a database if no hosts parameter is present.
          * 
          * @param componentName to use a custom component name for the endpoint
          * instead of the default name
diff --git 
a/dsl/camel-yaml-dsl/camel-yaml-dsl-deserializers/src/generated/java/org/apache/camel/dsl/yaml/deserializers/ModelDeserializers.java
 
b/dsl/camel-yaml-dsl/camel-yaml-dsl-deserializers/src/generated/java/org/apache/camel/dsl/yaml/deserializers/ModelDeserializers.java
index 88d3f19..b64cc53 100644
--- 
a/dsl/camel-yaml-dsl/camel-yaml-dsl-deserializers/src/generated/java/org/apache/camel/dsl/yaml/deserializers/ModelDeserializers.java
+++ 
b/dsl/camel-yaml-dsl/camel-yaml-dsl-deserializers/src/generated/java/org/apache/camel/dsl/yaml/deserializers/ModelDeserializers.java
@@ -3130,7 +3130,7 @@ public final class ModelDeserializers extends 
YamlDeserializerSupport {
                     @YamlProperty(name = "fhir-xml", type = 
"object:org.apache.camel.model.dataformat.FhirXmlDataFormat"),
                     @YamlProperty(name = "flatpack", type = 
"object:org.apache.camel.model.dataformat.FlatpackDataFormat"),
                     @YamlProperty(name = "grok", type = 
"object:org.apache.camel.model.dataformat.GrokDataFormat"),
-                    @YamlProperty(name = "gzip-deflator", type = 
"object:org.apache.camel.model.dataformat.GzipDeflaterDataFormat"),
+                    @YamlProperty(name = "gzip-deflater", type = 
"object:org.apache.camel.model.dataformat.GzipDeflaterDataFormat"),
                     @YamlProperty(name = "hl7", type = 
"object:org.apache.camel.model.dataformat.HL7DataFormat"),
                     @YamlProperty(name = "ical", type = 
"object:org.apache.camel.model.dataformat.IcalDataFormat"),
                     @YamlProperty(name = "jackson-xml", type = 
"object:org.apache.camel.model.dataformat.JacksonXMLDataFormat"),
@@ -3326,7 +3326,7 @@ public final class ModelDeserializers extends 
YamlDeserializerSupport {
                     target.setDataFormats(existing);
                     break;
                 }
-                case "gzip-deflator": {
+                case "gzip-deflater": {
                     org.apache.camel.model.dataformat.GzipDeflaterDataFormat 
val = asType(node, 
org.apache.camel.model.dataformat.GzipDeflaterDataFormat.class);
                     
java.util.List<org.apache.camel.model.DataFormatDefinition> existing = 
target.getDataFormats();
                     if (existing == null) {
diff --git 
a/dsl/camel-yaml-dsl/camel-yaml-dsl/src/generated/resources/camel-yaml-dsl.json 
b/dsl/camel-yaml-dsl/camel-yaml-dsl/src/generated/resources/camel-yaml-dsl.json
index f8c6505..608be1d 100644
--- 
a/dsl/camel-yaml-dsl/camel-yaml-dsl/src/generated/resources/camel-yaml-dsl.json
+++ 
b/dsl/camel-yaml-dsl/camel-yaml-dsl/src/generated/resources/camel-yaml-dsl.json
@@ -4223,7 +4223,7 @@
           "grok" : {
             "$ref" : 
"#/items/definitions/org.apache.camel.model.dataformat.GrokDataFormat"
           },
-          "gzip-deflator" : {
+          "gzip-deflater" : {
             "$ref" : 
"#/items/definitions/org.apache.camel.model.dataformat.GzipDeflaterDataFormat"
           },
           "hl7" : {

Reply via email to