diff options
author | franciscovila <javier.paradela.vila@est.tech> | 2022-08-16 13:00:48 +0100 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2022-09-08 06:32:46 +0000 |
commit | c37bada019850822df28e2d28f10b64241467fdf (patch) | |
tree | b87f8e1c6406daa48e73ea498ac9313ca2fd8e51 /catalog-be/src/main/resources | |
parent | 7dbe567ed096dd03a41803c6aac47c8dda68e220 (diff) |
Import VFC not importing interfaces
Fix when import VFC with Standard Interfaces to ETSI model
Issue-ID: SDC-4134
Signed-off-by: franciscovila <javier.paradela.vila@est.tech>
Change-Id: Ibf6700b406f4b71dcae9327e14fb3ad04ad5e762
Diffstat (limited to 'catalog-be/src/main/resources')
-rw-r--r-- | catalog-be/src/main/resources/import/tosca/models/init/etsi-SOL001-v2.5.1/tosca/interface-lifecycle-types/interfaceLifecycleTypes.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/catalog-be/src/main/resources/import/tosca/models/init/etsi-SOL001-v2.5.1/tosca/interface-lifecycle-types/interfaceLifecycleTypes.yml b/catalog-be/src/main/resources/import/tosca/models/init/etsi-SOL001-v2.5.1/tosca/interface-lifecycle-types/interfaceLifecycleTypes.yml index f746f8834d..ae298bfdcc 100644 --- a/catalog-be/src/main/resources/import/tosca/models/init/etsi-SOL001-v2.5.1/tosca/interface-lifecycle-types/interfaceLifecycleTypes.yml +++ b/catalog-be/src/main/resources/import/tosca/models/init/etsi-SOL001-v2.5.1/tosca/interface-lifecycle-types/interfaceLifecycleTypes.yml @@ -1,6 +1,19 @@ tosca.interfaces.Root: description: The TOSCA root Interface Type all other TOSCA Interface Types derive from +tosca.interfaces.node.lifecycle.Standard: + derived_from: tosca.interfaces.Root + create: + description: Standard lifecycle create operation. + configure: + description: Standard lifecycle configure operation. + start: + description: Standard lifecycle start operation. + stop: + description: Standard lifecycle stop operation. + delete: + description: Standard lifecycle delete operation. + tosca.interfaces.nfv.Vnflcm: derived_from: tosca.interfaces.Root description: This interface encompasses a set of TOSCA operations corresponding to the VNF LCM operations defined in ETSI GS NFV-IFA 007 as well as to preamble and postamble procedures to the execution of the VNF LCM operations. |