forked from sarah-soo/go-xen-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
probe_result_gen.go
39 lines (33 loc) · 1.38 KB
/
probe_result_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
//
// This file is generated. To change the content of this file, please do not
// apply the change to this file because it will get overwritten. Instead,
// change xenapi.go and execute 'go generate'.
//
package xenapi
import (
"fmt"
"github.com/amfranz/go-xmlrpc-client"
"reflect"
"strconv"
"time"
)
var _ = fmt.Errorf
var _ = xmlrpc.NewClient
var _ = reflect.TypeOf
var _ = strconv.Atoi
var _ = time.UTC
type ProbeResultRecord struct {
// Plugin-specific configuration which describes where and how to locate the storage repository. This may include the physical block device name, a remote NFS server and path or an RBD storage pool.
Configuration map[string]string
// True if this configuration is complete and can be used to call SR.create. False if it requires further iterative calls to SR.probe, to potentially narrow down on a configuration that can be used.
Complete bool
// Existing SR found for this configuration
Sr SrStatRecord
// Additional plugin-specific information about this configuration, that might be of use for an API user. This can for example include the LUN or the WWPN.
ExtraInfo map[string]string
}
type ProbeResultRef string
// A set of properties that describe one result element of SR.probe. Result elements and properties can change dynamically based on changes to the the SR.probe input-parameters or the target.
type ProbeResultClass struct {
client *Client
}