Loading...
Select Version
Function: |
Modifies all the properties of the specified property that are present in the specified dictionary. |
Parameters: |
Proxy whose properties you want to modify.
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: |
|
Example: | ... import BcAdminProxy ... proxy_obj=BcAdminProxy.getObject("BCProxy") modProps={"timer.shutdown-time.min": "2"} BcAdminProxy.modifyProperties(proxy_obj,modProps) ... |