diff --git a/api/client/types.go b/api/client/types.go index 672cc562..4bbce2e9 100644 --- a/api/client/types.go +++ b/api/client/types.go @@ -111,18 +111,17 @@ type HpcInfo struct { } type CloudInfo struct { - Participant int64 `json:"participant,omitempty"` - Id int64 `json:"id,omitempty"` - TaskId int64 `json:"taskId,omitempty"` - ApiVersion string `json:"apiVersion,omitempty"` - Kind string `json:"kind,omitempty"` - Namespace string `json:"namespace,omitempty"` - Name string `json:"name,omitempty"` - Status string `json:"status,omitempty"` - StartTime string `json:"startTime,omitempty"` - RunningTime int64 `json:"runningTime,omitempty"` - Result string `json:"result,omitempty"` - YamlString string `json:"yamlString,omitempty"` + Id uint `json:"id,omitempty"` + TaskId int64 `json:"taskId,omitempty"` + AdapterId uint `json:"adapterId,omitempty"` + ClusterId uint `json:"clusterId,omitempty"` + ClusterName string `json:"clusterName,omitempty"` + Kind string `json:"kind,omitempty"` + Status string `json:"status,omitempty"` + StartTime *time.Time `json:"startTime,omitempty"` + YamlString string `json:"yamlString,omitempty"` + Result string `json:"result,omitempty"` + Namespace string `json:"namespace,omitempty"` } type AiInfo struct {