Rename ControlLoop to AutomationComposition
[sdc.git] / catalog-be / src / main / resources / import / tosca / models / init / acm / tosca / interface-lifecycle-types / interfaceLifecycleTypes.yml
1 tosca.interfaces.Root:
2   description: The TOSCA root Interface Type all other TOSCA Interface Types derive from
3
4 tosca.interfaces.node.lifecycle.Standard:
5   derived_from: tosca.interfaces.Root
6   create:
7     description: Standard lifecycle create operation.
8   configure:
9     description: Standard lifecycle configure operation.
10   start:
11     description: Standard lifecycle start operation.
12   stop:
13     description: Standard lifecycle stop operation.
14   delete:
15     description: Standard lifecycle delete operation.
16
17 tosca.interfaces.relationship.Configure:
18   derived_from: tosca.interfaces.Root
19   pre_configure_source:
20     description: Operation to pre-configure the source endpoint.
21   pre_configure_target:
22     description: Operation to pre-configure the target endpoint.
23   post_configure_source:
24     description: Operation to post-configure the source endpoint.
25   post_configure_target:
26     description: Operation to post-configure the target endpoint.
27   add_target:
28     description: Operation to notify the source node of a target node being added via a relationship.
29   add_source:
30     description: Operation to notify the target node of a source node which is now available via a relationship.
31   target_changed:
32     description: Operation to notify source some property or attribute of the target changed
33   remove_target:
34     description: Operation to remove a target node.