Rename ControlLoop to AutomationComposition
[sdc.git] / catalog-be / src / main / resources / import / tosca / models / init / acm / tosca / relationship-types / relationshipTypes.yml
1 tosca.relationships.Root:
2   description: This is the default (root) TOSCA Relationship Type definition that all other TOSCA Relationship Types derive from.
3   attributes:
4     tosca_id:
5       description: A unique identifier of the realized instance of a Relationship Template that derives from any TOSCA normative type.
6       type: string
7     tosca_name:
8       description: This attribute reflects the name of the Relationship Template as defined in the TOSCA service template. This name is not unique to the realized instance model of corresponding deployed application as each template in the model can result in one or more instances (e.g., scaled) when orchestrated to a provider environment.
9       type: string
10     state:
11       description: The state of the relationship instance.
12       type: string
13       default: initial
14   interfaces:
15     Configure:
16       type: tosca.interfaces.relationship.Configure
17
18 tosca.relationships.DependsOn:
19   derived_from: tosca.relationships.Root
20   description: This type represents a general dependency relationship between two nodes.
21   valid_target_types:
22     - tosca.capabilities.Node