[SDC-29] rebase continue work to align source
[sdc.git] / test-apis-ci / src / test / resources / CI / tests / importToscaResourceByCreateUrl / importListPropertySuccessFlow.yml
1 tosca_definitions_version: tosca_simple_yaml_1_0_0
2 node_types: 
3   org.openecomp.resource.vl.LinkTest:
4       derived_from: tosca.nodes.Root
5       properties:
6         my_boolean:
7           type: list
8           description : another description
9           default:
10             - false
11             - true
12           entry_schema:
13             description: This is my property
14             type: boolean
15         my_boolean_array:
16           type: list
17           description : another description
18           default: [ true , false ]
19           entry_schema:
20             description: This is my property
21             type: boolean
22         duplicate_boolean_values:
23           type: list
24           description : another description
25           default: [ true , false , true ]
26           entry_schema:
27             description: This is my property
28             type: boolean
29         boolean_null_value:
30           type: list
31           description : another description
32           default:
33             - true
34             -
35             - false
36           entry_schema:
37             description: This is my property
38             type: boolean
39         my_integers:
40           type: list
41           description : another description
42           default:
43             - 0
44             - 1000
45             - -1000
46             - 50
47           entry_schema:
48             description: This is my property
49             type: integer
50         my_integers_array:
51           type: list
52           description : another description
53           default: [ 10 , -1000, 0 ]
54           entry_schema:
55             description: This is my property
56             type: integer
57         duplicate_integers_values:
58           type: list
59           description : another description
60           default: [ 10 , 10, -1000, 0 ]
61           entry_schema:
62             description: This is my property
63             type: integer
64         integer_null_value:
65           type: list
66           description : another description
67           default:
68             - 1000
69             -
70             - 2000
71           entry_schema:
72             description: This is my property
73             type: integer
74         my_string:
75           type: list
76           description : another description
77           default:
78             - <b>asdc<b>
79             - $?^@ecomp$!#%()_-~@+*^...;;/w#
80             - uc
81           entry_schema:
82             description: This is my property
83             type: string
84         my_string_array:
85           type: list
86           description : another description
87           default: [  <b>AAA</b>, ~$~#bbb%^*_-, qwe , 1.3 , <b>500</b> , true ]
88           entry_schema:
89             description: This is my property
90             type: string
91         string_null_value:
92           type: list
93           description : another description
94           default:
95             - <b>asdc<b>
96             -
97             - uc
98           entry_schema:
99             description: This is my property
100             type: string
101         string_space_value:
102           type: list
103           description : another description
104           default:
105             - <b>  asdc<b>
106             -    
107             -     uc
108           entry_schema:
109             description: This is my property
110             type: string
111         duplicate_string_values:
112           type: list
113           description : another description
114           default:
115             - asdc
116             - asdc
117             - uc
118           entry_schema:
119             description: This is my property
120             type: string
121         my_float:
122           type: list
123           description : another description
124           default:
125             - 6
126             - 1000.000001
127             - -3.0f
128           entry_schema:
129             description: This is my property
130             type: float
131         my_float_array:
132           type: list
133           description : another description
134           default: [ 0.01 , -5.0 , 2.1f ]
135           entry_schema:
136             description: This is my property
137             type: float
138         duplicate_float_values:
139           type: list
140           description : another description
141           default:
142             - 0.0
143             - 0.0
144             - 4.555555
145           entry_schema:
146             description: This is my property
147             type: float
148         float_no_default_values:
149           type: list
150           description : another description
151           default:
152           entry_schema:
153             description: This is my property
154             type: float
155         float_null_value:
156           type: list
157           description : another description
158           default:
159             - 6
160             -
161             - -3.0f
162           entry_schema:
163             description: This is my property
164             type: float
165         float_space_value:
166           type: list
167           description : another description
168           default:
169             - 6
170             - 
171             - -3.0f
172           entry_schema:
173             description: This is my property
174             type: float
175         integer_no_default_values:
176           type: list
177           description : another description
178           default:
179           entry_schema:
180             description: This is my property
181             type: integer
182         string_no_default_values:
183           type: list
184           description : another description
185           default:
186           entry_schema:
187             description: This is my property
188             type: string
189         boolean_no_default_values:
190           type: list
191           description : another description
192           default:
193           entry_schema:
194             description: This is my property
195             type: boolean
196       capabilities:
197         link:
198           type: tosca.capabilities.network.Linkable