-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresourcepool.go
45 lines (38 loc) · 1.55 KB
/
resourcepool.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"
type ImportVApp struct {
XMLName xml.Name `xml:"urn:vim25 ImportVApp"`
This *ResourcePool `xml:"_this"`
Spec ImportSpec `xml:"spec"`
Folder *Folder `xml:"folder"`
}
type ImportVAppResponse struct {
HttpNfcLease *HttpNfcLease `xml:"returnval"`
}
type ImportSpec struct {
XsiType string `xml:"http://www.w3.org/2001/XMLSchema-instance type,attr,ommitempty"`
Content string `xml:",innerxml"`
}
type OvfManagerCommonParams struct {
Locale string `xml:"locale"`
DeploymentOption string `xml:"deploymentOption"`
MsgBundle []*KeyValue `xml:"msgBundle,omitempty"`
ImportOption []string `xml:"importOption,omitempty"`
}
type OvfCreateImportSpecParams struct {
OvfManagerCommonParams
DiskProvisioning string `xml:"diskProvisioning,omitempty"`
EntityName string `xml:"entityName"`
HostSystem *ManagedObjectReference `xml:"hostSystem,omitempty"`
InstantiationOst *OvfConsumerOstNode `xml:"instantiationOst,omitempty"`
IpAllocationPolicy string `xml:"ipAllocationPolicy,omitempty"`
ImProtocol string `xml:"ipProtocol,omitempty"`
NetworkMapping []*OvfNetworkMapping `xml:"networkMapping,omitempty"`
PropertyMapping []*KeyValue `xml:"propertyMapping,omitempty"`
ResourceMapping []*OvfResourceMap `xml:"resourceMapping,omitempty"`
}
// TODO
type OvfConsumerOstNode struct{}
type OvfNetworkMapping struct{}
type KeyValue struct{}
type OvfResourceMap struct{}