Loading...
Select Version
&pagelevel(5)&pagelevel
Function: |
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: |
Proxy cluster whose properties are to be modified.
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: |
|
Example: | ...
import BcAdminProxyCluster
...
modProps={"timer.shutdown-time.min": "2"}
clstr_obj=BcAdminProxyCluster.getObject("BCCluster")
BcAdminProxyCluster.modifyProperties(clstr_obj,modProps)
...
|