2018-03-12 10:57:13 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Copyright (C) 2018 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/>.
|
|
|
|
|
|
|
|
|
|
|
|
TRACENG_CREATE_SCHEMA = {
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"description": "Request validation to create a new TraceNG instance",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"name": {
|
|
|
|
"description": "TraceNG VM name",
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1,
|
|
|
|
},
|
|
|
|
"node_id": {
|
|
|
|
"description": "Node UUID",
|
|
|
|
"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}$"}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"console": {
|
|
|
|
"description": "Console TCP port",
|
|
|
|
"minimum": 1,
|
|
|
|
"maximum": 65535,
|
|
|
|
"type": ["integer", "null"]
|
|
|
|
},
|
|
|
|
"console_type": {
|
|
|
|
"description": "Console type",
|
2018-03-27 09:58:49 +00:00
|
|
|
"enum": ["none"]
|
2018-03-12 10:57:13 +00:00
|
|
|
},
|
2018-03-27 09:58:49 +00:00
|
|
|
"ip_address": {
|
|
|
|
"description": "Source IP address for tracing",
|
|
|
|
"type": ["string"]
|
2018-04-16 07:03:22 +00:00
|
|
|
},
|
|
|
|
"default_destination": {
|
|
|
|
"description": "Default destination IP address or hostname for tracing",
|
|
|
|
"type": ["string"]
|
2018-03-27 09:58:49 +00:00
|
|
|
}
|
2018-03-12 10:57:13 +00:00
|
|
|
},
|
|
|
|
"additionalProperties": False,
|
|
|
|
"required": ["name"]
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACENG_UPDATE_SCHEMA = {
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"description": "Request validation to update a TraceNG instance",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"name": {
|
|
|
|
"description": "TraceNG VM name",
|
|
|
|
"type": ["string", "null"],
|
|
|
|
"minLength": 1,
|
|
|
|
},
|
|
|
|
"console": {
|
|
|
|
"description": "Console TCP port",
|
|
|
|
"minimum": 1,
|
|
|
|
"maximum": 65535,
|
|
|
|
"type": ["integer", "null"]
|
|
|
|
},
|
|
|
|
"console_type": {
|
|
|
|
"description": "Console type",
|
2018-03-27 09:58:49 +00:00
|
|
|
"enum": ["none"]
|
2018-03-12 10:57:13 +00:00
|
|
|
},
|
2018-03-27 09:58:49 +00:00
|
|
|
"ip_address": {
|
|
|
|
"description": "Source IP address for tracing",
|
|
|
|
"type": ["string"]
|
2018-04-16 07:03:22 +00:00
|
|
|
},
|
|
|
|
"default_destination": {
|
|
|
|
"description": "Default destination IP address or hostname for tracing",
|
|
|
|
"type": ["string"]
|
2018-03-27 09:58:49 +00:00
|
|
|
}
|
2018-03-12 10:57:13 +00:00
|
|
|
},
|
|
|
|
"additionalProperties": False,
|
|
|
|
}
|
|
|
|
|
2018-03-27 09:58:49 +00:00
|
|
|
TRACENG_START_SCHEMA = {
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"description": "Request validation to start a TraceNG instance",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"destination": {
|
|
|
|
"description": "Host or IP address to trace",
|
|
|
|
"type": ["string"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-03-12 10:57:13 +00:00
|
|
|
TRACENG_OBJECT_SCHEMA = {
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
"description": "TraceNG instance",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"name": {
|
|
|
|
"description": "TraceNG VM name",
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1,
|
|
|
|
},
|
|
|
|
"node_id": {
|
|
|
|
"description": "Node 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}$"
|
|
|
|
},
|
|
|
|
"node_directory": {
|
|
|
|
"description": "Path to the VM working directory",
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"status": {
|
|
|
|
"description": "VM status",
|
|
|
|
"enum": ["started", "stopped", "suspended"]
|
|
|
|
},
|
|
|
|
"console": {
|
|
|
|
"description": "Console TCP port",
|
|
|
|
"minimum": 1,
|
|
|
|
"maximum": 65535,
|
2018-03-27 09:58:49 +00:00
|
|
|
"type": ["integer", "null"]
|
2018-03-12 10:57:13 +00:00
|
|
|
},
|
|
|
|
"console_type": {
|
|
|
|
"description": "Console type",
|
2018-03-27 09:58:49 +00:00
|
|
|
"enum": ["none"]
|
2018-03-12 10:57:13 +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}$"
|
|
|
|
},
|
|
|
|
"command_line": {
|
|
|
|
"description": "Last command line used by GNS3 to start TraceNG",
|
|
|
|
"type": "string"
|
2018-03-27 09:58:49 +00:00
|
|
|
},
|
|
|
|
"ip_address": {
|
|
|
|
"description": "Source IP address for tracing",
|
|
|
|
"type": ["string"]
|
2018-04-16 07:03:22 +00:00
|
|
|
},
|
|
|
|
"default_destination": {
|
|
|
|
"description": "Default destination IP address or hostname for tracing",
|
|
|
|
"type": ["string"]
|
2018-03-12 10:57:13 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"additionalProperties": False,
|
2018-04-16 07:03:22 +00:00
|
|
|
"required": ["name", "node_id", "status", "console", "console_type", "project_id", "command_line", "ip_address", "default_destination"]
|
2018-03-12 10:57:13 +00:00
|
|
|
}
|