Fix default value for interface operation input
[sdc.git] / catalog-be / src / test / resources / interfaceDefinition / interfaceDefinition-legacy.yaml
1 inputs:
2   stringInput:
3     type: string
4     description: stringInput description
5     required: true
6     default: defaultValue
7     status: aStatus
8   actionInput:
9     type: org.openecomp.resource.datatypes.Action
10 type: tosca.interfaces.node.lifecycle.Standard
11 create:
12   implementation: "camunda/serviceSelect"
13 start:
14   implementation: "camunda/executeAction"
15   inputs:
16     action:
17       type: org.openecomp.resource.datatypes.Action
18     stringInput:
19       type: string
20       default: this is a string
21     booleanInput:
22       type: boolean
23       default: true
24     integerInput:
25       type: integer
26       description: an integer
27       status: supported
28       required: true
29       default: 11
30     floatInput:
31       type: float
32       required: false
33       default: 11.1
34     complexInput:
35       type: onap.datatypes.partner.access_details
36       status: experimental
37       default:
38         dsl_stability_profile: dsl_stability_profile_value
39         central_splitter: false
40         service_restoration_sla: service_restoration_sla_value
41         battery_backup: true
42         partner_priorty_assist: false
43 stop:
44   implementation: "camunda/executeAction"
45   inputs:
46     action:
47       type: org.openecomp.resource.datatypes.Action
48 delete:
49   implementation: "camunda/serviceDeselect"