ing
This commit is contained in:
@@ -7,11 +7,17 @@ export interface Host {
|
||||
name?: string;
|
||||
address?: string;
|
||||
mac?: string;
|
||||
meta?: Map<string, string>;
|
||||
|
||||
osType?: string;
|
||||
|
||||
deviceType?: string;
|
||||
deviceVendor?: string;
|
||||
deviceModel?: string;
|
||||
|
||||
meta?: Map<string, Map<string, string>>;
|
||||
discoveredBy?: string[];
|
||||
discoveredDate?: Date;
|
||||
|
||||
zone?: Zone;
|
||||
portList?: Port[];
|
||||
|
||||
discoveredBy?: string;
|
||||
discoveredDate?: Date;
|
||||
}
|
||||
|
||||
@@ -5,11 +5,11 @@ import { MetaPortType } from '../meta';
|
||||
export interface Port {
|
||||
metaPortType?: MetaPortType;
|
||||
portNumber?: number;
|
||||
meta?: Map<string, string>;
|
||||
|
||||
meta?: Map<string, Map<string, string>>;
|
||||
discoveredBy?: string[];
|
||||
discoveredDate?: Date;
|
||||
|
||||
host?: Host;
|
||||
serviceList?: Service[];
|
||||
|
||||
discoveredBy?: string;
|
||||
discoveredDate?: Date;
|
||||
}
|
||||
|
||||
@@ -4,11 +4,12 @@ import { MetaCryptoType } from '../meta';
|
||||
export interface Service {
|
||||
metaCryptoType?: MetaCryptoType;
|
||||
key?: string;
|
||||
name?: string;
|
||||
description?: string;
|
||||
meta?: Map<string, string>;
|
||||
|
||||
meta?: Map<string, Map<string, string>>;
|
||||
discoveredBy?: string[];
|
||||
discoveredDate?: Date;
|
||||
|
||||
port?: Port;
|
||||
|
||||
discoveredBy?: string;
|
||||
discoveredDate?: Date;
|
||||
}
|
||||
|
||||
@@ -7,8 +7,8 @@ export interface Zone {
|
||||
metaIPType?: MetaIPType;
|
||||
address?: string;
|
||||
mac?: string;
|
||||
meta?: Map<string, string>;
|
||||
|
||||
discoveredBy?: string;
|
||||
meta?: Map<string, Map<string, string>>;
|
||||
discoveredBy?: string[];
|
||||
discoveredDate?: Date;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user