-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVGPUType.gen.go
426 lines (359 loc) · 12.5 KB
/
VGPUType.gen.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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
// This is a generated file. DO NOT EDIT manually.
//go:generate goimports -w VGPUType.gen.go
package go_xen_client
import (
"reflect"
"strconv"
"github.com/nilshell/xmlrpc"
)
//VGPUType: A type of virtual GPU
type VGPUType struct {
Uuid string // Unique identifier/object reference
VendorName string // Name of VGPU vendor
ModelName string // Model name associated with the VGPU type
FramebufferSize int // Framebuffer size of the VGPU type, in bytes
MaxHeads int // Maximum number of displays supported by the VGPU type
MaxResolutionX int // Maximum resolution (width) supported by the VGPU type
MaxResolutionY int // Maximum resolution (height) supported by the VGPU type
SupportedOnPGPUs []string // List of PGPUs that support this VGPU type
EnabledOnPGPUs []string // List of PGPUs that have this VGPU type enabled
VGPUs []string // List of VGPUs of this type
SupportedOnGPUGroups []string // List of GPU groups in which at least one PGPU supports this VGPU type
EnabledOnGPUGroups []string // List of GPU groups in which at least one have this VGPU type enabled
Implementation VgpuTypeImplementation // The internal implementation of this VGPU type
Identifier string // Key used to identify VGPU types and avoid creating duplicates - this field is used internally and not intended for interpretation by API clients
Experimental bool // Indicates whether VGPUs of this type should be considered experimental
CompatibleTypesInVm []string // List of VGPU types which are compatible in one VM
}
func FromVGPUTypeToXml(VGPU_type *VGPUType) (result xmlrpc.Struct) {
result = make(xmlrpc.Struct)
result["uuid"] = VGPU_type.Uuid
result["vendor_name"] = VGPU_type.VendorName
result["model_name"] = VGPU_type.ModelName
result["framebuffer_size"] = strconv.Itoa(VGPU_type.FramebufferSize)
result["max_heads"] = strconv.Itoa(VGPU_type.MaxHeads)
result["max_resolution_x"] = strconv.Itoa(VGPU_type.MaxResolutionX)
result["max_resolution_y"] = strconv.Itoa(VGPU_type.MaxResolutionY)
result["supported_on_PGPUs"] = VGPU_type.SupportedOnPGPUs
result["enabled_on_PGPUs"] = VGPU_type.EnabledOnPGPUs
result["VGPUs"] = VGPU_type.VGPUs
result["supported_on_GPU_groups"] = VGPU_type.SupportedOnGPUGroups
result["enabled_on_GPU_groups"] = VGPU_type.EnabledOnGPUGroups
result["implementation"] = VGPU_type.Implementation.String()
result["identifier"] = VGPU_type.Identifier
result["experimental"] = VGPU_type.Experimental
result["compatible_types_in_vm"] = VGPU_type.CompatibleTypesInVm
return result
}
func ToVGPUType(obj interface{}) (resultObj *VGPUType) {
objValue := reflect.ValueOf(obj)
resultObj = &VGPUType{}
for _, oKey := range objValue.MapKeys() {
keyName := oKey.String()
keyValue := objValue.MapIndex(oKey).Interface()
switch keyName {
case "uuid":
if v, ok := keyValue.(string); ok {
resultObj.Uuid = v
}
case "vendor_name":
if v, ok := keyValue.(string); ok {
resultObj.VendorName = v
}
case "model_name":
if v, ok := keyValue.(string); ok {
resultObj.ModelName = v
}
case "framebuffer_size":
if v, ok := keyValue.(int); ok {
resultObj.FramebufferSize = v
}
case "max_heads":
if v, ok := keyValue.(int); ok {
resultObj.MaxHeads = v
}
case "max_resolution_x":
if v, ok := keyValue.(int); ok {
resultObj.MaxResolutionX = v
}
case "max_resolution_y":
if v, ok := keyValue.(int); ok {
resultObj.MaxResolutionY = v
}
case "supported_on_PGPUs":
if interim, ok := keyValue.([]interface{}); ok {
resultObj.SupportedOnPGPUs = make([]string, len(interim))
for i, interimValue := range interim {
if v, ok := interimValue.(string); ok {
resultObj.SupportedOnPGPUs[i] = v
}
}
}
case "enabled_on_PGPUs":
if interim, ok := keyValue.([]interface{}); ok {
resultObj.EnabledOnPGPUs = make([]string, len(interim))
for i, interimValue := range interim {
if v, ok := interimValue.(string); ok {
resultObj.EnabledOnPGPUs[i] = v
}
}
}
case "VGPUs":
if interim, ok := keyValue.([]interface{}); ok {
resultObj.VGPUs = make([]string, len(interim))
for i, interimValue := range interim {
if v, ok := interimValue.(string); ok {
resultObj.VGPUs[i] = v
}
}
}
case "supported_on_GPU_groups":
if interim, ok := keyValue.([]interface{}); ok {
resultObj.SupportedOnGPUGroups = make([]string, len(interim))
for i, interimValue := range interim {
if v, ok := interimValue.(string); ok {
resultObj.SupportedOnGPUGroups[i] = v
}
}
}
case "enabled_on_GPU_groups":
if interim, ok := keyValue.([]interface{}); ok {
resultObj.EnabledOnGPUGroups = make([]string, len(interim))
for i, interimValue := range interim {
if v, ok := interimValue.(string); ok {
resultObj.EnabledOnGPUGroups[i] = v
}
}
}
case "implementation":
if v, ok := keyValue.(VgpuTypeImplementation); ok {
resultObj.Implementation = v
}
case "identifier":
if v, ok := keyValue.(string); ok {
resultObj.Identifier = v
}
case "experimental":
if v, ok := keyValue.(bool); ok {
resultObj.Experimental = v
}
case "compatible_types_in_vm":
if interim, ok := keyValue.([]interface{}); ok {
resultObj.CompatibleTypesInVm = make([]string, len(interim))
for i, interimValue := range interim {
if v, ok := interimValue.(string); ok {
resultObj.CompatibleTypesInVm[i] = v
}
}
}
}
}
return resultObj
}
/* GetAllRecords: Return a map of VGPU_type references to VGPU_type records for all VGPU_types known to the system. */
func (client *XenClient) VGPUTypeGetAllRecords() (result map[string]VGPUType, err error) {
obj, err := client.APICall("VGPU_type.get_all_records")
if err != nil {
return
}
interim := reflect.ValueOf(obj)
result = map[string]VGPUType{}
for _, key := range interim.MapKeys() {
obj := interim.MapIndex(key)
mapObj := ToVGPUType(obj.Interface())
result[key.String()] = *mapObj
}
return
}
/* GetAll: Return a list of all the VGPU_types known to the system. */
func (client *XenClient) VGPUTypeGetAll() (result []string, err error) {
obj, err := client.APICall("VGPU_type.get_all")
if err != nil {
return
}
result = make([]string, len(obj.([]interface{})))
for i, value := range obj.([]interface{}) {
result[i] = value.(string)
}
return
}
/* GetCompatibleTypesInVm: Get the compatible_types_in_vm field of the given VGPU_type. */
func (client *XenClient) VGPUTypeGetCompatibleTypesInVm(self string) (result []string, err error) {
obj, err := client.APICall("VGPU_type.get_compatible_types_in_vm", self)
if err != nil {
return
}
result = make([]string, len(obj.([]interface{})))
for i, value := range obj.([]interface{}) {
result[i] = value.(string)
}
return
}
/* GetExperimental: Get the experimental field of the given VGPU_type. */
func (client *XenClient) VGPUTypeGetExperimental(self string) (result bool, err error) {
obj, err := client.APICall("VGPU_type.get_experimental", self)
if err != nil {
return
}
result = obj.(bool)
return
}
/* GetIdentifier: Get the identifier field of the given VGPU_type. */
func (client *XenClient) VGPUTypeGetIdentifier(self string) (result string, err error) {
obj, err := client.APICall("VGPU_type.get_identifier", self)
if err != nil {
return
}
result = obj.(string)
return
}
/* GetImplementation: Get the implementation field of the given VGPU_type. */
func (client *XenClient) VGPUTypeGetImplementation(self string) (result VgpuTypeImplementation, err error) {
obj, err := client.APICall("VGPU_type.get_implementation", self)
if err != nil {
return
}
result = ToVgpuTypeImplementation(obj.(string))
return
}
/* GetEnabledOnGPUGroups: Get the enabled_on_GPU_groups field of the given VGPU_type. */
func (client *XenClient) VGPUTypeGetEnabledOnGPUGroups(self string) (result []string, err error) {
obj, err := client.APICall("VGPU_type.get_enabled_on_GPU_groups", self)
if err != nil {
return
}
result = make([]string, len(obj.([]interface{})))
for i, value := range obj.([]interface{}) {
result[i] = value.(string)
}
return
}
/* GetSupportedOnGPUGroups: Get the supported_on_GPU_groups field of the given VGPU_type. */
func (client *XenClient) VGPUTypeGetSupportedOnGPUGroups(self string) (result []string, err error) {
obj, err := client.APICall("VGPU_type.get_supported_on_GPU_groups", self)
if err != nil {
return
}
result = make([]string, len(obj.([]interface{})))
for i, value := range obj.([]interface{}) {
result[i] = value.(string)
}
return
}
/* GetVGPUs: Get the VGPUs field of the given VGPU_type. */
func (client *XenClient) VGPUTypeGetVGPUs(self string) (result []string, err error) {
obj, err := client.APICall("VGPU_type.get_VGPUs", self)
if err != nil {
return
}
result = make([]string, len(obj.([]interface{})))
for i, value := range obj.([]interface{}) {
result[i] = value.(string)
}
return
}
/* GetEnabledOnPGPUs: Get the enabled_on_PGPUs field of the given VGPU_type. */
func (client *XenClient) VGPUTypeGetEnabledOnPGPUs(self string) (result []string, err error) {
obj, err := client.APICall("VGPU_type.get_enabled_on_PGPUs", self)
if err != nil {
return
}
result = make([]string, len(obj.([]interface{})))
for i, value := range obj.([]interface{}) {
result[i] = value.(string)
}
return
}
/* GetSupportedOnPGPUs: Get the supported_on_PGPUs field of the given VGPU_type. */
func (client *XenClient) VGPUTypeGetSupportedOnPGPUs(self string) (result []string, err error) {
obj, err := client.APICall("VGPU_type.get_supported_on_PGPUs", self)
if err != nil {
return
}
result = make([]string, len(obj.([]interface{})))
for i, value := range obj.([]interface{}) {
result[i] = value.(string)
}
return
}
/* GetMaxResolutionY: Get the max_resolution_y field of the given VGPU_type. */
func (client *XenClient) VGPUTypeGetMaxResolutionY(self string) (result int, err error) {
obj, err := client.APICall("VGPU_type.get_max_resolution_y", self)
if err != nil {
return
}
result = obj.(int)
return
}
/* GetMaxResolutionX: Get the max_resolution_x field of the given VGPU_type. */
func (client *XenClient) VGPUTypeGetMaxResolutionX(self string) (result int, err error) {
obj, err := client.APICall("VGPU_type.get_max_resolution_x", self)
if err != nil {
return
}
result = obj.(int)
return
}
/* GetMaxHeads: Get the max_heads field of the given VGPU_type. */
func (client *XenClient) VGPUTypeGetMaxHeads(self string) (result int, err error) {
obj, err := client.APICall("VGPU_type.get_max_heads", self)
if err != nil {
return
}
result = obj.(int)
return
}
/* GetFramebufferSize: Get the framebuffer_size field of the given VGPU_type. */
func (client *XenClient) VGPUTypeGetFramebufferSize(self string) (result int, err error) {
obj, err := client.APICall("VGPU_type.get_framebuffer_size", self)
if err != nil {
return
}
result = obj.(int)
return
}
/* GetModelName: Get the model_name field of the given VGPU_type. */
func (client *XenClient) VGPUTypeGetModelName(self string) (result string, err error) {
obj, err := client.APICall("VGPU_type.get_model_name", self)
if err != nil {
return
}
result = obj.(string)
return
}
/* GetVendorName: Get the vendor_name field of the given VGPU_type. */
func (client *XenClient) VGPUTypeGetVendorName(self string) (result string, err error) {
obj, err := client.APICall("VGPU_type.get_vendor_name", self)
if err != nil {
return
}
result = obj.(string)
return
}
/* GetUuid: Get the uuid field of the given VGPU_type. */
func (client *XenClient) VGPUTypeGetUuid(self string) (result string, err error) {
obj, err := client.APICall("VGPU_type.get_uuid", self)
if err != nil {
return
}
result = obj.(string)
return
}
/* GetByUuid: Get a reference to the VGPU_type instance with the specified UUID. */
func (client *XenClient) VGPUTypeGetByUuid(uuid string) (result string, err error) {
obj, err := client.APICall("VGPU_type.get_by_uuid", uuid)
if err != nil {
return
}
result = obj.(string)
return
}
/* GetRecord: Get a record containing the current state of the given VGPU_type. */
func (client *XenClient) VGPUTypeGetRecord(self string) (result VGPUType, err error) {
obj, err := client.APICall("VGPU_type.get_record", self)
if err != nil {
return
}
result = *ToVGPUType(obj.(interface{}))
return
}