From c12c6c407b78ce57c369c4077abe42a9b456ae60 Mon Sep 17 00:00:00 2001 From: jiangpengcheng Date: Mon, 18 Dec 2023 08:55:50 +0800 Subject: [PATCH] Add sensitive column for configuration properties --- docs/io-activemq-sink.md | 20 ++++++++++---------- docs/io-activemq-source.md | 18 +++++++++--------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/docs/io-activemq-sink.md b/docs/io-activemq-sink.md index 17b1b06..ac640ea 100644 --- a/docs/io-activemq-sink.md +++ b/docs/io-activemq-sink.md @@ -21,16 +21,16 @@ The configuration of the ActiveMQ sink connector has the following properties. ## ActiveMQ sink connector configuration -| Name | Type|Required | Default | Description -|------|----------|----------|---------|-------------| -| `protocol` |String| true | "tcp" | The ActiveMQ protocol. | -| `host` | String| true | " " (empty string) | The ActiveMQ host. | -| `port` | int |true | 5672 | The ActiveMQ port. | -| `username` | String|false | " " (empty string) | The username used to authenticate to ActiveMQ. | -| `password` | String|false | " " (empty string) | The password used to authenticate to ActiveMQ. | -| `queueName` | String|false | " " (empty string) | The ActiveMQ queue name that messages should be read from or written to. | -| `topicName` | String|false | " " (empty string) | The ActiveMQ topic name that messages should be read from or written to. | -| `activeMessageType` | String|false |0 | The ActiveMQ message simple class name. | +| Name | Type | Required | Sensitive | Default | Description | +|---------------------|--------|----------|-----------|--------------------|--------------------------------------------------------------------------| +| `protocol` | String | true | false | "tcp" | The ActiveMQ protocol. | +| `host` | String | true | false | " " (empty string) | The ActiveMQ host. | +| `port` | int | true | false | 5672 | The ActiveMQ port. | +| `username` | String | false | true | " " (empty string) | The username used to authenticate to ActiveMQ. | +| `password` | String | false | true | " " (empty string) | The password used to authenticate to ActiveMQ. | +| `queueName` | String | false | false | " " (empty string) | The ActiveMQ queue name that messages should be read from or written to. | +| `topicName` | String | false | false | " " (empty string) | The ActiveMQ topic name that messages should be read from or written to. | +| `activeMessageType` | String | false | false | 0 | The ActiveMQ message simple class name. | ## Configure ActiveMQ sink connector diff --git a/docs/io-activemq-source.md b/docs/io-activemq-source.md index c008e5d..56ad3c6 100644 --- a/docs/io-activemq-source.md +++ b/docs/io-activemq-source.md @@ -21,15 +21,15 @@ The configuration of the ActiveMQ source connector has the following properties. ## ActiveMQ source connector configuration -| Name | Type|Required | Default | Description -|------|----------|----------|---------|-------------| -| `protocol` |String| true | "tcp" | The ActiveMQ protocol. | -| `host` | String| true | " " (empty string) | The ActiveMQ host. | -| `port` | int |true | 5672 | The ActiveMQ port. | -| `username` | String|false | " " (empty string) | The username used to authenticate to ActiveMQ. | -| `password` | String|false | " " (empty string) | The password used to authenticate to ActiveMQ. | -| `queueName` | String|false | " " (empty string) | The ActiveMQ queue name that messages should be read from or written to. | -| `topicName` | String|false | " " (empty string) | The ActiveMQ topic name that messages should be read from or written to. | +| Name | Type | Required | Sensitive | Default | Description | +|-------------|--------|----------|-----------|--------------------|--------------------------------------------------------------------------| +| `protocol` | String | true | false | "tcp" | The ActiveMQ protocol. | +| `host` | String | true | false | " " (empty string) | The ActiveMQ host. | +| `port` | int | true | false | 5672 | The ActiveMQ port. | +| `username` | String | false | true | " " (empty string) | The username used to authenticate to ActiveMQ. | +| `password` | String | false | true | " " (empty string) | The password used to authenticate to ActiveMQ. | +| `queueName` | String | false | false | " " (empty string) | The ActiveMQ queue name that messages should be read from or written to. | +| `topicName` | String | false | false | " " (empty string) | The ActiveMQ topic name that messages should be read from or written to. | ## Configure ActiveMQ source connector