Documentation ¶
Overview ¶
Code generated by protoc-gen-go-helpers. DO NOT EDIT.
Index ¶
- Variables
- type StartTimeFilter
- func (*StartTimeFilter) Descriptor() ([]byte, []int)deprecated
- func (this *StartTimeFilter) Equal(that interface{}) bool
- func (x *StartTimeFilter) GetEarliestTime() *timestamppb.Timestamp
- func (x *StartTimeFilter) GetLatestTime() *timestamppb.Timestamp
- func (val *StartTimeFilter) Marshal() ([]byte, error)
- func (*StartTimeFilter) ProtoMessage()
- func (x *StartTimeFilter) ProtoReflect() protoreflect.Message
- func (x *StartTimeFilter) Reset()
- func (val *StartTimeFilter) Size() int
- func (x *StartTimeFilter) String() string
- func (val *StartTimeFilter) Unmarshal(buf []byte) error
- type StatusFilter
- func (*StatusFilter) Descriptor() ([]byte, []int)deprecated
- func (this *StatusFilter) Equal(that interface{}) bool
- func (x *StatusFilter) GetStatus() v1.WorkflowExecutionStatus
- func (val *StatusFilter) Marshal() ([]byte, error)
- func (*StatusFilter) ProtoMessage()
- func (x *StatusFilter) ProtoReflect() protoreflect.Message
- func (x *StatusFilter) Reset()
- func (val *StatusFilter) Size() int
- func (x *StatusFilter) String() string
- func (val *StatusFilter) Unmarshal(buf []byte) error
- type WorkflowExecutionFilter
- func (*WorkflowExecutionFilter) Descriptor() ([]byte, []int)deprecated
- func (this *WorkflowExecutionFilter) Equal(that interface{}) bool
- func (x *WorkflowExecutionFilter) GetRunId() string
- func (x *WorkflowExecutionFilter) GetWorkflowId() string
- func (val *WorkflowExecutionFilter) Marshal() ([]byte, error)
- func (*WorkflowExecutionFilter) ProtoMessage()
- func (x *WorkflowExecutionFilter) ProtoReflect() protoreflect.Message
- func (x *WorkflowExecutionFilter) Reset()
- func (val *WorkflowExecutionFilter) Size() int
- func (x *WorkflowExecutionFilter) String() string
- func (val *WorkflowExecutionFilter) Unmarshal(buf []byte) error
- type WorkflowTypeFilter
- func (*WorkflowTypeFilter) Descriptor() ([]byte, []int)deprecated
- func (this *WorkflowTypeFilter) Equal(that interface{}) bool
- func (x *WorkflowTypeFilter) GetName() string
- func (val *WorkflowTypeFilter) Marshal() ([]byte, error)
- func (*WorkflowTypeFilter) ProtoMessage()
- func (x *WorkflowTypeFilter) ProtoReflect() protoreflect.Message
- func (x *WorkflowTypeFilter) Reset()
- func (val *WorkflowTypeFilter) Size() int
- func (x *WorkflowTypeFilter) String() string
- func (val *WorkflowTypeFilter) Unmarshal(buf []byte) error
Constants ¶
This section is empty.
Variables ¶
var File_temporal_api_filter_v1_message_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type StartTimeFilter ¶
type StartTimeFilter struct { EarliestTime *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=earliest_time,json=earliestTime,proto3" json:"earliest_time,omitempty"` LatestTime *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=latest_time,json=latestTime,proto3" json:"latest_time,omitempty"` // contains filtered or unexported fields }
func (*StartTimeFilter) Descriptor
deprecated
func (*StartTimeFilter) Descriptor() ([]byte, []int)
Deprecated: Use StartTimeFilter.ProtoReflect.Descriptor instead.
func (*StartTimeFilter) Equal ¶
func (this *StartTimeFilter) Equal(that interface{}) bool
Equal returns whether two StartTimeFilter values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal
func (*StartTimeFilter) GetEarliestTime ¶
func (x *StartTimeFilter) GetEarliestTime() *timestamppb.Timestamp
func (*StartTimeFilter) GetLatestTime ¶
func (x *StartTimeFilter) GetLatestTime() *timestamppb.Timestamp
func (*StartTimeFilter) Marshal ¶
func (val *StartTimeFilter) Marshal() ([]byte, error)
Marshal an object of type StartTimeFilter to the protobuf v3 wire format
func (*StartTimeFilter) ProtoMessage ¶
func (*StartTimeFilter) ProtoMessage()
func (*StartTimeFilter) ProtoReflect ¶ added in v1.26.1
func (x *StartTimeFilter) ProtoReflect() protoreflect.Message
func (*StartTimeFilter) Reset ¶
func (x *StartTimeFilter) Reset()
func (*StartTimeFilter) Size ¶
func (val *StartTimeFilter) Size() int
Size returns the size of the object, in bytes, once serialized
func (*StartTimeFilter) String ¶
func (x *StartTimeFilter) String() string
func (*StartTimeFilter) Unmarshal ¶
func (val *StartTimeFilter) Unmarshal(buf []byte) error
Unmarshal an object of type StartTimeFilter from the protobuf v3 wire format
type StatusFilter ¶
type StatusFilter struct { Status v1.WorkflowExecutionStatus `protobuf:"varint,1,opt,name=status,proto3,enum=temporal.api.enums.v1.WorkflowExecutionStatus" json:"status,omitempty"` // contains filtered or unexported fields }
func (*StatusFilter) Descriptor
deprecated
func (*StatusFilter) Descriptor() ([]byte, []int)
Deprecated: Use StatusFilter.ProtoReflect.Descriptor instead.
func (*StatusFilter) Equal ¶
func (this *StatusFilter) Equal(that interface{}) bool
Equal returns whether two StatusFilter values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal
func (*StatusFilter) GetStatus ¶
func (x *StatusFilter) GetStatus() v1.WorkflowExecutionStatus
func (*StatusFilter) Marshal ¶
func (val *StatusFilter) Marshal() ([]byte, error)
Marshal an object of type StatusFilter to the protobuf v3 wire format
func (*StatusFilter) ProtoMessage ¶
func (*StatusFilter) ProtoMessage()
func (*StatusFilter) ProtoReflect ¶ added in v1.26.1
func (x *StatusFilter) ProtoReflect() protoreflect.Message
func (*StatusFilter) Reset ¶
func (x *StatusFilter) Reset()
func (*StatusFilter) Size ¶
func (val *StatusFilter) Size() int
Size returns the size of the object, in bytes, once serialized
func (*StatusFilter) String ¶
func (x *StatusFilter) String() string
func (*StatusFilter) Unmarshal ¶
func (val *StatusFilter) Unmarshal(buf []byte) error
Unmarshal an object of type StatusFilter from the protobuf v3 wire format
type WorkflowExecutionFilter ¶
type WorkflowExecutionFilter struct { WorkflowId string `protobuf:"bytes,1,opt,name=workflow_id,json=workflowId,proto3" json:"workflow_id,omitempty"` RunId string `protobuf:"bytes,2,opt,name=run_id,json=runId,proto3" json:"run_id,omitempty"` // contains filtered or unexported fields }
func (*WorkflowExecutionFilter) Descriptor
deprecated
func (*WorkflowExecutionFilter) Descriptor() ([]byte, []int)
Deprecated: Use WorkflowExecutionFilter.ProtoReflect.Descriptor instead.
func (*WorkflowExecutionFilter) Equal ¶
func (this *WorkflowExecutionFilter) Equal(that interface{}) bool
Equal returns whether two WorkflowExecutionFilter values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal
func (*WorkflowExecutionFilter) GetRunId ¶
func (x *WorkflowExecutionFilter) GetRunId() string
func (*WorkflowExecutionFilter) GetWorkflowId ¶
func (x *WorkflowExecutionFilter) GetWorkflowId() string
func (*WorkflowExecutionFilter) Marshal ¶
func (val *WorkflowExecutionFilter) Marshal() ([]byte, error)
Marshal an object of type WorkflowExecutionFilter to the protobuf v3 wire format
func (*WorkflowExecutionFilter) ProtoMessage ¶
func (*WorkflowExecutionFilter) ProtoMessage()
func (*WorkflowExecutionFilter) ProtoReflect ¶ added in v1.26.1
func (x *WorkflowExecutionFilter) ProtoReflect() protoreflect.Message
func (*WorkflowExecutionFilter) Reset ¶
func (x *WorkflowExecutionFilter) Reset()
func (*WorkflowExecutionFilter) Size ¶
func (val *WorkflowExecutionFilter) Size() int
Size returns the size of the object, in bytes, once serialized
func (*WorkflowExecutionFilter) String ¶
func (x *WorkflowExecutionFilter) String() string
func (*WorkflowExecutionFilter) Unmarshal ¶
func (val *WorkflowExecutionFilter) Unmarshal(buf []byte) error
Unmarshal an object of type WorkflowExecutionFilter from the protobuf v3 wire format
type WorkflowTypeFilter ¶
type WorkflowTypeFilter struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // contains filtered or unexported fields }
func (*WorkflowTypeFilter) Descriptor
deprecated
func (*WorkflowTypeFilter) Descriptor() ([]byte, []int)
Deprecated: Use WorkflowTypeFilter.ProtoReflect.Descriptor instead.
func (*WorkflowTypeFilter) Equal ¶
func (this *WorkflowTypeFilter) Equal(that interface{}) bool
Equal returns whether two WorkflowTypeFilter values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal
func (*WorkflowTypeFilter) GetName ¶
func (x *WorkflowTypeFilter) GetName() string
func (*WorkflowTypeFilter) Marshal ¶
func (val *WorkflowTypeFilter) Marshal() ([]byte, error)
Marshal an object of type WorkflowTypeFilter to the protobuf v3 wire format
func (*WorkflowTypeFilter) ProtoMessage ¶
func (*WorkflowTypeFilter) ProtoMessage()
func (*WorkflowTypeFilter) ProtoReflect ¶ added in v1.26.1
func (x *WorkflowTypeFilter) ProtoReflect() protoreflect.Message
func (*WorkflowTypeFilter) Reset ¶
func (x *WorkflowTypeFilter) Reset()
func (*WorkflowTypeFilter) Size ¶
func (val *WorkflowTypeFilter) Size() int
Size returns the size of the object, in bytes, once serialized
func (*WorkflowTypeFilter) String ¶
func (x *WorkflowTypeFilter) String() string
func (*WorkflowTypeFilter) Unmarshal ¶
func (val *WorkflowTypeFilter) Unmarshal(buf []byte) error
Unmarshal an object of type WorkflowTypeFilter from the protobuf v3 wire format