X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2ims%2Fdomain%2Fevents.py;h=ede48d2003c1257bb0d32667d1bca7418362d0a1;hb=73242ddf79513c5b48f8336a049e05e141ea8ba7;hp=eb0250f3385e96bed49bed63f4c143c4584934a6;hpb=d2f6cc674bf3623caf114a8d7709e70d55ec9340;p=pti%2Fo2.git diff --git a/o2ims/domain/events.py b/o2ims/domain/events.py index eb0250f..ede48d2 100644 --- a/o2ims/domain/events.py +++ b/o2ims/domain/events.py @@ -31,27 +31,29 @@ class OcloudChanged(Event): @dataclass class ResourceTypeChanged(Event): id: str + notificationEventType: NotificationEventEnum updatetime: datetime.now() @dataclass -class ResourcePoolChanged(Event): +class DmsChanged(Event): id: str notificationEventType: NotificationEventEnum updatetime: datetime.now() @dataclass -class ResourceChanged(Event): +class ResourcePoolChanged(Event): id: str - resourcePoolId: str notificationEventType: NotificationEventEnum updatetime: datetime.now() @dataclass -class ConfigurationChanged(Event): +class ResourceChanged(Event): id: str + resourcePoolId: str + notificationEventType: NotificationEventEnum updatetime: datetime.now()