Add FabricConfiguration 21/58721/4
authorManzon, Inna (im453s) <im453s@intl.att.com>
Thu, 2 Aug 2018 11:42:16 +0000 (14:42 +0300)
committerAvi Gaffa <avi.gaffa@amdocs.com>
Tue, 7 Aug 2018 08:35:03 +0000 (08:35 +0000)
Add new Configuration and FabricConfiguration node types

Change-Id: I86fd30810008e7e58ac3d978a3df9024afc88cfa
Issue-ID: SDC-1593
Signed-off-by: Manzon, Inna (im453s) <im453s@intl.att.com>
common/onap-tosca-datatype/src/main/resources/globalTypes/openecomp/nodes.yml

index 1bbcdd0..53e89b1 100644 (file)
@@ -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