Function: |
An inbound user, whose properties you must pass to the MC-CLI in a dictionary, is added to the configuration. |
Parameters: |
Name of the BeanConnect inbound user
Proxy or proxy cluster to which the inbound user is to be assigned.
Dictionary with the key-value pairs for the properties that are to be assigned to the inbound user. You can find the possible values for key in Properties of an inbound user . |
Return: |
The inbound user added to the configuration. |
Exceptions: |
|
Example: | ... import BcAdminInboundUser import BcAdminProxy ... proxy_obj=BcAdminProxy.getObject("BCProxy") creProps={"desc":"created","password":"ADMIN"} usr_obj=BcAdminInboundUser.create("USR",proxy_obj,props=creProps) ... |