Skip to content

Commit

Permalink
[YUNIKORN-998] expose gang related info in application REST info
Browse files Browse the repository at this point in the history
  • Loading branch information
steinsgateted committed Mar 11, 2022
1 parent e7b7a0b commit e648485
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions pkg/webservice/dao/application_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ type ApplicationsDAOInfo struct {
}

type ApplicationDAOInfo struct {
ApplicationID string `json:"applicationID"`
UsedResource string `json:"usedResource"`
MaxUsedResource string `json:"maxUsedResource"`
Partition string `json:"partition"`
QueueName string `json:"queueName"`
SubmissionTime int64 `json:"submissionTime"`
FinishedTime *int64 `json:"finishedTime"`
Allocations []AllocationDAOInfo `json:"allocations"`
State string `json:"applicationState"`
User string `json:"user"`
RejectedMessage string `json:"rejectedMessage"`
ApplicationID string `json:"applicationID"`
UsedResource string `json:"usedResource"`
MaxUsedResource string `json:"maxUsedResource"`
Partition string `json:"partition"`
QueueName string `json:"queueName"`
SubmissionTime int64 `json:"submissionTime"`
FinishedTime *int64 `json:"finishedTime"`
Allocations []AllocationDAOInfo `json:"allocations"`
State string `json:"applicationState"`
User string `json:"user"`
RejectedMessage string `json:"rejectedMessage"`
PlaceholderData []PlaceholderDAOInfo `json:"placeholderData"`
}

Expand Down

0 comments on commit e648485

Please sign in to comment.