summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormaopengzhang <zhang.maopeng1@zte.com.cn>2018-10-17 11:21:33 +0800
committermaopengzhang <zhang.maopeng1@zte.com.cn>2018-10-17 11:21:33 +0800
commit2f0220a1f7e86c54351cf297b123816c26950c80 (patch)
tree7d98b39a4cb653cc4960c585a5a011ee03ad55fe
parentecb7e5a0533f533798f94b189a9c717e9bd5fea4 (diff)
NS update swagger definition error
NS update swagger definition error Change-Id: I0d047d0a877595fe78c368d0629d4c0c8e2781c3 Issue-ID: VFC-1153 Signed-off-by: maopengzhang <zhang.maopeng1@zte.com.cn>
-rw-r--r--lcm/ns/serializers/update_serializers.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lcm/ns/serializers/update_serializers.py b/lcm/ns/serializers/update_serializers.py
index fc3b6fb3..06217d80 100644
--- a/lcm/ns/serializers/update_serializers.py
+++ b/lcm/ns/serializers/update_serializers.py
@@ -12,6 +12,7 @@
# limitations under the License.
from rest_framework import serializers
+from lcm.ns.serializers.ns_serializers import IpAddress
class VnfInstanceDataSerializer(serializers.Serializer):
@@ -35,8 +36,7 @@ class InstantiateVnfDataSerializer(serializers.Serializer):
class IpOverEthernetAddressDataSerializer(serializers.Serializer):
macAddress = serializers.CharField(help_text="Mac address", required=False, allow_null=True)
- ipAddresses = serializers.ListField(help_text="List of IP addresses to assign to the extCP instance.",
- required=False, allow_null=True)
+ ipAddresses = serializers.ListField(help_text="List of IP addresses to assign to the extCP instance.", child=IpAddress(help_text="IP addresses to assign to the extCP instance.", required=False), required=False, allow_null=True)
class CpProtocolDataSerializer(serializers.Serializer):
@@ -94,8 +94,8 @@ class ExtVirtualLinkDataSerializer(serializers.Serializer):
"this resource.", required=False, allow_null=True)
resourceId = serializers.CharField(help_text="The identifier of the resource in the scope of the VIM or the"
" resource provider.", required=True)
- extCps = serializers.ListField(VnfExtCpData(help_text="External CPs of the VNF to be connected to this external "
- "VL.", required=True), required=False, allow_null=True)
+ extCps = serializers.ListField(child=VnfExtCpData(help_text="External CPs of the VNF to be connected to this external "
+ "VL.", required=True), required=False, allow_null=True)
extLinkPorts = serializers.ListField(help_text="Externally provided link ports to be used to connect external "
"connection points to this external VL. ",
child=(ExtLinkPortDataSerializer(help_text="This type represents an externally"