X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=common%2Fpython%2Frift%2Fmano%2Fyang_translator%2Frwmano%2Fsyntax%2Ftosca_resource.py;h=57b0a31ef3977f6cd7a1b96cb4e9fa4640b00cba;hb=a94a81cc5320aee3cbe05bbdbf3b6f0b244fb19f;hp=7143e6754cea4ce355568ce78707b6ac2f3f9931;hpb=d04550842ce8c7eeac9cb6234ba5a931d14d42ba;p=osm%2FSO.git diff --git a/common/python/rift/mano/yang_translator/rwmano/syntax/tosca_resource.py b/common/python/rift/mano/yang_translator/rwmano/syntax/tosca_resource.py index 7143e675..57b0a31e 100644 --- a/common/python/rift/mano/yang_translator/rwmano/syntax/tosca_resource.py +++ b/common/python/rift/mano/yang_translator/rwmano/syntax/tosca_resource.py @@ -43,7 +43,7 @@ class ToscaResource(object): MEM_VNF_INDEX_REF, VNFD_ID_REF, MEM_VNF_INDEX, VNF_CONFIG, TYPE_Y, USER_DEF_SCRIPT, SEQ, PARAM, - VALUE, START_BY_DFLT,) = \ + VALUE, START_BY_DFLT, VNFFGD, ) = \ ('vld', 'nsd', 'vnfd', 'vdu', 'dashboard_params', 'config_attributes', 'config_template', 'config_type', 'config_details', 'external_interface', @@ -51,7 +51,7 @@ class ToscaResource(object): 'member_vnf_index_ref', 'vnfd_id_ref', 'member_vnf_index', 'vnf_configuration', 'type_yang', 'user_defined_script', 'seq', 'parameter', - 'value', 'start_by_default',) + 'value', 'start_by_default', 'vnffgd',) TOSCA_FIELDS = (DERIVED_FROM, PROPERTIES, DEFAULT, REQUIRED, NO, CONSTRAINTS, REALTIONSHIPS, @@ -95,7 +95,9 @@ class ToscaResource(object): T_INITIAL_CFG, T_ARTF_CLOUD_INIT, T_PLACEMENT, - T_ELAN + T_ELAN, + T_VNFFG, + T_FP, ) = \ ('tosca.policies.nfv.riftio.vnf_configuration', 'tosca.capabilities.riftio.http_endpoint_type', @@ -111,7 +113,9 @@ class ToscaResource(object): 'tosca.policies.nfv.riftio.initial_config_primitive', 'tosca.artifacts.Deployment.riftio.cloud_init_file', 'tosca.policies.nfv.riftio.placement', - 'tosca.nodes.nfv.riftio.ELAN' + 'tosca.nodes.nfv.riftio.ELAN', + 'tosca.groups.nfv.VNFFG', + 'tosca.nodes.nfv.riftio.FP1', ) SUPPORT_FILES = ( SRC, DEST, EXISTING) = \