You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/10/01 14:34:10 UTC

[camel] branch master updated (0c9fffb -> 66bbc1d)

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 0c9fffb  Regen docs
     new ad08508  Camel-AWS MQ: Added operations list for producer on docs
     new 84f6e17  Regen docs
     new 6f09360  Camel AWS MQ: Added sample code for AWS MQ Producer on docs
     new 66bbc1d  Regen docs

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../src/main/docs/aws-mq-component.adoc             | 21 +++++++++++++++++++++
 .../modules/ROOT/pages/aws-mq-component.adoc        | 21 +++++++++++++++++++++
 2 files changed, 42 insertions(+)


[camel] 03/04: Camel AWS MQ: Added sample code for AWS MQ Producer on docs

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 6f09360bd6d5ab1607aa2b100ceaebdc2c67a70c
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Oct 1 16:31:58 2019 +0200

    Camel AWS MQ: Added sample code for AWS MQ Producer on docs
---
 components/camel-aws-mq/src/main/docs/aws-mq-component.adoc | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/components/camel-aws-mq/src/main/docs/aws-mq-component.adoc b/components/camel-aws-mq/src/main/docs/aws-mq-component.adoc
index dd9f390..3d9db24 100644
--- a/components/camel-aws-mq/src/main/docs/aws-mq-component.adoc
+++ b/components/camel-aws-mq/src/main/docs/aws-mq-component.adoc
@@ -168,6 +168,16 @@ Camel-AWS MQ component provides the following operation on the producer side:
 - updateBroker
 - describeBroker
 
+== Producer Examples
+
+- listBrokers: this operation will list the available MQ Brokers in AWS
+
+[source,java]
+--------------------------------------------------------------------------------
+from("direct:listBrokers")
+    .to("aws-mq://test?amazonMqClient=#amazonMqClient&operation=listBrokers")
+--------------------------------------------------------------------------------
+
 == Automatic detection of AmazonMQ client in registry
 
 The component is capable of detecting the presence of an AmazonMQ bean into the registry.


[camel] 04/04: Regen docs

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 66bbc1d6bdd6fbdf85bd77eb3d0580f3116137c8
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Oct 1 16:33:48 2019 +0200

    Regen docs
---
 docs/components/modules/ROOT/pages/aws-mq-component.adoc | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/docs/components/modules/ROOT/pages/aws-mq-component.adoc b/docs/components/modules/ROOT/pages/aws-mq-component.adoc
index b65925f..6a4c731 100644
--- a/docs/components/modules/ROOT/pages/aws-mq-component.adoc
+++ b/docs/components/modules/ROOT/pages/aws-mq-component.adoc
@@ -169,6 +169,16 @@ Camel-AWS MQ component provides the following operation on the producer side:
 - updateBroker
 - describeBroker
 
+== Producer Examples
+
+- listBrokers: this operation will list the available MQ Brokers in AWS
+
+[source,java]
+--------------------------------------------------------------------------------
+from("direct:listBrokers")
+    .to("aws-mq://test?amazonMqClient=#amazonMqClient&operation=listBrokers")
+--------------------------------------------------------------------------------
+
 == Automatic detection of AmazonMQ client in registry
 
 The component is capable of detecting the presence of an AmazonMQ bean into the registry.


[camel] 02/04: Regen docs

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 84f6e177ef893d325582a089bef6b95eb1923b07
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Oct 1 16:28:58 2019 +0200

    Regen docs
---
 docs/components/modules/ROOT/pages/aws-mq-component.adoc | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/docs/components/modules/ROOT/pages/aws-mq-component.adoc b/docs/components/modules/ROOT/pages/aws-mq-component.adoc
index 3dc03ae..b65925f 100644
--- a/docs/components/modules/ROOT/pages/aws-mq-component.adoc
+++ b/docs/components/modules/ROOT/pages/aws-mq-component.adoc
@@ -158,6 +158,17 @@ the https://aws.amazon.com/amazon-mq/[Amazon MQ] service.
 |`CamelAwsMQBrokerPubliclyAccessible` |`Boolean` |If the MQ instance must be publicly available or not. Default is false.
 |=======================================================================
 
+=== MQ Producer operations
+
+Camel-AWS MQ component provides the following operation on the producer side:
+
+- listBrokers
+- createBroker
+- deleteBroker
+- rebootBroker
+- updateBroker
+- describeBroker
+
 == Automatic detection of AmazonMQ client in registry
 
 The component is capable of detecting the presence of an AmazonMQ bean into the registry.


[camel] 01/04: Camel-AWS MQ: Added operations list for producer on docs

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit ad085085771f91e8fc2539e962e8590870eaf602
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Oct 1 16:27:25 2019 +0200

    Camel-AWS MQ: Added operations list for producer on docs
---
 components/camel-aws-mq/src/main/docs/aws-mq-component.adoc | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/components/camel-aws-mq/src/main/docs/aws-mq-component.adoc b/components/camel-aws-mq/src/main/docs/aws-mq-component.adoc
index b3aaf2b..dd9f390 100644
--- a/components/camel-aws-mq/src/main/docs/aws-mq-component.adoc
+++ b/components/camel-aws-mq/src/main/docs/aws-mq-component.adoc
@@ -157,6 +157,17 @@ the https://aws.amazon.com/amazon-mq/[Amazon MQ] service.
 |`CamelAwsMQBrokerPubliclyAccessible` |`Boolean` |If the MQ instance must be publicly available or not. Default is false.
 |=======================================================================
 
+=== MQ Producer operations
+
+Camel-AWS MQ component provides the following operation on the producer side:
+
+- listBrokers
+- createBroker
+- deleteBroker
+- rebootBroker
+- updateBroker
+- describeBroker
+
 == Automatic detection of AmazonMQ client in registry
 
 The component is capable of detecting the presence of an AmazonMQ bean into the registry.