1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-10 18:08:55 +00:00
gns3-server/gns3server/schemas/vpcs.py

128 lines
4.1 KiB
Python
Raw Normal View History

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": {
"description": "VPCS VM name",
2014-05-06 16:06:10 +00:00
"type": "string",
"minLength": 1,
},
"vm_id": {
"description": "VPCS VM identifier",
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
]
},
"console": {
"description": "console TCP port",
"minimum": 1,
"maximum": 65535,
2015-01-20 19:54:46 +00:00
"type": ["integer", "null"]
},
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
},
"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": {
"description": "VPCS VM name",
2015-01-21 20:46:16 +00:00
"type": ["string", "null"],
"minLength": 1,
},
"console": {
"description": "console TCP port",
"minimum": 1,
"maximum": 65535,
"type": ["integer", "null"]
},
"startup_script": {
"description": "Content of the VPCS startup script",
"type": ["string", "null"]
},
},
"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": {
"description": "VPCS VM name",
2015-01-14 00:05:26 +00:00
"type": "string",
"minLength": 1,
},
"vm_id": {
"description": "VPCS VM 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}$"
2014-05-06 16:06:10 +00:00
},
"vm_directory": {
"decription": "Path to the VM working directory",
"type": "string"
},
"status": {
"description": "VM status",
"enum": ["started", "stopped"]
},
2015-01-14 00:05:26 +00:00
"console": {
"description": "console TCP port",
"minimum": 1,
"maximum": 65535,
"type": "integer"
2014-05-19 01:12:46 +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
},
2015-01-21 15:43:34 +00:00
"startup_script": {
"description": "Content of the VPCS startup script",
"type": ["string", "null"]
},
2015-02-27 12:36:11 +00:00
"startup_script_path": {
"description": "Path of the VPCS startup script relative to project directory",
"type": ["string", "null"]
},
2014-05-06 16:06:10 +00:00
},
"additionalProperties": False,
"required": ["name", "vm_id", "status", "console", "project_id", "startup_script_path"]
2014-05-06 16:06:10 +00:00
}