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

15 lines
328 B
TypeScript

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