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 2020/08/06 06:53:28 UTC

[camel] branch master updated (3b99958 -> 2ca8e20)

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 3b99958  Regen catalog
     new b985cd3  Camel-AWS2-STS: added docs for getSessionToken
     new f5e1c98  Regen website docs
     new e4f1ddc  Camel-AWS2-STS: Fixed assumeRole operation example
     new 2ca8e20  Regen website 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:
 .../camel-aws2-sts/src/main/docs/aws2-sts-component.adoc      | 11 ++++++++++-
 docs/components/modules/ROOT/pages/aws2-sts-component.adoc    | 11 ++++++++++-
 2 files changed, 20 insertions(+), 2 deletions(-)


[camel] 04/04: Regen website 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 2ca8e208147bffb0d2aff28a1dc841f2b7a777bd
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Aug 6 08:52:56 2020 +0200

    Regen website docs
---
 docs/components/modules/ROOT/pages/aws2-sts-component.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/components/modules/ROOT/pages/aws2-sts-component.adoc b/docs/components/modules/ROOT/pages/aws2-sts-component.adoc
index ac48daf..c2896e8 100644
--- a/docs/components/modules/ROOT/pages/aws2-sts-component.adoc
+++ b/docs/components/modules/ROOT/pages/aws2-sts-component.adoc
@@ -140,7 +140,7 @@ Camel-AWS STS component provides the following operation on the producer side:
 
 [source,java]
 --------------------------------------------------------------------------------
-from("direct:createUser")
+from("direct:assumeRole")
     .setHeader(STS2Constants.ROLE_ARN, constant("arn:123"))
     .setHeader(STS2Constants.ROLE_SESSION_NAME, constant("groot"))
     .to("aws2-sts://test?stsClient=#amazonSTSClient&operation=assumeRole")


[camel] 03/04: Camel-AWS2-STS: Fixed assumeRole operation example

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 e4f1ddc490b26c5d5ecb00e22e6321fc44cf2e4d
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Aug 6 08:51:07 2020 +0200

    Camel-AWS2-STS: Fixed assumeRole operation example
---
 components/camel-aws2-sts/src/main/docs/aws2-sts-component.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-aws2-sts/src/main/docs/aws2-sts-component.adoc b/components/camel-aws2-sts/src/main/docs/aws2-sts-component.adoc
index 409e1d7..a5b47cc 100644
--- a/components/camel-aws2-sts/src/main/docs/aws2-sts-component.adoc
+++ b/components/camel-aws2-sts/src/main/docs/aws2-sts-component.adoc
@@ -138,7 +138,7 @@ Camel-AWS STS component provides the following operation on the producer side:
 
 [source,java]
 --------------------------------------------------------------------------------
-from("direct:createUser")
+from("direct:assumeRole")
     .setHeader(STS2Constants.ROLE_ARN, constant("arn:123"))
     .setHeader(STS2Constants.ROLE_SESSION_NAME, constant("groot"))
     .to("aws2-sts://test?stsClient=#amazonSTSClient&operation=assumeRole")


[camel] 01/04: Camel-AWS2-STS: added docs for getSessionToken

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 b985cd336764c07a683c43cd0218455011a86a68
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Aug 6 08:48:22 2020 +0200

    Camel-AWS2-STS: added docs for getSessionToken
---
 components/camel-aws2-sts/src/main/docs/aws2-sts-component.adoc | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/components/camel-aws2-sts/src/main/docs/aws2-sts-component.adoc b/components/camel-aws2-sts/src/main/docs/aws2-sts-component.adoc
index c99f9a9..409e1d7 100644
--- a/components/camel-aws2-sts/src/main/docs/aws2-sts-component.adoc
+++ b/components/camel-aws2-sts/src/main/docs/aws2-sts-component.adoc
@@ -130,6 +130,7 @@ The AWS2 STS component works on the aws-global region and it has aws-global as d
 Camel-AWS STS component provides the following operation on the producer side:
 
 - assumeRole
+- getSessionToken
 
 == Producer Examples
 
@@ -143,6 +144,14 @@ from("direct:createUser")
     .to("aws2-sts://test?stsClient=#amazonSTSClient&operation=assumeRole")
 --------------------------------------------------------------------------------
 
+- getSessionToken: this operation will return a temporary session token
+
+[source,java]
+--------------------------------------------------------------------------------
+from("direct:getSessionToken")
+    .to("aws2-sts://test?stsClient=#amazonSTSClient&operation=getSessionToken")
+--------------------------------------------------------------------------------
+
 == Automatic detection of StsClient client in registry
 
 The component is capable of detecting the presence of an StsClient bean into the registry.


[camel] 02/04: Regen website 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 f5e1c98f67dad1c66b17ed4928c606493b2fe668
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Aug 6 08:50:43 2020 +0200

    Regen website docs
---
 docs/components/modules/ROOT/pages/aws2-sts-component.adoc | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/docs/components/modules/ROOT/pages/aws2-sts-component.adoc b/docs/components/modules/ROOT/pages/aws2-sts-component.adoc
index 91d4856..ac48daf 100644
--- a/docs/components/modules/ROOT/pages/aws2-sts-component.adoc
+++ b/docs/components/modules/ROOT/pages/aws2-sts-component.adoc
@@ -132,6 +132,7 @@ The AWS2 STS component works on the aws-global region and it has aws-global as d
 Camel-AWS STS component provides the following operation on the producer side:
 
 - assumeRole
+- getSessionToken
 
 == Producer Examples
 
@@ -145,6 +146,14 @@ from("direct:createUser")
     .to("aws2-sts://test?stsClient=#amazonSTSClient&operation=assumeRole")
 --------------------------------------------------------------------------------
 
+- getSessionToken: this operation will return a temporary session token
+
+[source,java]
+--------------------------------------------------------------------------------
+from("direct:getSessionToken")
+    .to("aws2-sts://test?stsClient=#amazonSTSClient&operation=getSessionToken")
+--------------------------------------------------------------------------------
+
 == Automatic detection of StsClient client in registry
 
 The component is capable of detecting the presence of an StsClient bean into the registry.