15 lines
328 B
TypeScript
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;
|
||
|
}
|