# # 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 . from pydantic import BaseModel, Field from typing import List, Optional from enum import Enum from uuid import UUID, uuid4 from .labels import Label class LinkNode(BaseModel): """ Link node data. """ node_id: UUID adapter_number: int port_number: int label: Optional[Label] = None class LinkType(str, Enum): """ Link type. """ ethernet = "ethernet" serial = "serial" class LinkStyle(BaseModel): color: Optional[str] = None width: Optional[int] = None type: Optional[int] = None class LinkBase(BaseModel): """ Link data. """ nodes: Optional[List[LinkNode]] = Field(None, min_items=0, max_items=2) suspend: Optional[bool] = None link_style: Optional[LinkStyle] = None filters: Optional[dict] = None class LinkCreate(LinkBase): link_id: UUID = Field(default_factory=uuid4) nodes: List[LinkNode] = Field(..., min_items=2, max_items=2) class LinkUpdate(LinkBase): pass class Link(LinkBase): link_id: UUID project_id: Optional[UUID] = None link_type: Optional[LinkType] = None capturing: Optional[bool] = Field( None, description="Read only property. True if a capture running on the link" ) capture_file_name: Optional[str] = Field( None, description="Read only property. The name of the capture file if a capture is running" ) capture_file_path: Optional[str] = Field( None, description="Read only property. The full path of the capture file if a capture is running" ) capture_compute_id: Optional[str] = Field( None, description="Read only property. The compute identifier where a capture is running" )