@zowe/imperative
Version:
framework for building configurable CLIs
21 lines • 651 B
TypeScript
import { IPartialCommandDefinition } from "../../IPartialCommandDefinition";
export interface ICommandProfileAuthConfig {
/**
* Name of the authentication service
*/
serviceName: string;
/**
* Path to the handler for the authentication service.
* The handler should inherit from Imperative BaseAuthHandler.
*/
handler: string;
/**
* Command properties for `auth login <serviceName>`
*/
login?: IPartialCommandDefinition;
/**
* Command properties for `auth logout <serviceName>`
*/
logout?: IPartialCommandDefinition;
}
//# sourceMappingURL=ICommandProfileAuthConfig.d.ts.map