Function: |
Starts the specified action for the openUTM-LU62 Gateway. | |
Parameters: |
openUTM-LU62 Gateway for which the action is to be started.
Action that is to be started for the specified openUTM-LU62 Gateway. Possible values are (see | |
| Checks the administrability of the openUTM-LU62 Gateway. | |
| Checks the availability of the openUTM-LU62 Gateway. | |
| Saves the changes that have been made for this openUTM-LU62 | |
| Starts the openUTM-LU62 Gateway. | |
| Stops the openUTM-LU62 Gateway. | |
Return: | ( | |
Exceptions: |
| |
Example: | ...
import BcAdminLu62Gateway
...
getProps={"host": "bchost01", "install-path": "/opt/lib/utmlu62"}
gw_obj=BcAdminLu62Gateway.getObject(getProps)
actResult=BcAdminLu62Gateway.perform(gw_obj, "check-avail")
if BcAdminAction.isFinishedSuccessfully(actResult):
resultString=BcAdminAction.getResults(actResult)[0]["result"]
print "communication service is " +resultString
...
| |