/** * * Make calls to NetView REST APIs * Author: * xtbj@cn.ibm.com */ import { IHandlerParameters, AbstractSession } from "@zowe/imperative"; import { INVResponse } from "../../doc"; /** * Class of record message APIs for usage within the CLI and programmatically from node scripts. * * @class Record */ export declare class Record { /** * Returns result after recording Canzlog message. * @static * @argument {IHandlerParameters} params Command parameters sent by imperative. * @argument {AbstractSession} session the session to connect to NetView REST Server * @returns {Promise} promise that returns the NetView REST server response * (including completion code, reasone code and api response) * @throws ImperativeError */ static recordCanzlog(params: IHandlerParameters, session: AbstractSession): Promise; }