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

184 lines
5.8 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 device name",
"type": "string",
"minLength": 1,
},
"vpcs_id": {
"description": "VPCS device instance ID (for project created before GNS3 1.3)",
"type": "integer"
},
"uuid": {
"description": "VPCS device 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 11:46:15 +00:00
"project_uuid": {
"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}$"
},
"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-01-20 11:46:15 +00:00
"required": ["name", "project_uuid"]
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 device name",
"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-16 16:09:45 +00:00
VPCS_NIO_SCHEMA = {
2014-05-06 16:06:10 +00:00
"$schema": "http://json-schema.org/draft-04/schema#",
2014-05-19 01:12:46 +00:00
"description": "Request validation to add a NIO for a VPCS instance",
2014-05-06 16:06:10 +00:00
"type": "object",
"definitions": {
2014-05-28 12:26:20 +00:00
"UDP": {
"description": "UDP Network Input/Output",
"properties": {
"type": {
"enum": ["nio_udp"]
},
"lport": {
"description": "Local port",
"type": "integer",
"minimum": 1,
"maximum": 65535
},
"rhost": {
"description": "Remote host",
"type": "string",
"minLength": 1
},
"rport": {
"description": "Remote port",
"type": "integer",
"minimum": 1,
"maximum": 65535
}
2014-05-06 16:06:10 +00:00
},
2014-05-28 12:26:20 +00:00
"required": ["type", "lport", "rhost", "rport"],
"additionalProperties": False
},
"TAP": {
"description": "TAP Network Input/Output",
"properties": {
"type": {
"enum": ["nio_tap"]
},
"tap_device": {
"description": "TAP device name e.g. tap0",
"type": "string",
"minLength": 1
},
2014-05-06 16:06:10 +00:00
},
2014-05-28 12:26:20 +00:00
"required": ["type", "tap_device"],
"additionalProperties": False
},
},
2015-01-16 15:20:10 +00:00
"oneOf": [
{"$ref": "#/definitions/UDP"},
{"$ref": "#/definitions/TAP"},
],
"additionalProperties": True,
2015-01-23 23:38:46 +00:00
"required": ["type"]
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 device name",
"type": "string",
"minLength": 1,
},
"uuid": {
"description": "VPCS device 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
},
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
},
2015-01-20 11:46:15 +00:00
"project_uuid": {
"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
},
"script_file": {
"description": "VPCS startup script",
"type": ["string", "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-01-20 11:46:15 +00:00
"required": ["name", "uuid", "console", "project_uuid"]
2014-05-06 16:06:10 +00:00
}