Monorepo for Tangled
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package tangled
4
5// schema: sh.tangled.pipeline.status
6
7const (
8 PipelineStatusNSID = "sh.tangled.pipeline.status"
9)
10
11func init() {
12 // util.RegisterType("sh.tangled.pipeline.status", &PipelineStatus{})
13} //
14// RECORDTYPE: PipelineStatus
15type PipelineStatus struct {
16 LexiconTypeID string `json:"$type,const=sh.tangled.pipeline.status" cborgen:"$type,const=sh.tangled.pipeline.status"`
17 // createdAt: time of creation of this status update
18 CreatedAt string `json:"createdAt" cborgen:"createdAt"`
19 // error: error message if failed
20 Error *string `json:"error,omitempty" cborgen:"error,omitempty"`
21 // exitCode: exit code if failed
22 ExitCode *int64 `json:"exitCode,omitempty" cborgen:"exitCode,omitempty"`
23 // pipeline: ATURI of the pipeline
24 Pipeline string `json:"pipeline" cborgen:"pipeline"`
25 // status: status of the workflow
26 Status string `json:"status" cborgen:"status"`
27 // workflow: name of the workflow within this pipeline
28 Workflow string `json:"workflow" cborgen:"workflow"`
29}