Skip to content

Commit

Permalink
Add sensitive column for configuration properties (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangpengcheng committed Dec 18, 2023
1 parent c9acffa commit 00b7eb2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
20 changes: 10 additions & 10 deletions docs/io-activemq-sink.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
18 changes: 9 additions & 9 deletions docs/io-activemq-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 00b7eb2

Please sign in to comment.