gns3-server/gns3server/schemas/vpcs.py

124 lines
4.0 KiB
Python
Raw Normal View History

2014-05-06 19:06:10 +03:00
# -*- coding: utf-8 -*-
#
2015-01-14 02:05:26 +02:00
# Copyright (C) 2015 GNS3 Technologies Inc.
2014-05-06 19:06:10 +03: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 19:06:10 +03:00
"type": "string",
"minLength": 1,
},
"vm_id": {
"description": "VPCS VM identifier",
2015-02-09 03:10:04 +02: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 21:54:46 +02:00
"type": ["integer", "null"]
},
2015-01-21 17:43:34 +02:00
"startup_script": {
"description": "Content of the VPCS startup script",
"type": ["string", "null"]
},
2014-05-06 19:06:10 +03:00
},
"additionalProperties": False,
2015-02-05 02:13:35 +02:00
"required": ["name"]
2014-05-06 19:06:10 +03:00
}
2015-01-21 22:46:16 +02: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 22:46:16 +02: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 19:06:10 +03:00
2015-01-14 02:05:26 +02:00
VPCS_OBJECT_SCHEMA = {
2014-05-06 19:06:10 +03:00
"$schema": "http://json-schema.org/draft-04/schema#",
2015-01-14 02:05:26 +02:00
"description": "VPCS instance",
2014-05-06 19:06:10 +03:00
"type": "object",
"properties": {
2015-01-14 02:05:26 +02:00
"name": {
"description": "VPCS VM name",
2015-01-14 02:05:26 +02: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 19:06:10 +03:00
},
"status": {
"description": "VM status",
"enum": ["started", "stopped"]
},
2015-01-14 02:05:26 +02:00
"console": {
"description": "console TCP port",
"minimum": 1,
"maximum": 65535,
"type": "integer"
2014-05-19 04:12:46 +03:00
},
"project_id": {
2015-01-20 13:46:15 +02: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 20:56:18 +02:00
},
2015-01-21 17:43:34 +02:00
"startup_script": {
"description": "Content of the VPCS startup script",
"type": ["string", "null"]
},
2015-02-27 14:36:11 +02:00
"startup_script_path": {
"description": "Path of the VPCS startup script relative to project directory",
"type": ["string", "null"]
},
2014-05-06 19:06:10 +03:00
},
"additionalProperties": False,
"required": ["name", "vm_id", "status", "console", "project_id", "startup_script_path"]
2014-05-06 19:06:10 +03:00
}