From 9cd184ef2b013197cd984cf881335c08a9eab01f Mon Sep 17 00:00:00 2001 From: aribeiro Date: Thu, 2 Apr 2020 14:05:57 +0100 Subject: Fix data type properties declaration According to TOSCA Network properties definition the keyname 'ip_version:' should have Integer as valid_values rather than String Where the keyname 'count:' is declared as a String type the default value should be String rather than Integer Fix misspelled ONAP types 'onap.datatypes.monitoring.measurementType' and 'onap.datatypes.monitoring.managedObjectDNsBasic' Fix the keynames 'upstream:' and 'downstream:' as both are declared as a String type the valid_values should be String rather than Integer Issue-ID: SDC-2864 Signed-off-by: aribeiro Change-Id: I56afdf2818b5f2463fb6088cd8b468fd38ef5086 --- .../toscaGlobalServiceTemplates/openecomp-heat/data.yml | 2 +- .../toscaGlobalServiceTemplates/openecomp/data.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'openecomp-be/backend/openecomp-sdc-vendor-software-product-manager') diff --git a/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/extractServiceComposition/toscaGlobalServiceTemplates/openecomp-heat/data.yml b/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/extractServiceComposition/toscaGlobalServiceTemplates/openecomp-heat/data.yml index b469eb567f..bf05105017 100644 --- a/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/extractServiceComposition/toscaGlobalServiceTemplates/openecomp-heat/data.yml +++ b/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/extractServiceComposition/toscaGlobalServiceTemplates/openecomp-heat/data.yml @@ -629,7 +629,7 @@ data_types: description: Count type: string status: supported - default: 1 + default: "1" required: false scaling_enabled: description: Indicates whether service scaling is enabled diff --git a/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/extractServiceComposition/toscaGlobalServiceTemplates/openecomp/data.yml b/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/extractServiceComposition/toscaGlobalServiceTemplates/openecomp/data.yml index 613d721154..80ad68b47c 100644 --- a/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/extractServiceComposition/toscaGlobalServiceTemplates/openecomp/data.yml +++ b/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/extractServiceComposition/toscaGlobalServiceTemplates/openecomp/data.yml @@ -355,7 +355,7 @@ data_types: description: Count type: string status: supported - default: 1 + default: "1" required: false scaling_enabled: description: Indicates whether service scaling is enabled -- cgit 1.2.3-korg