Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Invocation ¶
type ProcReport ¶
type ProcReport struct {
State string `bson:"state" json:"state"`
Invocations []*Invocation `bson:"invocations" json:"invocations"`
CreatedDate time.Time `bson:"createdDate" json:"createdDate"`
StartedDate time.Time `bson:"startedDate" json:"startedDate"`
CompletedDate time.Time `bson:"completedDate" json:"completedDate"`
Subject string `bson:"subject" json:"subject"`
}
type WorkflowRun ¶
type WorkflowRun struct {
State string `bson:"state" json:"state"`
Invocations []*Invocation `bson:"invocations" json:"invocations"`
CreatedDate time.Time `bson:"createdDate" json:"createdDate"`
StartedDate time.Time `bson:"startedDate" json:"startedDate"`
CompletedDate time.Time `bson:"completedDate" json:"completedDate"`
ProcessorReports []*ProcReport `bson:"processorReports" json:"processorReports"`
Subject string `bson:"subject" json:"subject"`
}
func ExportWorkflowRun ¶
func ExportWorkflowRun(job *core.Job) (wfrun *WorkflowRun, err error)
Click to show internal directories.
Click to hide internal directories.