Merge pull request 'goctl generate types' (#98) from zhouqunjie/pcm-coordinator:master into master
Former-commit-id: 8ace4e771edc1594acc29a947d0095df5b187ae3
This commit is contained in:
commit
f27cafed58
|
@ -5266,8 +5266,14 @@ type ScheduleReq struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type ScheduleResp struct {
|
type ScheduleResp struct {
|
||||||
Success bool `json:"success"`
|
Results []*ScheduleResult `json:"results"`
|
||||||
ErrorMsg string `json:"errorMsg"`
|
}
|
||||||
|
|
||||||
|
type ScheduleResult struct {
|
||||||
|
ClusterId string `json:"clusterId"`
|
||||||
|
TaskId string `json:"taskId"`
|
||||||
|
Replica int32 `json:"replica"`
|
||||||
|
Msg string `json:"msg"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type AiOption struct {
|
type AiOption struct {
|
||||||
|
|
Loading…
Reference in New Issue