blob: 1925f05c566602cc981a5a201124b6b7bac2086f [file] [log] [blame]
tiernof7aa8c42016-09-06 16:43:04 +02001# -*- coding: utf-8 -*-
2
3##
4# Copyright 2015 Telefónica Investigación y Desarrollo, S.A.U.
tierno9a61c6b2016-09-08 10:57:02 +02005# This file is part of openvim
tiernof7aa8c42016-09-06 16:43:04 +02006# All Rights Reserved.
7#
8# Licensed under the Apache License, Version 2.0 (the "License"); you may
9# not use this file except in compliance with the License. You may obtain
10# a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
17# License for the specific language governing permissions and limitations
18# under the License.
19#
20# For those usages not covered by the Apache License, Version 2.0 please
21# contact with: nfvlabs@tid.es
22##
23
24''' Definition of dictionaries schemas used by validating input
25 These dictionaries are validated using jsonschema library
26'''
27__author__="Alfonso Tierno"
28__date__ ="$10-jul-2014 12:07:15$"
29
30#
31# SCHEMAS to validate input data
32#
33
tiernoa6933042017-05-24 16:54:33 +020034path_schema = {"type": "string", "maxLength": 255, "pattern": "^(\.){0,2}(/[^/\"':{}\(\)]+)+$"}
tiernof7aa8c42016-09-06 16:43:04 +020035http_schema={"type":"string", "pattern":"^https?://[^'\"=]+$"}
36port_schema={"type":"integer","minimum":1,"maximun":65534}
37ip_schema={"type":"string","pattern":"^([0-9]{1,3}.){3}[0-9]{1,3}$"}
38cidr_schema={"type":"string","pattern":"^([0-9]{1,3}.){3}[0-9]{1,3}/[0-9]{1,2}$"}
39name_schema={"type" : "string", "minLength":1, "maxLength":255, "pattern" : "^[^,;()'\"]+$"}
40nameshort_schema={"type" : "string", "minLength":1, "maxLength":64, "pattern" : "^[^,;()'\"]+$"}
41nametiny_schema={"type" : "string", "minLength":1, "maxLength":12, "pattern" : "^[^,;()'\"]+$"}
42xml_text_schema={"type" : "string", "minLength":1, "maxLength":1000, "pattern" : "^[^']+$"}
43description_schema={"type" : ["string","null"], "maxLength":255, "pattern" : "^[^'\"]+$"}
44id_schema_fake = {"type" : "string", "minLength":2, "maxLength":36 } #"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
45id_schema = {"type" : "string", "pattern": "^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$"}
46pci_schema={"type":"string", "pattern":"^[0-9a-fA-F]{4}(:[0-9a-fA-F]{2}){2}\.[0-9a-fA-F]$"}
47bandwidth_schema={"type":"string", "pattern" : "^[0-9]+ *([MG]bps)?$"}
48integer0_schema={"type":"integer","minimum":0}
49integer1_schema={"type":"integer","minimum":1}
50vlan_schema={"type":"integer","minimum":1,"maximun":4095}
51vlan1000_schema={"type":"integer","minimum":1000,"maximun":4095}
52mac_schema={"type":"string", "pattern":"^[0-9a-fA-F][02468aceACE](:[0-9a-fA-F]{2}){5}$"} #must be unicast LSB bit of MSB byte ==0
53net_bind_schema={"oneOf":[{"type":"null"},{"type":"string", "pattern":"^(default|((bridge|macvtap):[0-9a-zA-Z\.\-]{1,50})|openflow:[/0-9a-zA-Z\.\-]{1,50}(:vlan)?)$"}]}
54yes_no_schema={"type":"string", "enum":["yes", "no"]}
55log_level_schema={"type":"string", "enum":["DEBUG", "INFO", "WARNING","ERROR","CRITICAL"]}
56
57config_schema = {
tiernoa6933042017-05-24 16:54:33 +020058 "title": "main configuration information schema",
tiernof7aa8c42016-09-06 16:43:04 +020059 "$schema": "http://json-schema.org/draft-04/schema#",
tiernoa6933042017-05-24 16:54:33 +020060 "type": "object",
tiernof7aa8c42016-09-06 16:43:04 +020061 "properties":{
62 "http_port": port_schema,
63 "http_admin_port": port_schema,
64 "http_host": nameshort_schema,
65 "http_url_prefix": path_schema, # it does not work yet; it's supposed to be the base path to be used by bottle, but it must be explicitly declared
66 "db_host": nameshort_schema,
67 "db_user": nameshort_schema,
tiernoa6933042017-05-24 16:54:33 +020068 "db_passwd": {"type": "string"},
tiernof7aa8c42016-09-06 16:43:04 +020069 "db_name": nameshort_schema,
70 "of_controller_ip": ip_schema,
71 "of_controller_port": port_schema,
72 "of_controller_dpid": nameshort_schema,
73 "of_controller_nets_with_same_vlan": {"type" : "boolean"},
74 "of_controller": nameshort_schema, #{"type":"string", "enum":["floodlight", "opendaylight"]},
75 "of_controller_module": {"type":"string"},
mirabal580435e2017-03-01 16:17:10 +010076 "of_user": nameshort_schema,
77 "of_password": nameshort_schema,
tiernoa6933042017-05-24 16:54:33 +020078 "test_mode": {"type": "boolean"}, # leave for backward compatibility
tiernof7aa8c42016-09-06 16:43:04 +020079 "mode": {"type":"string", "enum":["normal", "host only", "OF only", "development", "test"] },
80 "development_bridge": {"type":"string"},
81 "tenant_id": {"type" : "string"},
tiernoa6933042017-05-24 16:54:33 +020082 "image_path": path_schema, # leave for backward compatibility
83 "host_image_path": path_schema,
84 "host_ssh_keyfile": path_schema,
tiernof7aa8c42016-09-06 16:43:04 +020085 "network_vlan_range_start": vlan_schema,
86 "network_vlan_range_end": vlan_schema,
87 "bridge_ifaces": {
88 "type": "object",
89 "patternProperties": {
90 "." : {
tiernoa6933042017-05-24 16:54:33 +020091 "type": "array",
tiernof7aa8c42016-09-06 16:43:04 +020092 "items": integer0_schema,
93 "minItems":2,
94 "maxItems":2,
95 },
96 },
97 "minProperties": 2
98 },
99 "dhcp_server": {
100 "type": "object",
101 "properties": {
tiernoa6933042017-05-24 16:54:33 +0200102 "host": name_schema,
103 "port": port_schema,
104 "provider": {"type": "string", "enum": ["isc-dhcp-server"]},
105 "user": nameshort_schema,
106 "password": {"type": "string"},
107 "key": path_schema, # for backward compatibility, use keyfile instead
108 "keyfile": path_schema,
109 "bridge_ifaces": {
110 "type": "array",
tiernof7aa8c42016-09-06 16:43:04 +0200111 "items": nameshort_schema,
112 },
tiernoa6933042017-05-24 16:54:33 +0200113 "nets": {
114 "type": "array",
tiernof7aa8c42016-09-06 16:43:04 +0200115 "items": name_schema,
116 },
117 },
118 "required": ['host', 'provider', 'user']
119 },
120 "log_level": log_level_schema,
121 "log_level_db": log_level_schema,
122 "log_level_of": log_level_schema,
Mirabal7256d6b2016-12-15 10:51:19 +0000123 "network_type": {"type": "string", "enum": ["ovs", "bridge"]},
Mirabale9317ff2017-01-18 16:10:58 +0000124 "ovs_controller_file_path": path_schema,
tiernoa6933042017-05-24 16:54:33 +0200125 "ovs_controller_ip": nameshort_schema,
Mirabale9317ff2017-01-18 16:10:58 +0000126 "ovs_controller_user": nameshort_schema,
tiernoa6933042017-05-24 16:54:33 +0200127 "ovs_controller_password": {"type": "string"},
128 "ovs_controller_keyfile": path_schema,
tiernof7aa8c42016-09-06 16:43:04 +0200129 },
130 "patternProperties": {
131 "of_*" : {"type": ["string", "integer", "boolean"]}
132 },
mirabal580435e2017-03-01 16:17:10 +0100133 "required": ['db_host', 'db_user', 'db_passwd', 'db_name'],
tiernof7aa8c42016-09-06 16:43:04 +0200134 "additionalProperties": False
135}
136
137
138
139metadata_schema={
140 "type":"object",
141 "properties":{
142 "architecture": {"type":"string"},
143 "use_incremental": yes_no_schema,
144 "vpci": pci_schema,
145 "os_distro": {"type":"string"},
146 "os_type": {"type":"string"},
147 "os_version": {"type":"string"},
148 "bus": {"type":"string"},
garciadeblas1dd7eb22017-06-01 11:40:13 +0200149 "topology": {"type":"string", "enum": ["oneSocket", "oneSocket:hyperthreading"]}
tiernof7aa8c42016-09-06 16:43:04 +0200150 }
151}
152
tiernof7aa8c42016-09-06 16:43:04 +0200153tenant_new_schema = {
154 "title":"tenant creation information schema",
155 "$schema": "http://json-schema.org/draft-04/schema#",
156 "type":"object",
157 "properties":{
158 "tenant":{
159 "type":"object",
160 "properties":{
161 "id":id_schema,
162 "name": nameshort_schema,
163 "description":description_schema,
164 "enabled":{"type" : "boolean"}
165 },
166 "required": ["name"]
167 }
168 },
169 "required": ["tenant"],
170 "additionalProperties": False
171}
mirabal6045a9d2017-03-06 11:36:55 +0100172
tiernof7aa8c42016-09-06 16:43:04 +0200173tenant_edit_schema = {
174 "title":"tenant edition information schema",
175 "$schema": "http://json-schema.org/draft-04/schema#",
176 "type":"object",
177 "properties":{
178 "tenant":{
179 "type":"object",
180 "minProperties":1,
181 "properties":{
182 "name":nameshort_schema,
183 "description":description_schema,
184 "enabled":{"type" : "boolean"}
185 },
186 "additionalProperties": False,
187 }
188 },
189 "required": ["tenant"],
190 "additionalProperties": False
191}
192interfaces_schema={
193 "type":"array",
194 "minItems":0,
195 "items":{
196 "type":"object",
197 "properties":{
198 "name":name_schema,
199 "dedicated":{"type":"string","enum":["yes","no","yes:sriov"]},
200 "bandwidth":bandwidth_schema,
201 "vpci":pci_schema,
202 "uuid":id_schema,
203 "mac_address":mac_schema
204 },
205 "additionalProperties": False,
206 "required": ["dedicated", "bandwidth"]
207 }
208}
209
210extended_schema={
211 "type":"object",
212 "properties":{
213 "processor_ranking":integer0_schema,
214 "devices":{
215 "type": "array",
216 "items":{
217 "type": "object",
218 "properties":{
219 "type":{"type":"string", "enum":["usb","disk","cdrom","xml"]},
220 "vpci":pci_schema,
221 "imageRef":id_schema,
222 "xml":xml_text_schema,
mirabalcaeb2242017-05-31 10:52:22 -0500223 "dev":nameshort_schema,
224 "size":integer1_schema,
tiernof7aa8c42016-09-06 16:43:04 +0200225 },
226 "additionalProperties": False,
227 "required": ["type"]
228 }
229 },
230 "numas":{
231 "type": "array",
232 "items":{
233 "type": "object",
234 "properties":{
235 "memory":integer1_schema,
236 "cores":integer1_schema,
237 "paired-threads":integer1_schema,
238 "threads":integer1_schema,
239 "cores-id":{"type":"array","items":integer0_schema},
240 "paired-threads-id":{"type":"array","items":{"type":"array","minItems":2,"maxItems":2,"items":integer0_schema}},
241 "threads-id":{"type":"array","items":integer0_schema},
242 "interfaces":interfaces_schema
243 },
244 "additionalProperties": False,
245 "minProperties": 1,
246 #"required": ["memory"]
247 }
248 }
249 },
250 #"additionalProperties": False,
251 #"required": ["processor_ranking"]
252}
253
254host_data_schema={
255 "title":"hosts manual insertion information schema",
256 "type":"object",
tiernoa6933042017-05-24 16:54:33 +0200257 "properties":{
258 "id": id_schema,
259 "admin_state_up": {"type": "boolean"},
260 "created_at": {"type": "string"}, # ignored, just for compatibility with host-list
261 "ip_name": nameshort_schema,
tiernof7aa8c42016-09-06 16:43:04 +0200262 "name": name_schema,
tiernoa6933042017-05-24 16:54:33 +0200263 "description": description_schema,
264 "user": nameshort_schema,
265 "password": nameshort_schema,
266 "keyfile": path_schema,
267 "features": description_schema,
268 "ranking": integer0_schema,
269 "autodiscover": {"type": "boolean"}, # try to discover host parameters instead of providing in this schema
270 "devices": {
tiernof7aa8c42016-09-06 16:43:04 +0200271 "type": "array",
tiernoa6933042017-05-24 16:54:33 +0200272 "items": {
tiernof7aa8c42016-09-06 16:43:04 +0200273 "type": "object",
tiernoa6933042017-05-24 16:54:33 +0200274 "properties": {
275 "type": {"type": "string", "enum": ["usb", "disk"]},
276 "vpci": pci_schema
tiernof7aa8c42016-09-06 16:43:04 +0200277 },
278 "additionalProperties": False,
279 "required": ["type"]
280 }
281 },
tiernoa6933042017-05-24 16:54:33 +0200282 "numas": {
tiernof7aa8c42016-09-06 16:43:04 +0200283 "type": "array",
tiernoa6933042017-05-24 16:54:33 +0200284 "minItems": 1,
285 "items": {
tiernof7aa8c42016-09-06 16:43:04 +0200286 "type": "object",
tiernoa6933042017-05-24 16:54:33 +0200287 "properties": {
288 "admin_state_up": {"type": "boolean"},
289 "hugepages": integer0_schema,
290 "hugepages_consumed": integer0_schema, # ignored, just for compatibility with host-list
291 "numa_socket": integer0_schema,
292 "memory": integer1_schema,
tiernof7aa8c42016-09-06 16:43:04 +0200293 "cores":{
294 "type": "array",
tiernoa6933042017-05-24 16:54:33 +0200295 "minItems": 2,
296 "items": {
tiernof7aa8c42016-09-06 16:43:04 +0200297 "type": "object",
tiernoa6933042017-05-24 16:54:33 +0200298 "properties": {
299 "core_id": integer0_schema,
300 "thread_id": integer0_schema,
301 "status": {"type": "string", "enum": ["noteligible"]}
tiernof7aa8c42016-09-06 16:43:04 +0200302 },
303 "additionalProperties": False,
tiernoa6933042017-05-24 16:54:33 +0200304 "required": ["core_id", "thread_id"]
tiernof7aa8c42016-09-06 16:43:04 +0200305 }
306 },
tiernoa6933042017-05-24 16:54:33 +0200307 "interfaces": {
tiernof7aa8c42016-09-06 16:43:04 +0200308 "type": "array",
tiernoa6933042017-05-24 16:54:33 +0200309 "minItems": 1,
310 "items": {
tiernof7aa8c42016-09-06 16:43:04 +0200311 "type": "object",
tiernoa6933042017-05-24 16:54:33 +0200312 "properties": {
313 "source_name": nameshort_schema,
314 "mac": mac_schema,
315 "Mbps": integer0_schema,
316 "pci": pci_schema,
317 "sriovs": {
tiernof7aa8c42016-09-06 16:43:04 +0200318 "type": "array",
319 "minItems":1,
tiernoa6933042017-05-24 16:54:33 +0200320 "items": {
tiernof7aa8c42016-09-06 16:43:04 +0200321 "type": "object",
tiernoa6933042017-05-24 16:54:33 +0200322 "properties": {
323 "source_name": {"oneOf": [integer0_schema, nameshort_schema]},
324 "mac": mac_schema,
325 "vlan": integer0_schema, # ignored, just for backward compatibility
326 "pci": pci_schema,
tiernof7aa8c42016-09-06 16:43:04 +0200327 },
328 "additionalProperties": False,
tiernoa6933042017-05-24 16:54:33 +0200329 "required": ["source_name", "mac", "pci"]
tiernof7aa8c42016-09-06 16:43:04 +0200330 }
331 },
332 "switch_port": nameshort_schema,
333 "switch_dpid": nameshort_schema,
tiernoa6933042017-05-24 16:54:33 +0200334 "switch_mac": mac_schema,
tiernof7aa8c42016-09-06 16:43:04 +0200335 },
336 "additionalProperties": False,
tiernoa6933042017-05-24 16:54:33 +0200337 "required": ["source_name", "mac", "Mbps", "pci"]
tiernof7aa8c42016-09-06 16:43:04 +0200338 }
339 },
tiernof7aa8c42016-09-06 16:43:04 +0200340 },
341 "additionalProperties": False,
tiernoa6933042017-05-24 16:54:33 +0200342 "required": ["cores", "numa_socket"]
tiernof7aa8c42016-09-06 16:43:04 +0200343 }
344 }
345 },
346 "additionalProperties": False,
tiernoa6933042017-05-24 16:54:33 +0200347 "required": ["name", "ip_name"]
tiernof7aa8c42016-09-06 16:43:04 +0200348}
349
350host_edit_schema={
351 "title":"hosts creation information schema",
352 "$schema": "http://json-schema.org/draft-04/schema#",
353 "type":"object",
354 "properties":{
355 "host":{
356 "type":"object",
357 "properties":{
358 "ip_name":nameshort_schema,
359 "name": name_schema,
360 "description":description_schema,
361 "user":nameshort_schema,
362 "password":nameshort_schema,
363 "admin_state_up":{"type":"boolean"},
364 "numas":{
365 "type":"array",
366 "items":{
367 "type": "object",
368 "properties":{
369 "numa_socket": integer0_schema,
370 "admin_state_up":{"type":"boolean"},
371 "interfaces":{
372 "type":"array",
373 "items":{
374 "type": "object",
375 "properties":{
376 "source_name": nameshort_schema,
377 "switch_dpid": nameshort_schema,
378 "switch_port": nameshort_schema,
379 },
380 "required": ["source_name"],
381 }
382 }
383 },
384 "required": ["numa_socket"],
385 "additionalProperties": False,
386 }
387 }
388 },
389 "minProperties": 1,
390 "additionalProperties": False
391 },
392 },
393 "required": ["host"],
394 "minProperties": 1,
395 "additionalProperties": False
396}
397
398host_new_schema = {
399 "title":"hosts creation information schema",
400 "$schema": "http://json-schema.org/draft-04/schema#",
401 "type":"object",
402 "properties":{
tiernoa6933042017-05-24 16:54:33 +0200403 "host": host_data_schema,
tiernof7aa8c42016-09-06 16:43:04 +0200404 "host-data":host_data_schema
405 },
406 "required": ["host"],
407 "minProperties": 1,
408 "maxProperties": 2,
409 "additionalProperties": False
410}
411
412
413flavor_new_schema = {
414 "title":"flavor creation information schema",
415 "$schema": "http://json-schema.org/draft-04/schema#",
416 "type":"object",
417 "properties":{
418 "flavor":{
419 "type":"object",
420 "properties":{
421 "id":id_schema,
422 "name":name_schema,
423 "description":description_schema,
424 "ram":integer0_schema,
425 "vcpus":integer0_schema,
426 "extended": extended_schema,
427 "public": yes_no_schema
428 },
429 "required": ["name"]
430 }
431 },
432 "required": ["flavor"],
433 "additionalProperties": False
434}
435flavor_update_schema = {
436 "title":"flavor update information schema",
437 "$schema": "http://json-schema.org/draft-04/schema#",
438 "type":"object",
439 "properties":{
440 "flavor":{
441 "type":"object",
442 "properties":{
443 "name":name_schema,
444 "description":description_schema,
445 "ram":integer0_schema,
446 "vcpus":integer0_schema,
447 "extended": extended_schema,
448 "public": yes_no_schema
449 },
450 "minProperties": 1,
451 "additionalProperties": False
452 }
453 },
454 "required": ["flavor"],
455 "additionalProperties": False
456}
457
458image_new_schema = {
459 "title":"image creation information schema",
460 "$schema": "http://json-schema.org/draft-04/schema#",
461 "type":"object",
462 "properties":{
463 "image":{
464 "type":"object",
465 "properties":{
466 "id":id_schema,
467 "path": {"oneOf": [path_schema, http_schema]},
468 "description":description_schema,
469 "name":name_schema,
470 "metadata":metadata_schema,
471 "public": yes_no_schema
472 },
473 "required": ["name","path"]
474 }
475 },
476 "required": ["image"],
477 "additionalProperties": False
478}
479
480image_update_schema = {
481 "title":"image update information schema",
482 "$schema": "http://json-schema.org/draft-04/schema#",
483 "type":"object",
484 "properties":{
485 "image":{
486 "type":"object",
487 "properties":{
488 "path":{"oneOf": [path_schema, http_schema]},
489 "description":description_schema,
490 "name":name_schema,
491 "metadata":metadata_schema,
492 "public": yes_no_schema
493 },
494 "minProperties": 1,
495 "additionalProperties": False
496 }
497 },
498 "required": ["image"],
499 "additionalProperties": False
500}
501
502networks_schema={
503 "type":"array",
504 "items":{
505 "type":"object",
506 "properties":{
507 "name":name_schema,
508 "bandwidth":bandwidth_schema,
509 "vpci":pci_schema,
510 "uuid":id_schema,
511 "mac_address": mac_schema,
512 "model": {"type":"string", "enum":["virtio","e1000","ne2k_pci","pcnet","rtl8139"]},
513 "type": {"type":"string", "enum":["virtual","PF","VF","VFnotShared"]}
514 },
515 "additionalProperties": False,
516 "required": ["uuid"]
517 }
518}
519
520server_new_schema = {
521 "title":"server creation information schema",
522 "$schema": "http://json-schema.org/draft-04/schema#",
523 "type":"object",
524 "properties":{
525 "server":{
526 "type":"object",
527 "properties":{
528 "id":id_schema,
529 "name":name_schema,
530 "description":description_schema,
531 "start":{"type":"string", "enum":["yes","no","paused"]},
532 "hostId":id_schema,
533 "flavorRef":id_schema,
534 "imageRef":id_schema,
535 "extended": extended_schema,
536 "networks":networks_schema
537 },
538 "required": ["name","flavorRef","imageRef"]
539 }
540 },
541 "required": ["server"],
542 "additionalProperties": False
543}
544
545server_action_schema = {
546 "title":"server action information schema",
547 "$schema": "http://json-schema.org/draft-04/schema#",
548 "type":"object",
549 "properties":{
550 "start":{"oneOf":[{"type": "null"}, {"type":"string", "enum":["rebuild","null"] }]},
551 "pause":{"type": "null"},
552 "resume":{"type": "null"},
553 "shutoff":{"type": "null"},
554 "shutdown":{"type": "null"},
555 "forceOff":{"type": "null"},
556 "terminate":{"type": "null"},
557 "createImage":{
558 "type":"object",
559 "properties":{
560 "path":path_schema,
561 "description":description_schema,
562 "name":name_schema,
563 "metadata":metadata_schema,
564 "imageRef": id_schema,
565 "disk": {"oneOf":[{"type": "null"}, {"type":"string"}] },
566 },
567 "required": ["name"]
568 },
569 "rebuild":{"type": ["object","null"]},
570 "reboot":{
571 "type": ["object","null"],
572# "properties": {
573# "type":{"type":"string", "enum":["SOFT"] }
574# },
575# "minProperties": 1,
576# "maxProperties": 1,
577# "additionalProperties": False
578 }
579 },
580 "minProperties": 1,
581 "maxProperties": 1,
582 "additionalProperties": False
583}
584
585network_new_schema = {
tiernoa290d8f2017-05-03 17:42:52 +0200586 "title": "network creation information schema",
tiernof7aa8c42016-09-06 16:43:04 +0200587 "$schema": "http://json-schema.org/draft-04/schema#",
tiernoa290d8f2017-05-03 17:42:52 +0200588 "type": "object",
589 "properties": {
590 "network": {
591 "type": "object",
tiernof7aa8c42016-09-06 16:43:04 +0200592 "properties":{
tiernoa290d8f2017-05-03 17:42:52 +0200593 "id": id_schema,
594 "name": name_schema,
595 "type": {"type":"string", "enum": ["bridge_man", "bridge_data", "data", "ptp"]},
596 "shared": {"type": "boolean"},
597 "tenant_id": id_schema,
598 "admin_state_up": {"type": "boolean"},
599 "provider:vlan": vlan_schema,
600 "provider:physical": net_bind_schema,
601 "region": nameshort_schema,
602 "cidr": cidr_schema,
603 "enable_dhcp": {"type": "boolean"},
tiernof7aa8c42016-09-06 16:43:04 +0200604 "dhcp_first_ip": ip_schema,
605 "dhcp_last_ip": ip_schema,
tiernoa290d8f2017-05-03 17:42:52 +0200606 "bind_net": name_schema, # can be name, or uuid
607 "bind_type": {"oneOf": [{"type": "null"}, {"type": "string", "pattern": "^vlan:[0-9]{1,4}$"}]}
tiernof7aa8c42016-09-06 16:43:04 +0200608 },
609 "required": ["name"]
610 }
611 },
612 "required": ["network"],
613 "additionalProperties": False
614}
mirabal9e194592017-02-17 11:03:25 +0100615
tiernof7aa8c42016-09-06 16:43:04 +0200616network_update_schema = {
617 "title":"network update information schema",
618 "$schema": "http://json-schema.org/draft-04/schema#",
619 "type":"object",
620 "properties":{
621 "network":{
622 "type":"object",
623 "properties":{
624 "name":name_schema,
625 "type":{"type":"string", "enum":["bridge_man","bridge_data","data", "ptp"]},
626 "shared":{"type":"boolean"},
627 "tenant_id":id_schema,
628 "admin_state_up":{"type":"boolean"},
629 "provider:vlan":vlan_schema,
630 "provider:physical":net_bind_schema,
631 "cidr":cidr_schema,
632 "enable_dhcp": {"type":"boolean"},
Mirabale9317ff2017-01-18 16:10:58 +0000633 # "dhcp_first_ip": ip_schema,
634 # "dhcp_last_ip": ip_schema,
tiernof7aa8c42016-09-06 16:43:04 +0200635 "bind_net":name_schema, #can be name, or uuid
636 "bind_type":{"oneOf":[{"type":"null"},{"type":"string", "pattern":"^vlan:[0-9]{1,4}$"}]}
637 },
638 "minProperties": 1,
639 "additionalProperties": False
640 }
641 },
642 "required": ["network"],
643 "additionalProperties": False
644}
645
646
647port_new_schema = {
648 "title":"port creation information schema",
649 "$schema": "http://json-schema.org/draft-04/schema#",
650 "type":"object",
651 "properties":{
652 "port":{
653 "type":"object",
654 "properties":{
655 "id":id_schema,
656 "name":nameshort_schema,
657 "network_id":{"oneOf":[{"type": "null"}, id_schema ]},
658 "tenant_id":id_schema,
659 "mac_address": {"oneOf":[{"type": "null"}, mac_schema] },
660 "admin_state_up":{"type":"boolean"},
661 "bandwidth":bandwidth_schema,
662 "binding:switch_port":nameshort_schema,
663 "binding:vlan": {"oneOf":[{"type": "null"}, vlan_schema ]}
664 },
665 "required": ["name"]
666 }
667 },
668 "required": ["port"],
669 "additionalProperties": False
670}
671
672port_update_schema = {
673 "title":"port update information schema",
674 "$schema": "http://json-schema.org/draft-04/schema#",
675 "type":"object",
676 "properties":{
677 "port":{
678 "type":"object",
679 "properties":{
680 "name":nameshort_schema,
681 "network_id":{"anyOf":[{"type":"null"}, id_schema ] }
682 },
683 "minProperties": 1,
684 "additionalProperties": False
685 }
686 },
687 "required": ["port"],
688 "additionalProperties": False
689}
690
691localinfo_schema = {
692 "title":"localinfo information schema",
693 "$schema": "http://json-schema.org/draft-04/schema#",
694 "type":"object",
695 "properties":{
696 "files":{ "type": "object"},
697 "inc_files":{ "type": "object"},
698 "server_files":{ "type": "object"}
699 },
700 "required": ["files"]
701}
702
703hostinfo_schema = {
704 "title":"host information schema",
705 "$schema": "http://json-schema.org/draft-04/schema#",
706 "type":"object",
707 "properties":{
708 "iface_names":{
709 "type":"object",
710 "patternProperties":{
711 ".":{ "type": "string"}
712 },
713 "minProperties": 1
714 }
715 },
716 "required": ["iface_names"]
717}
mirabal9e194592017-02-17 11:03:25 +0100718
719openflow_controller_schema = {
720 "title": "network creation information schema",
721 "$schema": "http://json-schema.org/draft-04/schema#",
722 "type": "object",
723 "properties": {
724 "ofc": {
725 "type": "object",
726 "properties": {
727 "name": name_schema,
728 "dpid": nameshort_schema,
729 "ip": nameshort_schema,
730 "port": port_schema,
731 "type": nameshort_schema,
732 "version": nametiny_schema,
733 "user": nameshort_schema,
734 "password": nameshort_schema
735 },
736 "required": ["dpid", "type", "ip", "port", "name"]
737 }
738 },
739 "required": ["ofc"],
740 "additionalProperties": False
mirabal6045a9d2017-03-06 11:36:55 +0100741}
742
743of_port_new_schema = {
744 "title": "OF port mapping",
745 "type": "object",
746 "properties": {
747 "ofc_id": id_schema,
748 "region": nameshort_schema,
749 "compute_node": nameshort_schema,
750 "pci": pci_schema,
751 "switch_dpid": nameshort_schema,
752 "switch_port": nameshort_schema,
753 "switch_mac": mac_schema
754 },
755 "required": ["region", "compute_node", "pci", "switch_dpid"]
756}
757
758of_port_map_new_schema = {
759 "title": "OF port mapping",
760 "$schema": "http://json-schema.org/draft-04/schema#",
761 "type": "object",
762 "properties": {
763 "of_port_mapings": {"type": "array", "items": of_port_new_schema, "minLenght":1},
764 },
765 "required": ["of_port_mapings"],
766 "additionalProperties": False
767
garciadeblas1dd7eb22017-06-01 11:40:13 +0200768}