2014-05-06 16:06:10 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2015-01-14 00:05:26 +00:00
|
|
|
# Copyright (C) 2015 GNS3 Technologies Inc.
|
2014-05-06 16:06:10 +00:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
|
|
VPCS_CREATE_SCHEMA = {
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"description": "Request validation to create a new VPCS instance",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"name": {
|
2015-02-04 20:48:29 +00:00
|
|
|
"description": "VPCS VM name",
|
2014-05-06 16:06:10 +00:00
|
|
|
"type": "string",
|
|
|
|
"minLength": 1,
|
|
|
|
},
|
2016-05-11 17:35:36 +00:00
|
|
|
"node_id": {
|
2016-05-13 01:07:25 +00:00
|
|
|
"description": "Node UUID",
|
2015-02-09 01:10:04 +00:00
|
|
|
"oneOf": [
|
|
|
|
{"type": "string",
|
|
|
|
"minLength": 36,
|
|
|
|
"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}$"},
|
|
|
|
{"type": "integer"} # for legacy projects
|
|
|
|
]
|
2015-01-18 22:41:53 +00:00
|
|
|
},
|
2014-05-20 23:21:45 +00:00
|
|
|
"console": {
|
2016-05-13 01:07:25 +00:00
|
|
|
"description": "Console TCP port",
|
2014-05-20 23:21:45 +00:00
|
|
|
"minimum": 1,
|
|
|
|
"maximum": 65535,
|
2015-01-20 19:54:46 +00:00
|
|
|
"type": ["integer", "null"]
|
2014-05-20 23:21:45 +00:00
|
|
|
},
|
2016-03-11 14:06:14 +00:00
|
|
|
"console_type": {
|
2016-05-13 01:07:25 +00:00
|
|
|
"description": "Console type",
|
2018-03-24 11:11:21 +00:00
|
|
|
"enum": ["telnet", "none"]
|
2016-03-11 14:06:14 +00:00
|
|
|
},
|
2015-01-21 15:43:34 +00:00
|
|
|
"startup_script": {
|
|
|
|
"description": "Content of the VPCS startup script",
|
|
|
|
"type": ["string", "null"]
|
|
|
|
},
|
2014-05-06 16:06:10 +00:00
|
|
|
},
|
2014-05-21 00:06:28 +00:00
|
|
|
"additionalProperties": False,
|
2015-02-05 00:13:35 +00:00
|
|
|
"required": ["name"]
|
2014-05-06 16:06:10 +00:00
|
|
|
}
|
|
|
|
|
2015-01-21 20:46:16 +00:00
|
|
|
VPCS_UPDATE_SCHEMA = {
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"description": "Request validation to update a VPCS instance",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"name": {
|
2015-02-04 20:48:29 +00:00
|
|
|
"description": "VPCS VM name",
|
2015-01-21 20:46:16 +00:00
|
|
|
"type": ["string", "null"],
|
|
|
|
"minLength": 1,
|
|
|
|
},
|
|
|
|
"console": {
|
2016-05-13 01:07:25 +00:00
|
|
|
"description": "Console TCP port",
|
2015-01-21 20:46:16 +00:00
|
|
|
"minimum": 1,
|
|
|
|
"maximum": 65535,
|
|
|
|
"type": ["integer", "null"]
|
|
|
|
},
|
2016-03-11 14:06:14 +00:00
|
|
|
"console_type": {
|
2016-05-13 01:07:25 +00:00
|
|
|
"description": "Console type",
|
2018-03-24 11:11:21 +00:00
|
|
|
"enum": ["telnet", "none"]
|
2016-03-11 14:06:14 +00:00
|
|
|
},
|
2015-01-21 20:46:16 +00:00
|
|
|
},
|
|
|
|
"additionalProperties": False,
|
|
|
|
}
|
2014-05-06 16:06:10 +00:00
|
|
|
|
2015-01-14 00:05:26 +00:00
|
|
|
VPCS_OBJECT_SCHEMA = {
|
2014-05-06 16:06:10 +00:00
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
2015-01-14 00:05:26 +00:00
|
|
|
"description": "VPCS instance",
|
2014-05-06 16:06:10 +00:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2015-01-14 00:05:26 +00:00
|
|
|
"name": {
|
2015-02-04 20:48:29 +00:00
|
|
|
"description": "VPCS VM name",
|
2015-01-14 00:05:26 +00:00
|
|
|
"type": "string",
|
|
|
|
"minLength": 1,
|
|
|
|
},
|
2016-05-11 17:35:36 +00:00
|
|
|
"node_id": {
|
2016-05-13 01:07:25 +00:00
|
|
|
"description": "Node UUID",
|
2015-01-20 01:30:57 +00:00
|
|
|
"type": "string",
|
|
|
|
"minLength": 36,
|
|
|
|
"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}$"
|
2014-05-06 16:06:10 +00:00
|
|
|
},
|
2016-05-12 08:39:50 +00:00
|
|
|
"node_directory": {
|
2017-03-06 13:25:53 +00:00
|
|
|
"description": "Path to the VM working directory",
|
2015-06-25 09:17:32 +00:00
|
|
|
"type": "string"
|
|
|
|
},
|
2015-03-04 15:01:56 +00:00
|
|
|
"status": {
|
|
|
|
"description": "VM status",
|
2016-05-17 17:51:06 +00:00
|
|
|
"enum": ["started", "stopped", "suspended"]
|
2015-03-04 15:01:56 +00:00
|
|
|
},
|
2015-01-14 00:05:26 +00:00
|
|
|
"console": {
|
2016-05-13 01:07:25 +00:00
|
|
|
"description": "Console TCP port",
|
2015-01-14 00:05:26 +00:00
|
|
|
"minimum": 1,
|
|
|
|
"maximum": 65535,
|
2018-03-24 11:11:21 +00:00
|
|
|
"type": ["integer", "null"]
|
2014-05-19 01:12:46 +00:00
|
|
|
},
|
2016-03-11 14:06:14 +00:00
|
|
|
"console_type": {
|
2016-05-13 01:07:25 +00:00
|
|
|
"description": "Console type",
|
2018-03-24 11:11:21 +00:00
|
|
|
"enum": ["telnet", "none"]
|
2016-03-11 14:06:14 +00:00
|
|
|
},
|
2015-02-04 01:40:13 +00:00
|
|
|
"project_id": {
|
2015-01-20 11:46:15 +00:00
|
|
|
"description": "Project UUID",
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 36,
|
|
|
|
"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}$"
|
2015-01-20 18:56:18 +00:00
|
|
|
},
|
2016-02-02 17:25:17 +00:00
|
|
|
"command_line": {
|
2017-07-11 13:03:24 +00:00
|
|
|
"description": "Last command line used by GNS3 to start VPCS",
|
2016-02-02 17:25:17 +00:00
|
|
|
"type": "string"
|
|
|
|
}
|
2014-05-06 16:06:10 +00:00
|
|
|
},
|
2014-05-21 00:06:28 +00:00
|
|
|
"additionalProperties": False,
|
2017-02-02 18:13:47 +00:00
|
|
|
"required": ["name", "node_id", "status", "console", "console_type", "project_id", "command_line"]
|
2014-05-06 16:06:10 +00:00
|
|
|
}
|