@@ -21,62 +21,62 @@ If the server you're interacting with is allows anonymous authentication, you ca
2121
2222You 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
3737Acknowledge 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
4646Verify 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
5454Receives 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
6464Add 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
7777Rejects 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