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:07:55 UTC

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

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 d38c4a1  Regen docs
     new f32ec39  Camel-AWS-IAM: Added sample code for producer on docs
     new e1b2bda  Regen docs
     new 041c837  Camel-AWS-KMS: added sample code for producer on docs
     new 0c9fffb  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:
 components/camel-aws-iam/src/main/docs/aws-iam-component.adoc | 11 +++++++++++
 components/camel-aws-kms/src/main/docs/aws-kms-component.adoc | 10 ++++++++++
 docs/components/modules/ROOT/pages/aws-iam-component.adoc     | 11 +++++++++++
 docs/components/modules/ROOT/pages/aws-kms-component.adoc     | 10 ++++++++++
 4 files changed, 42 insertions(+)


[camel] 01/04: Camel-AWS-IAM: Added sample code 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 f32ec392c271b7a7d3c7ac9dbcd70f01c9015d3b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Oct 1 15:45:32 2019 +0200

    Camel-AWS-IAM: Added sample code for producer on docs
---
 components/camel-aws-iam/src/main/docs/aws-iam-component.adoc | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/components/camel-aws-iam/src/main/docs/aws-iam-component.adoc b/components/camel-aws-iam/src/main/docs/aws-iam-component.adoc
index 22b6369..0e0ee59 100644
--- a/components/camel-aws-iam/src/main/docs/aws-iam-component.adoc
+++ b/components/camel-aws-iam/src/main/docs/aws-iam-component.adoc
@@ -167,6 +167,17 @@ Camel-AWS IAM component provides the following operation on the producer side:
 - addUserToGroup
 - removeUserFromGroup
 
+== Producer Examples
+
+- createUser: this operation will create a user in IAM
+
+[source,java]
+--------------------------------------------------------------------------------
+from("direct:createUser")
+    .setHeader(IAMConstants.GROUP_NAME, constant("camel"))
+    .to("aws-iam://test?iamClient=#amazonIAMClient&operation=createUser")
+--------------------------------------------------------------------------------
+
 == Automatic detection of AmazonIdentityManagement client in registry
 
 The component is capable of detecting the presence of an AmazonIdentityManagement 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 0c9fffbfef93f66c36f9af5f36e9c6044a380363
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Oct 1 16:07:30 2019 +0200

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

diff --git a/docs/components/modules/ROOT/pages/aws-kms-component.adoc b/docs/components/modules/ROOT/pages/aws-kms-component.adoc
index faabff0..0f6562f 100644
--- a/docs/components/modules/ROOT/pages/aws-kms-component.adoc
+++ b/docs/components/modules/ROOT/pages/aws-kms-component.adoc
@@ -157,6 +157,16 @@ Camel-AWS KMS component provides the following operation on the producer side:
 - describeKey
 - enableKey
 
+== Producer Examples
+
+- listKeys: this operation will list the available keys in KMS
+
+[source,java]
+--------------------------------------------------------------------------------
+from("direct:listKeys")
+      .to("aws-kms://test?kmsClient=#amazonKmsClient&operation=listKeys")
+--------------------------------------------------------------------------------
+
 == Automatic detection of AWSKMS client in registry
 
 The component is capable of detecting the presence of an AWSKMS bean into the registry.


[camel] 03/04: Camel-AWS-KMS: added sample code 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 041c837fac252fd673ca40815e91f3670163801d
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Oct 1 16:05:42 2019 +0200

    Camel-AWS-KMS: added sample code for producer on docs
---
 components/camel-aws-kms/src/main/docs/aws-kms-component.adoc | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/components/camel-aws-kms/src/main/docs/aws-kms-component.adoc b/components/camel-aws-kms/src/main/docs/aws-kms-component.adoc
index adbf7a7..45f6077 100644
--- a/components/camel-aws-kms/src/main/docs/aws-kms-component.adoc
+++ b/components/camel-aws-kms/src/main/docs/aws-kms-component.adoc
@@ -156,6 +156,16 @@ Camel-AWS KMS component provides the following operation on the producer side:
 - describeKey
 - enableKey
 
+== Producer Examples
+
+- listKeys: this operation will list the available keys in KMS
+
+[source,java]
+--------------------------------------------------------------------------------
+from("direct:listKeys")
+      .to("aws-kms://test?kmsClient=#amazonKmsClient&operation=listKeys")
+--------------------------------------------------------------------------------
+
 == Automatic detection of AWSKMS client in registry
 
 The component is capable of detecting the presence of an AWSKMS 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 e1b2bdaf9c880210ed9cd2e765f9454d437b636c
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Oct 1 16:05:25 2019 +0200

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

diff --git a/docs/components/modules/ROOT/pages/aws-iam-component.adoc b/docs/components/modules/ROOT/pages/aws-iam-component.adoc
index e401523..ebf8c19 100644
--- a/docs/components/modules/ROOT/pages/aws-iam-component.adoc
+++ b/docs/components/modules/ROOT/pages/aws-iam-component.adoc
@@ -168,6 +168,17 @@ Camel-AWS IAM component provides the following operation on the producer side:
 - addUserToGroup
 - removeUserFromGroup
 
+== Producer Examples
+
+- createUser: this operation will create a user in IAM
+
+[source,java]
+--------------------------------------------------------------------------------
+from("direct:createUser")
+    .setHeader(IAMConstants.GROUP_NAME, constant("camel"))
+    .to("aws-iam://test?iamClient=#amazonIAMClient&operation=createUser")
+--------------------------------------------------------------------------------
+
 == Automatic detection of AmazonIdentityManagement client in registry
 
 The component is capable of detecting the presence of an AmazonIdentityManagement bean into the registry.