diff options
-rw-r--r-- | common/onap-tosca-datatype/src/main/resources/globalTypes/openecomp/nodes.yml | 27 |
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 |