diff options
author | vasraz <vasyl.razinkov@est.tech> | 2021-04-26 14:52:08 +0100 |
---|---|---|
committer | vasraz <vasyl.razinkov@est.tech> | 2021-04-27 16:09:16 +0100 |
commit | 5aa2c74c18bc5f7e9774f192d7419259a0fac733 (patch) | |
tree | 6114a5c54f69ef71c20ef83bed2e10ff973ef7ba /integration-tests/src/test/resources/Files/VFCs | |
parent | 8c814c644cbcdd27e45bad595abe971983d3a850 (diff) |
Enrich 'Import VFC UI test'
Import a node types which contains interface operations with an implementation and inputs
Change-Id: Ibf778747b69c60514d94985fc13097403ae1dd56
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Issue-ID: SDC-3567
Diffstat (limited to 'integration-tests/src/test/resources/Files/VFCs')
-rw-r--r-- | integration-tests/src/test/resources/Files/VFCs/org.openecomp.resource.VFC-child.yml | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/integration-tests/src/test/resources/Files/VFCs/org.openecomp.resource.VFC-child.yml b/integration-tests/src/test/resources/Files/VFCs/org.openecomp.resource.VFC-child.yml index 2c00cbd7e9..e86349a566 100644 --- a/integration-tests/src/test/resources/Files/VFCs/org.openecomp.resource.VFC-child.yml +++ b/integration-tests/src/test/resources/Files/VFCs/org.openecomp.resource.VFC-child.yml @@ -10,15 +10,27 @@ node_types: test_1: type: string default: 'MydefaultValue' - test_2: type: integer default: 266305 - test_3: type: string default: 'TestValue3' - test_4: type: boolean - default: true
\ No newline at end of file + 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 |