-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhost.go
270 lines (210 loc) · 6.2 KB
/
host.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
/**
Copyright Contributors to the Feilong Project.
SPDX-License-Identifier: Apache-2.0
**/
package feilong
import (
"encoding/json"
)
// https://cloudlib4zvm.readthedocs.io/en/latest/restapi.html#get-guests-list
type GetHostGuestListResult struct {
OverallRC int `json:"overallRC"`
ReturnCode int `json:"rc"`
Reason int `json:"rs"`
ErrorMsg string `json:"errmsg"`
ModuleId int `json:"modID"`
Output []string `json:"output"`
}
// English grammar: "guest list", not "guests list"
func (c *Client) GetHostGuestList() (*GetHostGuestListResult, error) {
var result GetHostGuestListResult
body, err := c.doRequest("GET", "/host/guests", nil)
if err != nil {
return nil, err
}
err = json.Unmarshal(body, &result)
if err != nil {
return nil, err
}
return &result, nil
}
// https://cloudlib4zvm.readthedocs.io/en/latest/restapi.html#get-host-info
type GetHostInfoCPUInfo struct {
CECModel string `json:"cec_model"`
Architecture string `json:"architecture"`
}
type GetHostInfoOutput struct {
ZVMHost string `json:"zvm_host"`
ZCCUserID string `json:"zcc_userid"`
IPLTime string `json:"ipl_time"`
HypervisorHostname string `json:"hypervisor_hostname"`
HypervisorType string `json:"hypervisor_type"`
HypervisorVersion int `json:"hypervisor_version"`
DiskTotal int `json:"disk_total"`
DiskUsed int `json:"disk_used"`
DiskAvailable int `json:"disk_available"`
VCPUs int `json:"vcpus"`
VCPUsUsed int `json:"vcpus_used"`
MemoryMB float64 `json:"memory_mb"`
MemoryMBUsed float64 `json:"memory_mb_used"`
CPUInfo GetHostInfoCPUInfo `json:"cpu_info"`
}
type GetHostInfoResult struct {
OverallRC int `json:"overallRC"`
ReturnCode int `json:"rc"`
Reason int `json:"rs"`
ErrorMsg string `json:"errmsg"`
ModuleId int `json:"modID"`
Output GetHostInfoOutput `json:"output"`
}
func (c *Client) GetHostInfo() (*GetHostInfoResult, error) {
var result GetHostInfoResult
body, err := c.doRequest("GET", "/host", nil)
if err != nil {
return nil, err
}
err = json.Unmarshal(body, &result)
if err != nil {
return nil, err
}
return &result, nil
}
// https://cloudlib4zvm.readthedocs.io/en/latest/restapi.html#get-host-disk-pool-info
type GetHostDiskPoolInfoOutput struct {
DiskAvailable int `json:"disk_available"`
DiskTotal int `json:"disk_total"`
DiskUsed int `json:"disk_used"`
}
type GetHostDiskPoolInfoResult struct {
OverallRC int `json:"overallRC"`
ReturnCode int `json:"rc"`
Reason int `json:"rs"`
ErrorMsg string `json:"errmsg"`
ModuleId int `json:"modID"`
Output GetHostDiskPoolInfoOutput `json:"output"`
}
func (c *Client) GetHostDiskPoolInfo(poolName *string) (*GetHostDiskPoolInfoResult, error) {
var result GetHostDiskPoolInfoResult
req := "/host/diskpool"
if poolName != nil {
req += "?poolname=" + *poolName
}
body, err := c.doRequest("GET", req, nil)
if err != nil {
return nil, err
}
err = json.Unmarshal(body, &result)
if err != nil {
return nil, err
}
return &result, nil
}
// Same, with details:
type Volume struct {
VolumeName string `json:"volume_name"`
DeviceType string `json:"device_type"`
StartCylinder string `json:"start_cylinder"`
FreeSize int `json:"free_size"`
DASDGroup string `json:"dasd_group"`
RegionName string `json:"region_name"`
}
type GetHostDiskPoolDetailsResult struct {
OverallRC int `json:"overallRC"`
ReturnCode int `json:"rc"`
Reason int `json:"rs"`
ErrorMsg string `json:"errmsg"`
ModuleId int `json:"modID"`
Output map[string][]Volume `json:"output"`
}
func (c *Client) GetHostDiskPoolDetails(poolName *string) (*GetHostDiskPoolDetailsResult, error) {
var result GetHostDiskPoolDetailsResult
req := "/host/diskpool"
if poolName != nil {
req += "?poolname=" + *poolName + "&details=true"
} else {
req += "?details=true"
}
body, err := c.doRequest("GET", req, nil)
if err != nil {
return nil, err
}
err = json.Unmarshal(body, &result)
if err != nil {
return nil, err
}
return &result, nil
}
// https://cloudlib4zvm.readthedocs.io/en/latest/restapi.html#get-host-disk-pool-volume-names
type GetHostDiskPoolVolumeNamesOutput struct {
DiskPoolVolumes string `json:"diskpool_volumes"`
}
type GetHostDiskPoolVolumeNamesResult struct {
OverallRC int `json:"overallRC"`
ReturnCode int `json:"rc"`
Reason int `json:"rs"`
ErrorMsg string `json:"errmsg"`
ModuleId int `json:"modID"`
Output GetHostDiskPoolVolumeNamesOutput `json:"output"`
}
func (c *Client) GetHostDiskPoolVolumeNames(poolName *string) (*GetHostDiskPoolVolumeNamesResult, error) {
var result GetHostDiskPoolVolumeNamesResult
req := "/host/diskpool_volumes"
if poolName != nil {
req += "?poolname=" + *poolName
}
body, err := c.doRequest("GET", req, nil)
if err != nil {
return nil, err
}
err = json.Unmarshal(body, &result)
if err != nil {
return nil, err
}
return &result, nil
}
// https://cloudlib4zvm.readthedocs.io/en/latest/restapi.html#get-host-volume-info
type GetHostVolumeInfoOutput struct {
VolumeType string `json:"volume_type"`
VolumeSize string `json:"volume_size"`
}
type GetHostVolumeInfoResult struct {
OverallRC int `json:"overallRC"`
ReturnCode int `json:"rc"`
Reason int `json:"rs"`
ErrorMsg string `json:"errmsg"`
ModuleId int `json:"modID"`
Output GetHostVolumeInfoOutput `json:"output"`
}
func (c *Client) GetHostVolumeInfo(volumeName string) (*GetHostVolumeInfoResult, error) {
var result GetHostVolumeInfoResult
body, err := c.doRequest("GET", "/host/volume?volumename=" + volumeName, nil)
if err != nil {
return nil, err
}
err = json.Unmarshal(body, &result)
if err != nil {
return nil, err
}
return &result, nil
}
// https://cloudlib4zvm.readthedocs.io/en/latest/restapi.html#get-host-ssi-cluster-info
type GetHostSSIClusterInfoResult struct {
OverallRC int `json:"overallRC"`
ReturnCode int `json:"rc"`
Reason int `json:"rs"`
ErrorMsg string `json:"errmsg"`
ModuleId int `json:"modID"`
Output []string `json:"output"`
}
func (c *Client) GetHostSSIClusterInfo() (*GetHostSSIClusterInfoResult, error) {
var result GetHostSSIClusterInfoResult
body, err := c.doRequest("GET", "/host/ssi", nil)
if err != nil {
return nil, err
}
err = json.Unmarshal(body, &result)
if err != nil {
return nil, err
}
return &result, nil
}