2018-04-26 16:37:59 +09:00
|
|
|
package discovery
|
2018-04-12 18:38:04 +09:00
|
|
|
|
2018-06-12 22:13:22 +09:00
|
|
|
import (
|
|
|
|
"git.loafle.net/overflow/commons-go/model/meta"
|
|
|
|
)
|
|
|
|
|
2018-04-28 01:02:30 +09:00
|
|
|
type DiscoverHost struct {
|
2018-06-12 22:13:22 +09:00
|
|
|
MetaIPType *meta.MetaIPType `json:"metaIpType,omitempty"`
|
|
|
|
|
|
|
|
FirstScanRange string `json:"firstScanRange,omitempty"`
|
|
|
|
LastScanRange string `json:"lastScanRange,omitempty"`
|
|
|
|
ExcludeHosts []string `json:"excludeHosts,omitempty"`
|
|
|
|
IncludeHosts []string `json:"includeHosts,omitempty"`
|
2018-04-12 18:38:04 +09:00
|
|
|
|
2018-04-28 01:02:30 +09:00
|
|
|
DiscoverPort *DiscoverPort `json:"discoverPort,omitempty"`
|
2018-04-12 18:38:04 +09:00
|
|
|
}
|