562d5fb944e0c59b20abb5c2740fb72fdbeb3fd4
[vfc/gvnfm/vnflcm.git] / lcm / lcm / nf / serializers / ip_over_ethernet_address_data.py
1 # Copyright 2018 ZTE Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #         http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 from rest_framework import serializers
16 from ip_addresse import IpAddresseSerializer
17
18
19 class IpOverEthernetAddressDataSerializer(serializers.Serializer):
20     macAddress = serializers.CharField(
21         help_text="MAC address. If this attribute is not present, \
22         it shall be chosen by the VIM.",
23         required=False,
24         allow_null=True,
25         allow_blank=True)
26     ipAddresses = IpAddresseSerializer(
27         help_text="List of IP addresses to assign to the CP instance. \
28         Each entry represents IP address data for fixed or dynamic IP address assignment per subnet.",
29         many=True,
30         required=False,
31         allow_null=True)