app/@overflow/model/config/credential/UnixCredential.ts
crusader 160d40b455 ing
2018-09-04 01:12:10 +09:00

13 lines
291 B
TypeScript

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;
}