This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
commit 15e479f39a76a0826abda9f642e95e58371d7dbd Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Sun Aug 23 10:08:20 2020 +0200 Regen --- docs/modules/ROOT/pages/arangodb-starter.adoc | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/docs/modules/ROOT/pages/arangodb-starter.adoc b/docs/modules/ROOT/pages/arangodb-starter.adoc index 3a63655..a77605d 100644 --- a/docs/modules/ROOT/pages/arangodb-starter.adoc +++ b/docs/modules/ROOT/pages/arangodb-starter.adoc @@ -17,7 +17,7 @@ When using arangodb with Spring Boot make sure to use the following Maven depend ---- -The component supports 10 options, which are listed below. +The component supports 13 options, which are listed below. @@ -25,16 +25,17 @@ The component supports 10 options, which are listed below. |=== | Name | Description | Default | Type | *camel.component.arangodb.basic-property-binding* | Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | Boolean -| *camel.component.arangodb.collection* | collection in the database | | String | *camel.component.arangodb.configuration* | Component configuration. The option is a org.apache.camel.component.arangodb.ArangoDbConfiguration type. | | String +| *camel.component.arangodb.document-collection* | Collection name, when using ArangoDb as a Document Database. Set the documentCollection name when using the CRUD operation on the document database collections (SAVE_DOCUMENT , FIND_DOCUMENT_BY_KEY, UPDATE_DOCUMENT, DELETE_DOCUMENT). | | String +| *camel.component.arangodb.edge-collection* | Collection name of vertices, when using ArangoDb as a Graph Database. Set the edgeCollection name to perform CRUD operation on edges using these operations : SAVE_VERTEX, FIND_VERTEX_BY_KEY, UPDATE_VERTEX, DELETE_VERTEX. The graph attribute is mandatory. | | String | *camel.component.arangodb.enabled* | Whether to enable auto configuration of the arangodb component. This is enabled by default. | | Boolean -| *camel.component.arangodb.host* | host if host and/or port different from default | | String +| *camel.component.arangodb.graph* | Graph name, when using ArangoDb as a Graph Database. Combine this attribute with one of the two attributes vertexCollection and edgeCollection. | | String +| *camel.component.arangodb.host* | ArangoDB host. If host and port are default, this field is Optional. | | String | *camel.component.arangodb.lazy-start-producer* | Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed t [...] -| *camel.component.arangodb.operation* | operation to perform | | ArangoDbOperation -| *camel.component.arangodb.password* | password if user and/or password different from default | | String -| *camel.component.arangodb.port* | port if host and/or port different from default | | Integer -| *camel.component.arangodb.user* | user if user and/or password different from default | | String +| *camel.component.arangodb.operation* | Operations to perform on ArangoDb. For the operation AQL_QUERY, no need to specify a collection or graph. | | ArangoDbOperation +| *camel.component.arangodb.password* | ArangoDB password. If user and password are default, this field is Optional. | | String +| *camel.component.arangodb.port* | ArangoDB exposed port. If host and port are default, this field is Optional. | | Integer +| *camel.component.arangodb.user* | ArangoDB user. If user and password are default, this field is Optional. | | String +| *camel.component.arangodb.vertex-collection* | Collection name of vertices, when using ArangoDb as a Graph Database. Set the vertexCollection name to perform CRUD operation on vertices using these operations : SAVE_EDGE, FIND_EDGE_BY_KEY, UPDATE_EDGE, DELETE_EDGE. The graph attribute is mandatory. | | String |=== - - // spring-boot-auto-configure options: END