Skip to content

Commit b8e8e77

Browse files
committed
Generate connector docs
1 parent 2717901 commit b8e8e77

File tree

193 files changed

+37494
-32796
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

193 files changed

+37494
-32796
lines changed

docs/connectors/adobe-acrobat-sign.md

Lines changed: 290 additions & 274 deletions
Large diffs are not rendered by default.

docs/connectors/adobe-analytics.md

Lines changed: 109 additions & 61 deletions
Large diffs are not rendered by default.

docs/connectors/adobe-commerce-magento.md

Lines changed: 168 additions & 142 deletions
Large diffs are not rendered by default.

docs/connectors/adobe-io-events.md

Lines changed: 91 additions & 91 deletions
Large diffs are not rendered by default.

docs/connectors/adp-workforce-now.md

Lines changed: 163 additions & 163 deletions
Large diffs are not rendered by default.

docs/connectors/airtable.md

Lines changed: 136 additions & 94 deletions
Large diffs are not rendered by default.

docs/connectors/algolia.md

Lines changed: 82 additions & 82 deletions
Large diffs are not rendered by default.

docs/connectors/amazon-seller-central.md

Lines changed: 261 additions & 247 deletions
Large diffs are not rendered by default.

docs/connectors/amqp.md

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -21,62 +21,62 @@ If the server you're interacting with is allows anonymous authentication, you ca
2121

2222
You can verify that your settings are correct using the this component's [Check AMQP Connection](#check-amqp-connection) action.
2323

24-
| Input | Comments | Default |
25-
| -------- | -------------------------------------------------------------------------- | ----------- |
26-
| Host | The IP address or endpoint of the AMQP server | 192.168.0.1 |
27-
| Port | The port of the AMQP server | 5672 |
28-
| Protocol | Provide the desired protocol in which you want to interact with the queue. | amqp |
29-
| Vhost | The "example/vhost" portion of amqps://amqp.example.com:5672/example/vhost | |
30-
| Username | This can be omitted if the AMQP server allows anonymous authentication | |
31-
| Password | This can be omitted if the AMQP server allows anonymous authentication | |
24+
| Input | Comments | Required? | Type | Default | Options |
25+
| -------- | -------------------------------------------------------------------------- | --------- | ------ | ----------- | ------------------------------------------------- |
26+
| Host | The IP address or endpoint of the AMQP server | true | STRING | 192.168.0.1 | |
27+
| Port | The port of the AMQP server | true | STRING | 5672 | |
28+
| Protocol | Provide the desired protocol in which you want to interact with the queue. | true | STRING | amqp | <ul><li>AMQP(amqp)</li><li>AMQPS(amqps)</li></ul> |
29+
| Vhost | The "example/vhost" portion of amqps://amqp.example.com:5672/example/vhost | false | STRING | | |
30+
| Username | This can be omitted if the AMQP server allows anonymous authentication | false | STRING | | |
31+
| Password | This can be omitted if the AMQP server allows anonymous authentication | false | STRING | | |
3232

3333
## Actions
3434

3535
### Acknowledge Message
3636

3737
Acknowledge a previously fetched message
3838

39-
| Input | Comments | Default |
40-
| ---------- | --------------------------------------------------------------------------------- | ------- |
41-
| Connection | | |
42-
| Message | An AMQP message. This must reference the results of a previous 'Get Message' step | |
39+
| Input | Comments | Required? | Type | Default | Options |
40+
| ---------- | --------------------------------------------------------------------------------- | --------- | ---------- | ------- | ------- |
41+
| Connection | | true | CONNECTION | | |
42+
| Message | An AMQP message. This must reference the results of a previous 'Get Message' step | true | STRING | | |
4343

4444
### Check AMQP Connection
4545

4646
Verify that an AMQP server is available, and return the server's connection information. This is helpful for debugging purposes.
4747

48-
| Input | Comments | Default |
49-
| ---------- | -------- | ------- |
50-
| Connection | | |
48+
| Input | Comments | Required? | Type | Default | Options |
49+
| ---------- | -------- | --------- | ---------- | ------- | ------- |
50+
| Connection | | true | CONNECTION | | |
5151

5252
### Get Message
5353

5454
Receives a message from an AMQP-based queue
5555

56-
| Input | Comments | Default |
57-
| ------------------- | -------------------------------------------------------------- | ------- |
58-
| Queue Name | Provide the name of the queue you would like to interact with. | |
59-
| Connection | | |
60-
| Acknowledge Message | Automatically mark the message received as "Acknowledged" | true |
56+
| Input | Comments | Required? | Type | Default | Options |
57+
| ------------------- | -------------------------------------------------------------- | --------- | ---------- | ------- | ------- |
58+
| Queue Name | Provide the name of the queue you would like to interact with. | true | STRING | | |
59+
| Connection | | true | CONNECTION | | |
60+
| Acknowledge Message | Automatically mark the message received as "Acknowledged" | false | BOOLEAN | true | |
6161

6262
### Publish Message
6363

6464
Add a message to an AMQP-based queue
6565

66-
| Input | Comments | Default |
67-
| ------------- | --------------------------------------------------------------------------------------------------------------------------------- | ------- |
68-
| Connection | | |
69-
| Queue Name | Provide the name of the queue you would like to interact with. (Note: this input is required when Route Messages is false.) | |
70-
| Exchange | Provide the name of the exchange you would like to interact with. (Note: this parameter is required when Route Messages is true.) | |
71-
| Routing Key | Provide the routing key you would like to use. (Note: this parameter is required when Route Messages is true.) | |
72-
| Route Message | If you would like to route this message, check this box. | false |
73-
| Message | Provide a message to push on to the queue. | |
66+
| Input | Comments | Required? | Type | Default | Options |
67+
| ------------- | --------------------------------------------------------------------------------------------------------------------------------- | --------- | ---------- | ------- | ------- |
68+
| Connection | | true | CONNECTION | | |
69+
| Queue Name | Provide the name of the queue you would like to interact with. (Note: this input is required when Route Messages is false.) | false | STRING | | |
70+
| Exchange | Provide the name of the exchange you would like to interact with. (Note: this parameter is required when Route Messages is true.) | false | STRING | | |
71+
| Routing Key | Provide the routing key you would like to use. (Note: this parameter is required when Route Messages is true.) | false | STRING | | |
72+
| Route Message | If you would like to route this message, check this box. | true | BOOLEAN | false | |
73+
| Message | Provide a message to push on to the queue. | true | STRING | | |
7474

7575
### Reject Message
7676

7777
Rejects one message from an AMQP-based queue
7878

79-
| Input | Comments | Default |
80-
| ---------- | -------------------------------------------------------------- | ------- |
81-
| Queue Name | Provide the name of the queue you would like to interact with. | |
82-
| Connection | | |
79+
| Input | Comments | Required? | Type | Default | Options |
80+
| ---------- | -------------------------------------------------------------- | --------- | ---------- | ------- | ------- |
81+
| Queue Name | Provide the name of the queue you would like to interact with. | true | STRING | | |
82+
| Connection | | true | CONNECTION | | |

0 commit comments

Comments
 (0)