| Patricia Reinoso | 38fb5da | 2023-04-27 13:48:50 +0000 | [diff] [blame] | 1 | ######################################################################### |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| 12 | # implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | import logging |
| Gulsum Atici | 50d12e0 | 2023-04-27 16:41:43 +0300 | [diff] [blame^] | 17 | from typing import List, Any |
| 18 | |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 19 | from osm_common.temporal_constants import ( |
| Dario Faccin | 0568c6c | 2023-04-14 10:19:07 +0200 | [diff] [blame] | 20 | ACTIVITY_CHANGE_VNF_STATE, |
| 21 | ACTIVITY_CHANGE_VNF_INSTANTIATION_STATE, |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 22 | ACTIVITY_GET_TASK_QUEUE, |
| Gulsum Atici | a1898b4 | 2023-04-25 15:48:10 +0300 | [diff] [blame] | 23 | ACTIVITY_GET_VIM_CLOUD, |
| Gulsum Atici | 50d12e0 | 2023-04-27 16:41:43 +0300 | [diff] [blame^] | 24 | ACTIVITY_GET_VNF_DESCRIPTOR, |
| 25 | ACTIVITY_GET_VNF_RECORD, |
| Gulsum Atici | 3636540 | 2023-04-07 00:07:07 +0300 | [diff] [blame] | 26 | ACTIVITY_SEND_NOTIFICATION_FOR_VNF, |
| Dario Faccin | 3930176 | 2023-04-17 16:56:37 +0200 | [diff] [blame] | 27 | ACTIVITY_SET_VNF_MODEL, |
| Gulsum Atici | 3636540 | 2023-04-07 00:07:07 +0300 | [diff] [blame] | 28 | VIM_TYPE_TASK_QUEUE_MAPPINGS, |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 29 | ) |
| 30 | from osm_common.dataclasses.temporal_dataclasses import ( |
| Dario Faccin | 0568c6c | 2023-04-14 10:19:07 +0200 | [diff] [blame] | 31 | ChangeVnfInstantiationStateInput, |
| 32 | ChangeVnfStateInput, |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 33 | GetTaskQueueInput, |
| 34 | GetTaskQueueOutput, |
| Gulsum Atici | a1898b4 | 2023-04-25 15:48:10 +0300 | [diff] [blame] | 35 | GetVimCloudInput, |
| 36 | GetVimCloudOutput, |
| Gulsum Atici | 50d12e0 | 2023-04-27 16:41:43 +0300 | [diff] [blame^] | 37 | GetVnfDescriptorInput, |
| 38 | GetVnfDescriptorOutput, |
| 39 | GetVnfRecordInput, |
| 40 | GetVnfRecordOutput, |
| 41 | SetVnfModelInput, |
| 42 | VduComputeConstraints, |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 43 | ) |
| Dario Faccin | 1eb24c9 | 2023-04-21 18:23:04 +0200 | [diff] [blame] | 44 | from osm_lcm.data_utils.database.database import Database |
| Patricia Reinoso | 38fb5da | 2023-04-27 13:48:50 +0000 | [diff] [blame] | 45 | from temporalio import activity |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 46 | |
| 47 | |
| Gulsum Atici | 50d12e0 | 2023-04-27 16:41:43 +0300 | [diff] [blame^] | 48 | CONFIG_IDENTIFIER = "config::" |
| 49 | |
| 50 | |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 51 | class VnfOperations: |
| Dario Faccin | 1eb24c9 | 2023-04-21 18:23:04 +0200 | [diff] [blame] | 52 | def __init__(self, db: Database): |
| 53 | self.db: Database = db |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 54 | self.logger = logging.getLogger(f"lcm.act.{self.__class__.__name__}") |
| 55 | |
| 56 | @activity.defn(name=ACTIVITY_GET_TASK_QUEUE) |
| 57 | async def get_task_queue( |
| 58 | self, get_task_queue_input: GetTaskQueueInput |
| 59 | ) -> GetTaskQueueOutput: |
| 60 | """Finds the appropriate task queue according to VIM type of VNF. |
| 61 | |
| 62 | Collaborators: |
| Patricia Reinoso | 38fb5da | 2023-04-27 13:48:50 +0000 | [diff] [blame] | 63 | DB read: vim_accounts, vnfrs |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 64 | |
| 65 | Raises (retryable): |
| Gulsum Atici | 3636540 | 2023-04-07 00:07:07 +0300 | [diff] [blame] | 66 | DbException: If DB read operations fail, the collection or DB record ID does not exist. |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 67 | |
| 68 | Activity Lifecycle: |
| 69 | This activity should complete relatively quickly (less than a |
| 70 | second). However, it would be reasonable to wait up to 10 |
| 71 | seconds. |
| 72 | |
| 73 | This activity will not report a heartbeat due to its |
| 74 | short-running nature. |
| 75 | |
| 76 | It is not necessary to implement a back-off strategy for this |
| 77 | activity, the operation is idempotent. |
| 78 | |
| 79 | """ |
| Gulsum Atici | 3636540 | 2023-04-07 00:07:07 +0300 | [diff] [blame] | 80 | vnfr = self.db.get_one("vnfrs", {"_id": get_task_queue_input.vnfr_uuid}) |
| 81 | vim_record = self.db.get_one("vim_accounts", {"_id": vnfr["vim-account-id"]}) |
| Gulsum Atici | 625a654 | 2023-04-18 15:27:18 +0300 | [diff] [blame] | 82 | task_queue = VIM_TYPE_TASK_QUEUE_MAPPINGS[vim_record["vim_type"]] |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 83 | self.logger.debug(f"Got the task queue {task_queue} for VNF operations.") |
| 84 | return GetTaskQueueOutput(task_queue) |
| 85 | |
| Gulsum Atici | a1898b4 | 2023-04-25 15:48:10 +0300 | [diff] [blame] | 86 | @activity.defn(name=ACTIVITY_GET_VIM_CLOUD) |
| 87 | async def get_vim_cloud( |
| 88 | self, get_vim_cloud_input: GetVimCloudInput |
| 89 | ) -> GetVimCloudOutput: |
| 90 | """Finds the cloud by checking the VIM account of VNF. |
| 91 | |
| 92 | Collaborators: |
| Gulsum Atici | 50d12e0 | 2023-04-27 16:41:43 +0300 | [diff] [blame^] | 93 | DB Read: vnfrs, vim_accounts |
| Gulsum Atici | a1898b4 | 2023-04-25 15:48:10 +0300 | [diff] [blame] | 94 | |
| 95 | Raises (retryable): |
| 96 | DbException: If DB read operations fail, the collection or DB record ID does not exist. |
| 97 | |
| 98 | Activity Lifecycle: |
| 99 | This activity should complete relatively quickly (less than a |
| 100 | second). However, it would be reasonable to wait up to 10 |
| 101 | seconds. |
| 102 | |
| 103 | This activity will not report a heartbeat due to its |
| 104 | short-running nature. |
| 105 | |
| 106 | It is not necessary to implement a back-off strategy for this |
| 107 | activity, the operation is idempotent. |
| 108 | |
| 109 | """ |
| 110 | vnfr = self.db.get_one("vnfrs", {"_id": get_vim_cloud_input.vnfr_uuid}) |
| 111 | vim_record = self.db.get_one("vim_accounts", {"_id": vnfr["vim-account-id"]}) |
| 112 | cloud = vim_record["config"].get("cloud", "") |
| 113 | self.logger.debug(f"Got the cloud type {cloud} for VNF operations.") |
| 114 | return GetVimCloudOutput(cloud=cloud) |
| 115 | |
| Gulsum Atici | 50d12e0 | 2023-04-27 16:41:43 +0300 | [diff] [blame^] | 116 | @activity.defn(name=ACTIVITY_GET_VNF_RECORD) |
| 117 | async def get_vnf_record( |
| 118 | self, get_vnf_record_input: GetVnfRecordInput |
| 119 | ) -> GetVnfRecordOutput: |
| Gulsum Atici | 3636540 | 2023-04-07 00:07:07 +0300 | [diff] [blame] | 120 | """Gets the VNF record and VNF descriptor from Database. |
| 121 | |
| 122 | Collaborators: |
| Gulsum Atici | 50d12e0 | 2023-04-27 16:41:43 +0300 | [diff] [blame^] | 123 | DB read: vnfrs |
| Gulsum Atici | 3636540 | 2023-04-07 00:07:07 +0300 | [diff] [blame] | 124 | |
| 125 | Raises (retryable): |
| 126 | DbException: If DB read operations fail, the collection or DB record ID does not exist. |
| 127 | |
| 128 | Activity Lifecycle: |
| 129 | This activity should complete relatively quickly (less than 10 |
| 130 | second). |
| 131 | |
| 132 | This activity will not report a heartbeat due to its |
| 133 | short-running nature. |
| 134 | |
| 135 | This is an idempotent activity. |
| 136 | |
| 137 | """ |
| Gulsum Atici | 50d12e0 | 2023-04-27 16:41:43 +0300 | [diff] [blame^] | 138 | vnfr = self.db.get_one("vnfrs", {"_id": get_vnf_record_input.vnfr_uuid}) |
| 139 | self.logger.debug("Got the vnfr from Database for VNF operations.") |
| 140 | return GetVnfRecordOutput(vnfr=vnfr) |
| 141 | |
| 142 | @activity.defn(name=ACTIVITY_GET_VNF_DESCRIPTOR) |
| 143 | async def get_vnf_descriptor( |
| 144 | self, get_vnf_descriptor_input: GetVnfDescriptorInput |
| 145 | ) -> GetVnfDescriptorOutput: |
| 146 | """Gets the VNF record and VNF descriptor from Database. |
| 147 | |
| 148 | Collaborators: |
| 149 | DB read: vnfds |
| 150 | |
| 151 | Raises (retryable): |
| 152 | DbException: If DB read operations fail, the collection or DB record ID does not exist. |
| 153 | |
| 154 | Activity Lifecycle: |
| 155 | This activity should complete relatively quickly (less than 10 |
| 156 | second). |
| 157 | |
| 158 | This activity will not report a heartbeat due to its |
| 159 | short-running nature. |
| 160 | |
| 161 | This is an idempotent activity. |
| 162 | |
| 163 | """ |
| 164 | vnfd = self.db.get_one("vnfds", {"_id": get_vnf_descriptor_input.vnfd_uuid}) |
| Gulsum Atici | 3636540 | 2023-04-07 00:07:07 +0300 | [diff] [blame] | 165 | self.logger.debug("Got the vnfr and vnfd from Database for VNF operations.") |
| Gulsum Atici | 50d12e0 | 2023-04-27 16:41:43 +0300 | [diff] [blame^] | 166 | return GetVnfDescriptorOutput(vnfd=vnfd) |
| 167 | |
| 168 | @staticmethod |
| 169 | def get_vdu_instantiation_params( |
| 170 | vdu_id: str, vnf_instantiation_config: dict |
| 171 | ) -> dict: |
| 172 | for vdu in vnf_instantiation_config.get("vdu", []): |
| 173 | if vdu.get("id") == vdu_id: |
| 174 | return vdu.get("configurable-properties", {}) |
| 175 | return {} |
| 176 | |
| 177 | @staticmethod |
| 178 | def get_compute_constraints(vdu: dict, vnfd: dict) -> VduComputeConstraints: |
| 179 | compute_desc_id = vdu.get("virtual-compute-desc") |
| 180 | if not compute_desc_id: |
| 181 | return VduComputeConstraints(cores=0, mem=0) |
| 182 | flavor_details = VnfOperations._get_flavor_details(compute_desc_id, vnfd) |
| 183 | if not flavor_details: |
| 184 | return VduComputeConstraints(cores=0, mem=0) |
| 185 | |
| 186 | cpu_cores = flavor_details.get("virtual-cpu", {}).get("num-virtual-cpu", 0) |
| 187 | memory_gb = flavor_details.get("virtual-memory", {}).get("size", 0) |
| 188 | return VduComputeConstraints(cores=cpu_cores, mem=int(memory_gb)) |
| 189 | |
| 190 | @staticmethod |
| 191 | def _get_flavor_details(compute_desc_id: str, vnfd: dict) -> Any: |
| 192 | for flavor in vnfd.get("virtual-compute-desc", []): |
| 193 | if flavor.get("id") == compute_desc_id: |
| 194 | return flavor |
| 195 | return None |
| 196 | |
| 197 | @staticmethod |
| 198 | def get_application_config(vdu: dict, vdu_instantiation_config: dict) -> dict: |
| 199 | configurable_properties = vdu.get("configurable-properties", []) |
| 200 | |
| 201 | config_from_descriptor = VnfOperations._get_only_config_items( |
| 202 | VnfOperations._list_to_dict(configurable_properties) |
| 203 | ) |
| 204 | |
| 205 | config_from_instantiation = VnfOperations._get_only_config_items( |
| 206 | vdu_instantiation_config |
| 207 | ) |
| 208 | return {**config_from_descriptor, **config_from_instantiation} |
| 209 | |
| 210 | @staticmethod |
| 211 | def _get_only_config_items(config: dict) -> dict: |
| 212 | return { |
| 213 | key[len(CONFIG_IDENTIFIER) :]: value |
| 214 | for key, value in config.items() |
| 215 | if key.startswith(CONFIG_IDENTIFIER) |
| 216 | } |
| 217 | |
| 218 | @staticmethod |
| 219 | def _list_to_dict(indata: List[dict]) -> dict: |
| 220 | return { |
| 221 | item["key"]: item["value"] |
| 222 | for item in indata |
| 223 | if item.get("key") and item.get("value") |
| 224 | } |
| Gulsum Atici | 3636540 | 2023-04-07 00:07:07 +0300 | [diff] [blame] | 225 | |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 226 | |
| 227 | class VnfDbActivity: |
| Patricia Reinoso | 38fb5da | 2023-04-27 13:48:50 +0000 | [diff] [blame] | 228 | """Perform Database operations for VNF accounts. |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 229 | |
| 230 | Args: |
| Dario Faccin | 1eb24c9 | 2023-04-21 18:23:04 +0200 | [diff] [blame] | 231 | db (Database): Data Access Object |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 232 | """ |
| 233 | |
| Dario Faccin | 1eb24c9 | 2023-04-21 18:23:04 +0200 | [diff] [blame] | 234 | def __init__(self, db: Database): |
| 235 | self.db: Database = db |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 236 | self.logger = logging.getLogger(f"lcm.act.{self.__class__.__name__}") |
| 237 | |
| Dario Faccin | 0568c6c | 2023-04-14 10:19:07 +0200 | [diff] [blame] | 238 | @activity.defn(name=ACTIVITY_CHANGE_VNF_STATE) |
| 239 | async def change_vnf_state(self, vnf_state_input: ChangeVnfStateInput) -> None: |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 240 | """Updates the VNF State in VNFR. |
| 241 | |
| 242 | Collaborators: |
| Patricia Reinoso | 38fb5da | 2023-04-27 13:48:50 +0000 | [diff] [blame] | 243 | DB Write: vnfrs |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 244 | |
| 245 | Raises (retryable): |
| 246 | DbException: If DB access/update fails, the collection or DB record ID does not exist. |
| 247 | |
| 248 | Activity Lifecycle: |
| 249 | This activity should complete relatively quickly (less than a |
| 250 | second). However, it would be reasonable to wait up to 10 |
| 251 | seconds. |
| 252 | |
| 253 | This activity will not report a heartbeat due to its |
| 254 | short-running nature. |
| 255 | |
| 256 | It is not necessary to implement a back-off strategy for this |
| 257 | activity, the operation is idempotent. |
| 258 | |
| 259 | """ |
| Gulsum Atici | 8ee9b1d | 2023-04-24 14:54:20 +0300 | [diff] [blame] | 260 | update_vnf_state = {"vnfState": vnf_state_input.state.name} |
| Dario Faccin | 0568c6c | 2023-04-14 10:19:07 +0200 | [diff] [blame] | 261 | self.db.set_one("vnfrs", {"_id": vnf_state_input.vnfr_uuid}, update_vnf_state) |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 262 | self.logger.debug( |
| Gulsum Atici | 8ee9b1d | 2023-04-24 14:54:20 +0300 | [diff] [blame] | 263 | f"VNF {vnf_state_input.vnfr_uuid} state is updated to {vnf_state_input.state.name}." |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 264 | ) |
| 265 | |
| Dario Faccin | 0568c6c | 2023-04-14 10:19:07 +0200 | [diff] [blame] | 266 | @activity.defn(name=ACTIVITY_CHANGE_VNF_INSTANTIATION_STATE) |
| 267 | async def change_vnf_instantiation_state( |
| 268 | self, vnf_instantiation_state_input: ChangeVnfInstantiationStateInput |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 269 | ) -> None: |
| 270 | """Updates the VNF Instantiation State in VNFR. |
| 271 | |
| 272 | Collaborators: |
| Patricia Reinoso | 38fb5da | 2023-04-27 13:48:50 +0000 | [diff] [blame] | 273 | DB Write: vnfrs |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 274 | |
| 275 | Raises (retryable): |
| Gulsum Atici | 3636540 | 2023-04-07 00:07:07 +0300 | [diff] [blame] | 276 | DbException: If DB access or update fails, the collection or DB record ID does not exist. |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 277 | |
| 278 | Activity Lifecycle: |
| 279 | This activity should complete relatively quickly (less than a |
| 280 | second). However, it would be reasonable to wait up to 10 |
| 281 | seconds. |
| 282 | |
| 283 | This activity will not report a heartbeat due to its |
| 284 | short-running nature. |
| 285 | |
| 286 | It is not necessary to implement a back-off strategy for this |
| 287 | activity, the operation is idempotent. |
| 288 | |
| 289 | """ |
| Dario Faccin | 0568c6c | 2023-04-14 10:19:07 +0200 | [diff] [blame] | 290 | update_vnf_instantiation_state = { |
| Gulsum Atici | 8ee9b1d | 2023-04-24 14:54:20 +0300 | [diff] [blame] | 291 | "instantiationState": vnf_instantiation_state_input.state.name |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 292 | } |
| 293 | self.db.set_one( |
| 294 | "vnfrs", |
| Dario Faccin | 0568c6c | 2023-04-14 10:19:07 +0200 | [diff] [blame] | 295 | {"_id": vnf_instantiation_state_input.vnfr_uuid}, |
| 296 | update_vnf_instantiation_state, |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 297 | ) |
| 298 | self.logger.debug( |
| Gulsum Atici | 8ee9b1d | 2023-04-24 14:54:20 +0300 | [diff] [blame] | 299 | f"VNF {vnf_instantiation_state_input.vnfr_uuid} state is updated to {vnf_instantiation_state_input.state.name}." |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 300 | ) |
| 301 | |
| Dario Faccin | 3930176 | 2023-04-17 16:56:37 +0200 | [diff] [blame] | 302 | @activity.defn(name=ACTIVITY_SET_VNF_MODEL) |
| Gulsum Atici | 50d12e0 | 2023-04-27 16:41:43 +0300 | [diff] [blame^] | 303 | async def set_vnf_model(self, set_vnf_model_input: SetVnfModelInput) -> None: |
| Dario Faccin | 3930176 | 2023-04-17 16:56:37 +0200 | [diff] [blame] | 304 | """Updates the model name of VNF in VNFR. |
| 305 | |
| 306 | Collaborators: |
| Patricia Reinoso | 38fb5da | 2023-04-27 13:48:50 +0000 | [diff] [blame] | 307 | DB Write: vnfrs |
| Dario Faccin | 3930176 | 2023-04-17 16:56:37 +0200 | [diff] [blame] | 308 | |
| 309 | Raises (retryable): |
| 310 | DbException: If DB access or update fails, the collection or DB record ID does not exist. |
| 311 | |
| 312 | Activity Lifecycle: |
| 313 | This activity should complete relatively quickly (less than a |
| 314 | second). However, it would be reasonable to wait up to 10 |
| 315 | seconds. |
| 316 | |
| 317 | This activity will not report a heartbeat due to its |
| 318 | short-running nature. |
| 319 | |
| 320 | It is not necessary to implement a back-off strategy for this |
| 321 | activity, the operation is idempotent. |
| 322 | |
| 323 | """ |
| 324 | update_namespace = {"namespace": set_vnf_model_input.model_name} |
| 325 | self.db.set_one( |
| 326 | "vnfrs", {"_id": set_vnf_model_input.vnfr_uuid}, update_namespace |
| 327 | ) |
| 328 | self.logger.debug( |
| 329 | f"VNF {set_vnf_model_input.vnfr_uuid} model name is updated to {set_vnf_model_input.model_name}." |
| 330 | ) |
| 331 | |
| Dario Faccin | 0568c6c | 2023-04-14 10:19:07 +0200 | [diff] [blame] | 332 | |
| 333 | class VnfSendNotifications: |
| 334 | """Perform Notification operations.""" |
| 335 | |
| 336 | def __init__(self): |
| 337 | self.logger = logging.getLogger(f"lcm.act.{self.__class__.__name__}") |
| 338 | |
| 339 | @activity.defn(name=ACTIVITY_SEND_NOTIFICATION_FOR_VNF) |
| Gulsum Atici | 625a654 | 2023-04-18 15:27:18 +0300 | [diff] [blame] | 340 | async def send_notification_for_vnf( |
| 341 | self, input: ChangeVnfInstantiationStateInput |
| 342 | ) -> None: |
| Mark Beierl | 9e1379d | 2023-04-06 15:12:46 +0000 | [diff] [blame] | 343 | """If VNF LCM operation state changes, send notification updates. |
| 344 | |
| 345 | This activity does nothing. |
| 346 | |
| 347 | """ |
| Dario Faccin | 0568c6c | 2023-04-14 10:19:07 +0200 | [diff] [blame] | 348 | self.logger.debug("Send notification for VNF not implemented.") |