zowe-cli-cics-deploy-plugin
Version:
IBM CICS Bundle generation and deployment for Zowe CLI
18 lines (17 loc) • 796 B
TypeScript
import { ICommandOptionDefinition } from "@zowe/imperative";
/**
* ssh command line options, derived from zowe-cli equivalents
*/
export declare class SshOptions {
static CICS_DEPLOY_SSH_OPTION_HOST: ICommandOptionDefinition;
static CICS_DEPLOY_SSH_OPTION_PORT: ICommandOptionDefinition;
static CICS_DEPLOY_SSH_OPTION_USER: ICommandOptionDefinition;
static CICS_DEPLOY_SSH_OPTION_PASSWORD: ICommandOptionDefinition;
static CICS_DEPLOY_SSH_OPTION_PRIVATEKEY: ICommandOptionDefinition;
static CICS_DEPLOY_SSH_OPTION_KEYPASSPHRASE: ICommandOptionDefinition;
static CICS_DEPLOY_SSH_OPTION_HANDSHAKETIMEOUT: ICommandOptionDefinition;
/**
* Options related to connecting to SSH
*/
static CICS_DEPLOY_SSH_CONNECTION_OPTIONS: ICommandOptionDefinition[];
}