From 34350ab2c4791796a76100433cd873a69f6b846d Mon Sep 17 00:00:00 2001 From: Mickael BOURNEUF Date: Wed, 12 Feb 2025 21:21:41 +0100 Subject: [PATCH] =?UTF-8?q?Version=20pr=C3=A9liminaire=20du=20Schema=20Dom?= =?UTF-8?q?ain?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/schema/domain.go | 78 -------------------------------------------- 1 file changed, 78 deletions(-) diff --git a/pkg/schema/domain.go b/pkg/schema/domain.go index 1008870..9da475b 100644 --- a/pkg/schema/domain.go +++ b/pkg/schema/domain.go @@ -1,7 +1,6 @@ package schema type Domain struct { - Devices Devices `xml:"devices"` Metadata Metadata `xml:"metadata"` } @@ -14,83 +13,6 @@ type Instance struct { 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"`