Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

getProperties() - Read properties of an openUTM-LU62 Gateway

Function:

BcAdminLu62Gateway.getProperties()

Reads all the properties of the specified openUTM-LU62 Gateway and returns a dictionary with key-value pairs for the properties.

Parameters:

bc_object (BcObject of type BcObjectType.LU62GATEWAY)

openUTM-LU62 Gateway whose properties are to be read.

Return:

Dictionary with the key-value pairs for all the properties of the openUTM-LU62 Gateway. You can find the possible values for key in Properties of an openUTM-LU62 Gateway .

Exceptions:

BcObjectException, BcToolException

Example:

...
import BcAdminLu62Gateway
...
getProps={"host": "bchost01", "install-path": "/opt/lib/utmlu62"} 
gw_obj=BcAdminLu62Gateway.getObject(getProps) 
gwProps=BcAdminLu62Gateway.getProperties(gw_obj)
...