event

package
v0.3.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 23, 2022 License: MIT Imports: 19 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_event_event_proto protoreflect.FileDescriptor
View Source
var File_event_event_state_proto protoreflect.FileDescriptor
View Source
var File_event_project_state_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type ErrorEventState

type ErrorEventState struct {
	Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*ErrorEventState) Descriptor deprecated

func (*ErrorEventState) Descriptor() ([]byte, []int)

Deprecated: Use ErrorEventState.ProtoReflect.Descriptor instead.

func (*ErrorEventState) GetError

func (x *ErrorEventState) GetError() string

func (*ErrorEventState) ProtoMessage

func (*ErrorEventState) ProtoMessage()

func (*ErrorEventState) ProtoReflect

func (x *ErrorEventState) ProtoReflect() protoreflect.Message

func (*ErrorEventState) Reset

func (x *ErrorEventState) Reset()

func (*ErrorEventState) String

func (x *ErrorEventState) String() string

func (*ErrorEventState) Validate

func (m *ErrorEventState) Validate() error

Validate checks the field values on ErrorEventState with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ErrorEventStateValidationError

type ErrorEventStateValidationError struct {
	// contains filtered or unexported fields
}

ErrorEventStateValidationError is the validation error returned by ErrorEventState.Validate if the designated constraints aren't met.

func (ErrorEventStateValidationError) Cause

Cause function returns cause value.

func (ErrorEventStateValidationError) Error

Error satisfies the builtin error interface

func (ErrorEventStateValidationError) ErrorName

func (e ErrorEventStateValidationError) ErrorName() string

ErrorName returns error name.

func (ErrorEventStateValidationError) Field

Field function returns field value.

func (ErrorEventStateValidationError) Key

Key function returns key value.

func (ErrorEventStateValidationError) Reason

Reason function returns reason value.

type ErrorProjectEventState

type ErrorProjectEventState struct {
	RunSummary *lang.RunSummary `protobuf:"bytes,1,opt,name=run_summary,json=runSummary,proto3" json:"run_summary,omitempty"`
	Error      string           `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*ErrorProjectEventState) Descriptor deprecated

func (*ErrorProjectEventState) Descriptor() ([]byte, []int)

Deprecated: Use ErrorProjectEventState.ProtoReflect.Descriptor instead.

func (*ErrorProjectEventState) GetError

func (x *ErrorProjectEventState) GetError() string

func (*ErrorProjectEventState) GetRunSummary

func (x *ErrorProjectEventState) GetRunSummary() *lang.RunSummary

func (*ErrorProjectEventState) ProtoMessage

func (*ErrorProjectEventState) ProtoMessage()

func (*ErrorProjectEventState) ProtoReflect

func (x *ErrorProjectEventState) ProtoReflect() protoreflect.Message

func (*ErrorProjectEventState) Reset

func (x *ErrorProjectEventState) Reset()

func (*ErrorProjectEventState) String

func (x *ErrorProjectEventState) String() string

func (*ErrorProjectEventState) Validate

func (m *ErrorProjectEventState) Validate() error

Validate checks the field values on ErrorProjectEventState with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ErrorProjectEventStateValidationError

type ErrorProjectEventStateValidationError struct {
	// contains filtered or unexported fields
}

ErrorProjectEventStateValidationError is the validation error returned by ErrorProjectEventState.Validate if the designated constraints aren't met.

func (ErrorProjectEventStateValidationError) Cause

Cause function returns cause value.

func (ErrorProjectEventStateValidationError) Error

Error satisfies the builtin error interface

func (ErrorProjectEventStateValidationError) ErrorName

ErrorName returns error name.

func (ErrorProjectEventStateValidationError) Field

Field function returns field value.

func (ErrorProjectEventStateValidationError) Key

Key function returns key value.

func (ErrorProjectEventStateValidationError) Reason

Reason function returns reason value.

type Event

type Event struct {
	T                *timestamppb.Timestamp   `protobuf:"bytes,1,opt,name=t,proto3" json:"t,omitempty"`
	Id               string                   `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	SrcId            string                   `protobuf:"bytes,3,opt,name=src_id,json=srcId,proto3" json:"src_id,omitempty"`
	AssociationToken string                   `protobuf:"bytes,4,opt,name=association_token,json=associationToken,proto3" json:"association_token,omitempty"`
	OriginalId       string                   `protobuf:"bytes,5,opt,name=original_id,json=originalId,proto3" json:"original_id,omitempty"`
	Type             string                   `protobuf:"bytes,6,opt,name=type,proto3" json:"type,omitempty"`
	Data             map[string]*values.Value `` /* 149-byte string literal not displayed */
	Memo             map[string]string        `` /* 149-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Event) Descriptor deprecated

func (*Event) Descriptor() ([]byte, []int)

Deprecated: Use Event.ProtoReflect.Descriptor instead.

func (*Event) GetAssociationToken

func (x *Event) GetAssociationToken() string

func (*Event) GetData

func (x *Event) GetData() map[string]*values.Value

func (*Event) GetId

func (x *Event) GetId() string

func (*Event) GetMemo

func (x *Event) GetMemo() map[string]string

func (*Event) GetOriginalId

func (x *Event) GetOriginalId() string

func (*Event) GetSrcId

func (x *Event) GetSrcId() string

func (*Event) GetT

func (x *Event) GetT() *timestamppb.Timestamp

func (*Event) GetType

func (x *Event) GetType() string

func (*Event) ProtoMessage

func (*Event) ProtoMessage()

func (*Event) ProtoReflect

func (x *Event) ProtoReflect() protoreflect.Message

func (*Event) Reset

func (x *Event) Reset()

func (*Event) String

func (x *Event) String() string

func (*Event) Validate

func (m *Event) Validate() error

Validate checks the field values on Event with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type EventState

type EventState struct {

	// Types that are assignable to Type:
	//	*EventState_Ignored
	//	*EventState_Error
	//	*EventState_Pending
	//	*EventState_Processing
	//	*EventState_Processed
	Type isEventState_Type `protobuf_oneof:"type"`
	// contains filtered or unexported fields
}

func (*EventState) Descriptor deprecated

func (*EventState) Descriptor() ([]byte, []int)

Deprecated: Use EventState.ProtoReflect.Descriptor instead.

func (*EventState) GetError

func (x *EventState) GetError() *ErrorEventState

func (*EventState) GetIgnored

func (x *EventState) GetIgnored() *IgnoredEventState

func (*EventState) GetPending

func (x *EventState) GetPending() *PendingEventState

func (*EventState) GetProcessed

func (x *EventState) GetProcessed() *ProcessedEventState

func (*EventState) GetProcessing

func (x *EventState) GetProcessing() *ProcessingEventState

func (*EventState) GetType

func (m *EventState) GetType() isEventState_Type

func (*EventState) ProtoMessage

func (*EventState) ProtoMessage()

func (*EventState) ProtoReflect

func (x *EventState) ProtoReflect() protoreflect.Message

func (*EventState) Reset

func (x *EventState) Reset()

func (*EventState) String

func (x *EventState) String() string

func (*EventState) Validate

func (m *EventState) Validate() error

Validate checks the field values on EventState with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type EventStateRecord

type EventStateRecord struct {
	T     *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=t,proto3" json:"t,omitempty"`
	State *EventState            `protobuf:"bytes,2,opt,name=state,proto3" json:"state,omitempty"`
	// contains filtered or unexported fields
}

func (*EventStateRecord) Descriptor deprecated

func (*EventStateRecord) Descriptor() ([]byte, []int)

Deprecated: Use EventStateRecord.ProtoReflect.Descriptor instead.

func (*EventStateRecord) GetState

func (x *EventStateRecord) GetState() *EventState

func (*EventStateRecord) GetT

func (*EventStateRecord) ProtoMessage

func (*EventStateRecord) ProtoMessage()

func (*EventStateRecord) ProtoReflect

func (x *EventStateRecord) ProtoReflect() protoreflect.Message

func (*EventStateRecord) Reset

func (x *EventStateRecord) Reset()

func (*EventStateRecord) String

func (x *EventStateRecord) String() string

func (*EventStateRecord) Validate

func (m *EventStateRecord) Validate() error

Validate checks the field values on EventStateRecord with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type EventStateRecordValidationError

type EventStateRecordValidationError struct {
	// contains filtered or unexported fields
}

EventStateRecordValidationError is the validation error returned by EventStateRecord.Validate if the designated constraints aren't met.

func (EventStateRecordValidationError) Cause

Cause function returns cause value.

func (EventStateRecordValidationError) Error

Error satisfies the builtin error interface

func (EventStateRecordValidationError) ErrorName

ErrorName returns error name.

func (EventStateRecordValidationError) Field

Field function returns field value.

func (EventStateRecordValidationError) Key

Key function returns key value.

func (EventStateRecordValidationError) Reason

Reason function returns reason value.

type EventStateValidationError

type EventStateValidationError struct {
	// contains filtered or unexported fields
}

EventStateValidationError is the validation error returned by EventState.Validate if the designated constraints aren't met.

func (EventStateValidationError) Cause

func (e EventStateValidationError) Cause() error

Cause function returns cause value.

func (EventStateValidationError) Error

Error satisfies the builtin error interface

func (EventStateValidationError) ErrorName

func (e EventStateValidationError) ErrorName() string

ErrorName returns error name.

func (EventStateValidationError) Field

Field function returns field value.

func (EventStateValidationError) Key

Key function returns key value.

func (EventStateValidationError) Reason

func (e EventStateValidationError) Reason() string

Reason function returns reason value.

type EventState_Error

type EventState_Error struct {
	Error *ErrorEventState `protobuf:"bytes,2,opt,name=error,proto3,oneof"`
}

type EventState_Ignored

type EventState_Ignored struct {
	Ignored *IgnoredEventState `protobuf:"bytes,1,opt,name=ignored,proto3,oneof"`
}

type EventState_Pending

type EventState_Pending struct {
	Pending *PendingEventState `protobuf:"bytes,3,opt,name=pending,proto3,oneof"`
}

type EventState_Processed

type EventState_Processed struct {
	Processed *ProcessedEventState `protobuf:"bytes,5,opt,name=processed,proto3,oneof"`
}

type EventState_Processing

type EventState_Processing struct {
	Processing *ProcessingEventState `protobuf:"bytes,4,opt,name=processing,proto3,oneof"`
}

type EventValidationError

type EventValidationError struct {
	// contains filtered or unexported fields
}

EventValidationError is the validation error returned by Event.Validate if the designated constraints aren't met.

func (EventValidationError) Cause

func (e EventValidationError) Cause() error

Cause function returns cause value.

func (EventValidationError) Error

func (e EventValidationError) Error() string

Error satisfies the builtin error interface

func (EventValidationError) ErrorName

func (e EventValidationError) ErrorName() string

ErrorName returns error name.

func (EventValidationError) Field

func (e EventValidationError) Field() string

Field function returns field value.

func (EventValidationError) Key

func (e EventValidationError) Key() bool

Key function returns key value.

func (EventValidationError) Reason

func (e EventValidationError) Reason() string

Reason function returns reason value.

type IgnoredEventState

type IgnoredEventState struct {
	Reason string `protobuf:"bytes,1,opt,name=reason,proto3" json:"reason,omitempty"`
	// contains filtered or unexported fields
}

func (*IgnoredEventState) Descriptor deprecated

func (*IgnoredEventState) Descriptor() ([]byte, []int)

Deprecated: Use IgnoredEventState.ProtoReflect.Descriptor instead.

func (*IgnoredEventState) GetReason

func (x *IgnoredEventState) GetReason() string

func (*IgnoredEventState) ProtoMessage

func (*IgnoredEventState) ProtoMessage()

func (*IgnoredEventState) ProtoReflect

func (x *IgnoredEventState) ProtoReflect() protoreflect.Message

func (*IgnoredEventState) Reset

func (x *IgnoredEventState) Reset()

func (*IgnoredEventState) String

func (x *IgnoredEventState) String() string

func (*IgnoredEventState) Validate

func (m *IgnoredEventState) Validate() error

Validate checks the field values on IgnoredEventState with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type IgnoredEventStateValidationError

type IgnoredEventStateValidationError struct {
	// contains filtered or unexported fields
}

IgnoredEventStateValidationError is the validation error returned by IgnoredEventState.Validate if the designated constraints aren't met.

func (IgnoredEventStateValidationError) Cause

Cause function returns cause value.

func (IgnoredEventStateValidationError) Error

Error satisfies the builtin error interface

func (IgnoredEventStateValidationError) ErrorName

ErrorName returns error name.

func (IgnoredEventStateValidationError) Field

Field function returns field value.

func (IgnoredEventStateValidationError) Key

Key function returns key value.

func (IgnoredEventStateValidationError) Reason

Reason function returns reason value.

type IgnoredProjectEventState

type IgnoredProjectEventState struct {
	Reason string `protobuf:"bytes,1,opt,name=reason,proto3" json:"reason,omitempty"`
	// contains filtered or unexported fields
}

func (*IgnoredProjectEventState) Descriptor deprecated

func (*IgnoredProjectEventState) Descriptor() ([]byte, []int)

Deprecated: Use IgnoredProjectEventState.ProtoReflect.Descriptor instead.

func (*IgnoredProjectEventState) GetReason

func (x *IgnoredProjectEventState) GetReason() string

func (*IgnoredProjectEventState) ProtoMessage

func (*IgnoredProjectEventState) ProtoMessage()

func (*IgnoredProjectEventState) ProtoReflect

func (x *IgnoredProjectEventState) ProtoReflect() protoreflect.Message

func (*IgnoredProjectEventState) Reset

func (x *IgnoredProjectEventState) Reset()

func (*IgnoredProjectEventState) String

func (x *IgnoredProjectEventState) String() string

func (*IgnoredProjectEventState) Validate

func (m *IgnoredProjectEventState) Validate() error

Validate checks the field values on IgnoredProjectEventState with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type IgnoredProjectEventStateValidationError

type IgnoredProjectEventStateValidationError struct {
	// contains filtered or unexported fields
}

IgnoredProjectEventStateValidationError is the validation error returned by IgnoredProjectEventState.Validate if the designated constraints aren't met.

func (IgnoredProjectEventStateValidationError) Cause

Cause function returns cause value.

func (IgnoredProjectEventStateValidationError) Error

Error satisfies the builtin error interface

func (IgnoredProjectEventStateValidationError) ErrorName

ErrorName returns error name.

func (IgnoredProjectEventStateValidationError) Field

Field function returns field value.

func (IgnoredProjectEventStateValidationError) Key

Key function returns key value.

func (IgnoredProjectEventStateValidationError) Reason

Reason function returns reason value.

type PendingEventState

type PendingEventState struct {
	// contains filtered or unexported fields
}

func (*PendingEventState) Descriptor deprecated

func (*PendingEventState) Descriptor() ([]byte, []int)

Deprecated: Use PendingEventState.ProtoReflect.Descriptor instead.

func (*PendingEventState) ProtoMessage

func (*PendingEventState) ProtoMessage()

func (*PendingEventState) ProtoReflect

func (x *PendingEventState) ProtoReflect() protoreflect.Message

func (*PendingEventState) Reset

func (x *PendingEventState) Reset()

func (*PendingEventState) String

func (x *PendingEventState) String() string

func (*PendingEventState) Validate

func (m *PendingEventState) Validate() error

Validate checks the field values on PendingEventState with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type PendingEventStateValidationError

type PendingEventStateValidationError struct {
	// contains filtered or unexported fields
}

PendingEventStateValidationError is the validation error returned by PendingEventState.Validate if the designated constraints aren't met.

func (PendingEventStateValidationError) Cause

Cause function returns cause value.

func (PendingEventStateValidationError) Error

Error satisfies the builtin error interface

func (PendingEventStateValidationError) ErrorName

ErrorName returns error name.

func (PendingEventStateValidationError) Field

Field function returns field value.

func (PendingEventStateValidationError) Key

Key function returns key value.

func (PendingEventStateValidationError) Reason

Reason function returns reason value.

type PendingProjectEventState

type PendingProjectEventState struct {
	// contains filtered or unexported fields
}

func (*PendingProjectEventState) Descriptor deprecated

func (*PendingProjectEventState) Descriptor() ([]byte, []int)

Deprecated: Use PendingProjectEventState.ProtoReflect.Descriptor instead.

func (*PendingProjectEventState) ProtoMessage

func (*PendingProjectEventState) ProtoMessage()

func (*PendingProjectEventState) ProtoReflect

func (x *PendingProjectEventState) ProtoReflect() protoreflect.Message

func (*PendingProjectEventState) Reset

func (x *PendingProjectEventState) Reset()

func (*PendingProjectEventState) String

func (x *PendingProjectEventState) String() string

func (*PendingProjectEventState) Validate

func (m *PendingProjectEventState) Validate() error

Validate checks the field values on PendingProjectEventState with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type PendingProjectEventStateValidationError

type PendingProjectEventStateValidationError struct {
	// contains filtered or unexported fields
}

PendingProjectEventStateValidationError is the validation error returned by PendingProjectEventState.Validate if the designated constraints aren't met.

func (PendingProjectEventStateValidationError) Cause

Cause function returns cause value.

func (PendingProjectEventStateValidationError) Error

Error satisfies the builtin error interface

func (PendingProjectEventStateValidationError) ErrorName

ErrorName returns error name.

func (PendingProjectEventStateValidationError) Field

Field function returns field value.

func (PendingProjectEventStateValidationError) Key

Key function returns key value.

func (PendingProjectEventStateValidationError) Reason

Reason function returns reason value.

type ProcessedEventState

type ProcessedEventState struct {
	ProjectIds     []string `protobuf:"bytes,1,rep,name=project_ids,json=projectIds,proto3" json:"project_ids,omitempty"`
	AttnProjectIds []string `protobuf:"bytes,2,rep,name=attn_project_ids,json=attnProjectIds,proto3" json:"attn_project_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*ProcessedEventState) Descriptor deprecated

func (*ProcessedEventState) Descriptor() ([]byte, []int)

Deprecated: Use ProcessedEventState.ProtoReflect.Descriptor instead.

func (*ProcessedEventState) GetAttnProjectIds

func (x *ProcessedEventState) GetAttnProjectIds() []string

func (*ProcessedEventState) GetProjectIds

func (x *ProcessedEventState) GetProjectIds() []string

func (*ProcessedEventState) ProtoMessage

func (*ProcessedEventState) ProtoMessage()

func (*ProcessedEventState) ProtoReflect

func (x *ProcessedEventState) ProtoReflect() protoreflect.Message

func (*ProcessedEventState) Reset

func (x *ProcessedEventState) Reset()

func (*ProcessedEventState) String

func (x *ProcessedEventState) String() string

func (*ProcessedEventState) Validate

func (m *ProcessedEventState) Validate() error

Validate checks the field values on ProcessedEventState with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ProcessedEventStateValidationError

type ProcessedEventStateValidationError struct {
	// contains filtered or unexported fields
}

ProcessedEventStateValidationError is the validation error returned by ProcessedEventState.Validate if the designated constraints aren't met.

func (ProcessedEventStateValidationError) Cause

Cause function returns cause value.

func (ProcessedEventStateValidationError) Error

Error satisfies the builtin error interface

func (ProcessedEventStateValidationError) ErrorName

ErrorName returns error name.

func (ProcessedEventStateValidationError) Field

Field function returns field value.

func (ProcessedEventStateValidationError) Key

Key function returns key value.

func (ProcessedEventStateValidationError) Reason

Reason function returns reason value.

type ProcessedProjectEventState

type ProcessedProjectEventState struct {
	RunSummary *lang.RunSummary `protobuf:"bytes,1,opt,name=run_summary,json=runSummary,proto3" json:"run_summary,omitempty"`
	// contains filtered or unexported fields
}

func (*ProcessedProjectEventState) Descriptor deprecated

func (*ProcessedProjectEventState) Descriptor() ([]byte, []int)

Deprecated: Use ProcessedProjectEventState.ProtoReflect.Descriptor instead.

func (*ProcessedProjectEventState) GetRunSummary

func (x *ProcessedProjectEventState) GetRunSummary() *lang.RunSummary

func (*ProcessedProjectEventState) ProtoMessage

func (*ProcessedProjectEventState) ProtoMessage()

func (*ProcessedProjectEventState) ProtoReflect

func (*ProcessedProjectEventState) Reset

func (x *ProcessedProjectEventState) Reset()

func (*ProcessedProjectEventState) String

func (x *ProcessedProjectEventState) String() string

func (*ProcessedProjectEventState) Validate

func (m *ProcessedProjectEventState) Validate() error

Validate checks the field values on ProcessedProjectEventState with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ProcessedProjectEventStateValidationError

type ProcessedProjectEventStateValidationError struct {
	// contains filtered or unexported fields
}

ProcessedProjectEventStateValidationError is the validation error returned by ProcessedProjectEventState.Validate if the designated constraints aren't met.

func (ProcessedProjectEventStateValidationError) Cause

Cause function returns cause value.

func (ProcessedProjectEventStateValidationError) Error

Error satisfies the builtin error interface

func (ProcessedProjectEventStateValidationError) ErrorName

ErrorName returns error name.

func (ProcessedProjectEventStateValidationError) Field

Field function returns field value.

func (ProcessedProjectEventStateValidationError) Key

Key function returns key value.

func (ProcessedProjectEventStateValidationError) Reason

Reason function returns reason value.

type ProcessingEventState

type ProcessingEventState struct {
	ProjectIds        []string `protobuf:"bytes,1,rep,name=project_ids,json=projectIds,proto3" json:"project_ids,omitempty"`
	IgnoredProjectIds []string `protobuf:"bytes,2,rep,name=ignored_project_ids,json=ignoredProjectIds,proto3" json:"ignored_project_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*ProcessingEventState) Descriptor deprecated

func (*ProcessingEventState) Descriptor() ([]byte, []int)

Deprecated: Use ProcessingEventState.ProtoReflect.Descriptor instead.

func (*ProcessingEventState) GetIgnoredProjectIds

func (x *ProcessingEventState) GetIgnoredProjectIds() []string

func (*ProcessingEventState) GetProjectIds

func (x *ProcessingEventState) GetProjectIds() []string

func (*ProcessingEventState) ProtoMessage

func (*ProcessingEventState) ProtoMessage()

func (*ProcessingEventState) ProtoReflect

func (x *ProcessingEventState) ProtoReflect() protoreflect.Message

func (*ProcessingEventState) Reset

func (x *ProcessingEventState) Reset()

func (*ProcessingEventState) String

func (x *ProcessingEventState) String() string

func (*ProcessingEventState) Validate

func (m *ProcessingEventState) Validate() error

Validate checks the field values on ProcessingEventState with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ProcessingEventStateValidationError

type ProcessingEventStateValidationError struct {
	// contains filtered or unexported fields
}

ProcessingEventStateValidationError is the validation error returned by ProcessingEventState.Validate if the designated constraints aren't met.

func (ProcessingEventStateValidationError) Cause

Cause function returns cause value.

func (ProcessingEventStateValidationError) Error

Error satisfies the builtin error interface

func (ProcessingEventStateValidationError) ErrorName

ErrorName returns error name.

func (ProcessingEventStateValidationError) Field

Field function returns field value.

func (ProcessingEventStateValidationError) Key

Key function returns key value.

func (ProcessingEventStateValidationError) Reason

Reason function returns reason value.

type ProcessingProjectEventState

type ProcessingProjectEventState struct {
	// contains filtered or unexported fields
}

func (*ProcessingProjectEventState) Descriptor deprecated

func (*ProcessingProjectEventState) Descriptor() ([]byte, []int)

Deprecated: Use ProcessingProjectEventState.ProtoReflect.Descriptor instead.

func (*ProcessingProjectEventState) ProtoMessage

func (*ProcessingProjectEventState) ProtoMessage()

func (*ProcessingProjectEventState) ProtoReflect

func (*ProcessingProjectEventState) Reset

func (x *ProcessingProjectEventState) Reset()

func (*ProcessingProjectEventState) String

func (x *ProcessingProjectEventState) String() string

func (*ProcessingProjectEventState) Validate

func (m *ProcessingProjectEventState) Validate() error

Validate checks the field values on ProcessingProjectEventState with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ProcessingProjectEventStateValidationError

type ProcessingProjectEventStateValidationError struct {
	// contains filtered or unexported fields
}

ProcessingProjectEventStateValidationError is the validation error returned by ProcessingProjectEventState.Validate if the designated constraints aren't met.

func (ProcessingProjectEventStateValidationError) Cause

Cause function returns cause value.

func (ProcessingProjectEventStateValidationError) Error

Error satisfies the builtin error interface

func (ProcessingProjectEventStateValidationError) ErrorName

ErrorName returns error name.

func (ProcessingProjectEventStateValidationError) Field

Field function returns field value.

func (ProcessingProjectEventStateValidationError) Key

Key function returns key value.

func (ProcessingProjectEventStateValidationError) Reason

Reason function returns reason value.

type ProjectEventState

type ProjectEventState struct {

	// Types that are assignable to Type:
	//	*ProjectEventState_Error
	//	*ProjectEventState_Ignored
	//	*ProjectEventState_Pending
	//	*ProjectEventState_Processing
	//	*ProjectEventState_Waiting
	//	*ProjectEventState_Processed
	Type isProjectEventState_Type `protobuf_oneof:"type"`
	// contains filtered or unexported fields
}

func (*ProjectEventState) Descriptor deprecated

func (*ProjectEventState) Descriptor() ([]byte, []int)

Deprecated: Use ProjectEventState.ProtoReflect.Descriptor instead.

func (*ProjectEventState) GetError

func (*ProjectEventState) GetIgnored

func (*ProjectEventState) GetPending

func (*ProjectEventState) GetProcessed

func (x *ProjectEventState) GetProcessed() *ProcessedProjectEventState

func (*ProjectEventState) GetProcessing

func (x *ProjectEventState) GetProcessing() *ProcessingProjectEventState

func (*ProjectEventState) GetType

func (m *ProjectEventState) GetType() isProjectEventState_Type

func (*ProjectEventState) GetWaiting

func (*ProjectEventState) ProtoMessage

func (*ProjectEventState) ProtoMessage()

func (*ProjectEventState) ProtoReflect

func (x *ProjectEventState) ProtoReflect() protoreflect.Message

func (*ProjectEventState) Reset

func (x *ProjectEventState) Reset()

func (*ProjectEventState) String

func (x *ProjectEventState) String() string

func (*ProjectEventState) Validate

func (m *ProjectEventState) Validate() error

Validate checks the field values on ProjectEventState with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ProjectEventStateRecord

type ProjectEventStateRecord struct {
	T     *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=t,proto3" json:"t,omitempty"`
	State *ProjectEventState     `protobuf:"bytes,2,opt,name=state,proto3" json:"state,omitempty"`
	// contains filtered or unexported fields
}

func (*ProjectEventStateRecord) Descriptor deprecated

func (*ProjectEventStateRecord) Descriptor() ([]byte, []int)

Deprecated: Use ProjectEventStateRecord.ProtoReflect.Descriptor instead.

func (*ProjectEventStateRecord) GetState

func (*ProjectEventStateRecord) GetT

func (*ProjectEventStateRecord) ProtoMessage

func (*ProjectEventStateRecord) ProtoMessage()

func (*ProjectEventStateRecord) ProtoReflect

func (x *ProjectEventStateRecord) ProtoReflect() protoreflect.Message

func (*ProjectEventStateRecord) Reset

func (x *ProjectEventStateRecord) Reset()

func (*ProjectEventStateRecord) String

func (x *ProjectEventStateRecord) String() string

func (*ProjectEventStateRecord) Validate

func (m *ProjectEventStateRecord) Validate() error

Validate checks the field values on ProjectEventStateRecord with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type ProjectEventStateRecordValidationError

type ProjectEventStateRecordValidationError struct {
	// contains filtered or unexported fields
}

ProjectEventStateRecordValidationError is the validation error returned by ProjectEventStateRecord.Validate if the designated constraints aren't met.

func (ProjectEventStateRecordValidationError) Cause

Cause function returns cause value.

func (ProjectEventStateRecordValidationError) Error

Error satisfies the builtin error interface

func (ProjectEventStateRecordValidationError) ErrorName

ErrorName returns error name.

func (ProjectEventStateRecordValidationError) Field

Field function returns field value.

func (ProjectEventStateRecordValidationError) Key

Key function returns key value.

func (ProjectEventStateRecordValidationError) Reason

Reason function returns reason value.

type ProjectEventStateValidationError

type ProjectEventStateValidationError struct {
	// contains filtered or unexported fields
}

ProjectEventStateValidationError is the validation error returned by ProjectEventState.Validate if the designated constraints aren't met.

func (ProjectEventStateValidationError) Cause

Cause function returns cause value.

func (ProjectEventStateValidationError) Error

Error satisfies the builtin error interface

func (ProjectEventStateValidationError) ErrorName

ErrorName returns error name.

func (ProjectEventStateValidationError) Field

Field function returns field value.

func (ProjectEventStateValidationError) Key

Key function returns key value.

func (ProjectEventStateValidationError) Reason

Reason function returns reason value.

type ProjectEventState_Error

type ProjectEventState_Error struct {
	Error *ErrorProjectEventState `protobuf:"bytes,1,opt,name=error,proto3,oneof"`
}

type ProjectEventState_Ignored

type ProjectEventState_Ignored struct {
	Ignored *IgnoredProjectEventState `protobuf:"bytes,2,opt,name=ignored,proto3,oneof"`
}

type ProjectEventState_Pending

type ProjectEventState_Pending struct {
	Pending *PendingProjectEventState `protobuf:"bytes,3,opt,name=pending,proto3,oneof"`
}

type ProjectEventState_Processed

type ProjectEventState_Processed struct {
	Processed *ProcessedProjectEventState `protobuf:"bytes,6,opt,name=processed,proto3,oneof"`
}

type ProjectEventState_Processing

type ProjectEventState_Processing struct {
	Processing *ProcessingProjectEventState `protobuf:"bytes,4,opt,name=processing,proto3,oneof"`
}

type ProjectEventState_Waiting

type ProjectEventState_Waiting struct {
	Waiting *WaitingProjectEventState `protobuf:"bytes,5,opt,name=waiting,proto3,oneof"`
}

type WaitingProjectEventState

type WaitingProjectEventState struct {
	Names      []string         `protobuf:"bytes,1,rep,name=names,proto3" json:"names,omitempty"`
	RunSummary *lang.RunSummary `protobuf:"bytes,2,opt,name=run_summary,json=runSummary,proto3" json:"run_summary,omitempty"`
	// contains filtered or unexported fields
}

func (*WaitingProjectEventState) Descriptor deprecated

func (*WaitingProjectEventState) Descriptor() ([]byte, []int)

Deprecated: Use WaitingProjectEventState.ProtoReflect.Descriptor instead.

func (*WaitingProjectEventState) GetNames

func (x *WaitingProjectEventState) GetNames() []string

func (*WaitingProjectEventState) GetRunSummary

func (x *WaitingProjectEventState) GetRunSummary() *lang.RunSummary

func (*WaitingProjectEventState) ProtoMessage

func (*WaitingProjectEventState) ProtoMessage()

func (*WaitingProjectEventState) ProtoReflect

func (x *WaitingProjectEventState) ProtoReflect() protoreflect.Message

func (*WaitingProjectEventState) Reset

func (x *WaitingProjectEventState) Reset()

func (*WaitingProjectEventState) String

func (x *WaitingProjectEventState) String() string

func (*WaitingProjectEventState) Validate

func (m *WaitingProjectEventState) Validate() error

Validate checks the field values on WaitingProjectEventState with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.

type WaitingProjectEventStateValidationError

type WaitingProjectEventStateValidationError struct {
	// contains filtered or unexported fields
}

WaitingProjectEventStateValidationError is the validation error returned by WaitingProjectEventState.Validate if the designated constraints aren't met.

func (WaitingProjectEventStateValidationError) Cause

Cause function returns cause value.

func (WaitingProjectEventStateValidationError) Error

Error satisfies the builtin error interface

func (WaitingProjectEventStateValidationError) ErrorName

ErrorName returns error name.

func (WaitingProjectEventStateValidationError) Field

Field function returns field value.

func (WaitingProjectEventStateValidationError) Key

Key function returns key value.

func (WaitingProjectEventStateValidationError) Reason

Reason function returns reason value.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL