From 5dcab58e8828ae4ea5dcde79103dd74db86fe42e Mon Sep 17 00:00:00 2001 From: tianxing <15210838572@139.com> Date: Thu, 14 Mar 2019 22:00:03 +0800 Subject: fix the serializer bug of nslcm Change-Id: Ibc563438bf1564a25abbdc0f4af93932617ab614 Issue-ID: VFC-1270 Signed-off-by: tianxing <15210838572@139.com> --- lcm/ns/serializers/update_serializers.py | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/lcm/ns/serializers/update_serializers.py b/lcm/ns/serializers/update_serializers.py index 9e0a1bf7..a677c43f 100644 --- a/lcm/ns/serializers/update_serializers.py +++ b/lcm/ns/serializers/update_serializers.py @@ -16,6 +16,7 @@ from rest_framework import serializers from lcm.ns.serializers.pub_serializers import IpAddressSerialzier from lcm.ns.serializers.pub_serializers import CpProtocolDataSerializer +from lcm.ns.serializers.create_ns_serializers import ResourceHandleSerializer class VnfInstanceDataSerializer(serializers.Serializer): @@ -64,15 +65,15 @@ class VnfExtCpData(serializers.Serializer): required=False, allow_null=True) -class ResourceHandleSerializer(serializers.Serializer): - vimId = serializers.CharField(help_text="Identifier of the VIM under whose control this resource is placed.", - required=False, allow_null=True) - resourceProviderId = serializers.CharField(help_text="Identifier of the entity responsible for the management of " - "the resource.", required=False, allow_null=True) - resourceId = serializers.CharField(help_text="Identifier of the resource in the scope of the VIM or the " - "resource provider.", required=True) - vimLevelResourceType = serializers.CharField(help_text="Type of the resource in the scope of the VIM or the " - "resource provider.", required=False, allow_null=True) +# class ResourceHandleSerializer(serializers.Serializer): +# vimId = serializers.CharField(help_text="Identifier of the VIM under whose control this resource is placed.", +# required=False, allow_null=True) +# resourceProviderId = serializers.CharField(help_text="Identifier of the entity responsible for the management of " +# "the resource.", required=False, allow_null=True) +# resourceId = serializers.CharField(help_text="Identifier of the resource in the scope of the VIM or the " +# "resource provider.", required=True) +# vimLevelResourceType = serializers.CharField(help_text="Type of the resource in the scope of the VIM or the " +# "resource provider.", required=False, allow_null=True) class ExtLinkPortDataSerializer(serializers.Serializer): -- cgit 1.2.3-korg