requst.go 540 B

123456789101112131415
  1. package request
  2. type DHCPService struct {
  3. Mode string `json:"model"`
  4. BindInterface string `json:"bindInterface"`
  5. NetworkSegment string `json:"networkSegment"`
  6. DefaultGateway string `json:"defaultGateway"`
  7. NameServers []string `json:"nameServers"`
  8. Hostname string `json:"hostname"`
  9. EnabledIPMI bool `json:"enabledIpmi"`
  10. IPMIUserName string `json:"ipmiUsername"`
  11. IPMIPassword string `json:"ipmiPassword"`
  12. Status bool `json:"status"`
  13. Info string `json:"info"`
  14. }