From 9d7c516245a8dadc4347861eee95c17fbc8c76f5 Mon Sep 17 00:00:00 2001 From: Mickael B Date: Sun, 10 Nov 2024 17:42:11 +0100 Subject: [PATCH] add node to events --- deevirt_schema/libvirt/dom/events.py | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/deevirt_schema/libvirt/dom/events.py b/deevirt_schema/libvirt/dom/events.py index 8dce26e..3b608dd 100644 --- a/deevirt_schema/libvirt/dom/events.py +++ b/deevirt_schema/libvirt/dom/events.py @@ -66,6 +66,7 @@ class LifeCycle(BaseModel): REBOOT = 100 + node_id:UUID4 = Field() company_id:UUID4 = Field() datacenter_id:UUID4 = Field() vm_id:UUID = Field() @@ -77,6 +78,7 @@ class GraphicsAddr(BaseModel): service:int = Field() class Graphics(BaseModel): + node_id:UUID4 = Field() company_id:UUID4 = Field() datacenter_id:UUID4 = Field() vm_id:UUID = Field() diff --git a/setup.py b/setup.py index 405a659..3a116ee 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup setup( name='deevirt_schema', - version='0.1.25', + version='0.1.26', description='Deevirt Schema', url='https://git.celeonet.fr/Deevirt/deevirt_schema.git', author='Celeonet',