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

235 lines
7.1 KiB
Python
Raw Normal View History

2015-09-08 08:29:30 +00:00
# -*- coding: utf-8 -*-
#
# Copyright (C) 2015 GNS3 Technologies Inc.
#
# 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/>.
DOCKER_CREATE_SCHEMA = {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Request validation to create a new Docker container",
"type": "object",
"properties": {
"vm_id": {
"description": "Docker VM instance identifier",
2015-10-14 16:10:05 +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}$"
},
2015-09-08 08:29:30 +00:00
"name": {
"description": "Docker container name",
"type": "string",
"minLength": 1,
},
2015-10-14 16:10:05 +00:00
"console": {
"description": "console TCP port",
"minimum": 1,
"maximum": 65535,
"type": ["integer", "null"]
},
"console_type": {
"description": "console type",
"enum": ["telnet", "vnc"]
},
"console_resolution": {
"description": "console resolution for VNC",
"type": ["string", "null"],
"pattern": "^[0-9]+x[0-9]+$"
},
"aux": {
"description": "auxilary TCP port",
"minimum": 1,
"maximum": 65535,
"type": ["integer", "null"]
},
2015-10-14 16:10:05 +00:00
"start_command": {
"description": "Docker CMD entry",
2015-10-14 16:10:05 +00:00
"type": ["string", "null"],
"minLength": 0,
},
2015-10-14 16:10:05 +00:00
"image": {
2015-09-08 08:29:30 +00:00
"description": "Docker image name",
"type": "string",
"minLength": 1,
},
"adapters": {
"description": "number of adapters",
2015-10-14 16:10:05 +00:00
"type": ["integer", "null"],
2015-09-08 08:29:30 +00:00
"minimum": 0,
2015-10-14 16:10:05 +00:00
"maximum": 99,
},
2015-10-14 16:10:05 +00:00
"environment": {
"description": "Docker environment",
"type": ["string", "null"],
"minLength": 0,
}
2015-09-08 08:29:30 +00:00
},
"additionalProperties": False,
}
2015-10-14 16:10:05 +00:00
2015-09-08 08:29:30 +00:00
DOCKER_UPDATE_SCHEMA = {
"$schema": "http://json-schema.org/draft-04/schema#",
2015-10-14 16:10:05 +00:00
"description": "Request validation to create a new Docker container",
2015-09-08 08:29:30 +00:00
"type": "object",
"properties": {
"name": {
"description": "Docker container name",
"type": "string",
"minLength": 1,
},
2015-10-14 16:10:05 +00:00
"console": {
"description": "console TCP port",
"minimum": 1,
"maximum": 65535,
"type": ["integer", "null"]
2015-09-08 08:29:30 +00:00
},
"console_resolution": {
"description": "console resolution for VNC",
"type": ["string", "null"],
"pattern": "^[0-9]+x[0-9]+$"
},
"console_type": {
"description": "console type",
"enum": ["telnet", "vnc"]
},
"aux": {
"description": "auxilary TCP port",
"minimum": 1,
"maximum": 65535,
"type": ["integer", "null"]
},
2015-10-14 16:10:05 +00:00
"start_command": {
"description": "Docker CMD entry",
"type": ["string", "null"],
"minLength": 0,
},
"environment": {
"description": "Docker environment",
"type": ["string", "null"],
"minLength": 0,
},
"adapters": {
"description": "number of adapters",
"type": ["integer", "null"],
"minimum": 0,
"maximum": 99,
2015-10-14 16:10:05 +00:00
}
2015-09-08 08:29:30 +00:00
},
"additionalProperties": False,
}
DOCKER_OBJECT_SCHEMA = {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Docker instance",
"type": "object",
"properties": {
"name": {
"description": "Docker container name",
"type": "string",
"minLength": 1,
},
"vm_id": {
"description": "Docker container instance 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}$"
},
"aux": {
"description": "auxilary TCP port",
"minimum": 1,
"maximum": 65535,
"type": "integer"
},
2015-10-14 16:10:05 +00:00
"console": {
"description": "console TCP port",
"minimum": 1,
"maximum": 65535,
"type": "integer"
},
"console_resolution": {
"description": "console resolution for VNC",
"type": "string",
"pattern": "^[0-9]+x[0-9]+$"
2015-10-14 16:10:05 +00:00
},
"console_type": {
"description": "console type",
"enum": ["telnet", "vnc"]
},
2015-10-14 16:10:05 +00:00
"container_id": {
2015-09-08 08:29:30 +00:00
"description": "Docker container ID",
"type": "string",
2015-10-14 16:10:05 +00:00
"minLength": 12,
2015-09-08 08:29:30 +00:00
"maxLength": 64,
2015-10-14 16:10:05 +00:00
"pattern": "^[a-f0-9]+$"
2015-09-08 08:29:30 +00:00
},
"project_id": {
"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}$"
},
"image": {
"description": "Docker image name",
"type": "string",
"minLength": 1,
},
"adapters": {
"description": "number of adapters",
2015-10-14 16:10:05 +00:00
"type": ["integer", "null"],
2015-09-08 08:29:30 +00:00
"minimum": 0,
2015-10-14 16:10:05 +00:00
"maximum": 99,
2015-09-08 08:29:30 +00:00
},
2015-10-14 16:10:05 +00:00
"start_command": {
"description": "Docker CMD entry",
"type": ["string", "null"],
"minLength": 0,
},
"environment": {
"description": "Docker environment",
"type": ["string", "null"],
"minLength": 0,
2016-02-12 10:57:56 +00:00
},
"vm_directory": {
"decription": "Path to the VM working directory",
"type": "string"
2015-10-14 16:10:05 +00:00
}
2015-09-08 08:29:30 +00:00
},
"additionalProperties": False,
"required": ["vm_id", "project_id", "image", "container_id", "adapters", "aux", "console", "console_type", "console_resolution", "start_command", "environment", "vm_directory"]
2015-10-14 16:10:05 +00:00
}
DOCKER_LIST_IMAGES_SCHEMA = {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Docker list of images",
"type": "array",
"items": [
{
"type": "object",
"properties": {
"image": {
"description": "Docker image name",
"type": "string",
"minLength": 1
}
}
}
]
2015-09-08 08:29:30 +00:00
}