app/@overflow/model/discovery/Host.ts

24 lines
433 B
TypeScript
Raw Normal View History

2018-09-03 16:12:10 +00:00
import { Zone } from './Zone';
import { Port } from './Port';
import { MetaIPType } from '../meta';
export interface Host {
metaIPType?: MetaIPType;
name?: string;
address?: string;
mac?: string;
2018-09-11 08:04:22 +00:00
osType?: string;
deviceType?: string;
deviceVendor?: string;
deviceModel?: string;
2018-09-03 16:12:10 +00:00
2018-09-11 08:04:22 +00:00
meta?: Map<string, Map<string, string>>;
discoveredBy?: string[];
2018-09-03 16:12:10 +00:00
discoveredDate?: Date;
2018-09-11 08:04:22 +00:00
zone?: Zone;
portList?: Port[];
2018-09-03 16:12:10 +00:00
}