Monorepo for Tangled
tangled.org
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package tangled
4
5// schema: sh.tangled.ci.pipeline.subscribeLogs
6
7const (
8 CiPipelineSubscribeLogsNSID = "sh.tangled.ci.pipeline.subscribeLogs"
9)
10
11// CiPipelineSubscribeLogs_Control is a "control" in the sh.tangled.ci.pipeline.subscribeLogs schema.
12type CiPipelineSubscribeLogs_Control struct {
13 // command: Step command
14 Command *string `json:"command,omitempty" cborgen:"command,omitempty"`
15 Content string `json:"content" cborgen:"content"`
16 // kind: Step kind
17 Kind *string `json:"kind,omitempty" cborgen:"kind,omitempty"`
18 // status: Step status
19 Status *string `json:"status,omitempty" cborgen:"status,omitempty"`
20 // step: Step ID
21 Step int64 `json:"step" cborgen:"step"`
22 Time string `json:"time" cborgen:"time"`
23 // workflow: workflow name
24 Workflow string `json:"workflow" cborgen:"workflow"`
25}
26
27// CiPipelineSubscribeLogs_Data is a "data" in the sh.tangled.ci.pipeline.subscribeLogs schema.
28type CiPipelineSubscribeLogs_Data struct {
29 Content string `json:"content" cborgen:"content"`
30 // step: Step ID
31 Step int64 `json:"step" cborgen:"step"`
32 Stream string `json:"stream" cborgen:"stream"`
33 Time string `json:"time" cborgen:"time"`
34 // workflow: workflow name
35 Workflow string `json:"workflow" cborgen:"workflow"`
36}