-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_execution.go
30 lines (29 loc) · 939 Bytes
/
model_execution.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
* Harbor API
*
* These APIs provide services for manipulating Harbor project.
*
* API version: 2.0
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package harbor
type Execution struct {
// The ID of execution
Id int32 `json:"id,omitempty"`
// The vendor type of execution
VendorType string `json:"vendor_type,omitempty"`
// The vendor id of execution
VendorId int32 `json:"vendor_id,omitempty"`
// The status of execution
Status string `json:"status,omitempty"`
// The status message of execution
StatusMessage string `json:"status_message,omitempty"`
Metrics *Metrics `json:"metrics,omitempty"`
// The trigger of execution
Trigger string `json:"trigger,omitempty"`
ExtraAttrs *ModelMap `json:"extra_attrs,omitempty"`
// The start time of execution
StartTime string `json:"start_time,omitempty"`
// The end time of execution
EndTime string `json:"end_time,omitempty"`
}