package request
|
|
type (
|
ClusterDevice struct {
|
Id int `json:"id"`
|
Roles []string `json:"role"`
|
}
|
|
Devices map[int]ClusterDevice
|
|
CreateCluster struct {
|
Name string `json:"name"`
|
Description string `json:"description"`
|
Devices Devices `json:"devices"`
|
}
|
|
GetClusterList struct {
|
Keyword string `json:"keyword" example:"test"` // 模糊查询字段
|
Status string `json:"status" example:"集群状态 1:全部; 2: 在线; 3: 离线"`
|
}
|
)
|