aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/heat/parameters/inputs
diff options
context:
space:
mode:
authoreleonorali <eleonoral@amdocs.com>2018-02-11 12:15:48 +0200
committereleonorali <eleonoral@amdocs.com>2018-02-11 12:16:01 +0200
commitd5b4901c6a1ae136138c1300d377447e26bac4ef (patch)
treee25360262affbacfdf1bcaeb1e8976e6d8ebae58 /openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/heat/parameters/inputs
parenteae2ba3f5ccfb20a899262562bd91129b6d53423 (diff)
SRIOV - add annotations
SRIOV - add annotations to input TOSCA parameter converted from HEAT file (2) Change-Id: Id0b0156730ae64093df42d09e2873de047c13ac9 Issue-ID: SDC-996 Signed-off-by: eleonorali <eleonoral@amdocs.com>
Diffstat (limited to 'openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/heat/parameters/inputs')
-rw-r--r--openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/heat/parameters/inputs/MANIFEST.json17
-rw-r--r--openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/heat/parameters/inputs/parameters.env6
-rw-r--r--openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/heat/parameters/inputs/parameters.yaml101
3 files changed, 0 insertions, 124 deletions
diff --git a/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/heat/parameters/inputs/MANIFEST.json b/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/heat/parameters/inputs/MANIFEST.json
deleted file mode 100644
index bc0e397432..0000000000
--- a/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/heat/parameters/inputs/MANIFEST.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "name": "vEP_JSA_Net",
- "description": "Version 2.0 02-09-2016 (Authors: John Doe, user PROD)",
- "version": "2013-05-23",
- "data": [
- {
- "file": "parameters.yaml",
- "type": "HEAT",
- "data": [
- {
- "file": "parameters.env",
- "type": "HEAT_ENV"
- }
- ]
- }
- ]
-} \ No newline at end of file
diff --git a/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/heat/parameters/inputs/parameters.env b/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/heat/parameters/inputs/parameters.env
deleted file mode 100644
index 21978f2482..0000000000
--- a/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/heat/parameters/inputs/parameters.env
+++ /dev/null
@@ -1,6 +0,0 @@
-parameters:
- param_type_string_default_value_with_env: HEAT_ENV default string
- param_type_number_default_value_with_env: 54321
- param_type_boolean_default_value_with_env: false
- param_type_comma_delimited_list_default_value_with_env: b1,b2,b3,b4
-
diff --git a/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/heat/parameters/inputs/parameters.yaml b/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/heat/parameters/inputs/parameters.yaml
deleted file mode 100644
index 6f1b69ac59..0000000000
--- a/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/heat/parameters/inputs/parameters.yaml
+++ /dev/null
@@ -1,101 +0,0 @@
-heat_template_version: 2013-05-23
-
-description: >
- Version 2.0 02-09-2016 (Authors: John Doe, user PROD)
-
-parameters:
- param_type_string:
- type: string
- description: param String - string
- param_type_number:
- type: number
- description: param number - float
- param_type_json:
- type: json
- description: param json - map<String>
- param_type_boolean:
- type: boolean
- description: param boolean - boolean
- param_type_comma_delimited_list:
- type: comma_delimited_list
- description: param comma_delimited_list - List
-
- volume_type:
- type: string
- label: FSB Volume
- description: FSB Volume type
-
- FSB1_volume_name:
- type: string
- label: FSB Volume
- description: FSB Volume name
-
- FSB_1_image:
- type: string
- label: FSB Image
- description: FSB Image name
-
- param_constraint_length_allowed_pattern_range_hidden:
- type: string
- label: User Name
- description: User name to be configured for the application
- hidden: true
- constraints:
- - length: { min: 6, max: 8 }
- description: User name must be between 6 and 8 characters
- - allowed_pattern: "[A-Z]+[a-zA-Z0-9]*"
- description: User name must start with an uppercase character
- - range: { min: 0, max: 10 }
- param_allowed_values:
- type: string
- label: Instance Type
- description: Instance type for compute instances
- constraints:
- - allowed_values:
- - m1.small
- - m1.medium
- - m1.large
-
- param_type_string_default_value:
- type: string
- default: HEAT_default string
- description: param value should be - HEAT_default string
- param_type_string_default_value_with_env:
- type: string
- description: param value should be - HEAT_ENV_default string
- default: HEAT_default string
-
- param_type_number_default_value:
- type: number
- description: param value should be 12345
- default: 12345
- param_type_number_default_value_with_env:
- type: number
- description: param value should be 54321
- default: 12345
- param_type_boolean_default_value:
- type: boolean
- description: param value should be true
- default: true
- param_type_boolean_default_value_with_env:
- type: boolean
- description: param value should be false
- default: true
- param_type_comma_delimited_list_default_value:
- type: comma_delimited_list
- description: param value should be [a1,a2,a3,a4]
- default: a1,a2,a3,a4
- param_type_comma_delimited_list_default_value_with_env:
- type: comma_delimited_list
- description: param value should be [b1,b2,b3,b4]
- default: a1,a2,a3,a4
-resources:
- FSB1_volume:
- type: OS::Cinder::Volume
- properties:
- size: 3
- volume_type: {get_param: volume_type}
- name: {get_param: FSB1_volume_name}
- image: {get_param: FSB_1_image}
-
-