Signed-off-by: jagger <cossjie@foxmail.com>

Former-commit-id: 9916288076f52bbd1de63dea5fb57b857b567d6f
This commit is contained in:
jagger 2024-04-30 16:26:53 +08:00
parent 040af2f210
commit d7e8a4942a
1 changed files with 11 additions and 12 deletions

View File

@ -111,18 +111,17 @@ type HpcInfo struct {
}
type CloudInfo struct {
Participant int64 `json:"participant,omitempty"`
Id int64 `json:"id,omitempty"`
Id uint `json:"id,omitempty"`
TaskId int64 `json:"taskId,omitempty"`
ApiVersion string `json:"apiVersion,omitempty"`
AdapterId uint `json:"adapterId,omitempty"`
ClusterId uint `json:"clusterId,omitempty"`
ClusterName string `json:"clusterName,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"`
StartTime *time.Time `json:"startTime,omitempty"`
YamlString string `json:"yamlString,omitempty"`
Result string `json:"result,omitempty"`
Namespace string `json:"namespace,omitempty"`
}
type AiInfo struct {