v1.6.0-zeta

This commit is contained in:
2023-09-25 19:11:33 +03:00
parent 3e55195831
commit 78a4152471
33 changed files with 1166 additions and 39 deletions

View File

@@ -411,8 +411,19 @@ type InfoVNF struct {
Type string `json:"type"`
}
// List of static routes
type ListStaticRoutes struct {
// Data
Data []ItemRoutes `json:"data"`
// Entry count
EntryCount uint64 `json:"entryCount"`
}
// List of Routes
type ListRoutes []ItemRoutes
// Detailed information about Routes
type ItemRoutes struct {
//Compute Id
ComputeIds []uint64 `json:"computeIds"`
@@ -424,7 +435,7 @@ type ItemRoutes struct {
Gateway string `json:"gateway"`
// GUID
GUID uint64 `json:"guid"`
GUID string `json:"guid"`
// ID
ID uint64 `json:"id"`