X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2ims%2Fdomain%2Fevents.py;h=ede48d2003c1257bb0d32667d1bca7418362d0a1;hb=282ddaeedc42ddafead018bd4aea4740d275f2bb;hp=a4a237565146b924214258c52cf3ae607da7517f;hpb=b37a7d8e36bd9fdf862cb1aad29f9a29052e725f;p=pti%2Fo2.git diff --git a/o2ims/domain/events.py b/o2ims/domain/events.py index a4a2375..ede48d2 100644 --- a/o2ims/domain/events.py +++ b/o2ims/domain/events.py @@ -15,8 +15,10 @@ # 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()