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 the properties of an openUTM-LU62 Gateway

Function:

BcAdminLu62Gateway.modifyProperties()

Modifies all the properties of the specified openUTM-LU62 Gateway that are present in the specified dictionary.

Parameters:

bc_object (BcObject of type BcObjectType.LU62GATEWAY)

openUTM-LU62 Gateway 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 an openUTM-LU62 Gateway .

Return:

None

Exceptions:

BcObjectException, BcParameterException, BcToolException

Example:

...
import BcAdminLu62Gateway
...
getProps={"host": "bchost01", "install-path": "/opt/lib/utmlu62"} 
gw_obj=BcAdminLu62Gateway.getObject(getProps) 
modProps={"desc":"modified"} 
BcAdminLu62Gateway.modifyProperties(gw_obj, modProps)
...