OSMENG-988: Create ACTIVITY_SEND_NOTIFICATION_FOR_NF
Change-Id: I6257c47240cfa6bd2c90f08760bad6a9b8d645f9
Signed-off-by: Dario Faccin <dario.faccin@canonical.com>
diff --git a/osm_common/dataclasses/temporal_dataclasses.py b/osm_common/dataclasses/temporal_dataclasses.py
index a0e3d19..8694fa7 100644
--- a/osm_common/dataclasses/temporal_dataclasses.py
+++ b/osm_common/dataclasses/temporal_dataclasses.py
@@ -384,9 +384,9 @@
@dataclass
-class ChangeNFStateInput:
+class ChangeVnfStateInput:
"""
- Input dataclass for creating a Juju Model.
+ Input dataclass for changing NF State.
Attributes:
-----------
@@ -394,7 +394,7 @@
The UUID of the VNF which is stored in the OSM vnfrs
collection in Mongo.
- nf_state : VnfState
+ state : VnfState
A representation of the VNF state (STOPPED or STARTED).
"""
@@ -403,9 +403,9 @@
@dataclass
-class ChangeNFInstantiationStateInput:
+class ChangeVnfInstantiationStateInput:
"""
- Input dataclass for creating a Juju Model.
+ Input dataclass for changing NF Instantiation State.
Attributes:
-----------
@@ -413,7 +413,7 @@
The UUID of the VNF which is stored in the OSM vnfrs
collection in Mongo.
- nf_instantiation_state : VnfInstantiationState
+ state : VnfInstantiationState
A representation of the VNF instantiation state (NOT_INSTANTIATED or INSTANTIATED).
"""