Change-Id: I63ef565fe417cf22284ea64d89ece96cc3a491b7
Signed-off-by: Gulsum Atici <gulsum.atici@canonical.com>
constraints: VduComputeConstraints
cloud: VIM cloud type
+
+ config: Config details of application
"""
vim_uuid: str
charm_info: CharmInfo
constraints: VduComputeConstraints
cloud: str
+ config: dict
@dataclass
model_name: str
+@dataclass
+class GetNsRecordInput:
+ """
+ Input dataclass for getting NS record activity.
+
+ Attributes:
+ -----------
+ nsr_uuid :
+ The UUID of the NS record which is stored in the OSM nsrs
+ collection in Mongo.
+
+ """
+
+ nsr_uuid: str
+
+
+@dataclass
+class GetNsRecordOutput:
+ """
+ Output dataclass for getting NS record activity.
+
+ Attributes:
+ -----------
+ nsr : dict
+ NS record retrieved from Database..
+
+ """
+
+ nsr: dict
+
+
#######################################################################################
# Activity Dataclasses
ACTIVITY_TEST_VIM_CONNECTIVITY = "test-vim-connectivity"
ACTIVITY_UPDATE_VIM_OPERATION_STATE = "update-vim-operation-state"
ACTIVITY_UPDATE_VIM_STATE = "update-vim-state"
+ACTIVITY_GET_NS_RECORD = "get-ns-record"
ACTIVITY_GET_VNF_RECORD_IDS = "get-vnf-record-ids"
ACTIVITY_UPDATE_NS_STATE = "update-ns-state"
ACTIVITY_CREATE_MODEL = "create-model"