summaryrefslogtreecommitdiffstats
path: root/lcm
diff options
context:
space:
mode:
authorfujinhua <fu.jinhua@zte.com.cn>2019-04-05 08:50:38 +0800
committerfujinhua <fu.jinhua@zte.com.cn>2019-04-05 08:50:38 +0800
commit04561eec9d3f83eaf6af241b3ef8d0c8e15251bb (patch)
tree7ded173f3703301577ebfdf0dbb41511a89d4a61 /lcm
parentfadc07d6119cc2391b9eb4f74abd540620d5977d (diff)
Update serializer for scale vnf to level
Change-Id: I1b5b8ccff14528a754c8f9a8a780872ef8640fc4 Issue-ID: VFC-1306 Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
Diffstat (limited to 'lcm')
-rw-r--r--lcm/lcm/nf/serializers/scale_vnf_to_level_request_serializer.py31
1 files changed, 19 insertions, 12 deletions
diff --git a/lcm/lcm/nf/serializers/scale_vnf_to_level_request_serializer.py b/lcm/lcm/nf/serializers/scale_vnf_to_level_request_serializer.py
index 1fffe620..55f53b05 100644
--- a/lcm/lcm/nf/serializers/scale_vnf_to_level_request_serializer.py
+++ b/lcm/lcm/nf/serializers/scale_vnf_to_level_request_serializer.py
@@ -17,18 +17,25 @@ from .scale_info import ScaleInfoSerializer
class ScaleVnfToLevelRequestSerializer(serializers.Serializer):
- instantiationLevelId = serializers.CharField(help_text="Identifier of the target instantiation level of"
- "the current deployment flavour to which the VNF is"
- "requested to be scaled.", required=False,
- allow_null=True)
- scaleInfo = ScaleInfoSerializer(help_text="For each scaling aspect of the current deployment flavour,"
- "indicates the target scale level to which the VNF is to be"
- "scaled.", many=True)
- additionalParams = serializers.DictField(help_text="Additional parameters passed by the NFVO as input"
- "to the scaling process,", required=False, allow_null=True,
- child=serializers.CharField(help_text="KeyValue Pairs",
- allow_blank=True))
+ instantiationLevelId = serializers.CharField(
+ help_text="Identifier of the target instantiation level of" +
+ "the current deployment flavour to which the VNF is requested to be scaled.",
+ required=False,
+ allow_null=True)
+ scaleInfo = ScaleInfoSerializer(
+ help_text="For each scaling aspect of the current deployment flavour," +
+ "indicates the target scale level to which the VNF is to be scaled.",
+ many=True)
+ additionalParams = serializers.DictField(
+ help_text="Additional parameters passed by the NFVO as input to the scaling process",
+ required=False,
+ allow_null=True,
+ child=serializers.CharField(
+ help_text="KeyValue Pairs",
+ allow_blank=True))
class NfOperateJobSerializer(serializers.Serializer):
- jobId = serializers.CharField(help_text="ID of NF operate job", required=True)
+ jobId = serializers.CharField(
+ help_text="ID of NF operate job",
+ required=True)