-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpropertycollector.go
95 lines (80 loc) · 3.94 KB
/
propertycollector.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
package vim25
import "encoding/xml"
// http://pubs.vmware.com/vsphere-55/index.jsp#com.vmware.wssdk.apiref.doc/vmodl.query.PropertyCollector.html?path=7_0_0_2_6_17_8#retrievePropertiesEx
type RetrievePropertiesEx struct {
XMLName xml.Name `xml:"urn:vim25 RetrievePropertiesEx"`
This *PropertyCollector `xml:"_this"`
SpecSet []*PropertyFilterSpec `xml:"specSet"`
Options RetrieveOptions `xml:"options"`
}
type RetrievePropertiesExResponse struct {
XMLName xml.Name `xml:"urn:vim25 RetrievePropertiesExResponse"`
RetrieveResult RetrieveResult `xml:"returnval"`
}
// http://pubs.vmware.com/vsphere-55/topic/com.vmware.wssdk.apiref.doc/vmodl.query.PropertyCollector.html#continueRetrievePropertiesEx
type ContinueRetrievePropertiesEx struct {
XMLName xml.Name `xml:"urn:vim25 ContinueRetrievePropertiesEx"`
This *PropertyCollector `xml:"_this"`
Token string `xml:"token"`
}
type ContinueRetrievePropertiesExResponse struct {
XMLName xml.Name `xml:"urn:vim25 ContinueRetrievePropertiesExResponse"`
RetrieveResult RetrieveResult `xml:"returnval"`
}
// http://pubs.vmware.com/vsphere-55/topic/com.vmware.wssdk.apiref.doc/vmodl.query.PropertyCollector.html#cancelRetrievePropertiesEx
type CancelRetrievePropertiesEx struct {
XMLName xml.Name `xml:"urn:vim25 CancelRetrievePropertiesEx"`
This *PropertyCollector `xml:"_this"`
Token string `xml:"token"`
}
// http://pubs.vmware.com/vsphere-55/index.jsp#com.vmware.wssdk.apiref.doc/vmodl.query.PropertyCollector.ObjectSpec.html
type ObjectSpec struct {
XsiType string `xml:"http://www.w3.org/2001/XMLSchema-instance type,attr,ommitempty"`
Obj *ManagedObjectReference `xml:"obj"`
Skip bool `xml:"skip"`
SelectSet []interface{} `xml:"selectSet"`
}
// http://pubs.vmware.com/vsphere-55/index.jsp#com.vmware.wssdk.apiref.doc/vmodl.query.PropertyCollector.SelectionSpec.html
type SelectionSpec struct {
Name string `xml:"name"`
}
// http://pubs.vmware.com/vsphere-55/index.jsp#com.vmware.wssdk.apiref.doc/vmodl.query.PropertyCollector.TraversalSpec.html
type TraversalSpec struct {
SelectionSpec
XsiType string `xml:"http://www.w3.org/2001/XMLSchema-instance type,attr"`
Type string `xml:"type"`
Path string `xml:"path"`
Skip bool `xml:"skip"`
}
// http://pubs.vmware.com/vsphere-55/index.jsp#com.vmware.wssdk.apiref.doc/vmodl.query.PropertyCollector.PropertySpec.html
type PropertySpec struct {
Type string `xml:"type"`
PathSet []string `xml:"pathSet"`
All bool `xml:"all,omitempty"`
}
// http://pubs.vmware.com/vsphere-55/index.jsp#com.vmware.wssdk.apiref.doc/vmodl.query.PropertyCollector.FilterSpec.html
type PropertyFilterSpec struct {
PropSet []*PropertySpec `xml:"propSet"`
ObjectSet []*ObjectSpec `xml:"objectSet"`
ReportMissingObjectsInResults bool `xml:"reportMissingObjectsInResults"`
}
// http://pubs.vmware.com/vsphere-55/index.jsp?topic=%2Fcom.vmware.wssdk.apiref.doc%2Fvmodl.query.PropertyCollector.RetrieveOptions.html
type RetrieveOptions struct {
MaxObjects int `xml:"maxObjects,omitempty"`
}
// http://pubs.vmware.com/vsphere-55/index.jsp#com.vmware.wssdk.apiref.doc/vmodl.query.PropertyCollector.RetrieveResult.html
type RetrieveResult struct {
Objects []ObjectContent `xml:"objects"`
Token string `xml:"token"`
}
// http://pubs.vmware.com/vsphere-55/index.jsp#com.vmware.wssdk.apiref.doc/vmodl.query.PropertyCollector.ObjectContent.html
type ObjectContent struct {
MissingSet []MissingProperty `xml:"missingSet"`
Obj *ManagedObjectReference `xml:"obj"`
PropSet []DynamicProperty `xml:"propSet"`
}
// http://pubs.vmware.com/vsphere-55/index.jsp?topic=%2Fcom.vmware.wssdk.apiref.doc%2Fvmodl.query.PropertyCollector.MissingProperty.html
type MissingProperty struct {
// Fault LocalizedMethodFault `xml:"fault"` // TODO(igm)
Path string `xml:"path"`
}