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
The following commit(s) were added to refs/heads/master by this push:
new 019608c Regen website docs
019608c is described below
commit 019608c6fe103e69fe2c2b6bf816879241bb4272
Author: Andrea Cosentino <[email protected]>
AuthorDate: Fri Jul 31 12:30:24 2020 +0200
Regen website docs
---
.../modules/ROOT/pages/aws2-iam-component.adoc | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/docs/components/modules/ROOT/pages/aws2-iam-component.adoc
b/docs/components/modules/ROOT/pages/aws2-iam-component.adoc
index f8b021c..fa1689d 100644
--- a/docs/components/modules/ROOT/pages/aws2-iam-component.adoc
+++ b/docs/components/modules/ROOT/pages/aws2-iam-component.adoc
@@ -171,6 +171,23 @@ from("direct:createUser")
.to("aws2-iam://test?iamClient=#amazonIAMClient&operation=createUser")
--------------------------------------------------------------------------------
+- deleteUser: this operation will delete a user in IAM
+
+[source,java]
+--------------------------------------------------------------------------------
+from("direct:deleteUser")
+ .setHeader(IAMConstants.USERNAME, constant("camel"))
+ .to("aws2-iam://test?iamClient=#amazonIAMClient&operation=deleteUser")
+--------------------------------------------------------------------------------
+
+- listUsers: this operation will list the users in IAM
+
+[source,java]
+--------------------------------------------------------------------------------
+from("direct:listUsers")
+ .to("aws2-iam://test?iamClient=#amazonIAMClient&operation=listUsers")
+--------------------------------------------------------------------------------
+
== Automatic detection of IamClient client in registry
The component is capable of detecting the presence of an IamClient bean into
the registry.