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

15 lines
328 B
TypeScript
Raw Permalink Normal View History

2018-09-03 16:12:10 +00:00
import { Credential } from './Credential';
export interface SNMPCredential extends Credential {
version?: string;
vommunity?: string;
authenticationType?: string;
user?: string;
password?: string;
encryptionType?: string;
dataEncryptionKey?: string;
contextName?: string;
port?: number;
timeout?: number;
}