| // THIS FILE IS AUTOGENERATED. DO NOT MODIFY. |
| |
| package buildevent |
| |
| import pb "infra/libs/bqschema/tabledef" |
| import time "time" |
| |
| // StepsTable is the TableDef for the |
| // "" dataset's "steps" table. |
| var StepsTable = &pb.TableDef{ |
| DatasetId: "", |
| TableId: "steps", |
| } |
| |
| // Steps is the schema for "StepsTable". |
| type Steps struct { |
| // An unique identifier of the build. See build_id in completed_builds table. |
| BuildId string `bigquery:"build_id"` |
| |
| // The name of this step. Fields build_id and step_name uniquely identify a step. |
| StepName string `bigquery:"step_name"` |
| |
| // The step result. Valid values: "SUCCESS", "FAILURE", "EXCEPTION". |
| Result string `bigquery:"result"` |
| |
| // The step's started time. |
| StartTime time.Time `bigquery:"start_time"` |
| |
| // The step's finish time. |
| FinishTime time.Time `bigquery:"finish_time"` |
| } |