Function: |
An outbound communication endpoint, whose properties you must pass to the MC-CLI in a dictionary, is added to the configuration. |
Parameters: |
Name of the BeanConnect outbound communication endpoint.
Proxy or proxy cluster to which the outbound communication endpoint is to be assigned.
Dictionary with the key-value pairs for the properties that are to be assigned to the outbound communication endpoint. You can find the possible values for key in Properties of an outbound communication endpoint. |
Return: |
The outbound communication endpoint added to the configuration. |
Exceptions: |
|
Example: | ...
import BcAdminOutboundCommEndpoint
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
crPr={"desc":"created","eis-partner":"EP","partner-
service":"TOS"}
ce_obj=BcAdminOutboundCommEndpoint.create("CEND",\
proxy_obj,props=crPr)
...
|