You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/09/21 10:27:20 UTC

[camel-kafka-connector] 03/03: Removed digitalocean docs

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch digitalocean
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git

commit 8b937e6c858baca9ad99f77c05ff70d8e4bf88b2
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Sep 21 12:26:41 2020 +0200

    Removed digitalocean docs
---
 .../camel-digitalocean-kafka-sink-connector.adoc   | 64 ----------------------
 1 file changed, 64 deletions(-)

diff --git a/docs/modules/ROOT/pages/connectors/camel-digitalocean-kafka-sink-connector.adoc b/docs/modules/ROOT/pages/connectors/camel-digitalocean-kafka-sink-connector.adoc
deleted file mode 100644
index 59ef179..0000000
--- a/docs/modules/ROOT/pages/connectors/camel-digitalocean-kafka-sink-connector.adoc
+++ /dev/null
@@ -1,64 +0,0 @@
-// kafka-connector options: START
-[[camel-digitalocean-kafka-connector-sink]]
-= camel-digitalocean-kafka-connector sink configuration
-
-When using camel-digitalocean-kafka-connector as sink make sure to use the following Maven dependency to have support for the connector:
-
-[source,xml]
-----
-<dependency>
-  <groupId>org.apache.camel.kafkaconnector</groupId>
-  <artifactId>camel-digitalocean-kafka-connector</artifactId>
-  <version>x.x.x</version>
-  <!-- use the same version as your Camel Kafka connector version -->
-</dependency>
-----
-
-To use this Sink connector in Kafka connect you'll need to set the following connector.class
-
-[source,java]
-----
-connector.class=org.apache.camel.kafkaconnector.digitalocean.CamelDigitaloceanSinkConnector
-----
-
-
-The camel-digitalocean sink connector supports 15 options, which are listed below.
-
-
-
-[width="100%",cols="2,5,^1,2",options="header"]
-|===
-| Name | Description | Default | Priority
-| *camel.sink.path.operation* | The operation to perform to the given resource. One of: [create] [update] [delete] [list] [ownList] [get] [listBackups] [listActions] [listNeighbors] [listSnapshots] [listKernels] [listAllNeighbors] [enableBackups] [disableBackups] [reboot] [powerCycle] [shutdown] [powerOn] [powerOff] [restore] [resetPassword] [resize] [rebuild] [rename] [changeKernel] [enableIpv6] [enablePrivateNetworking] [takeSnapshot] [transfer] [convert] [attach] [detach] [assign] [un [...]
-| *camel.sink.endpoint.lazyStartProducer* | 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 then cre [...]
-| *camel.sink.endpoint.page* | Use for pagination. Force the page number. | "1" | MEDIUM
-| *camel.sink.endpoint.perPage* | Use for pagination. Set the number of item per request. The maximum number of results per page is 200. | "25" | MEDIUM
-| *camel.sink.endpoint.resource* | The DigitalOcean resource type on which perform the operation. One of: [account] [actions] [blockStorages] [droplets] [mages] [snapshots] [keys] [regions] [sizes] [floatingIPs] [tags] | null | HIGH
-| *camel.sink.endpoint.basicPropertyBinding* | Whether the endpoint should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | MEDIUM
-| *camel.sink.endpoint.digitalOceanClient* | To use a existing configured DigitalOceanClient as client | null | MEDIUM
-| *camel.sink.endpoint.synchronous* | Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). | false | MEDIUM
-| *camel.sink.endpoint.httpProxyHost* | Set a proxy host if needed | null | MEDIUM
-| *camel.sink.endpoint.httpProxyPassword* | Set a proxy password if needed | null | MEDIUM
-| *camel.sink.endpoint.httpProxyPort* | Set a proxy port if needed | null | MEDIUM
-| *camel.sink.endpoint.httpProxyUser* | Set a proxy host if needed | null | MEDIUM
-| *camel.sink.endpoint.oAuthToken* | DigitalOcean OAuth Token | null | MEDIUM
-| *camel.component.digitalocean.lazyStartProducer* | 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 [...]
-| *camel.component.digitalocean.basicPropertyBinding* | Whether the component should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities | false | MEDIUM
-|===
-
-
-
-The camel-digitalocean sink connector has no converters out of the box.
-
-
-
-
-
-The camel-digitalocean sink connector has no transforms out of the box.
-
-
-
-
-
-The camel-digitalocean sink connector has no aggregation strategies out of the box.
-// kafka-connector options: END