compute/pkg/schema/domain.go
2025-03-01 18:41:36 +01:00

62 lines
1.3 KiB
Go

package schema
import "google.golang.org/protobuf/types/known/timestamppb"
/*
/domain/{domain_id}
*/
// Schema dans le store
type Domain struct {
Type string `json:"type"` // Qemu seulement pour le moment
Config string `json:"config"` // La configuration xml libvirt
}
/*
/domain/{domain_id}/node
*/
type DomainNode struct {
NodeId string `json:"nodeID"` // NodeID Owner
State int `json:"state"` // Son etat persistant
}
/*
/domain/{domain_id}/agent
*/
type DomainAgent struct {
// A définir
}
/*
/etc/libvirt/{type}/{node_id}/{domain_id}
*/
type DomainLock struct {
LifeCycle int `json:"lifeycle"` // Son etat réel
Expiry *timestamppb.Timestamp `json:"expiry"` // Date d'expiration du verouillage
}
// Other
type DomainToNode struct {
State int `json:"state"`
}
type DomainXML struct {
Metadata MetadataXML `xml:"metadata"`
}
type MetadataXML struct {
DeevirtInstance InstanceXML `xml:"instance"`
}
type InstanceXML struct {
DeevirtCompanyID string `xml:"company_id"`
DeevirtDatacenterID string `xml:"datacenter_id"`
}
// JSON SCHEMA for AMQP
type DomainStateAMQP struct {
CompanyID string `json:"company_id"`
DatacenterID string `json:"datacenter_id"`
DomainID string `json:"domain_id"`
State int64 `json:"state"`
}