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 communication endpoint

Function:

BcAdminOutboundCommEndpoint.modifyProperties()

Modifies all the properties of the specified outbound communication endpoint that are present in the specified dictionary.

Parameters:

bc_object (BcObject of type BcObjectType.OUTBOUND_COMM_ENDPOINT)

The outbound communication endpoint whose properties are to be read.

props

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

Return:

None

Exceptions:

BcObjectException, BcParameterException, BcToolException

Example:

...
import BcAdminOutboundCommEndpoint
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
ce_obj=BcAdminOutboundCommEndpoint.getObject("CEND",proxy_obj)
modPr={"desc":"modified"}
BcAdminOutboundCommEndpoint.modifyProperties(ce_obj,modPr)
...