X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2ims%2Fdomain%2Fevents.py;h=04e8a08b2d9d58768f2e5ae43d623de93227df87;hb=HEAD;hp=19adab19be7d41cd9f6e8392978476c29544b66b;hpb=9ee90ffa2414326c26fd10edc59bf315204254e2;p=pti%2Fo2.git diff --git a/o2ims/domain/events.py b/o2ims/domain/events.py index 19adab1..04e8a08 100644 --- a/o2ims/domain/events.py +++ b/o2ims/domain/events.py @@ -1,4 +1,4 @@ -# Copyright (C) 2021 Wind River Systems, Inc. +# Copyright (C) 2021-2024 Wind River Systems, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -31,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() @@ -54,3 +62,10 @@ class AlarmEventChanged(Event): id: str notificationEventType: AlarmNotificationEventEnum updatetime: datetime.now() + + +@dataclass +class AlarmEventPurged(Event): + id: str + notificationEventType: AlarmNotificationEventEnum + updatetime: datetime.now()