aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorManzon, Inna (im453s) <im453s@intl.att.com>2018-08-02 14:42:16 +0300
committerAvi Gaffa <avi.gaffa@amdocs.com>2018-08-07 08:35:03 +0000
commit5c7d997a26d56dc3acc3c5082a12147d882c2967 (patch)
treeab34125d496f4676e50fa90706fa16d4a6a85096 /common
parent8f13330349a9a78b4cd2e32218237955f86fb4d8 (diff)
Add FabricConfiguration
Add new Configuration and FabricConfiguration node types Change-Id: I86fd30810008e7e58ac3d978a3df9024afc88cfa Issue-ID: SDC-1593 Signed-off-by: Manzon, Inna (im453s) <im453s@intl.att.com>
Diffstat (limited to 'common')
-rw-r--r--common/onap-tosca-datatype/src/main/resources/globalTypes/openecomp/nodes.yml27
1 files changed, 26 insertions, 1 deletions
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