This commit is contained in:
2024-12-27 11:35:22 +03:00
parent 88eb9e8898
commit e04dc42d2b
37 changed files with 516 additions and 274 deletions

View File

@@ -208,6 +208,9 @@ type RecordVNFDev struct {
// List of VINS IDs
VINS []uint64 `json:"vins"`
// VNC password
VNCPassword string `json:"vncPasswd"`
}
// VNF config
@@ -793,17 +796,8 @@ type ListNATRules struct {
// Main information about reservation
type ItemReservation struct {
// Client type
ClientType string `json:"clientType"`
// Description
Description string `json:"desc"`
// Domain name
DomainName string `json:"domainname"`
// Hostname
Hostname string `json:"hostname"`
// Account ID
AccountID uint64 `json:"account_id"`
// IP
IP string `json:"ip"`

View File

@@ -25,10 +25,6 @@ type StaticRouteAddRequest struct {
// Next hop host, IP address from ViNS ID free IP pool
// Required: true
Gateway string `url:"gateway" json:"gateway" validate:"required"`
// List of Compute IDs which have access to this route
// Required: false
ComputeIds []uint64 `url:"computeIds,omitempty" json:"computeIds,omitempty"`
}
// StaticRouteAdd adds new static route to ViNS