数算任务列表删除yamlString字段
Former-commit-id: 1aae5e2d17a7a253450c8b669045df4e4ec7ded2
This commit is contained in:
parent
d07507c6d6
commit
075129ff03
|
@ -37,21 +37,19 @@ type DataSet {
|
||||||
|
|
||||||
type cloudListResp {
|
type cloudListResp {
|
||||||
Clouds []Cloud `json:"clouds"`
|
Clouds []Cloud `json:"clouds"`
|
||||||
|
|
||||||
}
|
}
|
||||||
type Cloud{
|
type Cloud {
|
||||||
Id int64 `json:"id"` // id
|
Id int64 `json:"id"` // id
|
||||||
TaskId int64 `json:"taskId"` // 任务id
|
TaskId int64 `json:"taskId"` // 任务id
|
||||||
ParticipantId int64 `json:"participantId"` // 集群静态信息id
|
ParticipantId int64 `json:"participantId"` // 集群静态信息id
|
||||||
ApiVersion string `json:"apiVersion"`
|
ApiVersion string `json:"apiVersion"`
|
||||||
Name string `json:"name"` // 名称
|
Name string `json:"name"` // 名称
|
||||||
Namespace string `json:"namespace"` // 命名空间
|
Namespace string `json:"namespace"` // 命名空间
|
||||||
Kind string `json:"kind"` // 种类
|
Kind string `json:"kind"` // 种类
|
||||||
Status string `json:"status"` // 状态
|
Status string `json:"status"` // 状态
|
||||||
StartTime string `json:"startTime"` // 开始时间
|
StartTime string `json:"startTime"` // 开始时间
|
||||||
RunningTime int64 `json:"runningTime"` // 运行时长
|
RunningTime int64 `json:"runningTime"` // 运行时长
|
||||||
CreatedBy int64 `json:"createdBy"` // 创建人
|
CreatedBy int64 `json:"createdBy"` // 创建人
|
||||||
CreatedTime string `json:"createdTime"` // 创建时间
|
CreatedTime string `json:"createdTime"` // 创建时间
|
||||||
YamlString string `json:"yamlString"`
|
Result string `json:"result"`
|
||||||
Result string `json:"result"`
|
|
||||||
}
|
}
|
|
@ -236,7 +236,7 @@ service pcm {
|
||||||
group : vm
|
group : vm
|
||||||
)
|
)
|
||||||
service pcm {
|
service pcm {
|
||||||
|
|
||||||
@handler GetComputeLimitsHandler
|
@handler GetComputeLimitsHandler
|
||||||
get /vm/getComputeLimits (GetComputeLimitsReq) returns (GetComputeLimitsResp)
|
get /vm/getComputeLimits (GetComputeLimitsReq) returns (GetComputeLimitsResp)
|
||||||
@handler GetVolumeLimitsHandler
|
@handler GetVolumeLimitsHandler
|
||||||
|
|
|
@ -2610,6 +2610,5 @@ type Cloud struct {
|
||||||
RunningTime int64 `json:"runningTime"` // 运行时长
|
RunningTime int64 `json:"runningTime"` // 运行时长
|
||||||
CreatedBy int64 `json:"createdBy"` // 创建人
|
CreatedBy int64 `json:"createdBy"` // 创建人
|
||||||
CreatedTime string `json:"createdTime"` // 创建时间
|
CreatedTime string `json:"createdTime"` // 创建时间
|
||||||
YamlString string `json:"yamlString"`
|
|
||||||
Result string `json:"result"`
|
Result string `json:"result"`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue