UNPKG

@broadcom/ops-for-zowe-cli

Version:

OPS/MVS® Plug-in for Zowe CLI

25 lines (24 loc) 738 B
import { Session } from "@zowe/imperative"; /** * update the enablement or auto-enablement status of a rule * * @export * @param {Session} session * @param {IHandlerParameters} params * @return {*} {Promise<{}>} */ export declare function updateRule(session: Session, params: any): Promise<{}>; /** * * * @export * @param {Session} session * @param {string} resource * @param {boolean} restApi * @param {string} desiredState * @param {string} [subsystem] * @param {string} [table] * @param {number} [wait] * @return {*} {Promise<{}>} */ export declare function updateResource(session: Session, resource: string, restApi: boolean, desiredState: string, subsystem?: string, table?: string, wait?: number): Promise<{}>;