From: tianxing <15210838572@139.com> Date: Thu, 14 Mar 2019 14:00:03 +0000 (+0800) Subject: fix the serializer bug of nslcm X-Git-Tag: 1.3.0~129 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=5dcab58e8828ae4ea5dcde79103dd74db86fe42e;p=vfc%2Fnfvo%2Flcm.git fix the serializer bug of nslcm Change-Id: Ibc563438bf1564a25abbdc0f4af93932617ab614 Issue-ID: VFC-1270 Signed-off-by: tianxing <15210838572@139.com> --- 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):