From: Manzon, Inna (im453s) Date: Thu, 2 Aug 2018 11:42:16 +0000 (+0300) Subject: Add FabricConfiguration X-Git-Tag: 1.3.0~186 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=5c7d997a26d56dc3acc3c5082a12147d882c2967;p=sdc.git Add FabricConfiguration Add new Configuration and FabricConfiguration node types Change-Id: I86fd30810008e7e58ac3d978a3df9024afc88cfa Issue-ID: SDC-1593 Signed-off-by: Manzon, Inna (im453s) --- diff --git a/common/onap-tosca-datatype/src/main/resources/globalTypes/openecomp/nodes.yml b/common/onap-tosca-datatype/src/main/resources/globalTypes/openecomp/nodes.yml index 1bbcdd0ab9..53e89b12c8 100644 --- a/common/onap-tosca-datatype/src/main/resources/globalTypes/openecomp/nodes.yml +++ b/common/onap-tosca-datatype/src/main/resources/globalTypes/openecomp/nodes.yml @@ -912,4 +912,29 @@ node_types: - forwarder: capability: org.openecomp.capabilities.Forwarder relationship: org.openecomp.relationships.ForwardsTo - occurrences: [ 0, UNBOUNDED ] \ No newline at end of file + occurrences: [ 0, UNBOUNDED ] + + org.openecomp.nodes.Configuration: + derived_from: tosca.nodes.Root + properties: + type: + type: string + description: The type of the node, the configuration will be defined for it. E.g. SBC + required: false + role: + type: string + description: The role of the node, the configuration will be defined for it. E.g. Active, Standby + required: false + function: + type: string + description: The function of the node, the configuration will be defined for it. E.g. NAT Traversal + required: false + + org.openecomp.nodes.FabricConfiguration: + derived_from: org.openecomp.nodes.Configuration + requirements: + - fabric_configuration_monitoring: + capability: org.openecomp.capabilities.FabricConfiguration + occurrences: + - 1 + - UNBOUNDED \ No newline at end of file