aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lcm/v2/serializers.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/lcm/v2/serializers.py b/lcm/v2/serializers.py
index 512b58c6..557c603c 100644
--- a/lcm/v2/serializers.py
+++ b/lcm/v2/serializers.py
@@ -904,6 +904,22 @@ class ProblemDetailsSerializer(serializers.Serializer):
)
+class LccnLinksSerializer(serializers.Serializer):
+ vnfInstance = LinkSerializer(
+ help_text="Link to the resource representing the VNF instance to which the notified change applies.",
+ required=True
+ )
+ subscription = LinkSerializer(
+ help_text="Link to the related subscription.",
+ required=True
+ )
+ vnfLcmOpOcc = LinkSerializer(
+ help_text="Link to the VNF lifecycle management operation occurrence that this notification is related to.",
+ required=False,
+ allow_null=True
+ )
+
+
class VnfLcmOperationOccurrenceNotificationSerializer(serializers.Serializer):
id = serializers.CharField(
help_text="Identifier of this notification.",
@@ -978,3 +994,8 @@ class VnfLcmOperationOccurrenceNotificationSerializer(serializers.Serializer):
required=False,
allow_null=True
)
+ _links = LccnLinksSerializer(
+ help_text="Links to resources related to this notification.",
+ required=False,
+ allow_null=True
+ )