aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/nestedOtherScenarios/oneLevel/nestedAllPatternsConnectivity/in/main.yml
diff options
context:
space:
mode:
authorAvi Ziv <avi.ziv@amdocs.com>2017-07-18 19:45:38 +0300
committerAvi Ziv <avi.ziv@amdocs.com>2017-07-18 19:45:38 +0300
commitb8e2faf476202b6ffe61bc3a9a37df1304881d40 (patch)
treef78b8c0517d8e16c5ae610bf8b49f68ea8a312a1 /openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/nestedOtherScenarios/oneLevel/nestedAllPatternsConnectivity/in/main.yml
parent75aacbbe1acf78fa53378f07f0a8c7769449a17e (diff)
[SDC] Onboarding 1710 rebase.
Change-Id: If3b6b81d221fde13908f1e8160db6f7d9433c535 Signed-off-by: Avi Ziv <avi.ziv@amdocs.com>
Diffstat (limited to 'openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/nestedOtherScenarios/oneLevel/nestedAllPatternsConnectivity/in/main.yml')
-rw-r--r--openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/nestedOtherScenarios/oneLevel/nestedAllPatternsConnectivity/in/main.yml47
1 files changed, 47 insertions, 0 deletions
diff --git a/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/nestedOtherScenarios/oneLevel/nestedAllPatternsConnectivity/in/main.yml b/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/nestedOtherScenarios/oneLevel/nestedAllPatternsConnectivity/in/main.yml
new file mode 100644
index 0000000000..806280afd4
--- /dev/null
+++ b/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/fulltest/nestedOtherScenarios/oneLevel/nestedAllPatternsConnectivity/in/main.yml
@@ -0,0 +1,47 @@
+heat_template_version: 2013-05-23
+
+description: >
+ Version 2.0 02-09-2016 (Authors: John Doe, user PROD)
+
+parameters:
+ jsa_name:
+ type: string
+ description: network name of jsa log network
+
+resources:
+ test_nested_all_patterns:
+ type: nested1.yml
+ #depends_on:
+ # - test_nested_no_compute
+ # - test_nested_pattern_4
+ properties:
+ p1: {get_attr: [test_nested_pattern_4, pattern4_attr_1]}
+ p2: {get_attr: [test_nested_no_compute, no_compute_attr_1]}
+
+ test_nested_pattern_4:
+ type: nested-pattern-4.yml
+ depends_on:
+ - test_nested_all_patterns
+ #- test_nested_no_compute
+ properties:
+ #p1: {get_attr: [test_nested_pattern_4, all_pattern_attr_1]}
+ p2: {get_attr: [test_nested_no_compute, no_compute_attr_1]}
+
+ test_nested_no_compute:
+ type: nested-no-compute.yml
+ depends_on:
+ - test_nested_all_patterns
+ - test_nested_pattern_4
+ properties:
+ p1: {get_attr: [test_nested_pattern_4, pattern4_attr_1]}
+ #p2: {get_attr: [test_nested_no_compute, all_pattern_attr_1]}
+
+ dependsOn_network:
+ type: OS::Neutron::Net
+ depends_on:
+ - test_nested_all_patterns
+ - test_nested_no_compute
+ - test_nested_pattern_4
+ properties:
+ name:
+ get_param: jsa_name \ No newline at end of file