app/@overflow/model/config/credential/UnixCredential.ts

13 lines
291 B
TypeScript
Raw Permalink Normal View History

2018-09-03 16:12:10 +00:00
import { Credential } from './Credential';
export interface UnixCredential extends Credential {
user?: string;
loginType?: string;
password?: string;
privateKey?: string;
sshPort?: number;
sshRightsElevationType?: string;
targetUser?: string;
targetUserPassword?: string;
}