First commit: Add connection struct and define History
This commit is contained in:
19
host.go
Normal file
19
host.go
Normal file
@@ -0,0 +1,19 @@
|
||||
package zabbix
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
)
|
||||
|
||||
|
||||
type HostGet struct {
|
||||
GroupIds []string `json:"groupids,omitempty"`
|
||||
DServiceIds []string `json:"dserviceids,omitempty"`
|
||||
GraphIds []string `json:"graphids,omitempty"`
|
||||
HostIds []string `json:"hostids,omitempty"`
|
||||
HttpTestIds []string `json:"httptestids,omitempty"`
|
||||
InterfaceIds []string `json:"interfaceids,omitempty"`
|
||||
ItemIds []string `json:"itemids,omitempty"`
|
||||
MaintenanceIds []string `json:"maintenanceids,omitempty"`
|
||||
commonGet
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user