Function: |
An outbound service, whose properties you must pass to the MC-CLI in a dictionary, is added to the configuration. |
Parameters: |
Name of the BeanConnect outbound service.
Proxy or proxy cluster to which the outbound service is to be assigned.
Dictionary with the key-value pairs for the properties that are to be assigned to the outbound service. You can find the possible values for key in Properties of an outbound service . |
Return: |
The outbound service added to the configuration. |
Exceptions: |
|
Example: | ... import BcAdminOutboundService import BcAdminProxy ... proxy_obj=BcAdminProxy.getObject("BCProxy") crPr={"desc":"created","dial-type":BcDef.TYPE DIALOG,\ "reply-timer.sec": "90"} os_obj=BcAdminOutboundService.create("OSRV",proxy_obj,props=crPr) ... |