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 a proxy

Function:

BcAdminProxy.modifyProperties()

Modifies all the properties of the specified property that are present in the specified dictionary.

Parameters:

bc_object (BcObject of type BcObjectType.PROXY)

Proxy whose properties you want to modify.

props (Dictionary)

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 a proxy .

Return:

None

Exceptions:

BcObjectException, BcParameterException, BcToolException

Example:

...
import BcAdminProxy 
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
modProps={"timer.shutdown-time.min": "2"}
BcAdminProxy.modifyProperties(proxy_obj,modProps)
...