-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserviceinstance.go
45 lines (38 loc) · 1.37 KB
/
serviceinstance.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
package vim25
import (
"encoding/xml"
"time"
)
type CurrentTime struct {
XMLName xml.Name `xml:"urn:vim25 CurrentTime"`
This *ServiceInstance `xml:"urn:vim25 _this"`
}
type CurrentTimeResponse struct {
CurrentTime time.Time `xml:"urn:vim25 returnval"`
}
type RetrieveServiceContent struct {
XMLName xml.Name `xml:"urn:vim25 RetrieveServiceContent"`
This *ServiceInstance `xml:"urn:vim25 _this"`
}
type RetrieveServiceContentResponse struct {
XMLName xml.Name `xml:"urn:vim25 RetrieveServiceContentResponse"`
Returnval *ServiceContent `xml:"urn:vim25 returnval"`
}
type ServiceContent struct {
RootFolder *Folder `xml:"urn:vim25 rootFolder"`
PropertyCollector *PropertyCollector `xml:"urn:vim25 propertyCollector"`
ViewManager *ViewManager `xml:"urn:vim25 viewManager"`
About About `xml:"urn:vim25 about"`
Setting *OptionManager `xml:"urn:vim25 setting"`
SessionManager *SessionManager `xml:"urn:vim25 sessionManager"`
SearchIndex *SearchIndex `xml:"urn:vim25 searchIndex"`
OvfManager *OvfManager `xml:"ovfManager"`
}
type About struct {
Name string `xml:"name"`
FullName string `xml:"fullName"`
Vendor string `xml:"vendor"`
Version string `xml:"version"`
Build uint64 `xml:"build"`
ApiVersion string `xml:"apiVersion"`
}