fix AffectedSapsSerializer description error 21/83821/3
authormaopengzhang <zhang.maopeng1@zte.com.cn>
Mon, 1 Apr 2019 02:04:04 +0000 (10:04 +0800)
committermaopengzhang <zhang.maopeng1@zte.com.cn>
Mon, 1 Apr 2019 02:35:34 +0000 (10:35 +0800)
fix AffectedSapsSerializer description error

Change-Id: I710e64da26161bfccf0ed1f3ae4e4c94f9e1bc14
Issue-ID: VFC-1213
Signed-off-by: maopengzhang <zhang.maopeng1@zte.com.cn>
lcm/ns/serializers/sol/affected_nss.py
lcm/ns/serializers/sol/affected_pnfs.py
lcm/ns/serializers/sol/affected_saps.py
lcm/ns/serializers/sol/affected_vnffgs.py

index e6a3f6e..c35b083 100644 (file)
@@ -51,7 +51,7 @@ class AffectedNssSerializer(serializers.Serializer):
         choices=CHANGE_TYPE
     )
     changeResult = serializers.ChoiceField(
-        help_text="Signals the type of change",
+        help_text="Signals the result of change identified by the 'changeType' attribute.",
         required=True,
         choices=CHANGE_RESULT
     )
index 4b01f6d..c89d4a4 100644 (file)
@@ -50,7 +50,7 @@ class AffectedPnfsSerializer(serializers.Serializer):
         choices=CHANGE_TYPE
     )
     changeResult = serializers.ChoiceField(
-        help_text="Signals the type of change",
+        help_text="Signals the result of change identified by the 'changeType' attribute.",
         required=True,
         choices=CHANGE_RESULT
     )
index eadd287..b1091e5 100644 (file)
@@ -1,4 +1,5 @@
 # Copyright (c) 2019, CMCC Technologies Co., Ltd.
+# Copyright 2019 ZTE Corporation.
 
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -44,12 +45,12 @@ class AffectedSapsSerializer(serializers.Serializer):
         help_text="Human readable name for the SAP.",
         required=True)
     changeType = serializers.ChoiceField(
-        help_text="Signals the type of change",
+        help_text="Signals the type of lifecycle change",
         required=True,
         choices=CHANGE_TYPE
     )
     changeResult = serializers.ChoiceField(
-        help_text="Signals the type of change",
+        help_text="Signals the result of change identified by the 'changeType' attribute.",
         required=True,
         choices=CHANGE_RESULT
     )
index 63e9027..3e5de99 100644 (file)
@@ -1,4 +1,5 @@
 # Copyright (c) 2019, CMCC Technologies Co., Ltd.
+# Copyright 2019 ZTE Corporation.
 
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
@@ -35,12 +36,12 @@ class AffectedVnffgsSerializer(serializers.Serializer):
         required=True
     )
     changeType = serializers.ChoiceField(
-        help_text="Signals the type of change",
+        help_text="Signals the type of lifecycle change.",
         required=True,
         choices=CHANGE_TYPE
     )
     changeResult = serializers.ChoiceField(
-        help_text="Signals the type of change",
+        help_text="Signals the result of change identified by the 'changeType' attribute.",
         required=True,
         choices=const.CHANGE_RESULT
     )