X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2ims%2Fdomain%2Fevents.py;h=19adab19be7d41cd9f6e8392978476c29544b66b;hb=102f6523af2b9490181be8aca42af7696269e2eb;hp=7ab04a01cb548f852c19cef76304dc665217b4c4;hpb=f73c8e3b01b8f5b7438ba544870e06d8f30cdea0;p=pti%2Fo2.git diff --git a/o2ims/domain/events.py b/o2ims/domain/events.py index 7ab04a0..19adab1 100644 --- a/o2ims/domain/events.py +++ b/o2ims/domain/events.py @@ -14,14 +14,43 @@ # 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 +class OcloudChanged(Event): + id: str + notificationEventType: NotificationEventEnum + updatetime: datetime.now() + + +@dataclass +class ResourceTypeChanged(Event): + id: str + updatetime: datetime.now() + + +@dataclass +class ResourcePoolChanged(Event): + id: str + notificationEventType: NotificationEventEnum + updatetime: datetime.now() @dataclass -class OcloudUpdated(Event): - oCloudId: str +class ResourceChanged(Event): + id: str + resourcePoolId: str + notificationEventType: NotificationEventEnum + updatetime: datetime.now() @dataclass -class ResourceTypeUpdated(Event): - oCloudId: str +class AlarmEventChanged(Event): + id: str + notificationEventType: AlarmNotificationEventEnum + updatetime: datetime.now()