-
Notifications
You must be signed in to change notification settings - Fork 1
/
types.yaml
40 lines (35 loc) · 953 Bytes
/
types.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
tosca_definitions_version: tosca_simple_yaml_1_0
node_types:
tosca.nodes.chain.function:
derived_from: tosca.nodes.Root
attributes:
outputs:
type: map
persisted_context:
type: string
interfaces:
Standard:
type: tosca.interfaces.node.lifecycle.Standard
create:
implementation: chains.tasks:create
start:
implementation: chains.tasks:start
stop:
implementation: chains.tasks:stop
delete:
implementation: chains.tasks:delete
tosca.artifacts.chain.persisted_context:
derived_from: tosca.artifacts.File
file:
type: string
required: true
tosca.artifacts.chain.deployment_template:
derived_from: tosca.artifacts.File
file:
type: string
required: true
tosca.artifacts.chain.deployment_inputs:
derived_from: tosca.artifacts.File
file:
type: string
required: true