diff options
author | fujinhua <fu.jinhua@zte.com.cn> | 2018-10-30 16:26:38 +0800 |
---|---|---|
committer | fujinhua <fu.jinhua@zte.com.cn> | 2018-10-30 16:26:38 +0800 |
commit | 8d23526dc5b1705f1fff2f4749f861882e15c0ec (patch) | |
tree | 9e06444fac0bbba864e6cde5c6cdf1e399a0701d | |
parent | 937ac86a8d25e1e40340410836a5d02afa31b4cf (diff) |
Fix create nf inst resp swagger
Change-Id: I254b978b0bbc2f7ddfc9cb354fcc5a5a7dc5b9dc
Issue-ID: VFC-1163
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
-rw-r--r-- | lcm/lcm/nf/serializers/vnf_instance.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lcm/lcm/nf/serializers/vnf_instance.py b/lcm/lcm/nf/serializers/vnf_instance.py index c7ff8890..2521e8ee 100644 --- a/lcm/lcm/nf/serializers/vnf_instance.py +++ b/lcm/lcm/nf/serializers/vnf_instance.py @@ -50,9 +50,9 @@ class VnfInstanceSerializer(serializers.Serializer): help_text="Provider of the VNF and the VNFD. \ The value is copied from the VNFD. ", max_length=255, - required=True, + required=False, allow_null=True, - allow_blank=False) + allow_blank=True) vnfProductName = serializers.CharField( help_text="Name to identify the VNF Product. \ The value is copied from the VNFD.", @@ -71,22 +71,22 @@ class VnfInstanceSerializer(serializers.Serializer): help_text="Identifies the version of the VNFD. \ The value is copied from the VNFD.", max_length=255, - required=True, + required=False, allow_null=True, - allow_blank=False) + allow_blank=True) vnfPkgId = serializers.CharField( help_text="Identifier of information held by the NFVO about the specific VNF package on which the VNF is based. \ This attribute can be modified with the PATCH method.", max_length=255, - required=True, + required=False, allow_null=True, - allow_blank=False) + allow_blank=True) vnfConfigurableProperties = serializers.DictField( help_text="Current values of the configurable properties of the VNF instance. \ Configurable properties referred in this attribute are declared in the VNFD", child=serializers.CharField(help_text="KeyValue Pairs", allow_blank=True), required=False, - allow_null=True,) + allow_null=True) vimConnectionInfo = VimConnectionInfoSerializer( help_text="Information about VIM connections to be used for managing the resources for the VNF instance. \ This attribute can be modified with the PATCH method.", |