This commit is contained in:
asteam
2025-07-15 17:39:18 +03:00
parent 1f8637400f
commit 7dacf35cd6
163 changed files with 4322 additions and 504 deletions

View File

@@ -153,6 +153,9 @@ type RecordLB struct {
// Meta
Meta []interface{} `json:"_meta"`
//Account ID
AccountID uint64 `json:"accountId"`
// Access Control List
ACL interface{} `json:"acl"`
@@ -220,7 +223,7 @@ type RecordLB struct {
Status string `json:"status"`
// Sysctl Params
SysctlParams interface{} `json:"sysctlParams"`
SysctlParams map[string]string `json:"sysctlParams"`
// Tech status
TechStatus string `json:"techStatus"`
@@ -230,6 +233,9 @@ type RecordLB struct {
// VINS ID
VINSID uint64 `json:"vinsId"`
// Zone ID
ZoneID uint64 `json:"zoneId"`
}
// Detailed information about load balancer in List
@@ -316,7 +322,7 @@ type ItemLBList struct {
Status string `json:"status"`
// Sysctl Params
SysctlParams interface{} `json:"sysctlParams"`
SysctlParams map[string]string `json:"sysctlParams"`
// Tech status
TechStatus string `json:"techStatus"`
@@ -332,4 +338,7 @@ type ItemLBList struct {
// VINS ID
VINSID uint64 `json:"vinsId"`
// Zone ID
ZoneID uint64 `json:"zoneId"`
}