v1.5.0-gamma
This commit is contained in:
@@ -5,12 +5,34 @@ type ItemK8CI struct {
|
||||
// Created time
|
||||
CreatedTime uint64 `json:"createdTime"`
|
||||
|
||||
// Main information about K8CI
|
||||
RecordK8CI
|
||||
// Description
|
||||
Description string `json:"desc"`
|
||||
|
||||
// ID
|
||||
ID uint64 `json:"id"`
|
||||
|
||||
// LB image ID
|
||||
LBImageID uint64 `json:"lbImageId"`
|
||||
|
||||
// Name
|
||||
Name string `json:"name"`
|
||||
|
||||
// Network plugins
|
||||
NetworkPlugins []string `json:"networkPlugins"`
|
||||
|
||||
// Status
|
||||
Status string `json:"status"`
|
||||
|
||||
// Version
|
||||
Version string `json:"version"`
|
||||
}
|
||||
|
||||
// List of K8CI
|
||||
type ListK8CI []ItemK8CI
|
||||
type ListK8CI struct {
|
||||
Data []ItemK8CI `json:"data"`
|
||||
|
||||
EntryCount uint64 `json:"entryCount"`
|
||||
}
|
||||
|
||||
// Main information about K8CI
|
||||
type RecordK8CI struct {
|
||||
|
||||
Reference in New Issue
Block a user