Loading...
Select Version
&pagelevel(5)&pagelevel
Function: |
Modifies all the properties of the specified openUTM-LU62 Gateway that are present in the specified dictionary. |
Parameters: |
openUTM-LU62 Gateway 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 an openUTM-LU62 Gateway. |
Return: | None |
Exceptions: |
|
Example: | ...
import BcAdminLu62Gateway
...
getProps={"host": "bchost01", "install-path": "/opt/lib/utmlu62"}
gw_obj=BcAdminLu62Gateway.getObject(getProps)
modProps={"desc":"modified"}
BcAdminLu62Gateway.modifyProperties(gw_obj, modProps)
...
|