diff options
-rw-r--r-- | lcm/ns/serializers/update_serializers.py | 19 |
1 files 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): |