mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-17 09:14:52 +02:00
103 lines
3.1 KiB
Python
103 lines
3.1 KiB
Python
#
|
|
# Copyright (C) 2020 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 pydantic import BaseModel, Field
|
|
from typing import Optional, List
|
|
from enum import Enum
|
|
from uuid import UUID
|
|
|
|
from .nodes import NodeStatus, CustomAdapter
|
|
|
|
|
|
class VMwareConsoleType(str, Enum):
|
|
"""
|
|
Supported console types.
|
|
"""
|
|
|
|
telnet = "telnet"
|
|
none = "none"
|
|
|
|
|
|
class VMwareOnCloseAction(str, Enum):
|
|
"""
|
|
Supported actions when closing VMware VM.
|
|
"""
|
|
|
|
power_off = "power_off"
|
|
shutdown_signal = "shutdown_signal"
|
|
save_vm_state = "save_vm_state"
|
|
|
|
|
|
class VMwareAdapterType(str, Enum):
|
|
"""
|
|
Supported VMware VM adapter types.
|
|
"""
|
|
|
|
default = "default"
|
|
e1000 = "e1000"
|
|
e1000e = "e1000e"
|
|
flexible = "flexible"
|
|
vlance = "vlance"
|
|
vmxnet = "vmxnet"
|
|
vmxnet2 = "vmxnet2"
|
|
vmxnet3 = "vmxnet3"
|
|
|
|
|
|
class VMwareBase(BaseModel):
|
|
"""
|
|
Common VMware node properties.
|
|
"""
|
|
|
|
name: str
|
|
vmx_path: str = Field(..., description="Path to the vmx file")
|
|
linked_clone: bool = Field(..., description="Whether the VM is a linked clone or not")
|
|
node_id: Optional[UUID]
|
|
usage: Optional[str] = Field(None, description="How to use the node")
|
|
console: Optional[int] = Field(None, gt=0, le=65535, description="Console TCP port")
|
|
console_type: Optional[VMwareConsoleType] = Field(None, description="Console type")
|
|
headless: Optional[bool] = Field(None, description="Headless mode")
|
|
on_close: Optional[VMwareOnCloseAction] = Field(None, description="Action to execute on the VM is closed")
|
|
# 10 adapters is the maximum supported by VMware VMs.
|
|
adapters: Optional[int] = Field(None, ge=0, le=10, description="Number of adapters")
|
|
adapter_type: Optional[VMwareAdapterType] = Field(None, description="VMware adapter type")
|
|
use_any_adapter: Optional[bool] = Field(None, description="Allow GNS3 to use any VMware adapter")
|
|
custom_adapters: Optional[List[CustomAdapter]] = Field(None, description="Custom adpaters")
|
|
|
|
|
|
class VMwareCreate(VMwareBase):
|
|
"""
|
|
Properties to create a VMware node.
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
class VMwareUpdate(VMwareBase):
|
|
"""
|
|
Properties to update a VMware node.
|
|
"""
|
|
|
|
name: Optional[str]
|
|
vmx_path: Optional[str]
|
|
linked_clone: Optional[bool]
|
|
|
|
|
|
class VMware(VMwareBase):
|
|
|
|
project_id: UUID = Field(..., description="Project ID")
|
|
node_directory: Optional[str] = Field(None, description="Path to the node working directory (read only)")
|
|
status: NodeStatus = Field(..., description="Container status (read only)")
|