mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-18 01:34:50 +02:00
acc5c7ebfa
Do not use Path in schemas (causes issues with empty paths). Change how notifications are handled. Run tests with Python 3.9
49 lines
2.5 KiB
Python
49 lines
2.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# 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 .templates import Category, TemplateBase
|
|
from .vmware_nodes import (
|
|
VMwareConsoleType,
|
|
VMwareAdapterType,
|
|
VMwareOnCloseAction,
|
|
CustomAdapter
|
|
)
|
|
|
|
from pydantic import Field
|
|
from typing import Optional, List
|
|
|
|
|
|
class VMwareTemplate(TemplateBase):
|
|
|
|
category: Optional[Category] = "guest"
|
|
default_name_format: Optional[str] = "{name}-{0}"
|
|
symbol: Optional[str] = ":/symbols/vmware_guest.svg"
|
|
vmx_path: str = Field(..., description="Path to the vmx file")
|
|
linked_clone: Optional[bool] = Field(False, description="Whether the VM is a linked clone or not")
|
|
first_port_name: Optional[str] = Field("", description="Optional name of the first networking port example: eth0")
|
|
port_name_format: Optional[str] = Field("Ethernet{0}", description="Optional formatting of the networking port example: eth{0}")
|
|
port_segment_size: Optional[int] = Field(0, description="Optional port segment size. A port segment is a block of port. For example Ethernet0/0 Ethernet0/1 is the module 0 with a port segment size of 2")
|
|
adapters: Optional[int] = Field(1, ge=0, le=10, description="Number of adapters") # 10 is the maximum adapters support by VMware VMs
|
|
adapter_type: Optional[VMwareAdapterType] = Field("e1000", description="VMware adapter type")
|
|
use_any_adapter: Optional[bool] = Field(False, description="Allow GNS3 to use any VMware adapter")
|
|
headless: Optional[bool] = Field(False, description="Headless mode")
|
|
on_close: Optional[VMwareOnCloseAction] = Field("power_off", description="Action to execute on the VM is closed")
|
|
console_type: Optional[VMwareConsoleType] = Field("none", description="Console type")
|
|
console_auto_start: Optional[bool] = Field(False, description="Automatically start the console when the node has started")
|
|
custom_adapters: Optional[List[CustomAdapter]] = Field([], description="Custom adapters")
|