blob: 545055efad280522e56cf33d7eb4839a1b106969 [file] [log] [blame]
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: github.com/luci/luci-go/common/proto/milo/annotations.proto
/*
Package milo is a generated protocol buffer package.
It is generated from these files:
github.com/luci/luci-go/common/proto/milo/annotations.proto
It has these top-level messages:
FailureDetails
Step
Link
LogdogStream
IsolateObject
DMLink
*/
package milo
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import google_protobuf "github.com/golang/protobuf/ptypes/timestamp"
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
// Status is the expressed root step of this step or substep.
type Status int32
const (
// The step is still running.
Status_RUNNING Status = 0
// The step has finished successfully.
Status_SUCCESS Status = 1
// The step has finished unsuccessfully.
Status_FAILURE Status = 2
// The step has been scheduled, but not yet started.
Status_PENDING Status = 3
)
var Status_name = map[int32]string{
0: "RUNNING",
1: "SUCCESS",
2: "FAILURE",
3: "PENDING",
}
var Status_value = map[string]int32{
"RUNNING": 0,
"SUCCESS": 1,
"FAILURE": 2,
"PENDING": 3,
}
func (x Status) String() string {
return proto.EnumName(Status_name, int32(x))
}
func (Status) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
// Type is the type of failure.
type FailureDetails_Type int32
const (
// The failure is a general failure.
FailureDetails_GENERAL FailureDetails_Type = 0
// An unhandled exception occured during execution.
FailureDetails_EXCEPTION FailureDetails_Type = 1
// The failure is related to a failed infrastructure component, not an error
// with the Step itself.
FailureDetails_INFRA FailureDetails_Type = 2
// The failure is due to a failed Dungeon Master dependency. This should be
// used if a Step's external depdendency fails and the Step cannot recover
// or proceed without it.
FailureDetails_DM_DEPENDENCY_FAILED FailureDetails_Type = 3
// The step was cancelled.
FailureDetails_CANCELLED FailureDetails_Type = 4
// The failure was due to an resource exhausion. The step was scheduled
// but never ran, and never will run.
FailureDetails_EXPIRED FailureDetails_Type = 5
)
var FailureDetails_Type_name = map[int32]string{
0: "GENERAL",
1: "EXCEPTION",
2: "INFRA",
3: "DM_DEPENDENCY_FAILED",
4: "CANCELLED",
5: "EXPIRED",
}
var FailureDetails_Type_value = map[string]int32{
"GENERAL": 0,
"EXCEPTION": 1,
"INFRA": 2,
"DM_DEPENDENCY_FAILED": 3,
"CANCELLED": 4,
"EXPIRED": 5,
}
func (x FailureDetails_Type) String() string {
return proto.EnumName(FailureDetails_Type_name, int32(x))
}
func (FailureDetails_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0, 0} }
// FailureType provides more details on the nature of the Status.
type FailureDetails struct {
Type FailureDetails_Type `protobuf:"varint,1,opt,name=type,enum=milo.FailureDetails_Type" json:"type,omitempty"`
// An optional string describing the failure.
Text string `protobuf:"bytes,2,opt,name=text" json:"text,omitempty"`
// If the failure type is DEPENDENCY_FAILED, the failed dependencies should be
// listed here.
FailedDmDependency []*DMLink `protobuf:"bytes,3,rep,name=failed_dm_dependency,json=failedDmDependency" json:"failed_dm_dependency,omitempty"`
}
func (m *FailureDetails) Reset() { *m = FailureDetails{} }
func (m *FailureDetails) String() string { return proto.CompactTextString(m) }
func (*FailureDetails) ProtoMessage() {}
func (*FailureDetails) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
func (m *FailureDetails) GetType() FailureDetails_Type {
if m != nil {
return m.Type
}
return FailureDetails_GENERAL
}
func (m *FailureDetails) GetText() string {
if m != nil {
return m.Text
}
return ""
}
func (m *FailureDetails) GetFailedDmDependency() []*DMLink {
if m != nil {
return m.FailedDmDependency
}
return nil
}
// Generic step or substep state.
type Step struct {
// The display name of the Component.
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
// The command-line invocation of the step, expressed as an argument vector.
Command *Step_Command `protobuf:"bytes,2,opt,name=command" json:"command,omitempty"`
// The current running status of the Step.
Status Status `protobuf:"varint,3,opt,name=status,enum=milo.Status" json:"status,omitempty"`
// Optional information detailing the failure. This may be populated if the
// Step's top-level command Status is set to FAILURE.
FailureDetails *FailureDetails `protobuf:"bytes,4,opt,name=failure_details,json=failureDetails" json:"failure_details,omitempty"`
// Substeps that this Step is composed of.
Substep []*Step_Substep `protobuf:"bytes,5,rep,name=substep" json:"substep,omitempty"`
// A link to this Step's STDOUT stream, if present.
StdoutStream *LogdogStream `protobuf:"bytes,6,opt,name=stdout_stream,json=stdoutStream" json:"stdout_stream,omitempty"`
// A link to this Step's STDERR stream, if present.
StderrStream *LogdogStream `protobuf:"bytes,7,opt,name=stderr_stream,json=stderrStream" json:"stderr_stream,omitempty"`
// When the step started, expressed as an RFC3339 string using Z (UTC)
// timezone.
Started *google_protobuf.Timestamp `protobuf:"bytes,8,opt,name=started" json:"started,omitempty"`
// When the step ended, expressed as an RFC3339 string using Z (UTC) timezone.
Ended *google_protobuf.Timestamp `protobuf:"bytes,9,opt,name=ended" json:"ended,omitempty"`
// Arbitrary lines of component text. Each string here is a consecutive line,
// and should not contain newlines.
Text []string `protobuf:"bytes,20,rep,name=text" json:"text,omitempty"`
// The Component's progress.
Progress *Step_Progress `protobuf:"bytes,21,opt,name=progress" json:"progress,omitempty"`
// The primary link for this Component. This is the link that interaction
// with the Component will use.
Link *Link `protobuf:"bytes,22,opt,name=link" json:"link,omitempty"`
// Additional links related to the Component. These will be rendered alongside
// the component.
OtherLinks []*Link `protobuf:"bytes,23,rep,name=other_links,json=otherLinks" json:"other_links,omitempty"`
Property []*Step_Property `protobuf:"bytes,24,rep,name=property" json:"property,omitempty"`
// Maps the name of the Manifest, e.g. UNPATCHED, INFRA, etc. to the
// ManifestLink. This name will be used in the milo console definition to
// indicate which manifest data to sort the console view by.
DeploymentManifests map[string]*Step_ManifestLink `protobuf:"bytes,25,rep,name=deployment_manifests,json=deploymentManifests" json:"deployment_manifests,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
}
func (m *Step) Reset() { *m = Step{} }
func (m *Step) String() string { return proto.CompactTextString(m) }
func (*Step) ProtoMessage() {}
func (*Step) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
func (m *Step) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *Step) GetCommand() *Step_Command {
if m != nil {
return m.Command
}
return nil
}
func (m *Step) GetStatus() Status {
if m != nil {
return m.Status
}
return Status_RUNNING
}
func (m *Step) GetFailureDetails() *FailureDetails {
if m != nil {
return m.FailureDetails
}
return nil
}
func (m *Step) GetSubstep() []*Step_Substep {
if m != nil {
return m.Substep
}
return nil
}
func (m *Step) GetStdoutStream() *LogdogStream {
if m != nil {
return m.StdoutStream
}
return nil
}
func (m *Step) GetStderrStream() *LogdogStream {
if m != nil {
return m.StderrStream
}
return nil
}
func (m *Step) GetStarted() *google_protobuf.Timestamp {
if m != nil {
return m.Started
}
return nil
}
func (m *Step) GetEnded() *google_protobuf.Timestamp {
if m != nil {
return m.Ended
}
return nil
}
func (m *Step) GetText() []string {
if m != nil {
return m.Text
}
return nil
}
func (m *Step) GetProgress() *Step_Progress {
if m != nil {
return m.Progress
}
return nil
}
func (m *Step) GetLink() *Link {
if m != nil {
return m.Link
}
return nil
}
func (m *Step) GetOtherLinks() []*Link {
if m != nil {
return m.OtherLinks
}
return nil
}
func (m *Step) GetProperty() []*Step_Property {
if m != nil {
return m.Property
}
return nil
}
func (m *Step) GetDeploymentManifests() map[string]*Step_ManifestLink {
if m != nil {
return m.DeploymentManifests
}
return nil
}
// Command contains information about a command-line invocation.
type Step_Command struct {
// The command-line invocation, expressed as an argument vector.
CommandLine []string `protobuf:"bytes,1,rep,name=command_line,json=commandLine" json:"command_line,omitempty"`
// The current working directory.
Cwd string `protobuf:"bytes,2,opt,name=cwd" json:"cwd,omitempty"`
// Environment represents the state of a process' environment.
Environ map[string]string `protobuf:"bytes,3,rep,name=environ" json:"environ,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
}
func (m *Step_Command) Reset() { *m = Step_Command{} }
func (m *Step_Command) String() string { return proto.CompactTextString(m) }
func (*Step_Command) ProtoMessage() {}
func (*Step_Command) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1, 0} }
func (m *Step_Command) GetCommandLine() []string {
if m != nil {
return m.CommandLine
}
return nil
}
func (m *Step_Command) GetCwd() string {
if m != nil {
return m.Cwd
}
return ""
}
func (m *Step_Command) GetEnviron() map[string]string {
if m != nil {
return m.Environ
}
return nil
}
// Sub-steps nested underneath of this step.
type Step_Substep struct {
// The substep.
//
// Types that are valid to be assigned to Substep:
// *Step_Substep_Step
// *Step_Substep_AnnotationStream
Substep isStep_Substep_Substep `protobuf_oneof:"substep"`
}
func (m *Step_Substep) Reset() { *m = Step_Substep{} }
func (m *Step_Substep) String() string { return proto.CompactTextString(m) }
func (*Step_Substep) ProtoMessage() {}
func (*Step_Substep) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1, 1} }
type isStep_Substep_Substep interface {
isStep_Substep_Substep()
}
type Step_Substep_Step struct {
Step *Step `protobuf:"bytes,1,opt,name=step,oneof"`
}
type Step_Substep_AnnotationStream struct {
AnnotationStream *LogdogStream `protobuf:"bytes,2,opt,name=annotation_stream,json=annotationStream,oneof"`
}
func (*Step_Substep_Step) isStep_Substep_Substep() {}
func (*Step_Substep_AnnotationStream) isStep_Substep_Substep() {}
func (m *Step_Substep) GetSubstep() isStep_Substep_Substep {
if m != nil {
return m.Substep
}
return nil
}
func (m *Step_Substep) GetStep() *Step {
if x, ok := m.GetSubstep().(*Step_Substep_Step); ok {
return x.Step
}
return nil
}
func (m *Step_Substep) GetAnnotationStream() *LogdogStream {
if x, ok := m.GetSubstep().(*Step_Substep_AnnotationStream); ok {
return x.AnnotationStream
}
return nil
}
// XXX_OneofFuncs is for the internal use of the proto package.
func (*Step_Substep) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
return _Step_Substep_OneofMarshaler, _Step_Substep_OneofUnmarshaler, _Step_Substep_OneofSizer, []interface{}{
(*Step_Substep_Step)(nil),
(*Step_Substep_AnnotationStream)(nil),
}
}
func _Step_Substep_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
m := msg.(*Step_Substep)
// substep
switch x := m.Substep.(type) {
case *Step_Substep_Step:
b.EncodeVarint(1<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Step); err != nil {
return err
}
case *Step_Substep_AnnotationStream:
b.EncodeVarint(2<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.AnnotationStream); err != nil {
return err
}
case nil:
default:
return fmt.Errorf("Step_Substep.Substep has unexpected type %T", x)
}
return nil
}
func _Step_Substep_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
m := msg.(*Step_Substep)
switch tag {
case 1: // substep.step
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(Step)
err := b.DecodeMessage(msg)
m.Substep = &Step_Substep_Step{msg}
return true, err
case 2: // substep.annotation_stream
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(LogdogStream)
err := b.DecodeMessage(msg)
m.Substep = &Step_Substep_AnnotationStream{msg}
return true, err
default:
return false, nil
}
}
func _Step_Substep_OneofSizer(msg proto.Message) (n int) {
m := msg.(*Step_Substep)
// substep
switch x := m.Substep.(type) {
case *Step_Substep_Step:
s := proto.Size(x.Step)
n += proto.SizeVarint(1<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Step_Substep_AnnotationStream:
s := proto.Size(x.AnnotationStream)
n += proto.SizeVarint(2<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case nil:
default:
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
}
return n
}
// Progress expresses a Component's overall progress. It does this using
// arbitrary "progress units", wich are discrete units of work measured by
// the Component that are either completed or not completed.
//
// A simple construction for "percentage complete" is to set `total` to 100
// and `completed` to the percentage value.
type Step_Progress struct {
// The total number of progress units. If missing or zero, no progress is
// expressed.
Total int32 `protobuf:"varint,1,opt,name=total" json:"total,omitempty"`
// The number of completed progress units. This must always be less than or
// equal to `total`. If omitted, it is implied to be zero.
Completed int32 `protobuf:"varint,2,opt,name=completed" json:"completed,omitempty"`
}
func (m *Step_Progress) Reset() { *m = Step_Progress{} }
func (m *Step_Progress) String() string { return proto.CompactTextString(m) }
func (*Step_Progress) ProtoMessage() {}
func (*Step_Progress) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1, 2} }
func (m *Step_Progress) GetTotal() int32 {
if m != nil {
return m.Total
}
return 0
}
func (m *Step_Progress) GetCompleted() int32 {
if m != nil {
return m.Completed
}
return 0
}
// Property is an arbitrary key/value (build) property.
type Step_Property struct {
// name is the property name.
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
// value is the optional property value.
Value string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
}
func (m *Step_Property) Reset() { *m = Step_Property{} }
func (m *Step_Property) String() string { return proto.CompactTextString(m) }
func (*Step_Property) ProtoMessage() {}
func (*Step_Property) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1, 3} }
func (m *Step_Property) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *Step_Property) GetValue() string {
if m != nil {
return m.Value
}
return ""
}
// Links to a recipe_engine.Manifest proto.
type Step_ManifestLink struct {
// The fully qualified (logdog://) url of the Manifest proto. It's expected
// that this is a binary logdog stream consisting of exactly one Manifest
// proto.
Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
// The hash of the Manifest's raw binary form (i.e. the bytes at the end of
// `url`, without any interpretation or decoding). Milo will use this as an
// optimization; Manifests will be interned once into Milo's datastore.
// Future hashes which match will not be loaded from the url, but will be
// assumed to be identical. If the sha256 doesn't match the data at the URL,
// Milo may render this build with the wrong manifest.
//
// This is the raw sha256, so it should be exactly 32 bytes.
Sha256 []byte `protobuf:"bytes,2,opt,name=sha256,proto3" json:"sha256,omitempty"`
}
func (m *Step_ManifestLink) Reset() { *m = Step_ManifestLink{} }
func (m *Step_ManifestLink) String() string { return proto.CompactTextString(m) }
func (*Step_ManifestLink) ProtoMessage() {}
func (*Step_ManifestLink) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1, 4} }
func (m *Step_ManifestLink) GetUrl() string {
if m != nil {
return m.Url
}
return ""
}
func (m *Step_ManifestLink) GetSha256() []byte {
if m != nil {
return m.Sha256
}
return nil
}
// A Link is an optional label followed by a typed link to an external
// resource.
type Link struct {
// An optional display label for the link.
Label string `protobuf:"bytes,1,opt,name=label" json:"label,omitempty"`
// If present, this link is an alias for another link with this name, and
// should be rendered in relation to that link.
AliasLabel string `protobuf:"bytes,2,opt,name=alias_label,json=aliasLabel" json:"alias_label,omitempty"`
// Types that are valid to be assigned to Value:
// *Link_Url
// *Link_LogdogStream
// *Link_IsolateObject
// *Link_DmLink
Value isLink_Value `protobuf_oneof:"value"`
}
func (m *Link) Reset() { *m = Link{} }
func (m *Link) String() string { return proto.CompactTextString(m) }
func (*Link) ProtoMessage() {}
func (*Link) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
type isLink_Value interface {
isLink_Value()
}
type Link_Url struct {
Url string `protobuf:"bytes,3,opt,name=url,oneof"`
}
type Link_LogdogStream struct {
LogdogStream *LogdogStream `protobuf:"bytes,4,opt,name=logdog_stream,json=logdogStream,oneof"`
}
type Link_IsolateObject struct {
IsolateObject *IsolateObject `protobuf:"bytes,5,opt,name=isolate_object,json=isolateObject,oneof"`
}
type Link_DmLink struct {
DmLink *DMLink `protobuf:"bytes,6,opt,name=dm_link,json=dmLink,oneof"`
}
func (*Link_Url) isLink_Value() {}
func (*Link_LogdogStream) isLink_Value() {}
func (*Link_IsolateObject) isLink_Value() {}
func (*Link_DmLink) isLink_Value() {}
func (m *Link) GetValue() isLink_Value {
if m != nil {
return m.Value
}
return nil
}
func (m *Link) GetLabel() string {
if m != nil {
return m.Label
}
return ""
}
func (m *Link) GetAliasLabel() string {
if m != nil {
return m.AliasLabel
}
return ""
}
func (m *Link) GetUrl() string {
if x, ok := m.GetValue().(*Link_Url); ok {
return x.Url
}
return ""
}
func (m *Link) GetLogdogStream() *LogdogStream {
if x, ok := m.GetValue().(*Link_LogdogStream); ok {
return x.LogdogStream
}
return nil
}
func (m *Link) GetIsolateObject() *IsolateObject {
if x, ok := m.GetValue().(*Link_IsolateObject); ok {
return x.IsolateObject
}
return nil
}
func (m *Link) GetDmLink() *DMLink {
if x, ok := m.GetValue().(*Link_DmLink); ok {
return x.DmLink
}
return nil
}
// XXX_OneofFuncs is for the internal use of the proto package.
func (*Link) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
return _Link_OneofMarshaler, _Link_OneofUnmarshaler, _Link_OneofSizer, []interface{}{
(*Link_Url)(nil),
(*Link_LogdogStream)(nil),
(*Link_IsolateObject)(nil),
(*Link_DmLink)(nil),
}
}
func _Link_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
m := msg.(*Link)
// value
switch x := m.Value.(type) {
case *Link_Url:
b.EncodeVarint(3<<3 | proto.WireBytes)
b.EncodeStringBytes(x.Url)
case *Link_LogdogStream:
b.EncodeVarint(4<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.LogdogStream); err != nil {
return err
}
case *Link_IsolateObject:
b.EncodeVarint(5<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.IsolateObject); err != nil {
return err
}
case *Link_DmLink:
b.EncodeVarint(6<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.DmLink); err != nil {
return err
}
case nil:
default:
return fmt.Errorf("Link.Value has unexpected type %T", x)
}
return nil
}
func _Link_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
m := msg.(*Link)
switch tag {
case 3: // value.url
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
x, err := b.DecodeStringBytes()
m.Value = &Link_Url{x}
return true, err
case 4: // value.logdog_stream
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(LogdogStream)
err := b.DecodeMessage(msg)
m.Value = &Link_LogdogStream{msg}
return true, err
case 5: // value.isolate_object
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(IsolateObject)
err := b.DecodeMessage(msg)
m.Value = &Link_IsolateObject{msg}
return true, err
case 6: // value.dm_link
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(DMLink)
err := b.DecodeMessage(msg)
m.Value = &Link_DmLink{msg}
return true, err
default:
return false, nil
}
}
func _Link_OneofSizer(msg proto.Message) (n int) {
m := msg.(*Link)
// value
switch x := m.Value.(type) {
case *Link_Url:
n += proto.SizeVarint(3<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(len(x.Url)))
n += len(x.Url)
case *Link_LogdogStream:
s := proto.Size(x.LogdogStream)
n += proto.SizeVarint(4<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Link_IsolateObject:
s := proto.Size(x.IsolateObject)
n += proto.SizeVarint(5<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Link_DmLink:
s := proto.Size(x.DmLink)
n += proto.SizeVarint(6<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case nil:
default:
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
}
return n
}
// LogdogStream is a LogDog stream link.
type LogdogStream struct {
// The stream's server. If omitted, the server is the same server that this
// annotation stream is homed on.
Server string `protobuf:"bytes,1,opt,name=server" json:"server,omitempty"`
// The log Prefix. If empty, the prefix is the same prefix as this annotation
// stream.
Prefix string `protobuf:"bytes,2,opt,name=prefix" json:"prefix,omitempty"`
// The log name.
Name string `protobuf:"bytes,3,opt,name=name" json:"name,omitempty"`
}
func (m *LogdogStream) Reset() { *m = LogdogStream{} }
func (m *LogdogStream) String() string { return proto.CompactTextString(m) }
func (*LogdogStream) ProtoMessage() {}
func (*LogdogStream) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
func (m *LogdogStream) GetServer() string {
if m != nil {
return m.Server
}
return ""
}
func (m *LogdogStream) GetPrefix() string {
if m != nil {
return m.Prefix
}
return ""
}
func (m *LogdogStream) GetName() string {
if m != nil {
return m.Name
}
return ""
}
// IsolateObject is an Isolate service object specification.
type IsolateObject struct {
// The Isolate server. If empty, this is the default Isolate server specified
// by the project's LUCI config.
Server string `protobuf:"bytes,1,opt,name=server" json:"server,omitempty"`
// The isolate object hash.
Hash string `protobuf:"bytes,2,opt,name=hash" json:"hash,omitempty"`
}
func (m *IsolateObject) Reset() { *m = IsolateObject{} }
func (m *IsolateObject) String() string { return proto.CompactTextString(m) }
func (*IsolateObject) ProtoMessage() {}
func (*IsolateObject) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
func (m *IsolateObject) GetServer() string {
if m != nil {
return m.Server
}
return ""
}
func (m *IsolateObject) GetHash() string {
if m != nil {
return m.Hash
}
return ""
}
// DMLink is a Dungeon Master execution specification.
type DMLink struct {
// The Dungeon Master server. If empty, this is the default Isolate server
// specified by the project's LUCI config.
Server string `protobuf:"bytes,1,opt,name=server" json:"server,omitempty"`
// The quest name.
Quest string `protobuf:"bytes,2,opt,name=quest" json:"quest,omitempty"`
// The attempt number.
Attempt int64 `protobuf:"varint,3,opt,name=attempt" json:"attempt,omitempty"`
// The execution number.
Execution int64 `protobuf:"varint,4,opt,name=execution" json:"execution,omitempty"`
}
func (m *DMLink) Reset() { *m = DMLink{} }
func (m *DMLink) String() string { return proto.CompactTextString(m) }
func (*DMLink) ProtoMessage() {}
func (*DMLink) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
func (m *DMLink) GetServer() string {
if m != nil {
return m.Server
}
return ""
}
func (m *DMLink) GetQuest() string {
if m != nil {
return m.Quest
}
return ""
}
func (m *DMLink) GetAttempt() int64 {
if m != nil {
return m.Attempt
}
return 0
}
func (m *DMLink) GetExecution() int64 {
if m != nil {
return m.Execution
}
return 0
}
func init() {
proto.RegisterType((*FailureDetails)(nil), "milo.FailureDetails")
proto.RegisterType((*Step)(nil), "milo.Step")
proto.RegisterType((*Step_Command)(nil), "milo.Step.Command")
proto.RegisterType((*Step_Substep)(nil), "milo.Step.Substep")
proto.RegisterType((*Step_Progress)(nil), "milo.Step.Progress")
proto.RegisterType((*Step_Property)(nil), "milo.Step.Property")
proto.RegisterType((*Step_ManifestLink)(nil), "milo.Step.ManifestLink")
proto.RegisterType((*Link)(nil), "milo.Link")
proto.RegisterType((*LogdogStream)(nil), "milo.LogdogStream")
proto.RegisterType((*IsolateObject)(nil), "milo.IsolateObject")
proto.RegisterType((*DMLink)(nil), "milo.DMLink")
proto.RegisterEnum("milo.Status", Status_name, Status_value)
proto.RegisterEnum("milo.FailureDetails_Type", FailureDetails_Type_name, FailureDetails_Type_value)
}
func init() {
proto.RegisterFile("github.com/luci/luci-go/common/proto/milo/annotations.proto", fileDescriptor0)
}
var fileDescriptor0 = []byte{
// 1068 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x55, 0xdb, 0x6e, 0xdb, 0x46,
0x13, 0xd6, 0x81, 0x12, 0xa3, 0x91, 0xec, 0x5f, 0xff, 0x46, 0x4d, 0x18, 0xa1, 0x68, 0x5c, 0xb5,
0x40, 0x8d, 0x36, 0x96, 0x0a, 0x37, 0x6d, 0x73, 0x6a, 0x00, 0x47, 0xa2, 0x63, 0x01, 0xb2, 0x62,
0xac, 0xec, 0x22, 0xbd, 0x22, 0x56, 0xe2, 0x4a, 0x66, 0x4d, 0x72, 0x59, 0xee, 0xd2, 0xb5, 0xde,
0xa3, 0xaf, 0xd2, 0x77, 0xeb, 0x45, 0x2f, 0x8a, 0x3d, 0x50, 0xa6, 0x1b, 0x3b, 0xbd, 0x21, 0x76,
0x66, 0xbe, 0xd9, 0x9d, 0xf9, 0xe6, 0x5b, 0x2e, 0xbc, 0x5c, 0x05, 0xe2, 0x3c, 0x9b, 0xf7, 0x17,
0x2c, 0x1a, 0x84, 0xd9, 0x22, 0x50, 0x9f, 0xbd, 0x15, 0x1b, 0x2c, 0x58, 0x14, 0xb1, 0x78, 0x90,
0xa4, 0x4c, 0xb0, 0x41, 0x14, 0x84, 0x6c, 0x40, 0xe2, 0x98, 0x09, 0x22, 0x02, 0x16, 0xf3, 0xbe,
0x72, 0x23, 0x4b, 0xfa, 0xbb, 0x8f, 0x57, 0x8c, 0xad, 0x42, 0xaa, 0xa1, 0xf3, 0x6c, 0x39, 0x10,
0x41, 0x44, 0xb9, 0x20, 0x51, 0xa2, 0x61, 0xbd, 0xbf, 0xca, 0xb0, 0x7d, 0x48, 0x82, 0x30, 0x4b,
0xe9, 0x88, 0x0a, 0x12, 0x84, 0x1c, 0xed, 0x81, 0x25, 0xd6, 0x09, 0x75, 0xca, 0x3b, 0xe5, 0xdd,
0xed, 0xfd, 0x47, 0x7d, 0xb9, 0x51, 0xff, 0x26, 0xa6, 0x7f, 0xba, 0x4e, 0x28, 0x56, 0x30, 0x84,
0xc0, 0x12, 0xf4, 0x4a, 0x38, 0x95, 0x9d, 0xf2, 0x6e, 0x03, 0xab, 0x35, 0x7a, 0x0d, 0x9d, 0x25,
0x09, 0x42, 0xea, 0x7b, 0x7e, 0xe4, 0xf9, 0x34, 0xa1, 0xb1, 0x4f, 0xe3, 0xc5, 0xda, 0xa9, 0xee,
0x54, 0x77, 0x9b, 0xfb, 0x2d, 0xbd, 0xe5, 0xe8, 0x78, 0x12, 0xc4, 0x17, 0x18, 0x69, 0xe4, 0x28,
0x1a, 0x6d, 0x70, 0xbd, 0x05, 0x58, 0xf2, 0x04, 0xd4, 0x04, 0xfb, 0xad, 0x3b, 0x75, 0xf1, 0xc1,
0xa4, 0x5d, 0x42, 0x5b, 0xd0, 0x70, 0xdf, 0x0f, 0xdd, 0x93, 0xd3, 0xf1, 0xbb, 0x69, 0xbb, 0x8c,
0x1a, 0x50, 0x1b, 0x4f, 0x0f, 0xf1, 0x41, 0xbb, 0x82, 0x1c, 0xe8, 0x8c, 0x8e, 0xbd, 0x91, 0x7b,
0xe2, 0x4e, 0x47, 0xee, 0x74, 0xf8, 0x8b, 0x77, 0x78, 0x30, 0x9e, 0xb8, 0xa3, 0x76, 0x55, 0xe6,
0x0c, 0x0f, 0xa6, 0x43, 0x77, 0x22, 0x4d, 0x4b, 0xee, 0xe7, 0xbe, 0x3f, 0x19, 0x63, 0x77, 0xd4,
0xae, 0xf5, 0xfe, 0x00, 0xb0, 0x66, 0x82, 0x26, 0xb2, 0x83, 0x98, 0x44, 0xba, 0xe1, 0x06, 0x56,
0x6b, 0xf4, 0x04, 0x6c, 0xc9, 0x32, 0x89, 0x7d, 0xd5, 0x58, 0x73, 0x1f, 0xe9, 0xa2, 0x65, 0x42,
0x7f, 0xa8, 0x23, 0x38, 0x87, 0xa0, 0x2f, 0xa1, 0xce, 0x05, 0x11, 0x19, 0x77, 0xaa, 0x8a, 0xb4,
0x56, 0x0e, 0x96, 0x3e, 0x6c, 0x62, 0xe8, 0x27, 0xf8, 0xdf, 0x52, 0xd3, 0xe8, 0xf9, 0x9a, 0x47,
0xc7, 0x52, 0x7b, 0x77, 0x6e, 0xe3, 0x18, 0x6f, 0x2f, 0x6f, 0xce, 0xe5, 0x09, 0xd8, 0x3c, 0x9b,
0x73, 0x41, 0x13, 0xa7, 0xa6, 0x78, 0x2c, 0x96, 0x34, 0xd3, 0x11, 0x9c, 0x43, 0xd0, 0x8f, 0xb0,
0xc5, 0x85, 0xcf, 0x32, 0xe1, 0x71, 0x91, 0x52, 0x12, 0x39, 0xf5, 0x62, 0x1b, 0x13, 0xb6, 0xf2,
0xd9, 0x6a, 0xa6, 0x22, 0xb8, 0xa5, 0x81, 0xda, 0x32, 0x89, 0x34, 0x4d, 0xf3, 0x44, 0xfb, 0xa3,
0x89, 0x34, 0x4d, 0x4d, 0xe2, 0x53, 0xb0, 0xb9, 0x20, 0xa9, 0xa0, 0xbe, 0x73, 0x4f, 0xa5, 0x74,
0xfb, 0x5a, 0x7d, 0xfd, 0x5c, 0x7d, 0xfd, 0xd3, 0x5c, 0x7d, 0x38, 0x87, 0xa2, 0x6f, 0xa1, 0x26,
0xa7, 0xee, 0x3b, 0x8d, 0xff, 0xcc, 0xd1, 0xc0, 0x8d, 0xe0, 0x3a, 0x3b, 0xd5, 0x8d, 0xe0, 0x06,
0x70, 0x2f, 0x49, 0xd9, 0x2a, 0xa5, 0x9c, 0x3b, 0x9f, 0xa8, 0x8d, 0xee, 0x17, 0xc8, 0x39, 0x31,
0x21, 0xbc, 0x01, 0xa1, 0xcf, 0xc0, 0x0a, 0x83, 0xf8, 0xc2, 0x79, 0xa0, 0xc0, 0x60, 0x9a, 0x93,
0x7a, 0x54, 0x7e, 0xf4, 0x0d, 0x34, 0x99, 0x38, 0xa7, 0xa9, 0x27, 0x2d, 0xee, 0x3c, 0x54, 0x84,
0x17, 0x61, 0xa0, 0xc2, 0x72, 0xc9, 0xcd, 0xe9, 0x09, 0x4d, 0xc5, 0xda, 0x71, 0x14, 0xf2, 0x5f,
0xa7, 0xab, 0x10, 0xde, 0x80, 0xd0, 0xcf, 0xd0, 0xf1, 0x69, 0x12, 0xb2, 0x75, 0x44, 0x63, 0xe1,
0x45, 0x24, 0x0e, 0x96, 0x94, 0x0b, 0xee, 0x3c, 0x52, 0xc9, 0x5f, 0x14, 0x92, 0x47, 0x1b, 0xd8,
0x71, 0x8e, 0x72, 0x63, 0x91, 0xae, 0xf1, 0x7d, 0xff, 0xc3, 0x48, 0xf7, 0xcf, 0x32, 0xd8, 0x46,
0x9c, 0xe8, 0x73, 0x68, 0x19, 0x79, 0xca, 0x1e, 0xa4, 0xba, 0x25, 0x5d, 0x4d, 0xe3, 0x9b, 0x04,
0x31, 0x45, 0x6d, 0xa8, 0x2e, 0x7e, 0xf7, 0xcd, 0xcd, 0x95, 0x4b, 0xf4, 0x1c, 0x6c, 0x1a, 0x5f,
0x06, 0x29, 0x8b, 0xcd, 0x5d, 0x7d, 0xfc, 0xa1, 0xec, 0xfb, 0xae, 0x46, 0xe8, 0x3a, 0x72, 0x7c,
0xf7, 0x05, 0xb4, 0x8a, 0x01, 0xb9, 0xf9, 0x05, 0x5d, 0x9b, 0x4b, 0x25, 0x97, 0xa8, 0x03, 0xb5,
0x4b, 0x12, 0x66, 0xd4, 0x1c, 0xa8, 0x8d, 0x17, 0x95, 0x67, 0xe5, 0xee, 0x1a, 0x6c, 0x23, 0x60,
0xb4, 0x03, 0x96, 0x92, 0x78, 0xb9, 0x38, 0x18, 0x79, 0xfc, 0x51, 0x09, 0xab, 0x08, 0x3a, 0x80,
0xff, 0x5f, 0xff, 0xee, 0x72, 0x91, 0x56, 0xee, 0x12, 0xe9, 0x51, 0x09, 0xb7, 0xaf, 0xe1, 0xda,
0xf7, 0xa6, 0xb1, 0xb9, 0x4a, 0xdd, 0xd7, 0x70, 0x2f, 0x97, 0x87, 0x2c, 0x50, 0x30, 0x41, 0x42,
0x75, 0x78, 0x0d, 0x6b, 0x03, 0x7d, 0x0a, 0x8d, 0x05, 0x8b, 0x92, 0x90, 0x4a, 0x65, 0x57, 0x54,
0xe4, 0xda, 0xd1, 0x7d, 0xaa, 0xf2, 0xf5, 0x58, 0x6f, 0xfb, 0x91, 0xdc, 0xda, 0x74, 0xf7, 0x19,
0xb4, 0xf2, 0xa9, 0x49, 0x09, 0x49, 0xb2, 0xb2, 0x34, 0xcc, 0xc9, 0xca, 0xd2, 0x10, 0x3d, 0x80,
0x3a, 0x3f, 0x27, 0xfb, 0xdf, 0xff, 0xa0, 0x12, 0x5b, 0xd8, 0x58, 0x5d, 0x0f, 0x9c, 0xbb, 0x34,
0x71, 0x0b, 0xe5, 0x7b, 0xc5, 0xd3, 0x9b, 0xfb, 0x0f, 0x0b, 0xd3, 0x2c, 0x9e, 0x5f, 0x98, 0x45,
0xef, 0xef, 0x32, 0x58, 0xaa, 0xa6, 0x0e, 0xd4, 0x42, 0x32, 0xa7, 0x79, 0x55, 0xda, 0x40, 0x8f,
0xa1, 0x49, 0xc2, 0x80, 0x70, 0x4f, 0xc7, 0x74, 0x57, 0xa0, 0x5c, 0x13, 0x05, 0x40, 0xba, 0x15,
0xf9, 0x23, 0x6c, 0x1c, 0x95, 0x74, 0x33, 0xcf, 0x61, 0x2b, 0x54, 0x33, 0xc9, 0xc7, 0x65, 0x7d,
0x64, 0x5c, 0xad, 0xb0, 0x60, 0xa3, 0x57, 0xb0, 0x1d, 0x70, 0x16, 0x12, 0x41, 0x3d, 0x36, 0xff,
0x95, 0x2e, 0x84, 0x53, 0x2b, 0xde, 0xef, 0xb1, 0x8e, 0xbd, 0x53, 0xa1, 0xa3, 0x12, 0xde, 0x0a,
0x8a, 0x0e, 0xf4, 0x15, 0xd8, 0x7e, 0xa4, 0xee, 0xb0, 0xf9, 0xff, 0xdd, 0x78, 0x7b, 0x8e, 0x4a,
0xb8, 0xee, 0x47, 0x72, 0xf5, 0xc6, 0x36, 0x44, 0xf5, 0x30, 0xb4, 0x8a, 0xf5, 0xa8, 0x39, 0xd0,
0xf4, 0x92, 0xa6, 0x86, 0x06, 0x63, 0x49, 0x7f, 0x92, 0xd2, 0x65, 0x70, 0x65, 0x28, 0x30, 0xd6,
0x46, 0x03, 0xd5, 0x6b, 0x0d, 0xf4, 0x5e, 0xc2, 0xd6, 0x8d, 0x3a, 0xef, 0xdc, 0x14, 0x81, 0x75,
0x4e, 0xf8, 0x79, 0xfe, 0x96, 0xca, 0x75, 0x2f, 0x86, 0xba, 0xae, 0xf6, 0xce, 0xac, 0x0e, 0xd4,
0x7e, 0xcb, 0x28, 0xcf, 0x9f, 0x60, 0x6d, 0x20, 0x07, 0x6c, 0x22, 0x04, 0x8d, 0x12, 0xa1, 0x6a,
0xa9, 0xe2, 0xdc, 0x94, 0x82, 0xa6, 0x57, 0x74, 0x91, 0xc9, 0x0b, 0xa1, 0x26, 0x51, 0xc5, 0xd7,
0x8e, 0xaf, 0x5f, 0x41, 0x5d, 0xbf, 0x5b, 0xf2, 0xb5, 0xc4, 0x67, 0xd3, 0xe9, 0x78, 0xfa, 0xb6,
0x5d, 0x92, 0xc6, 0xec, 0x6c, 0x38, 0x74, 0x67, 0xb3, 0x76, 0x59, 0x1a, 0xf2, 0x89, 0x3d, 0xc3,
0x6e, 0xbb, 0x22, 0x0d, 0xf9, 0xf0, 0x4a, 0x58, 0x75, 0x5e, 0x57, 0xff, 0xed, 0xef, 0xfe, 0x09,
0x00, 0x00, 0xff, 0xff, 0x7f, 0x6c, 0x7f, 0xd3, 0xbc, 0x08, 0x00, 0x00,
}