Function: |
An EIS partner, whose properties you must pass to the MC-CLI in a dictionary, is added to the configuration. |
Parameters: |
Name of the BeanConnect EIS partner
Proxy or proxy cluster to which the EIS partner is to be assigned.
Dictionary with the key-value pairs for the properties that are to be assigned to the EIS partner. You can find the possible values for key in Properties of an EIS partner . |
Return: | ( The EIS partner newly added to the configuration |
Exceptions: |
|
Example: | ... import BcAdminEisPartner import BcAdminProxy ... proxy_obj=BcAdminProxy.getObject("BCProxy") creProps= {"type":BcDef.PTYPE_UTM,"desc": "myEIS",\ "utm.hosts":"xyz","utm.partner-lpap":"LPAP",\ "utm.listener-port": "1234"} newEis=BcAdminEisPartner.create("TestEIS",proxy_obj,creProps) ... |