2018-04-26 16:37:59 +09:00
|
|
|
package infra
|
2018-04-12 18:38:04 +09:00
|
|
|
|
|
|
|
import (
|
2018-06-12 18:18:11 +09:00
|
|
|
"git.loafle.net/overflow/commons-go/model/meta"
|
2018-04-12 18:38:04 +09:00
|
|
|
)
|
|
|
|
|
|
|
|
type InfraHost struct {
|
|
|
|
Infra
|
2018-06-12 18:18:11 +09:00
|
|
|
InfraZone *InfraZone `json:"infraZone,omitempty"`
|
|
|
|
MetaTargetHostType *meta.MetaTargetHostType `json:"metaTargetHostType,omitempty"`
|
|
|
|
InfraHostMachine *InfraHostMachine `json:"infraHostMachine,omitempty"`
|
|
|
|
InfraHostOS *InfraHostOS `json:"infraHostOS,omitempty"`
|
|
|
|
InfraHostIPs []InfraHostIP `json:"infraHostIPs,omitempty"`
|
2018-06-12 20:56:16 +09:00
|
|
|
InfraHostPorts []InfraHostPort `json:"infraHostPorts,omitempty"`
|
|
|
|
InfraHostApplications []InfraHostApplication `json:"infraHostApplications, omitempty"`
|
|
|
|
InfraHostDaemons []InfraHostDaemon `json:"infraHostDaemons, omitempty"`
|
2018-04-12 18:38:04 +09:00
|
|
|
}
|