forked from JointCloud/pcm-coordinator
update types
This commit is contained in:
parent
e265ccfb8e
commit
360fb9c9d8
|
@ -163,6 +163,8 @@ type (
|
|||
|
||||
// 创建任务(下发资源):/createTask
|
||||
CreateTaskReq{
|
||||
Name string `json:"name"`
|
||||
Description string `json:"description,optional"`
|
||||
Token string `json:"token,optional"`
|
||||
JobResources JobResources `json:"jobResources"`
|
||||
DataDistributes DataDistribute `json:"dataDistributes"`
|
||||
|
|
|
@ -5907,6 +5907,8 @@ type QueryResourcesResp struct {
|
|||
}
|
||||
|
||||
type CreateTaskReq struct {
|
||||
Name string `json:"name"`
|
||||
Description string `json:"description,optional"`
|
||||
Token string `json:"token,optional"`
|
||||
JobResources JobResources `json:"jobResources"`
|
||||
DataDistributes DataDistribute `json:"dataDistributes"`
|
||||
|
|
Loading…
Reference in New Issue