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 cluster

Function:

BcAdminProxyCluster.modifyProperties()

Modifies the properties of the specified proxy cluster. You must pass the new values of the properties that are to be modified to the function in a dictionary.

Parameters:

bc_object (BcObject of type BcObjectType.PROXY_CLUSTER).

Proxy cluster whose properties are to be modified.

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

Return:

None

Exceptions:

BcObjectException, BcParameterException, BcToolException

Example:

...
import BcAdminProxyCluster
...
modProps={"timer.shutdown-time.min": "2"}
clstr_obj=BcAdminProxyCluster.getObject("BCCluster")
BcAdminProxyCluster.modifyProperties(clstr_obj,modProps)
...