1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-24 09:18:08 +00:00

Add missing default values in Cloud schema.

This commit is contained in:
grossmj 2019-07-12 11:32:55 +02:00
parent 6626bf37a6
commit 7c07d0b4bd

View File

@ -23,7 +23,8 @@ from .port import PORT_OBJECT_SCHEMA
CLOUD_TEMPLATE_PROPERTIES = { CLOUD_TEMPLATE_PROPERTIES = {
"ports_mapping": { "ports_mapping": {
"type": "array", "type": "array",
"items": [PORT_OBJECT_SCHEMA] "items": [PORT_OBJECT_SCHEMA],
"default": []
}, },
"remote_console_host": { "remote_console_host": {
"description": "Remote console host or IP", "description": "Remote console host or IP",
@ -40,7 +41,8 @@ CLOUD_TEMPLATE_PROPERTIES = {
}, },
"remote_console_type": { "remote_console_type": {
"description": "Console type", "description": "Console type",
"enum": ["telnet", "vnc", "spice", "http", "https", "none"] "enum": ["telnet", "vnc", "spice", "http", "https", "none"],
"default": "none"
}, },
"remote_console_http_path": { "remote_console_http_path": {
"description": "Path of the remote web interface", "description": "Path of the remote web interface",