Version préliminaire du Schema

This commit is contained in:
Mickael BOURNEUF 2025-02-12 21:20:10 +01:00
parent 8f0177d59b
commit 92ede252b7

100
pkg/schema/domain.go Normal file
View File

@ -0,0 +1,100 @@
package schema
type Domain struct {
Devices Devices `xml:"devices"`
Metadata Metadata `xml:"metadata"`
}
type Metadata struct {
DeevirtInstance Instance `xml:"instance"`
}
type Instance struct {
DeevirtCompanyID string `xml:"company_id"`
DeevirtDatacenterID string `xml:"datacenter_id"`
}
type User struct {
UserName string `xml:",chardata"`
UserUUID string `xml:"uuid,attr"`
}
type Project struct {
ProjectName string `xml:",chardata"`
ProjectUUID string `xml:"uuid,attr"`
}
type Root struct {
RootType string `xml:"type,attr"`
RootUUID string `xml:"uuid,attr"`
}
type Devices struct {
Disks []Disk `xml:"disk"`
Interfaces []Interface `xml:"interface"`
}
type Disk struct {
Device string `xml:"device,attr"`
Driver DiskDriver `xml:"driver"`
Source DiskSource `xml:"source"`
Target DiskTarget `xml:"target"`
DiskType string `xml:"type,attr"`
Serial string `xml:"serial"`
}
type DiskDriver struct {
Type string `xml:"type,attr"`
Cache string `xml:"cache,attr"`
Discard string `xml:"discard,attr"`
}
type DiskSource struct {
File string `xml:"file,attr"`
Name string `xml:"name,attr"`
}
type DiskTarget struct {
Device string `xml:"dev,attr"`
Bus string `xml:"bus,attr"`
}
type Interface struct {
Source InterfaceSource `xml:"source"`
Target InterfaceTarget `xml:"target"`
Virtualport InterfaceVirtualPort `xml:"virtualport"`
}
type InterfaceVirtualPort struct {
Parameters InterfaceVirtualPortParam `xml:"parameters"`
}
type InterfaceVirtualPortParam struct {
InterfaceID string `xml:"interfaceid,attr"`
}
type InterfaceSource struct {
Bridge string `xml:"bridge,attr"`
}
type InterfaceTarget struct {
Device string `xml:"dev,attr"`
}
type VirDomainMemoryStats struct {
MajorFault uint64
MinorFault uint64
Unused uint64
Available uint64
ActualBalloon uint64
Rss uint64
Usable uint64
DiskCaches uint64
}
// JSON SCHEMA for AMQP
type DomainStateJSON struct {
CompanyID string `json:"company_id"`
DatacenterID string `json:"datacenter_id"`
DomainID string `json:"domain_id"`
State int64 `json:"state"`
}