INF-303 Add Infrastructure Monitoring Fault Service; INF-305 update inventory api...
[pti/o2.git] / o2ims / domain / events.py
index a4a2375..eb0250f 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
@@ -45,3 +47,16 @@ class ResourceChanged(Event):
     resourcePoolId: str
     notificationEventType: NotificationEventEnum
     updatetime: datetime.now()
+
+
+@dataclass
+class ConfigurationChanged(Event):
+    id: str
+    updatetime: datetime.now()
+
+
+@dataclass
+class AlarmEventChanged(Event):
+    id: str
+    notificationEventType: AlarmNotificationEventEnum
+    updatetime: datetime.now()