2018-04-26 07:37:59 +00:00
|
|
|
package discovery
|
2018-04-12 09:38:04 +00:00
|
|
|
|
2018-04-27 16:02:30 +00:00
|
|
|
type DiscoverHost struct {
|
2018-04-27 16:48:46 +00:00
|
|
|
FirstScanRangeV4 string `json:"firstScanRangev4,omitempty"`
|
|
|
|
LastScanRangeV4 string `json:"lastScanRangev4,omitempty"`
|
|
|
|
ExcludeHostsV4 []string `json:"excludeHostsv4,omitempty"`
|
|
|
|
IncludeHostsV4 []string `json:"includeHostsv4,omitempty"`
|
|
|
|
|
|
|
|
FirstScanRangeV6 string `json:"firstScanRangev6,omitempty"`
|
|
|
|
LastScanRangeV6 string `json:"lastScanRangev6,omitempty"`
|
|
|
|
ExcludeHostsV6 []string `json:"excludeHostsv6,omitempty"`
|
|
|
|
IncludeHostsV6 []string `json:"includeHostsv6,omitempty"`
|
2018-04-12 09:38:04 +00:00
|
|
|
|
2018-04-27 16:02:30 +00:00
|
|
|
DiscoverPort *DiscoverPort `json:"discoverPort,omitempty"`
|
2018-04-12 09:38:04 +00:00
|
|
|
}
|