UNPKG

@broadcom/ca7-for-zowe-cli

Version:

CA 7 Workload Automation Plug-in for Zowe CLI

23 lines (22 loc) 982 B
import { IHandlerParameters } from "@zowe/imperative"; export declare class CA7ResponseUtil { /** * Method to log the response with command, Ca7Messages and CA7# * @param {IHandlerParameters} params * @param ca7Response * @returns {Promise<void>} * @memberof CA7ResponseUtil */ static responseWithCommandMessageCa7(params: IHandlerParameters, ca7Response: any): void; /** * Method to log the response with JSON response from CA7 REST client * @param {IHandlerParameters} params * @param ca7Response * @returns {Promise<void>} * @memberof CA7ResponseUtil */ static responseWithJSON(params: IHandlerParameters, ca7Response: any): void; static responseAgentCredWithJSON(params: IHandlerParameters, ca7Response: any): void; static responseAgentWithJSON(params: IHandlerParameters, ca7Response: any): void; static responseAgentForLogs(params: IHandlerParameters, ca7Response: any): Promise<void>; }