1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-13 20:08:55 +00:00
gns3-server/gns3server/schemas/hypervisor.py

90 lines
2.7 KiB
Python
Raw Normal View History

# -*- 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/>.
HYPERVISOR_CREATE_SCHEMA = {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Request validation to register a GNS3 hypervisor instance",
"type": "object",
"properties": {
"hypervisor_id": {
"description": "Server identifier",
"type": "string"
},
"protocol": {
"description": "Server protocol",
"enum": ["http", "https"]
},
"host": {
"description": "Server host",
"type": "string"
},
"port": {
"description": "Server port",
"type": "integer"
},
"user": {
"description": "User for auth",
"type": "string"
},
"password": {
"description": "Password for auth",
"type": "string"
}
},
"additionalProperties": False,
"required": ["hypervisor_id", "protocol", "host", "port"]
}
HYPERVISOR_OBJECT_SCHEMA = {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Request validation to a GNS3 hypervisor object instance",
"type": "object",
"properties": {
"hypervisor_id": {
"description": "Server identifier",
"type": "string"
},
"protocol": {
"description": "Server protocol",
"enum": ["http", "https"]
},
"host": {
"description": "Server host",
"type": "string"
},
"port": {
"description": "Server port",
"type": "integer"
},
"user": {
"description": "User for auth",
"type": "string"
},
"connected": {
"description": "True if controller is connected to the hypervisor",
"type": "boolean"
},
"version": {
"description": "Version of the GNS3 remote hypervisor",
"type": ["string", "null"]
}
},
"additionalProperties": False,
"required": ["hypervisor_id", "protocol", "host", "port"]
}