Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Disk ¶
type Disk struct {
Device string `xml:"device,attr"`
Source DiskSource `xml:"source"`
Target DiskTarget `xml:"target"`
}
type DiskSource ¶
type DiskSource struct {
File string `xml:"file,attr"`
}
type DiskTarget ¶
type DiskTarget struct {
Device string `xml:"dev,attr"`
}
type Interface ¶
type Interface struct {
Source InterfaceSource `xml:"source"`
Target InterfaceTarget `xml:"target"`
}
type InterfaceSource ¶
type InterfaceSource struct {
Bridge string `xml:"bridge,attr"`
}
type InterfaceTarget ¶
type InterfaceTarget struct {
Device string `xml:"dev,attr"`
}
type Metadata ¶
type Metadata struct {
// The actual xml tag is nova:instance, but we don't care about the namespaces
NovaInstance NovaInstance `xml:"instance"`
}
type NovaFlavor ¶
type NovaFlavor struct {
Name string `xml:"name,attr"`
}
type NovaInstance ¶
type NovaInstance struct {
Name string `xml:"name"`
Flavor NovaFlavor `xml:"flavor"`
Owner NovaOwner `xml:"owner"`
}
Click to show internal directories.
Click to hide internal directories.