mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-17 17:24:51 +02:00
50 lines
1.7 KiB
Python
50 lines
1.7 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
#
|
||
|
# Copyright (C) 2016 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/>.
|
||
|
|
||
|
from ....web.route import Route
|
||
|
from ....schemas.vm import VM_OBJECT_SCHEMA
|
||
|
from ....controller.project import Project
|
||
|
from ....controller import Controller
|
||
|
|
||
|
|
||
|
class VMHandler:
|
||
|
"""
|
||
|
API entry point for VM
|
||
|
"""
|
||
|
|
||
|
@classmethod
|
||
|
@Route.post(
|
||
|
r"/projects/{project_id}/vms",
|
||
|
parameters={
|
||
|
"project_id": "UUID for the project"
|
||
|
},
|
||
|
status_codes={
|
||
|
201: "Instance created",
|
||
|
400: "Invalid request"
|
||
|
},
|
||
|
description="Create a new VM instance",
|
||
|
input=VM_OBJECT_SCHEMA,
|
||
|
output=VM_OBJECT_SCHEMA)
|
||
|
def create(request, response):
|
||
|
|
||
|
controller = Controller.instance()
|
||
|
hypervisor = controller.getHypervisor(request.json.pop("hypervisor_id"))
|
||
|
project = controller.getProject(request.match_info["project_id"])
|
||
|
vm = yield from project.addVM(hypervisor, request.json.pop("vm_id", None), **request.json)
|
||
|
response.set_status(201)
|
||
|
response.json(vm)
|