Commit f0f5742d authored by Daniel P. Berrangé's avatar Daniel P. Berrangé 💬
Browse files

Add externalSnapshot guest capabilities feature

This was added long ago but only recently exposed in a test data
file, highlighting the schema coverage gap.

Signed-off-by: default avatarDaniel P. Berrangé <berrange@redhat.com>
parent 521f2f61
Loading
Loading
Loading
Loading
+4 −0
Changes for capabilities.go: 4 added lines, 0 removed lines.
Original line number Diff line number Diff line
@@ -363,6 +363,9 @@ type CapsGuestFeatureACPI struct {
type CapsGuestFeatureIA64BE struct {
}

type CapsGuestFeatureExternalSnapshot struct {
}

type CapsGuestFeatures struct {
	CPUSelection     *CapsGuestFeatureCPUSelection     `xml:"cpuselection"`
	DeviceBoot       *CapsGuestFeatureDeviceBoot       `xml:"deviceboot"`
@@ -372,6 +375,7 @@ type CapsGuestFeatures struct {
	APIC             *CapsGuestFeatureAPIC             `xml:"apic"`
	ACPI             *CapsGuestFeatureACPI             `xml:"acpi"`
	IA64BE           *CapsGuestFeatureIA64BE           `xml:"ia64_be"`
	ExternalSnapshot *CapsGuestFeatureExternalSnapshot `xml:"externalSnapshot"`
}

type CapsGuest struct {