Documentation
¶
Index ¶
- Variables
- type CreatedPayload
- func (*CreatedPayload) Descriptor() ([]byte, []int)deprecated
- func (x *CreatedPayload) GetElement() *anypb.Any
- func (x *CreatedPayload) GetKey() string
- func (*CreatedPayload) ProtoMessage()
- func (x *CreatedPayload) ProtoReflect() protoreflect.Message
- func (x *CreatedPayload) Reset()
- func (x *CreatedPayload) String() string
- func (m *CreatedPayload) Validate() error
- func (m *CreatedPayload) ValidateAll() error
- type CreatedPayloadMultiError
- type CreatedPayloadValidationError
- func (e CreatedPayloadValidationError) Cause() error
- func (e CreatedPayloadValidationError) Error() string
- func (e CreatedPayloadValidationError) ErrorName() string
- func (e CreatedPayloadValidationError) Field() string
- func (e CreatedPayloadValidationError) Key() bool
- func (e CreatedPayloadValidationError) Reason() string
- type DeletedPayload
- func (*DeletedPayload) Descriptor() ([]byte, []int)deprecated
- func (x *DeletedPayload) GetKey() string
- func (*DeletedPayload) ProtoMessage()
- func (x *DeletedPayload) ProtoReflect() protoreflect.Message
- func (x *DeletedPayload) Reset()
- func (x *DeletedPayload) String() string
- func (m *DeletedPayload) Validate() error
- func (m *DeletedPayload) ValidateAll() error
- type DeletedPayloadMultiError
- type DeletedPayloadValidationError
- func (e DeletedPayloadValidationError) Cause() error
- func (e DeletedPayloadValidationError) Error() string
- func (e DeletedPayloadValidationError) ErrorName() string
- func (e DeletedPayloadValidationError) Field() string
- func (e DeletedPayloadValidationError) Key() bool
- func (e DeletedPayloadValidationError) Reason() string
- type ReplacedPayload
- func (*ReplacedPayload) Descriptor() ([]byte, []int)deprecated
- func (x *ReplacedPayload) GetElement() *anypb.Any
- func (*ReplacedPayload) ProtoMessage()
- func (x *ReplacedPayload) ProtoReflect() protoreflect.Message
- func (x *ReplacedPayload) Reset()
- func (x *ReplacedPayload) String() string
- func (m *ReplacedPayload) Validate() error
- func (m *ReplacedPayload) ValidateAll() error
- type ReplacedPayloadMultiError
- type ReplacedPayloadValidationError
- func (e ReplacedPayloadValidationError) Cause() error
- func (e ReplacedPayloadValidationError) Error() string
- func (e ReplacedPayloadValidationError) ErrorName() string
- func (e ReplacedPayloadValidationError) Field() string
- func (e ReplacedPayloadValidationError) Key() bool
- func (e ReplacedPayloadValidationError) Reason() string
- type UpdatedPayload
- func (*UpdatedPayload) Descriptor() ([]byte, []int)deprecated
- func (x *UpdatedPayload) GetElement() *anypb.Any
- func (*UpdatedPayload) ProtoMessage()
- func (x *UpdatedPayload) ProtoReflect() protoreflect.Message
- func (x *UpdatedPayload) Reset()
- func (x *UpdatedPayload) String() string
- func (m *UpdatedPayload) Validate() error
- func (m *UpdatedPayload) ValidateAll() error
- type UpdatedPayloadMultiError
- type UpdatedPayloadValidationError
- func (e UpdatedPayloadValidationError) Cause() error
- func (e UpdatedPayloadValidationError) Error() string
- func (e UpdatedPayloadValidationError) ErrorName() string
- func (e UpdatedPayloadValidationError) Field() string
- func (e UpdatedPayloadValidationError) Key() bool
- func (e UpdatedPayloadValidationError) Reason() string
Constants ¶
This section is empty.
Variables ¶
var File_graphify_observer_v1_events_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type CreatedPayload ¶
type CreatedPayload struct {
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
Element *anypb.Any `protobuf:"bytes,2,opt,name=element,proto3" json:"element,omitempty"`
// contains filtered or unexported fields
}
func (*CreatedPayload) Descriptor
deprecated
func (*CreatedPayload) Descriptor() ([]byte, []int)
Deprecated: Use CreatedPayload.ProtoReflect.Descriptor instead.
func (*CreatedPayload) GetElement ¶
func (x *CreatedPayload) GetElement() *anypb.Any
func (*CreatedPayload) GetKey ¶
func (x *CreatedPayload) GetKey() string
func (*CreatedPayload) ProtoMessage ¶
func (*CreatedPayload) ProtoMessage()
func (*CreatedPayload) ProtoReflect ¶
func (x *CreatedPayload) ProtoReflect() protoreflect.Message
func (*CreatedPayload) Reset ¶
func (x *CreatedPayload) Reset()
func (*CreatedPayload) String ¶
func (x *CreatedPayload) String() string
func (*CreatedPayload) Validate ¶ added in v0.4.44
func (m *CreatedPayload) Validate() error
Validate checks the field values on CreatedPayload with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*CreatedPayload) ValidateAll ¶ added in v0.4.44
func (m *CreatedPayload) ValidateAll() error
ValidateAll checks the field values on CreatedPayload with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreatedPayloadMultiError, or nil if none found.
type CreatedPayloadMultiError ¶ added in v0.4.44
type CreatedPayloadMultiError []error
CreatedPayloadMultiError is an error wrapping multiple validation errors returned by CreatedPayload.ValidateAll() if the designated constraints aren't met.
func (CreatedPayloadMultiError) AllErrors ¶ added in v0.4.44
func (m CreatedPayloadMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (CreatedPayloadMultiError) Error ¶ added in v0.4.44
func (m CreatedPayloadMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type CreatedPayloadValidationError ¶ added in v0.4.44
type CreatedPayloadValidationError struct {
// contains filtered or unexported fields
}
CreatedPayloadValidationError is the validation error returned by CreatedPayload.Validate if the designated constraints aren't met.
func (CreatedPayloadValidationError) Cause ¶ added in v0.4.44
func (e CreatedPayloadValidationError) Cause() error
Cause function returns cause value.
func (CreatedPayloadValidationError) Error ¶ added in v0.4.44
func (e CreatedPayloadValidationError) Error() string
Error satisfies the builtin error interface
func (CreatedPayloadValidationError) ErrorName ¶ added in v0.4.44
func (e CreatedPayloadValidationError) ErrorName() string
ErrorName returns error name.
func (CreatedPayloadValidationError) Field ¶ added in v0.4.44
func (e CreatedPayloadValidationError) Field() string
Field function returns field value.
func (CreatedPayloadValidationError) Key ¶ added in v0.4.44
func (e CreatedPayloadValidationError) Key() bool
Key function returns key value.
func (CreatedPayloadValidationError) Reason ¶ added in v0.4.44
func (e CreatedPayloadValidationError) Reason() string
Reason function returns reason value.
type DeletedPayload ¶
type DeletedPayload struct {
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
// contains filtered or unexported fields
}
func (*DeletedPayload) Descriptor
deprecated
func (*DeletedPayload) Descriptor() ([]byte, []int)
Deprecated: Use DeletedPayload.ProtoReflect.Descriptor instead.
func (*DeletedPayload) GetKey ¶
func (x *DeletedPayload) GetKey() string
func (*DeletedPayload) ProtoMessage ¶
func (*DeletedPayload) ProtoMessage()
func (*DeletedPayload) ProtoReflect ¶
func (x *DeletedPayload) ProtoReflect() protoreflect.Message
func (*DeletedPayload) Reset ¶
func (x *DeletedPayload) Reset()
func (*DeletedPayload) String ¶
func (x *DeletedPayload) String() string
func (*DeletedPayload) Validate ¶ added in v0.4.44
func (m *DeletedPayload) Validate() error
Validate checks the field values on DeletedPayload with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*DeletedPayload) ValidateAll ¶ added in v0.4.44
func (m *DeletedPayload) ValidateAll() error
ValidateAll checks the field values on DeletedPayload with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeletedPayloadMultiError, or nil if none found.
type DeletedPayloadMultiError ¶ added in v0.4.44
type DeletedPayloadMultiError []error
DeletedPayloadMultiError is an error wrapping multiple validation errors returned by DeletedPayload.ValidateAll() if the designated constraints aren't met.
func (DeletedPayloadMultiError) AllErrors ¶ added in v0.4.44
func (m DeletedPayloadMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (DeletedPayloadMultiError) Error ¶ added in v0.4.44
func (m DeletedPayloadMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type DeletedPayloadValidationError ¶ added in v0.4.44
type DeletedPayloadValidationError struct {
// contains filtered or unexported fields
}
DeletedPayloadValidationError is the validation error returned by DeletedPayload.Validate if the designated constraints aren't met.
func (DeletedPayloadValidationError) Cause ¶ added in v0.4.44
func (e DeletedPayloadValidationError) Cause() error
Cause function returns cause value.
func (DeletedPayloadValidationError) Error ¶ added in v0.4.44
func (e DeletedPayloadValidationError) Error() string
Error satisfies the builtin error interface
func (DeletedPayloadValidationError) ErrorName ¶ added in v0.4.44
func (e DeletedPayloadValidationError) ErrorName() string
ErrorName returns error name.
func (DeletedPayloadValidationError) Field ¶ added in v0.4.44
func (e DeletedPayloadValidationError) Field() string
Field function returns field value.
func (DeletedPayloadValidationError) Key ¶ added in v0.4.44
func (e DeletedPayloadValidationError) Key() bool
Key function returns key value.
func (DeletedPayloadValidationError) Reason ¶ added in v0.4.44
func (e DeletedPayloadValidationError) Reason() string
Reason function returns reason value.
type ReplacedPayload ¶
type ReplacedPayload struct {
Element *anypb.Any `protobuf:"bytes,1,opt,name=element,proto3" json:"element,omitempty"`
// contains filtered or unexported fields
}
func (*ReplacedPayload) Descriptor
deprecated
func (*ReplacedPayload) Descriptor() ([]byte, []int)
Deprecated: Use ReplacedPayload.ProtoReflect.Descriptor instead.
func (*ReplacedPayload) GetElement ¶
func (x *ReplacedPayload) GetElement() *anypb.Any
func (*ReplacedPayload) ProtoMessage ¶
func (*ReplacedPayload) ProtoMessage()
func (*ReplacedPayload) ProtoReflect ¶
func (x *ReplacedPayload) ProtoReflect() protoreflect.Message
func (*ReplacedPayload) Reset ¶
func (x *ReplacedPayload) Reset()
func (*ReplacedPayload) String ¶
func (x *ReplacedPayload) String() string
func (*ReplacedPayload) Validate ¶ added in v0.4.44
func (m *ReplacedPayload) Validate() error
Validate checks the field values on ReplacedPayload with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*ReplacedPayload) ValidateAll ¶ added in v0.4.44
func (m *ReplacedPayload) ValidateAll() error
ValidateAll checks the field values on ReplacedPayload with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ReplacedPayloadMultiError, or nil if none found.
type ReplacedPayloadMultiError ¶ added in v0.4.44
type ReplacedPayloadMultiError []error
ReplacedPayloadMultiError is an error wrapping multiple validation errors returned by ReplacedPayload.ValidateAll() if the designated constraints aren't met.
func (ReplacedPayloadMultiError) AllErrors ¶ added in v0.4.44
func (m ReplacedPayloadMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (ReplacedPayloadMultiError) Error ¶ added in v0.4.44
func (m ReplacedPayloadMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type ReplacedPayloadValidationError ¶ added in v0.4.44
type ReplacedPayloadValidationError struct {
// contains filtered or unexported fields
}
ReplacedPayloadValidationError is the validation error returned by ReplacedPayload.Validate if the designated constraints aren't met.
func (ReplacedPayloadValidationError) Cause ¶ added in v0.4.44
func (e ReplacedPayloadValidationError) Cause() error
Cause function returns cause value.
func (ReplacedPayloadValidationError) Error ¶ added in v0.4.44
func (e ReplacedPayloadValidationError) Error() string
Error satisfies the builtin error interface
func (ReplacedPayloadValidationError) ErrorName ¶ added in v0.4.44
func (e ReplacedPayloadValidationError) ErrorName() string
ErrorName returns error name.
func (ReplacedPayloadValidationError) Field ¶ added in v0.4.44
func (e ReplacedPayloadValidationError) Field() string
Field function returns field value.
func (ReplacedPayloadValidationError) Key ¶ added in v0.4.44
func (e ReplacedPayloadValidationError) Key() bool
Key function returns key value.
func (ReplacedPayloadValidationError) Reason ¶ added in v0.4.44
func (e ReplacedPayloadValidationError) Reason() string
Reason function returns reason value.
type UpdatedPayload ¶
type UpdatedPayload struct {
Element *anypb.Any `protobuf:"bytes,1,opt,name=element,proto3" json:"element,omitempty"`
// contains filtered or unexported fields
}
func (*UpdatedPayload) Descriptor
deprecated
func (*UpdatedPayload) Descriptor() ([]byte, []int)
Deprecated: Use UpdatedPayload.ProtoReflect.Descriptor instead.
func (*UpdatedPayload) GetElement ¶
func (x *UpdatedPayload) GetElement() *anypb.Any
func (*UpdatedPayload) ProtoMessage ¶
func (*UpdatedPayload) ProtoMessage()
func (*UpdatedPayload) ProtoReflect ¶
func (x *UpdatedPayload) ProtoReflect() protoreflect.Message
func (*UpdatedPayload) Reset ¶
func (x *UpdatedPayload) Reset()
func (*UpdatedPayload) String ¶
func (x *UpdatedPayload) String() string
func (*UpdatedPayload) Validate ¶ added in v0.4.44
func (m *UpdatedPayload) Validate() error
Validate checks the field values on UpdatedPayload with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*UpdatedPayload) ValidateAll ¶ added in v0.4.44
func (m *UpdatedPayload) ValidateAll() error
ValidateAll checks the field values on UpdatedPayload with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UpdatedPayloadMultiError, or nil if none found.
type UpdatedPayloadMultiError ¶ added in v0.4.44
type UpdatedPayloadMultiError []error
UpdatedPayloadMultiError is an error wrapping multiple validation errors returned by UpdatedPayload.ValidateAll() if the designated constraints aren't met.
func (UpdatedPayloadMultiError) AllErrors ¶ added in v0.4.44
func (m UpdatedPayloadMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (UpdatedPayloadMultiError) Error ¶ added in v0.4.44
func (m UpdatedPayloadMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type UpdatedPayloadValidationError ¶ added in v0.4.44
type UpdatedPayloadValidationError struct {
// contains filtered or unexported fields
}
UpdatedPayloadValidationError is the validation error returned by UpdatedPayload.Validate if the designated constraints aren't met.
func (UpdatedPayloadValidationError) Cause ¶ added in v0.4.44
func (e UpdatedPayloadValidationError) Cause() error
Cause function returns cause value.
func (UpdatedPayloadValidationError) Error ¶ added in v0.4.44
func (e UpdatedPayloadValidationError) Error() string
Error satisfies the builtin error interface
func (UpdatedPayloadValidationError) ErrorName ¶ added in v0.4.44
func (e UpdatedPayloadValidationError) ErrorName() string
ErrorName returns error name.
func (UpdatedPayloadValidationError) Field ¶ added in v0.4.44
func (e UpdatedPayloadValidationError) Field() string
Field function returns field value.
func (UpdatedPayloadValidationError) Key ¶ added in v0.4.44
func (e UpdatedPayloadValidationError) Key() bool
Key function returns key value.
func (UpdatedPayloadValidationError) Reason ¶ added in v0.4.44
func (e UpdatedPayloadValidationError) Reason() string
Reason function returns reason value.