summaryrefslogtreecommitdiffstats
path: root/lcm
diff options
context:
space:
mode:
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)