Fix INF-371 inventoryChange notification of the resourceType, resourcePool, Dms
[pti/o2.git] / o2ims / domain / events.py
index a4a2375..ede48d2 100644 (file)
 # pylint: disable=too-few-public-methods
 from dataclasses import dataclass
 from datetime import datetime
+
 from o2common.domain.events import Event
 from o2ims.domain.subscription_obj import NotificationEventEnum
+from o2ims.domain.alarm_obj import AlarmNotificationEventEnum
 
 
 @dataclass
@@ -29,6 +31,14 @@ class OcloudChanged(Event):
 @dataclass
 class ResourceTypeChanged(Event):
     id: str
+    notificationEventType: NotificationEventEnum
+    updatetime: datetime.now()
+
+
+@dataclass
+class DmsChanged(Event):
+    id: str
+    notificationEventType: NotificationEventEnum
     updatetime: datetime.now()
 
 
@@ -45,3 +55,10 @@ class ResourceChanged(Event):
     resourcePoolId: str
     notificationEventType: NotificationEventEnum
     updatetime: datetime.now()
+
+
+@dataclass
+class AlarmEventChanged(Event):
+    id: str
+    notificationEventType: AlarmNotificationEventEnum
+    updatetime: datetime.now()