Huawei Cloud Identity and Access Management (IAM)
Since Camel 3.11
Only producer is supported
Huawei Cloud Identity and Access Management (IAM) component allows you to integrate with IAM provided by Huawei Cloud.
Maven users will need to add the following dependency to their pom.xml
for this component:
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-huaweicloud-iam</artifactId>
<version>x.x.x</version>
<!-- use the same version as your Camel core version -->
</dependency>
URI Options
The Huawei Cloud Identity and Access Management (IAM) component supports 2 options, which are listed below.
Name | Description | Default | Type |
---|---|---|---|
lazyStartProducer (producer) |
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel’s routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. |
false |
boolean |
autowiredEnabled (advanced) |
Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc. |
true |
boolean |
The Huawei Cloud Identity and Access Management (IAM) endpoint is configured using URI syntax:
hwcloud-iam:operation
with the following path and query parameters:
Path Parameters (1 parameters):
Name | Description | Default | Type |
---|---|---|---|
operation |
Required Operation to be performed |
String |
Query Parameters (12 parameters):
Name | Description | Default | Type |
---|---|---|---|
authenticationKey (producer) |
Required Authentication key for the cloud user |
String |
|
groupId (producer) |
Group ID to perform operation with |
String |
|
ignoreSslVerification (producer) |
Ignore SSL verification |
false |
boolean |
lazyStartProducer (producer) |
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel’s routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. |
false |
boolean |
proxyHost (producer) |
Proxy server ip/hostname |
String |
|
proxyPassword (producer) |
Proxy authentication password |
String |
|
proxyPort (producer) |
Proxy server port |
int |
|
proxyUser (producer) |
Proxy authentication user |
String |
|
region (producer) |
Required IAM service region |
String |
|
secretKey (producer) |
Required Secret key for the cloud user |
String |
|
serviceKeys (producer) |
Configuration object for cloud service authentication |
ServiceKeys |
|
userId (producer) |
User ID to perform operation with |
String |
Usage
Message properties evaluated by the IAM producer
Header | Type | Description |
---|---|---|
|
|
Name of operation to invoke |
|
|
User ID to invoke operation on |
|
|
Group ID to invoke operation on |
If any of the above properties are set, they will override their corresponding query parameter.
List of Supported IAM Operations
-
listUsers
-
getUser -
userId
parameter is required -
updateUser -
userId
parameter is required -
listGroups
-
getGroupUsers -
groupId
is required -
updateGroup -
groupId
is required
Passing Options Through Exchange Body
There are many options that can be submitted to update a user (Table 4) or to update a group (Table 4). Since there are multiple user/group options, they must be passed through the exchange body.
For the updateUser
operation, you can pass the user options as an UpdateUserOption object or a Json string:
from("direct:triggerRoute")
.setBody(new UpdateUserOption().withName("user").withDescription("employee").withEmail("user@email.com"))
.to("hwcloud-iam:updateUser?userId=********®ion=cn-north-4&authenticationKey=********&secretKey=********")
from("direct:triggerRoute")
.setBody("{\"name\":\"user\",\"description\":\"employee\",\"email\":\"user@email.com\"}")
.to("hwcloud-iam:updateUser?userId=********®ion=cn-north-4&authenticationKey=********&secretKey=********")
For the updateGroup
operation, you can pass the group options as a KeystoneUpdateGroupOption object or a Json string:
from("direct:triggerRoute")
.setBody(new KeystoneUpdateGroupOption().withName("group").withDescription("employees").withDomainId("1234"))
.to("hwcloud-iam:updateUser?groupId=********®ion=cn-north-4&authenticationKey=********&secretKey=********")
from("direct:triggerRoute")
.setBody("{\"name\":\"group\",\"description\":\"employees\",\"domain_id\":\"1234\"}")
.to("hwcloud-iam:updateUser?groupId=********®ion=cn-north-4&authenticationKey=********&secretKey=********")
Using ServiceKey Configuration Bean
Authentication key and secret keys are required to authenticate against cloud IAM service. You can avoid having them being exposed
and scattered over in your endpoint uri by wrapping them inside a bean of class org.apache.camel.component.huaweicloud.iam.models.ServiceKeys
.
Add it to the registry and let Camel look it up by referring the object via endpoint query parameter serviceKeys
.
Check the following code snippets:
<bean id="myServiceKeyConfig" class="org.apache.camel.component.huaweicloud.iam.models.ServiceKeys">
<property name="authenticationKey" value="your_authentication_key" />
<property name="secretKey" value="your_secret_key" />
</bean>
from("direct:triggerRoute")
.setProperty(IAMPropeties.OPERATION, constant("listUsers"))
.setProperty(IAMPropeties.USER_ID ,constant("your_user_id"))
.setProperty(IAMPropeties.GROUP_ID, constant("your_group_id))
.to("hwcloud-iam:listUsers?region=cn-north-4&serviceKeys=#myServiceKeyConfig")