X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2ims%2Fdomain%2Fevents.py;h=485804008e3c5609bd959952a44204b8ec0a9731;hb=209f349b35b0919ac133bc2264f25753a73e5b8f;hp=a4a237565146b924214258c52cf3ae607da7517f;hpb=5bf7465e213fa92b6514446e353e6f2da436371f;p=pti%2Fo2.git diff --git a/o2ims/domain/events.py b/o2ims/domain/events.py index a4a2375..4858040 100644 --- a/o2ims/domain/events.py +++ b/o2ims/domain/events.py @@ -15,6 +15,7 @@ # 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 @@ -45,3 +46,9 @@ class ResourceChanged(Event): resourcePoolId: str notificationEventType: NotificationEventEnum updatetime: datetime.now() + + +@dataclass +class ConfigurationChanged(Event): + id: str + updatetime: datetime.now()