Update project maturity status
[multicloud/azure.git] / azure / aria / aria-extension-cloudify / src / aria / extensions / aria_extension_tosca / profiles / tosca-simple-1.0 / interfaces.yaml
1 # Licensed to the Apache Software Foundation (ASF) under one or more
2 # contributor license agreements.  See the NOTICE file distributed with
3 # this work for additional information regarding copyright ownership.
4 # The ASF licenses this file to You under the Apache License, Version 2.0
5 # (the "License"); you may not use this file except in compliance with
6 # the License.  You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 interface_types:
17
18   tosca.interfaces.Root:
19     _extensions:
20       shorthand_name: Root # ARIA NOTE: omitted in the spec
21       type_qualified_name: tosca:Root
22       specification: tosca-simple-1.0
23       specification_section: 5.7.3
24       specification_url: 'http://docs.oasis-open.org/tosca/TOSCA-Simple-Profile-YAML/v1.0/cos01/TOSCA-Simple-Profile-YAML-v1.0-cos01.html#_Ref384391055'
25     description: >-
26       This is the default (root) TOSCA Interface Type definition that all other TOSCA Interface Types derive from.
27
28   tosca.interfaces.node.lifecycle.Standard:
29     _extensions:
30       shorthand_name: Standard
31       type_qualified_name: tosca:Standard
32       specification: tosca-simple-1.0
33       specification_section: 5.7.4
34     description: >-
35       This lifecycle interface defines the essential, normative operations that TOSCA nodes may support.
36     derived_from: tosca.interfaces.Root
37     create:
38       description: >-
39         Standard lifecycle create operation.
40     configure:
41       description: >-
42         Standard lifecycle configure operation.
43     start:
44       description: >-
45         Standard lifecycle start operation.
46     stop:
47       description: >-
48         Standard lifecycle stop operation.
49     delete:
50       description: >-
51         Standard lifecycle delete operation.
52
53   tosca.interfaces.relationship.Configure:
54     _extensions:
55       shorthand_name: Configure
56       type_qualified_name: tosca:Configure
57       specification: tosca-simple-1.0
58       specification_section: 5.7.5
59       specification_url: 'http://docs.oasis-open.org/tosca/TOSCA-Simple-Profile-YAML/v1.0/cos01/TOSCA-Simple-Profile-YAML-v1.0-cos01.html#DEFN_TYPE_ITFC_RELATIONSHIP_CONFIGURE'
60     description: >-
61       The lifecycle interfaces define the essential, normative operations that each TOSCA Relationship Types may support.
62     derived_from: tosca.interfaces.Root
63     pre_configure_source:
64       description: >-
65         Operation to pre-configure the source endpoint.
66       _extensions:
67         relationship_edge: source
68     pre_configure_target:
69       description: >-
70         Operation to pre-configure the target endpoint.
71       _extensions:
72         relationship_edge: target
73     post_configure_source:
74       description: >-
75         Operation to post-configure the source endpoint.
76       _extensions:
77         relationship_edge: source
78     post_configure_target:
79       description: >-
80         Operation to post-configure the target endpoint.
81       _extensions:
82         relationship_edge: target
83     add_target:
84       description: >-
85         Operation to notify the source node of a target node being added via a relationship.
86       _extensions:
87         relationship_edge: source
88     add_source:
89       description: >-
90         Operation to notify the target node of a source node which is now available via a relationship.
91       _extensions:
92         relationship_edge: target
93     target_changed:
94       description: >-
95         Operation to notify source some property or attribute of the target changed
96       _extensions:
97         relationship_edge: source
98     remove_target:
99       description: >-
100         Operation to remove a target node.
101       _extensions:
102         relationship_edge: source
103     remove_source:
104       description: >-
105         Operation to remove the source node.
106       _extensions:
107         relationship_edge: target