def powerMgmt(identifier=None, action=None, physical=False): handlers = current_app.config.get("handlers") return Ucs.powerMgmt(request.headers, identifier, action, physical, handlers=handlers)
def login_get(): return Ucs.login_get(request.headers)
def getServiceProfile(): handlers = current_app.config.get("handlers") return Ucs.getServiceProfile(request.headers, handlers=handlers)
def powerStatus(identifier=None): handlers = current_app.config.get("handlers") return Ucs.powerStatus(request.headers, identifier, handlers=handlers)
def getChassis(): handlers = current_app.config.get("handlers") return Ucs.getChassis(request.headers, handlers=handlers)
def getPollers(identifier, classIds): handlers = current_app.config.get("handlers") return Ucs.getPollers(request.headers, identifier, classIds, handlers=handlers)
def getCatalog(identifier=None): handlers = current_app.config.get("handlers") return Ucs.getCatalog(request.headers, identifier, handlers=handlers)
def getRackmount(): handlers = current_app.config.get("handlers") return Ucs.getRackmount(request.headers, handlers=handlers)
def systemGetAll(): handlers = current_app.config.get("handlers") return Ucs.systemGetAll(request.headers, handlers=handlers)