You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
512 B
32 lines
512 B
package k8ci
|
|
|
|
// Detailed information about K8CI
|
|
type ItemK8CI struct {
|
|
// Created time
|
|
CreatedTime uint64 `json:"createdTime"`
|
|
|
|
// Main information about K8CI
|
|
RecordK8CI
|
|
}
|
|
|
|
// List of K8CI
|
|
type ListK8CI []ItemK8CI
|
|
|
|
// Main information about K8CI
|
|
type RecordK8CI struct {
|
|
// Description
|
|
Description string `json:"desc"`
|
|
|
|
// ID
|
|
ID uint64 `json:"id"`
|
|
|
|
// Name
|
|
Name string `json:"name"`
|
|
|
|
// Network plugins
|
|
NetworkPlugins []string `json:"networkPlugins"`
|
|
|
|
// Version
|
|
Version string `json:"version"`
|
|
}
|