Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

modifyProperties() - Modify properties of an outbound service

Function:

BcAdminOutboundService.modifyProperties()

Modifies all the properties of the specified outbound service that is present in the specified dictionary.

Parameters:

bc_object
(BcObject of type BcObjectType.OUTBOUND_SERVICE)

Outbound service whose properties are to be modified.

props

Dictionary with key-value pairs for the properties that are to be modified. You can find the possible values for key in Properties of an outbound service .

Return:

None

Exceptions:

BcObjectException, BcParameterException, BcToolException

Example:

...
import BcAdminOutboundService
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
os_obj=BcAdminOutboundService.getObject("OSRV",proxy_obj)
modProps={"reply-timer.sec": "180"}
BcAdminOutboundService.modifyProperties(os_obj,modProps)
...