Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add sensitive column for configuration properties #38

Merged
merged 1 commit into from
Dec 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading