blob: c8a0c03384dfd4cdc59319d086c932406eda06d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
tosca_definitions_version: tosca_simple_yaml_1_0_0
node_types:
org.openecomp.resource.vfc.mycompute:
derived_from: tosca.nodes.Compute
capabilities:
scalable:
type: tosca.capabilities.Scalable
properties:
propertyForTest:
type: string
description: test
required: true
default: success
# min_instances property should override property from tosca.capabilities.Scalable
min_instances:
type: integer
default: 3
|