updated createDeployTask types
Former-commit-id: 87c4555d04f0648678ec6f429cba9f2613c20c8d
This commit is contained in:
parent
7c6389d3d8
commit
5a88f9e766
|
@ -6091,13 +6091,13 @@ type GetAdaptersByModelReq struct {
|
|||
}
|
||||
|
||||
type GetAdaptersByModelResp struct {
|
||||
Adapters []AdapterAvail `json:"adapters"`
|
||||
Adapters []*AdapterAvail `json:"adapters"`
|
||||
}
|
||||
|
||||
type AdapterAvail struct {
|
||||
AdapterId string `json:"adapterId"`
|
||||
AdapterName string `json:"taskName"`
|
||||
Clusters []ClusterAvail `json:"clusters"`
|
||||
AdapterId string `json:"adapterId"`
|
||||
AdapterName string `json:"taskName"`
|
||||
Clusters []*ClusterAvail `json:"clusters"`
|
||||
}
|
||||
|
||||
type ClusterAvail struct {
|
||||
|
|
Loading…
Reference in New Issue