blob: e86349a566003ff6173cd738357b71a602a78422 (
plain)
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
|
tosca_definitions_version: tosca_simple_yaml_1_3
node_types:
org.openecomp.resource.VFC-child:
derived_from: org.openecomp.resource.VFC-root
properties:
aProperty:
type: string
required: false
attributes:
test_1:
type: string
default: 'MydefaultValue'
test_2:
type: integer
default: 266305
test_3:
type: string
default: 'TestValue3'
test_4:
type: boolean
default: true
interfaces:
Standard:
type: tosca.interfaces.node.lifecycle.Standard
inputs:
url_path:
type: string
operations:
create:
description: 'My create Desc'
implementation: path/to/my/implementation.sh
inputs:
first:
type: string
default: '1234'
description: My inputs Desc
|