You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- syntax = "v1"
-
- info(
- title: "schedule"
- desc: "调度服务"
- author: "tzwang"
- email: "tzwang@qq.com"
- )
-
- type (
- ScheduleReq {
- AiOption *AiOption `json:"aiOption,optional"`
- }
-
- ScheduleResp {
- Success bool `json:"success"`
- TaskId string `json:"taskId"`
- ClusterId string `json:"clusterId"`
- ErrorMsg string `json:"errorMsg"`
- }
-
- AiOption {
- ResourceType string `json:"resourceType"`
- TaskType string `json:"taskType"`
- Datasets string `json:"datasets"`
- Strategy string `json:"strategy"`
- }
-
- AiResourceTypesResp {
- ResourceTypes []string `json:"resourceTypes"`
- }
-
- AiTaskTypesResp {
- TaskTypes []string `json:"taskTypes"`
- }
-
- AiDatasetsResp {
- Datasets []string `json:"datasets"`
- }
-
- AiStrategyResp {
- Strategies []string `json:"strategies"`
- }
- )
|