diff options
author | 2020-08-27 13:07:44 +0100 | |
---|---|---|
committer | 2020-08-28 10:40:51 +0100 | |
commit | 237b2108d287e6dc08b8a5760febc368a54f70f1 (patch) | |
tree | c6a94bdbee1ab48d6bdc0ebe902824427f2fe229 /src/test/resources | |
parent | 926c05ce1a2f808295c9c0f2f6068feb85da2d46 (diff) |
[aai-babel] Add support for sndc props parsing
Signed-off-by: efiacor <fiachra.corcoran@est.tech>
Issue-ID: AAI-3121
Change-Id: I9ed925e7e95d73b30942df895d19fba0c36500f0
Diffstat (limited to 'src/test/resources')
-rw-r--r-- | src/test/resources/compressedArtifacts/service-Testpnfsvc-csar.csar | bin | 0 -> 89414 bytes | |||
-rw-r--r-- | src/test/resources/tosca-mappings.json | 20 |
2 files changed, 16 insertions, 4 deletions
diff --git a/src/test/resources/compressedArtifacts/service-Testpnfsvc-csar.csar b/src/test/resources/compressedArtifacts/service-Testpnfsvc-csar.csar Binary files differnew file mode 100644 index 0000000..9f563ff --- /dev/null +++ b/src/test/resources/compressedArtifacts/service-Testpnfsvc-csar.csar diff --git a/src/test/resources/tosca-mappings.json b/src/test/resources/tosca-mappings.json index dfe666f..32491f6 100644 --- a/src/test/resources/tosca-mappings.json +++ b/src/test/resources/tosca-mappings.json @@ -121,15 +121,22 @@ "type": "CR", "name": "cr", "deleteFlag": true, - "modelInvariantId": "collection-resource-invariant-id", - "modelVersionId": "collection-resource-version-id" + "modelInvariantId": "collection-resource-invariant-id", + "modelVersionId": "collection-resource-version-id" }, { "type": "INSTANCE_GROUP", "name": "instance-group", "deleteFlag": true, - "modelInvariantId": "instance-group-invariant-id", - "modelVersionId": "instance-group-version-id" + "modelInvariantId": "instance-group-invariant-id", + "modelVersionId": "instance-group-version-id" + }, + { + "type": "PNF", + "name": "pnf", + "deleteFlag": true, + "modelInvariantId": "pnf-instance-invariant-id", + "modelVersionId": "pnf-instance-version-id" } ], "widgetMappings": [ @@ -176,6 +183,11 @@ "type": "widget", "widget": "VOLUME", "deleteFlag": true + }, + { + "prefix": "org.openecomp.resource.pnf", + "widget": "PNF", + "deleteFlag": true } ] } |