opts

package
v0.0.171 Latest Latest
Warning

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

Go to latest
Published: Nov 24, 2022 License: Apache-2.0 Imports: 7 Imported by: 41

Documentation

Index

Constants

This section is empty.

Variables

View Source
var BatchOutputType_name = map[int32]string{
	0: "TABLE",
	1: "JSON",
}
View Source
var BatchOutputType_value = map[string]int32{
	"TABLE": 0,
	"JSON":  1,
}
View Source
var BatchReplayType_name = map[int32]string{
	0: "SINGLE",
	1: "CONTINUOUS",
}
View Source
var BatchReplayType_value = map[string]int32{
	"SINGLE":     0,
	"CONTINUOUS": 1,
}
View Source
var ConvertOption_name = map[int32]string{
	0: "CONVERT_OPTION_UNSET",
	1: "CONVERT_OPTION_BASE64",
	2: "CONVERT_OPTION_GZIP",
}
View Source
var ConvertOption_value = map[string]int32{
	"CONVERT_OPTION_UNSET":  0,
	"CONVERT_OPTION_BASE64": 1,
	"CONVERT_OPTION_GZIP":   2,
}
View Source
var InferSchemaOptions_Type_name = map[int32]string{
	0: "UNSET",
	1: "JSONSCHEMA",
}
View Source
var InferSchemaOptions_Type_value = map[string]int32{
	"UNSET":      0,
	"JSONSCHEMA": 1,
}

Functions

func MergeRelayOptions added in v0.0.149

func MergeRelayOptions(backend string, relayOpts *RelayOptions, createRelayOpts *CreateRelayOptions) error

func MergeTunnelOptions added in v0.0.153

func MergeTunnelOptions(backend string, tunnelOpts *TunnelOptions, createTunnelOpts *CreateTunnelOptions) error

Types

type BatchArchiveOptions added in v0.0.54

type BatchArchiveOptions struct {
	// @gotags: kong:"embed,cmd,help='Archive a replay'"
	Replay               *BatchArchiveReplayOptions `protobuf:"bytes,1,opt,name=replay,proto3" json:"replay,omitempty" kong:"embed,cmd,help='Archive a replay'"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*BatchArchiveOptions) Descriptor added in v0.0.54

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

func (*BatchArchiveOptions) GetReplay added in v0.0.54

func (*BatchArchiveOptions) ProtoMessage added in v0.0.54

func (*BatchArchiveOptions) ProtoMessage()

func (*BatchArchiveOptions) Reset added in v0.0.54

func (m *BatchArchiveOptions) Reset()

func (*BatchArchiveOptions) String added in v0.0.54

func (m *BatchArchiveOptions) String() string

func (*BatchArchiveOptions) XXX_DiscardUnknown added in v0.0.54

func (m *BatchArchiveOptions) XXX_DiscardUnknown()

func (*BatchArchiveOptions) XXX_Marshal added in v0.0.54

func (m *BatchArchiveOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BatchArchiveOptions) XXX_Merge added in v0.0.54

func (m *BatchArchiveOptions) XXX_Merge(src proto.Message)

func (*BatchArchiveOptions) XXX_Size added in v0.0.54

func (m *BatchArchiveOptions) XXX_Size() int

func (*BatchArchiveOptions) XXX_Unmarshal added in v0.0.54

func (m *BatchArchiveOptions) XXX_Unmarshal(b []byte) error

type BatchArchiveReplayOptions added in v0.0.54

type BatchArchiveReplayOptions struct {
	// @gotags: kong:"help='Replay ID to archive',required"
	ReplayId             string   `` /* 129-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BatchArchiveReplayOptions) Descriptor added in v0.0.54

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

func (*BatchArchiveReplayOptions) GetReplayId added in v0.0.54

func (m *BatchArchiveReplayOptions) GetReplayId() string

func (*BatchArchiveReplayOptions) ProtoMessage added in v0.0.54

func (*BatchArchiveReplayOptions) ProtoMessage()

func (*BatchArchiveReplayOptions) Reset added in v0.0.54

func (m *BatchArchiveReplayOptions) Reset()

func (*BatchArchiveReplayOptions) String added in v0.0.54

func (m *BatchArchiveReplayOptions) String() string

func (*BatchArchiveReplayOptions) XXX_DiscardUnknown added in v0.0.54

func (m *BatchArchiveReplayOptions) XXX_DiscardUnknown()

func (*BatchArchiveReplayOptions) XXX_Marshal added in v0.0.54

func (m *BatchArchiveReplayOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BatchArchiveReplayOptions) XXX_Merge added in v0.0.54

func (m *BatchArchiveReplayOptions) XXX_Merge(src proto.Message)

func (*BatchArchiveReplayOptions) XXX_Size added in v0.0.54

func (m *BatchArchiveReplayOptions) XXX_Size() int

func (*BatchArchiveReplayOptions) XXX_Unmarshal added in v0.0.54

func (m *BatchArchiveReplayOptions) XXX_Unmarshal(b []byte) error

type BatchCreateCollectionOptions added in v0.0.54

type BatchCreateCollectionOptions struct {
	// @gotags: kong:"help='Friendly name for the collection',required"
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty" kong:"help='Friendly name for the collection',required"`
	// @gotags: kong:"help='Schema the collection will use (can be obtained running _plumber batch list schema_)',required"
	SchemaId string `` /* 193-byte string literal not displayed */
	// @gotags: kong:"help='Optional notes for the collection'"
	Notes string `protobuf:"bytes,3,opt,name=notes,proto3" json:"notes,omitempty" kong:"help='Optional notes for the collection'"`
	// @gotags: kong:"help='(Protobuf Schemas Only) Envelope Type (deep or shallow)',default='deep'"
	EnvelopeType string `` /* 182-byte string literal not displayed */
	// @gotags: kong:"help='(Protobuf Schemas Only) Envelope Message Name (Ex: events.MessageEnvelope)'"
	EnvelopeRootMessage string `` /* 209-byte string literal not displayed */
	// @gotags: kong:"help='(Shallow Envelope Protobuf Schemas Only) Payload Message Name (Ex: events.ShallowPayload)'"
	PayloadFieldMessage string `` /* 224-byte string literal not displayed */
	// @gotags: kong:"help='(Shallow Envelope Protobuf Schemas Only) Field ID containing the message encoded with Payload Message'"
	PayloadFieldId       string   `` /* 221-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BatchCreateCollectionOptions) Descriptor added in v0.0.54

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

func (*BatchCreateCollectionOptions) GetEnvelopeRootMessage added in v0.0.170

func (m *BatchCreateCollectionOptions) GetEnvelopeRootMessage() string

func (*BatchCreateCollectionOptions) GetEnvelopeType added in v0.0.170

func (m *BatchCreateCollectionOptions) GetEnvelopeType() string

func (*BatchCreateCollectionOptions) GetName added in v0.0.54

func (m *BatchCreateCollectionOptions) GetName() string

func (*BatchCreateCollectionOptions) GetNotes added in v0.0.54

func (m *BatchCreateCollectionOptions) GetNotes() string

func (*BatchCreateCollectionOptions) GetPayloadFieldId added in v0.0.170

func (m *BatchCreateCollectionOptions) GetPayloadFieldId() string

func (*BatchCreateCollectionOptions) GetPayloadFieldMessage added in v0.0.170

func (m *BatchCreateCollectionOptions) GetPayloadFieldMessage() string

func (*BatchCreateCollectionOptions) GetSchemaId added in v0.0.54

func (m *BatchCreateCollectionOptions) GetSchemaId() string

func (*BatchCreateCollectionOptions) ProtoMessage added in v0.0.54

func (*BatchCreateCollectionOptions) ProtoMessage()

func (*BatchCreateCollectionOptions) Reset added in v0.0.54

func (m *BatchCreateCollectionOptions) Reset()

func (*BatchCreateCollectionOptions) String added in v0.0.54

func (*BatchCreateCollectionOptions) XXX_DiscardUnknown added in v0.0.54

func (m *BatchCreateCollectionOptions) XXX_DiscardUnknown()

func (*BatchCreateCollectionOptions) XXX_Marshal added in v0.0.54

func (m *BatchCreateCollectionOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BatchCreateCollectionOptions) XXX_Merge added in v0.0.54

func (m *BatchCreateCollectionOptions) XXX_Merge(src proto.Message)

func (*BatchCreateCollectionOptions) XXX_Size added in v0.0.54

func (m *BatchCreateCollectionOptions) XXX_Size() int

func (*BatchCreateCollectionOptions) XXX_Unmarshal added in v0.0.54

func (m *BatchCreateCollectionOptions) XXX_Unmarshal(b []byte) error

type BatchCreateDestinationOptions added in v0.0.54

type BatchCreateDestinationOptions struct {
	// @gotags: kong:"help='Friendly name to assign to the destination',required"
	Name string `` /* 127-byte string literal not displayed */
	// @gotags: kong:"help='Any notes to include with the destination'"
	Notes string `protobuf:"bytes,2,opt,name=notes,proto3" json:"notes,omitempty" kong:"help='Any notes to include with the destination'"`
	// Used internally by CLI
	// @gotags: kong:"-"
	XApiDestinationType string `` /* 131-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Apache Kafka'"
	Kafka *WriteGroupKafkaOptions `protobuf:"bytes,100,opt,name=kafka,proto3" json:"kafka,omitempty" kong:"cmd,help='Apache Kafka'"`
	// @gotags: kong:"cmd,help='RabbitMQ'"
	Rabbit *WriteGroupRabbitOptions `protobuf:"bytes,101,opt,name=rabbit,proto3" json:"rabbit,omitempty" kong:"cmd,help='RabbitMQ'"`
	// @gotags: kong:"cmd,help='KubeMQ Queue'"
	KubemqQueue *WriteGroupKubeMQQueueOptions `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='AWS Simple Queue System'"
	AwsSqs *WriteGroupAWSSQSOptions `protobuf:"bytes,103,opt,name=aws_sqs,json=awsSqs,proto3" json:"aws_sqs,omitempty" kong:"cmd,help='AWS Simple Queue System'"`
	// @gotags: kong:"cmd,help='HTTP Destination (POST)'"
	Http                 *HTTPDestination `protobuf:"bytes,104,opt,name=http,proto3" json:"http,omitempty" kong:"cmd,help='HTTP Destination (POST)'"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*BatchCreateDestinationOptions) Descriptor added in v0.0.54

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

func (*BatchCreateDestinationOptions) GetAwsSqs added in v0.0.114

func (*BatchCreateDestinationOptions) GetHttp added in v0.0.54

func (*BatchCreateDestinationOptions) GetKafka added in v0.0.54

func (*BatchCreateDestinationOptions) GetKubemqQueue added in v0.0.54

func (*BatchCreateDestinationOptions) GetName added in v0.0.54

func (*BatchCreateDestinationOptions) GetNotes added in v0.0.54

func (m *BatchCreateDestinationOptions) GetNotes() string

func (*BatchCreateDestinationOptions) GetRabbit added in v0.0.54

func (*BatchCreateDestinationOptions) GetXApiDestinationType added in v0.0.54

func (m *BatchCreateDestinationOptions) GetXApiDestinationType() string

func (*BatchCreateDestinationOptions) ProtoMessage added in v0.0.54

func (*BatchCreateDestinationOptions) ProtoMessage()

func (*BatchCreateDestinationOptions) Reset added in v0.0.54

func (m *BatchCreateDestinationOptions) Reset()

func (*BatchCreateDestinationOptions) String added in v0.0.54

func (*BatchCreateDestinationOptions) XXX_DiscardUnknown added in v0.0.54

func (m *BatchCreateDestinationOptions) XXX_DiscardUnknown()

func (*BatchCreateDestinationOptions) XXX_Marshal added in v0.0.54

func (m *BatchCreateDestinationOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BatchCreateDestinationOptions) XXX_Merge added in v0.0.54

func (m *BatchCreateDestinationOptions) XXX_Merge(src proto.Message)

func (*BatchCreateDestinationOptions) XXX_Size added in v0.0.54

func (m *BatchCreateDestinationOptions) XXX_Size() int

func (*BatchCreateDestinationOptions) XXX_Unmarshal added in v0.0.54

func (m *BatchCreateDestinationOptions) XXX_Unmarshal(b []byte) error

type BatchCreateOptions added in v0.0.54

type BatchCreateOptions struct {
	// @gotags: kong:"cmd,help='Create a collection'"
	Collection *BatchCreateCollectionOptions `protobuf:"bytes,1,opt,name=collection,proto3" json:"collection,omitempty" kong:"cmd,help='Create a collection'"`
	// @gotags: kong:"cmd,help='Create a replay'"
	Replay *BatchCreateReplayOptions `protobuf:"bytes,2,opt,name=replay,proto3" json:"replay,omitempty" kong:"cmd,help='Create a replay'"`
	// @gotags: kong:"cmd,help='Create a destination'"
	Destination          *BatchCreateDestinationOptions `protobuf:"bytes,3,opt,name=destination,proto3" json:"destination,omitempty" kong:"cmd,help='Create a destination'"`
	XXX_NoUnkeyedLiteral struct{}                       `json:"-"`
	XXX_unrecognized     []byte                         `json:"-"`
	XXX_sizecache        int32                          `json:"-"`
}

func (*BatchCreateOptions) Descriptor added in v0.0.54

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

func (*BatchCreateOptions) GetCollection added in v0.0.54

func (*BatchCreateOptions) GetDestination added in v0.0.54

func (*BatchCreateOptions) GetReplay added in v0.0.54

func (*BatchCreateOptions) ProtoMessage added in v0.0.54

func (*BatchCreateOptions) ProtoMessage()

func (*BatchCreateOptions) Reset added in v0.0.54

func (m *BatchCreateOptions) Reset()

func (*BatchCreateOptions) String added in v0.0.54

func (m *BatchCreateOptions) String() string

func (*BatchCreateOptions) XXX_DiscardUnknown added in v0.0.54

func (m *BatchCreateOptions) XXX_DiscardUnknown()

func (*BatchCreateOptions) XXX_Marshal added in v0.0.54

func (m *BatchCreateOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BatchCreateOptions) XXX_Merge added in v0.0.54

func (m *BatchCreateOptions) XXX_Merge(src proto.Message)

func (*BatchCreateOptions) XXX_Size added in v0.0.54

func (m *BatchCreateOptions) XXX_Size() int

func (*BatchCreateOptions) XXX_Unmarshal added in v0.0.54

func (m *BatchCreateOptions) XXX_Unmarshal(b []byte) error

type BatchCreateReplayOptions added in v0.0.54

type BatchCreateReplayOptions struct {
	// @gotags: kong:"help='Friendly name to assign to the replay',required"
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty" kong:"help='Friendly name to assign to the replay',required"`
	// @gotags: kong:"help='One-time/single or continuous replay (options: single, continuous)',type=pbenum,pbenum_lowercase,default=single"
	Type BatchReplayType `` /* 220-byte string literal not displayed */
	// @gotags: kong:"help='Notes to attach to the replay'"
	Notes string `protobuf:"bytes,3,opt,name=notes,proto3" json:"notes,omitempty" kong:"help='Notes to attach to the replay'"`
	// @gotags: kong:"help='Collection ID to replay from',required"
	CollectionId string `` /* 149-byte string literal not displayed */
	// @gotags: kong:"help='Destination ID to replay to',required"
	DestinationId string `` /* 151-byte string literal not displayed */
	// @gotags: kong:"help='Search query',default='*'"
	Query string `protobuf:"bytes,6,opt,name=query,proto3" json:"query,omitempty" kong:"help='Search query',default='*'"`
	// @gotags: kong:"help='Where to begin search (RFC3339 timestamp)',required"
	FromTimestamp string `` /* 165-byte string literal not displayed */
	// @gotags: kong:"help='Where to end search (RFC3339 timestamp)',required"
	ToTimestamp          string   `` /* 157-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BatchCreateReplayOptions) Descriptor added in v0.0.54

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

func (*BatchCreateReplayOptions) GetCollectionId added in v0.0.54

func (m *BatchCreateReplayOptions) GetCollectionId() string

func (*BatchCreateReplayOptions) GetDestinationId added in v0.0.54

func (m *BatchCreateReplayOptions) GetDestinationId() string

func (*BatchCreateReplayOptions) GetFromTimestamp added in v0.0.54

func (m *BatchCreateReplayOptions) GetFromTimestamp() string

func (*BatchCreateReplayOptions) GetName added in v0.0.54

func (m *BatchCreateReplayOptions) GetName() string

func (*BatchCreateReplayOptions) GetNotes added in v0.0.54

func (m *BatchCreateReplayOptions) GetNotes() string

func (*BatchCreateReplayOptions) GetQuery added in v0.0.54

func (m *BatchCreateReplayOptions) GetQuery() string

func (*BatchCreateReplayOptions) GetToTimestamp added in v0.0.54

func (m *BatchCreateReplayOptions) GetToTimestamp() string

func (*BatchCreateReplayOptions) GetType added in v0.0.54

func (*BatchCreateReplayOptions) ProtoMessage added in v0.0.54

func (*BatchCreateReplayOptions) ProtoMessage()

func (*BatchCreateReplayOptions) Reset added in v0.0.54

func (m *BatchCreateReplayOptions) Reset()

func (*BatchCreateReplayOptions) String added in v0.0.54

func (m *BatchCreateReplayOptions) String() string

func (*BatchCreateReplayOptions) XXX_DiscardUnknown added in v0.0.54

func (m *BatchCreateReplayOptions) XXX_DiscardUnknown()

func (*BatchCreateReplayOptions) XXX_Marshal added in v0.0.54

func (m *BatchCreateReplayOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BatchCreateReplayOptions) XXX_Merge added in v0.0.54

func (m *BatchCreateReplayOptions) XXX_Merge(src proto.Message)

func (*BatchCreateReplayOptions) XXX_Size added in v0.0.54

func (m *BatchCreateReplayOptions) XXX_Size() int

func (*BatchCreateReplayOptions) XXX_Unmarshal added in v0.0.54

func (m *BatchCreateReplayOptions) XXX_Unmarshal(b []byte) error

type BatchListCollectionOptions added in v0.0.124

type BatchListCollectionOptions struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BatchListCollectionOptions) Descriptor added in v0.0.124

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

func (*BatchListCollectionOptions) ProtoMessage added in v0.0.124

func (*BatchListCollectionOptions) ProtoMessage()

func (*BatchListCollectionOptions) Reset added in v0.0.124

func (m *BatchListCollectionOptions) Reset()

func (*BatchListCollectionOptions) String added in v0.0.124

func (m *BatchListCollectionOptions) String() string

func (*BatchListCollectionOptions) XXX_DiscardUnknown added in v0.0.124

func (m *BatchListCollectionOptions) XXX_DiscardUnknown()

func (*BatchListCollectionOptions) XXX_Marshal added in v0.0.124

func (m *BatchListCollectionOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BatchListCollectionOptions) XXX_Merge added in v0.0.124

func (m *BatchListCollectionOptions) XXX_Merge(src proto.Message)

func (*BatchListCollectionOptions) XXX_Size added in v0.0.124

func (m *BatchListCollectionOptions) XXX_Size() int

func (*BatchListCollectionOptions) XXX_Unmarshal added in v0.0.124

func (m *BatchListCollectionOptions) XXX_Unmarshal(b []byte) error

type BatchListDestinationOptions added in v0.0.124

type BatchListDestinationOptions struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BatchListDestinationOptions) Descriptor added in v0.0.124

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

func (*BatchListDestinationOptions) ProtoMessage added in v0.0.124

func (*BatchListDestinationOptions) ProtoMessage()

func (*BatchListDestinationOptions) Reset added in v0.0.124

func (m *BatchListDestinationOptions) Reset()

func (*BatchListDestinationOptions) String added in v0.0.124

func (m *BatchListDestinationOptions) String() string

func (*BatchListDestinationOptions) XXX_DiscardUnknown added in v0.0.124

func (m *BatchListDestinationOptions) XXX_DiscardUnknown()

func (*BatchListDestinationOptions) XXX_Marshal added in v0.0.124

func (m *BatchListDestinationOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BatchListDestinationOptions) XXX_Merge added in v0.0.124

func (m *BatchListDestinationOptions) XXX_Merge(src proto.Message)

func (*BatchListDestinationOptions) XXX_Size added in v0.0.124

func (m *BatchListDestinationOptions) XXX_Size() int

func (*BatchListDestinationOptions) XXX_Unmarshal added in v0.0.124

func (m *BatchListDestinationOptions) XXX_Unmarshal(b []byte) error

type BatchListOptions added in v0.0.54

type BatchListOptions struct {
	// @gotags: kong:"cmd,help='List all collections'"
	Collection *BatchListCollectionOptions `protobuf:"bytes,1,opt,name=collection,proto3" json:"collection,omitempty" kong:"cmd,help='List all collections'"`
	// @gotags: kong:"cmd,help='List all destinations'"
	Destination *BatchListDestinationOptions `protobuf:"bytes,2,opt,name=destination,proto3" json:"destination,omitempty" kong:"cmd,help='List all destinations'"`
	// @gotags: kong:"cmd,help='List all replays'"
	Replay *BatchListReplayOptions `protobuf:"bytes,3,opt,name=replay,proto3" json:"replay,omitempty" kong:"cmd,help='List all replays'"`
	// @gotags: kong:"cmd,help='List all schemas'"
	Schema               *BatchListSchemaOptions `protobuf:"bytes,4,opt,name=schema,proto3" json:"schema,omitempty" kong:"cmd,help='List all schemas'"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*BatchListOptions) Descriptor added in v0.0.54

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

func (*BatchListOptions) GetCollection added in v0.0.54

func (m *BatchListOptions) GetCollection() *BatchListCollectionOptions

func (*BatchListOptions) GetDestination added in v0.0.54

func (m *BatchListOptions) GetDestination() *BatchListDestinationOptions

func (*BatchListOptions) GetReplay added in v0.0.54

func (m *BatchListOptions) GetReplay() *BatchListReplayOptions

func (*BatchListOptions) GetSchema added in v0.0.54

func (m *BatchListOptions) GetSchema() *BatchListSchemaOptions

func (*BatchListOptions) ProtoMessage added in v0.0.54

func (*BatchListOptions) ProtoMessage()

func (*BatchListOptions) Reset added in v0.0.54

func (m *BatchListOptions) Reset()

func (*BatchListOptions) String added in v0.0.54

func (m *BatchListOptions) String() string

func (*BatchListOptions) XXX_DiscardUnknown added in v0.0.54

func (m *BatchListOptions) XXX_DiscardUnknown()

func (*BatchListOptions) XXX_Marshal added in v0.0.54

func (m *BatchListOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BatchListOptions) XXX_Merge added in v0.0.54

func (m *BatchListOptions) XXX_Merge(src proto.Message)

func (*BatchListOptions) XXX_Size added in v0.0.54

func (m *BatchListOptions) XXX_Size() int

func (*BatchListOptions) XXX_Unmarshal added in v0.0.54

func (m *BatchListOptions) XXX_Unmarshal(b []byte) error

type BatchListReplayOptions added in v0.0.124

type BatchListReplayOptions struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BatchListReplayOptions) Descriptor added in v0.0.124

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

func (*BatchListReplayOptions) ProtoMessage added in v0.0.124

func (*BatchListReplayOptions) ProtoMessage()

func (*BatchListReplayOptions) Reset added in v0.0.124

func (m *BatchListReplayOptions) Reset()

func (*BatchListReplayOptions) String added in v0.0.124

func (m *BatchListReplayOptions) String() string

func (*BatchListReplayOptions) XXX_DiscardUnknown added in v0.0.124

func (m *BatchListReplayOptions) XXX_DiscardUnknown()

func (*BatchListReplayOptions) XXX_Marshal added in v0.0.124

func (m *BatchListReplayOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BatchListReplayOptions) XXX_Merge added in v0.0.124

func (m *BatchListReplayOptions) XXX_Merge(src proto.Message)

func (*BatchListReplayOptions) XXX_Size added in v0.0.124

func (m *BatchListReplayOptions) XXX_Size() int

func (*BatchListReplayOptions) XXX_Unmarshal added in v0.0.124

func (m *BatchListReplayOptions) XXX_Unmarshal(b []byte) error

type BatchListSchemaOptions added in v0.0.124

type BatchListSchemaOptions struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BatchListSchemaOptions) Descriptor added in v0.0.124

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

func (*BatchListSchemaOptions) ProtoMessage added in v0.0.124

func (*BatchListSchemaOptions) ProtoMessage()

func (*BatchListSchemaOptions) Reset added in v0.0.124

func (m *BatchListSchemaOptions) Reset()

func (*BatchListSchemaOptions) String added in v0.0.124

func (m *BatchListSchemaOptions) String() string

func (*BatchListSchemaOptions) XXX_DiscardUnknown added in v0.0.124

func (m *BatchListSchemaOptions) XXX_DiscardUnknown()

func (*BatchListSchemaOptions) XXX_Marshal added in v0.0.124

func (m *BatchListSchemaOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BatchListSchemaOptions) XXX_Merge added in v0.0.124

func (m *BatchListSchemaOptions) XXX_Merge(src proto.Message)

func (*BatchListSchemaOptions) XXX_Size added in v0.0.124

func (m *BatchListSchemaOptions) XXX_Size() int

func (*BatchListSchemaOptions) XXX_Unmarshal added in v0.0.124

func (m *BatchListSchemaOptions) XXX_Unmarshal(b []byte) error

type BatchLoginOptions added in v0.0.54

type BatchLoginOptions struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BatchLoginOptions) Descriptor added in v0.0.54

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

func (*BatchLoginOptions) ProtoMessage added in v0.0.54

func (*BatchLoginOptions) ProtoMessage()

func (*BatchLoginOptions) Reset added in v0.0.54

func (m *BatchLoginOptions) Reset()

func (*BatchLoginOptions) String added in v0.0.54

func (m *BatchLoginOptions) String() string

func (*BatchLoginOptions) XXX_DiscardUnknown added in v0.0.54

func (m *BatchLoginOptions) XXX_DiscardUnknown()

func (*BatchLoginOptions) XXX_Marshal added in v0.0.54

func (m *BatchLoginOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BatchLoginOptions) XXX_Merge added in v0.0.54

func (m *BatchLoginOptions) XXX_Merge(src proto.Message)

func (*BatchLoginOptions) XXX_Size added in v0.0.54

func (m *BatchLoginOptions) XXX_Size() int

func (*BatchLoginOptions) XXX_Unmarshal added in v0.0.54

func (m *BatchLoginOptions) XXX_Unmarshal(b []byte) error

type BatchLogoutOptions added in v0.0.54

type BatchLogoutOptions struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BatchLogoutOptions) Descriptor added in v0.0.54

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

func (*BatchLogoutOptions) ProtoMessage added in v0.0.54

func (*BatchLogoutOptions) ProtoMessage()

func (*BatchLogoutOptions) Reset added in v0.0.54

func (m *BatchLogoutOptions) Reset()

func (*BatchLogoutOptions) String added in v0.0.54

func (m *BatchLogoutOptions) String() string

func (*BatchLogoutOptions) XXX_DiscardUnknown added in v0.0.54

func (m *BatchLogoutOptions) XXX_DiscardUnknown()

func (*BatchLogoutOptions) XXX_Marshal added in v0.0.54

func (m *BatchLogoutOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BatchLogoutOptions) XXX_Merge added in v0.0.54

func (m *BatchLogoutOptions) XXX_Merge(src proto.Message)

func (*BatchLogoutOptions) XXX_Size added in v0.0.54

func (m *BatchLogoutOptions) XXX_Size() int

func (*BatchLogoutOptions) XXX_Unmarshal added in v0.0.54

func (m *BatchLogoutOptions) XXX_Unmarshal(b []byte) error

type BatchOptions added in v0.0.54

type BatchOptions struct {
	// @gotags: kong:"help='How to output results (options: table json)',default=table,type=pbenum,pbenum_lowercase"
	OutputType BatchOutputType `` /* 226-byte string literal not displayed */
	// @gotags: kong:"help='Alternative URL to use for Batch API',default='https://api.batch.sh'"
	ApiUrl string `` /* 161-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Login to the Batch platform'"
	Login *BatchLoginOptions `protobuf:"bytes,3,opt,name=login,proto3" json:"login,omitempty" kong:"cmd,help='Login to the Batch platform'"`
	// @gotags: kong:"cmd,help='Login to Batch'"
	Logout *BatchLogoutOptions `protobuf:"bytes,4,opt,name=logout,proto3" json:"logout,omitempty" kong:"cmd,help='Login to Batch'"`
	// @gotags: kong:"cmd,help='List Batch resources'"
	List *BatchListOptions `protobuf:"bytes,5,opt,name=list,proto3" json:"list,omitempty" kong:"cmd,help='List Batch resources'"`
	// @gotags: kong:"cmd,help='Create operations'"
	Create *BatchCreateOptions `protobuf:"bytes,6,opt,name=create,proto3" json:"create,omitempty" kong:"cmd,help='Create operations'"`
	// @gotags: kong:"cmd,help='Search operations'"
	Search *BatchSearchOptions `protobuf:"bytes,7,opt,name=search,proto3" json:"search,omitempty" kong:"cmd,help='Search operations'"`
	// @gotags: kong:"cmd,help='Archive a resource'"
	Archive              *BatchArchiveOptions `protobuf:"bytes,8,opt,name=archive,proto3" json:"archive,omitempty" kong:"cmd,help='Archive a resource'"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*BatchOptions) Descriptor added in v0.0.54

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

func (*BatchOptions) GetApiUrl added in v0.0.54

func (m *BatchOptions) GetApiUrl() string

func (*BatchOptions) GetArchive added in v0.0.54

func (m *BatchOptions) GetArchive() *BatchArchiveOptions

func (*BatchOptions) GetCreate added in v0.0.54

func (m *BatchOptions) GetCreate() *BatchCreateOptions

func (*BatchOptions) GetList added in v0.0.54

func (m *BatchOptions) GetList() *BatchListOptions

func (*BatchOptions) GetLogin added in v0.0.54

func (m *BatchOptions) GetLogin() *BatchLoginOptions

func (*BatchOptions) GetLogout added in v0.0.54

func (m *BatchOptions) GetLogout() *BatchLogoutOptions

func (*BatchOptions) GetOutputType added in v0.0.54

func (m *BatchOptions) GetOutputType() BatchOutputType

func (*BatchOptions) GetSearch added in v0.0.54

func (m *BatchOptions) GetSearch() *BatchSearchOptions

func (*BatchOptions) ProtoMessage added in v0.0.54

func (*BatchOptions) ProtoMessage()

func (*BatchOptions) Reset added in v0.0.54

func (m *BatchOptions) Reset()

func (*BatchOptions) String added in v0.0.54

func (m *BatchOptions) String() string

func (*BatchOptions) XXX_DiscardUnknown added in v0.0.54

func (m *BatchOptions) XXX_DiscardUnknown()

func (*BatchOptions) XXX_Marshal added in v0.0.54

func (m *BatchOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BatchOptions) XXX_Merge added in v0.0.54

func (m *BatchOptions) XXX_Merge(src proto.Message)

func (*BatchOptions) XXX_Size added in v0.0.54

func (m *BatchOptions) XXX_Size() int

func (*BatchOptions) XXX_Unmarshal added in v0.0.54

func (m *BatchOptions) XXX_Unmarshal(b []byte) error

type BatchOutputType added in v0.0.54

type BatchOutputType int32
const (
	BatchOutputType_TABLE BatchOutputType = 0
	BatchOutputType_JSON  BatchOutputType = 1
)

func (BatchOutputType) EnumDescriptor added in v0.0.54

func (BatchOutputType) EnumDescriptor() ([]byte, []int)

func (BatchOutputType) String added in v0.0.54

func (x BatchOutputType) String() string

type BatchReplayType added in v0.0.54

type BatchReplayType int32
const (
	BatchReplayType_SINGLE     BatchReplayType = 0
	BatchReplayType_CONTINUOUS BatchReplayType = 1
)

func (BatchReplayType) EnumDescriptor added in v0.0.54

func (BatchReplayType) EnumDescriptor() ([]byte, []int)

func (BatchReplayType) String added in v0.0.54

func (x BatchReplayType) String() string

type BatchSearchOptions added in v0.0.54

type BatchSearchOptions struct {
	// @gotags: kong:"help='Query to perform',default='*'"
	Query string `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty" kong:"help='Query to perform',default='*'"`
	// @gotags: kong:"help='Collection id to query',required"
	CollectionId string `` /* 143-byte string literal not displayed */
	// @gotags: kong:"help='Which page to display',default=1"
	Page                 int32    `protobuf:"varint,3,opt,name=page,proto3" json:"page,omitempty" kong:"help='Which page to display',default=1"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BatchSearchOptions) Descriptor added in v0.0.54

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

func (*BatchSearchOptions) GetCollectionId added in v0.0.54

func (m *BatchSearchOptions) GetCollectionId() string

func (*BatchSearchOptions) GetPage added in v0.0.54

func (m *BatchSearchOptions) GetPage() int32

func (*BatchSearchOptions) GetQuery added in v0.0.54

func (m *BatchSearchOptions) GetQuery() string

func (*BatchSearchOptions) ProtoMessage added in v0.0.54

func (*BatchSearchOptions) ProtoMessage()

func (*BatchSearchOptions) Reset added in v0.0.54

func (m *BatchSearchOptions) Reset()

func (*BatchSearchOptions) String added in v0.0.54

func (m *BatchSearchOptions) String() string

func (*BatchSearchOptions) XXX_DiscardUnknown added in v0.0.54

func (m *BatchSearchOptions) XXX_DiscardUnknown()

func (*BatchSearchOptions) XXX_Marshal added in v0.0.54

func (m *BatchSearchOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BatchSearchOptions) XXX_Merge added in v0.0.54

func (m *BatchSearchOptions) XXX_Merge(src proto.Message)

func (*BatchSearchOptions) XXX_Size added in v0.0.54

func (m *BatchSearchOptions) XXX_Size() int

func (*BatchSearchOptions) XXX_Unmarshal added in v0.0.54

func (m *BatchSearchOptions) XXX_Unmarshal(b []byte) error

type CLIOptions added in v0.0.51

type CLIOptions struct {
	// @gotags: kong:"embed"
	Global *GlobalCLIOptions `protobuf:"bytes,1,opt,name=global,proto3" json:"global,omitempty" kong:"embed"`
	// @gotags: kong:"cmd,help='Read message(s) from messaging system'"
	Read *ReadOptions `protobuf:"bytes,2,opt,name=read,proto3" json:"read,omitempty" kong:"cmd,help='Read message(s) from messaging system'"`
	// @gotags: kong:"cmd,help='Write message(s) to messaging system'"
	Write *WriteOptions `protobuf:"bytes,3,opt,name=write,proto3" json:"write,omitempty" kong:"cmd,help='Write message(s) to messaging system'"`
	// @gotags: kong:"cmd,help='Relay message(s) from messaging system to Batch'"
	Relay *RelayOptions `` /* 129-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Use plumber as a destination tunnel in Batch.sh'"
	Tunnel *TunnelOptions `` /* 131-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Control Batch resources via the public API'"
	Batch *BatchOptions `protobuf:"bytes,6,opt,name=batch,proto3" json:"batch,omitempty" kong:"cmd,help='Control Batch resources via the public API'"`
	// @gotags: kong:"cmd,help='Run plumber in server mode'"
	Server *ServerOptions `protobuf:"bytes,7,opt,name=server,proto3" json:"server,omitempty" kong:"cmd,help='Run plumber in server mode'"`
	// @gotags: kong:"cmd,help='Manage plumber server'"
	Manage               *ManageOptions `protobuf:"bytes,8,opt,name=manage,proto3" json:"manage,omitempty" kong:"cmd,help='Manage plumber server'"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

CLI options in plumber are derived 100% from the protobuf schemas. The CLIOptions type is used for populating base CLI options. Introducing a top-level CLI option should begin here (and trickle all the way down to any newly introduced types).

For more info, check README_CLI.md

func (*CLIOptions) Descriptor added in v0.0.51

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

func (*CLIOptions) GetBatch added in v0.0.54

func (m *CLIOptions) GetBatch() *BatchOptions

func (*CLIOptions) GetGlobal added in v0.0.51

func (m *CLIOptions) GetGlobal() *GlobalCLIOptions

func (*CLIOptions) GetManage added in v0.0.143

func (m *CLIOptions) GetManage() *ManageOptions

func (*CLIOptions) GetRead added in v0.0.51

func (m *CLIOptions) GetRead() *ReadOptions

func (*CLIOptions) GetRelay added in v0.0.51

func (m *CLIOptions) GetRelay() *RelayOptions

func (*CLIOptions) GetServer added in v0.0.51

func (m *CLIOptions) GetServer() *ServerOptions

func (*CLIOptions) GetTunnel added in v0.0.142

func (m *CLIOptions) GetTunnel() *TunnelOptions

func (*CLIOptions) GetWrite added in v0.0.51

func (m *CLIOptions) GetWrite() *WriteOptions

func (*CLIOptions) ProtoMessage added in v0.0.51

func (*CLIOptions) ProtoMessage()

func (*CLIOptions) Reset added in v0.0.51

func (m *CLIOptions) Reset()

func (*CLIOptions) String added in v0.0.51

func (m *CLIOptions) String() string

func (*CLIOptions) XXX_DiscardUnknown added in v0.0.51

func (m *CLIOptions) XXX_DiscardUnknown()

func (*CLIOptions) XXX_Marshal added in v0.0.51

func (m *CLIOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CLIOptions) XXX_Merge added in v0.0.51

func (m *CLIOptions) XXX_Merge(src proto.Message)

func (*CLIOptions) XXX_Size added in v0.0.51

func (m *CLIOptions) XXX_Size() int

func (*CLIOptions) XXX_Unmarshal added in v0.0.51

func (m *CLIOptions) XXX_Unmarshal(b []byte) error

type ConnectionOptions added in v0.0.49

type ConnectionOptions struct {
	// Friendly name to identify this connection by (used in plumber-server logs)
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Any notes associated with this connection (stored plumber-server side)
	Notes string `protobuf:"bytes,2,opt,name=notes,proto3" json:"notes,omitempty"`
	// Types that are valid to be assigned to Conn:
	//	*ConnectionOptions_Kafka
	//	*ConnectionOptions_ActiveMq
	//	*ConnectionOptions_AwsSqs
	//	*ConnectionOptions_AwsSns
	//	*ConnectionOptions_Mongo
	//	*ConnectionOptions_Nats
	//	*ConnectionOptions_NatsStreaming
	//	*ConnectionOptions_Nsq
	//	*ConnectionOptions_Postgres
	//	*ConnectionOptions_Pulsar
	//	*ConnectionOptions_Rabbit
	//	*ConnectionOptions_RabbitStreams
	//	*ConnectionOptions_RedisPubsub
	//	*ConnectionOptions_RedisStreams
	//	*ConnectionOptions_AzureEventHub
	//	*ConnectionOptions_AzureServiceBus
	//	*ConnectionOptions_Mqtt
	//	*ConnectionOptions_KubemqQueue
	//	*ConnectionOptions_GcpPubsub
	//	*ConnectionOptions_NatsJetstream
	//	*ConnectionOptions_AwsKinesis
	Conn isConnectionOptions_Conn `protobuf_oneof:"conn"`
	// Used internally by plumber
	XId                  string   `protobuf:"bytes,1000,opt,name=_id,json=Id,proto3" json:"_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

ConnectionConfig is used for creating a new backend. CLI creates an instance of this structure by injecting the conn struct it receives via *Args.

func (*ConnectionOptions) Descriptor added in v0.0.49

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

func (*ConnectionOptions) GetActiveMq added in v0.0.49

func (m *ConnectionOptions) GetActiveMq() *args.ActiveMQConn

func (*ConnectionOptions) GetAwsKinesis added in v0.0.121

func (m *ConnectionOptions) GetAwsKinesis() *args.AWSKinesisConn

func (*ConnectionOptions) GetAwsSns added in v0.0.114

func (m *ConnectionOptions) GetAwsSns() *args.AWSSNSConn

func (*ConnectionOptions) GetAwsSqs added in v0.0.114

func (m *ConnectionOptions) GetAwsSqs() *args.AWSSQSConn

func (*ConnectionOptions) GetAzureEventHub added in v0.0.49

func (m *ConnectionOptions) GetAzureEventHub() *args.AzureEventHubConn

func (*ConnectionOptions) GetAzureServiceBus added in v0.0.49

func (m *ConnectionOptions) GetAzureServiceBus() *args.AzureServiceBusConn

func (*ConnectionOptions) GetConn added in v0.0.49

func (m *ConnectionOptions) GetConn() isConnectionOptions_Conn

func (*ConnectionOptions) GetGcpPubsub added in v0.0.49

func (m *ConnectionOptions) GetGcpPubsub() *args.GCPPubSubConn

func (*ConnectionOptions) GetKafka added in v0.0.49

func (m *ConnectionOptions) GetKafka() *args.KafkaConn

func (*ConnectionOptions) GetKubemqQueue added in v0.0.49

func (m *ConnectionOptions) GetKubemqQueue() *args.KubeMQQueueConn

func (*ConnectionOptions) GetMongo added in v0.0.49

func (m *ConnectionOptions) GetMongo() *args.MongoConn

func (*ConnectionOptions) GetMqtt added in v0.0.49

func (m *ConnectionOptions) GetMqtt() *args.MQTTConn

func (*ConnectionOptions) GetName added in v0.0.49

func (m *ConnectionOptions) GetName() string

func (*ConnectionOptions) GetNats added in v0.0.49

func (m *ConnectionOptions) GetNats() *args.NatsConn

func (*ConnectionOptions) GetNatsJetstream added in v0.0.119

func (m *ConnectionOptions) GetNatsJetstream() *args.NatsJetstreamConn

func (*ConnectionOptions) GetNatsStreaming added in v0.0.49

func (m *ConnectionOptions) GetNatsStreaming() *args.NatsStreamingConn

func (*ConnectionOptions) GetNotes added in v0.0.49

func (m *ConnectionOptions) GetNotes() string

func (*ConnectionOptions) GetNsq added in v0.0.49

func (m *ConnectionOptions) GetNsq() *args.NSQConn

func (*ConnectionOptions) GetPostgres added in v0.0.49

func (m *ConnectionOptions) GetPostgres() *args.PostgresConn

func (*ConnectionOptions) GetPulsar added in v0.0.49

func (m *ConnectionOptions) GetPulsar() *args.PulsarConn

func (*ConnectionOptions) GetRabbit added in v0.0.49

func (m *ConnectionOptions) GetRabbit() *args.RabbitConn

func (*ConnectionOptions) GetRabbitStreams added in v0.0.49

func (m *ConnectionOptions) GetRabbitStreams() *args.RabbitStreamsConn

func (*ConnectionOptions) GetRedisPubsub added in v0.0.49

func (m *ConnectionOptions) GetRedisPubsub() *args.RedisPubSubConn

func (*ConnectionOptions) GetRedisStreams added in v0.0.49

func (m *ConnectionOptions) GetRedisStreams() *args.RedisStreamsConn

func (*ConnectionOptions) GetXId added in v0.0.49

func (m *ConnectionOptions) GetXId() string

func (*ConnectionOptions) ProtoMessage added in v0.0.49

func (*ConnectionOptions) ProtoMessage()

func (*ConnectionOptions) Reset added in v0.0.49

func (m *ConnectionOptions) Reset()

func (*ConnectionOptions) String added in v0.0.49

func (m *ConnectionOptions) String() string

func (*ConnectionOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ConnectionOptions) XXX_DiscardUnknown()

func (*ConnectionOptions) XXX_Marshal added in v0.0.49

func (m *ConnectionOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ConnectionOptions) XXX_Merge added in v0.0.49

func (m *ConnectionOptions) XXX_Merge(src proto.Message)

func (*ConnectionOptions) XXX_OneofWrappers added in v0.0.49

func (*ConnectionOptions) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*ConnectionOptions) XXX_Size added in v0.0.49

func (m *ConnectionOptions) XXX_Size() int

func (*ConnectionOptions) XXX_Unmarshal added in v0.0.49

func (m *ConnectionOptions) XXX_Unmarshal(b []byte) error

type ConnectionOptions_ActiveMq added in v0.0.49

type ConnectionOptions_ActiveMq struct {
	ActiveMq *args.ActiveMQConn `protobuf:"bytes,101,opt,name=active_mq,json=activeMq,proto3,oneof"`
}

type ConnectionOptions_AwsKinesis added in v0.0.121

type ConnectionOptions_AwsKinesis struct {
	AwsKinesis *args.AWSKinesisConn `protobuf:"bytes,120,opt,name=aws_kinesis,json=awsKinesis,proto3,oneof"`
}

type ConnectionOptions_AwsSns added in v0.0.114

type ConnectionOptions_AwsSns struct {
	AwsSns *args.AWSSNSConn `protobuf:"bytes,103,opt,name=aws_sns,json=awsSns,proto3,oneof"`
}

type ConnectionOptions_AwsSqs added in v0.0.114

type ConnectionOptions_AwsSqs struct {
	AwsSqs *args.AWSSQSConn `protobuf:"bytes,102,opt,name=aws_sqs,json=awsSqs,proto3,oneof"`
}

type ConnectionOptions_AzureEventHub added in v0.0.49

type ConnectionOptions_AzureEventHub struct {
	AzureEventHub *args.AzureEventHubConn `protobuf:"bytes,114,opt,name=azure_event_hub,json=azureEventHub,proto3,oneof"`
}

type ConnectionOptions_AzureServiceBus added in v0.0.49

type ConnectionOptions_AzureServiceBus struct {
	AzureServiceBus *args.AzureServiceBusConn `protobuf:"bytes,115,opt,name=azure_service_bus,json=azureServiceBus,proto3,oneof"`
}

type ConnectionOptions_GcpPubsub added in v0.0.49

type ConnectionOptions_GcpPubsub struct {
	GcpPubsub *args.GCPPubSubConn `protobuf:"bytes,118,opt,name=gcp_pubsub,json=gcpPubsub,proto3,oneof"`
}

type ConnectionOptions_Kafka added in v0.0.49

type ConnectionOptions_Kafka struct {
	Kafka *args.KafkaConn `protobuf:"bytes,100,opt,name=kafka,proto3,oneof"`
}

type ConnectionOptions_KubemqQueue added in v0.0.49

type ConnectionOptions_KubemqQueue struct {
	KubemqQueue *args.KubeMQQueueConn `protobuf:"bytes,117,opt,name=kubemq_queue,json=kubemqQueue,proto3,oneof"`
}

type ConnectionOptions_Mongo added in v0.0.49

type ConnectionOptions_Mongo struct {
	Mongo *args.MongoConn `protobuf:"bytes,104,opt,name=mongo,proto3,oneof"`
}

type ConnectionOptions_Mqtt added in v0.0.49

type ConnectionOptions_Mqtt struct {
	Mqtt *args.MQTTConn `protobuf:"bytes,116,opt,name=mqtt,proto3,oneof"`
}

type ConnectionOptions_Nats added in v0.0.49

type ConnectionOptions_Nats struct {
	Nats *args.NatsConn `protobuf:"bytes,105,opt,name=nats,proto3,oneof"`
}

type ConnectionOptions_NatsJetstream added in v0.0.119

type ConnectionOptions_NatsJetstream struct {
	NatsJetstream *args.NatsJetstreamConn `protobuf:"bytes,119,opt,name=nats_jetstream,json=natsJetstream,proto3,oneof"`
}

type ConnectionOptions_NatsStreaming added in v0.0.49

type ConnectionOptions_NatsStreaming struct {
	NatsStreaming *args.NatsStreamingConn `protobuf:"bytes,106,opt,name=nats_streaming,json=natsStreaming,proto3,oneof"`
}

type ConnectionOptions_Nsq added in v0.0.49

type ConnectionOptions_Nsq struct {
	Nsq *args.NSQConn `protobuf:"bytes,107,opt,name=nsq,proto3,oneof"`
}

type ConnectionOptions_Postgres added in v0.0.49

type ConnectionOptions_Postgres struct {
	Postgres *args.PostgresConn `protobuf:"bytes,108,opt,name=postgres,proto3,oneof"`
}

type ConnectionOptions_Pulsar added in v0.0.49

type ConnectionOptions_Pulsar struct {
	Pulsar *args.PulsarConn `protobuf:"bytes,109,opt,name=pulsar,proto3,oneof"`
}

type ConnectionOptions_Rabbit added in v0.0.49

type ConnectionOptions_Rabbit struct {
	Rabbit *args.RabbitConn `protobuf:"bytes,110,opt,name=rabbit,proto3,oneof"`
}

type ConnectionOptions_RabbitStreams added in v0.0.49

type ConnectionOptions_RabbitStreams struct {
	RabbitStreams *args.RabbitStreamsConn `protobuf:"bytes,111,opt,name=rabbit_streams,json=rabbitStreams,proto3,oneof"`
}

type ConnectionOptions_RedisPubsub added in v0.0.49

type ConnectionOptions_RedisPubsub struct {
	RedisPubsub *args.RedisPubSubConn `protobuf:"bytes,112,opt,name=redis_pubsub,json=redisPubsub,proto3,oneof"`
}

type ConnectionOptions_RedisStreams added in v0.0.49

type ConnectionOptions_RedisStreams struct {
	RedisStreams *args.RedisStreamsConn `protobuf:"bytes,113,opt,name=redis_streams,json=redisStreams,proto3,oneof"`
}

type ConvertOption added in v0.0.49

type ConvertOption int32
const (
	ConvertOption_CONVERT_OPTION_UNSET  ConvertOption = 0
	ConvertOption_CONVERT_OPTION_BASE64 ConvertOption = 1
	ConvertOption_CONVERT_OPTION_GZIP   ConvertOption = 2
)

func (ConvertOption) EnumDescriptor added in v0.0.49

func (ConvertOption) EnumDescriptor() ([]byte, []int)

func (ConvertOption) String added in v0.0.49

func (x ConvertOption) String() string

type CreateConnectionOptions added in v0.0.143

type CreateConnectionOptions struct {
	// @gotags: kong:"help='Friendly name for the connection', required"
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty" kong:"help='Friendly name for the connection', required"`
	// @gotags: kong:"help='Optional notes to associate with the connection'"
	Notes string `protobuf:"bytes,2,opt,name=notes,proto3" json:"notes,omitempty" kong:"help='Optional notes to associate with the connection'"`
	// @gotags: kong:"cmd,help='Apache Kafka'"
	Kafka *args.KafkaConn `protobuf:"bytes,100,opt,name=kafka,proto3" json:"kafka,omitempty" kong:"cmd,help='Apache Kafka'"`
	// @gotags: kong:"cmd,help='ActiveMQ'"
	ActiveMq *args.ActiveMQConn `protobuf:"bytes,101,opt,name=active_mq,json=activeMq,proto3" json:"active_mq,omitempty" kong:"cmd,help='ActiveMQ'"`
	// @gotags: kong:"cmd,help='AWS Simple Queue Service'"
	AwsSqs *args.AWSSQSConn `protobuf:"bytes,102,opt,name=aws_sqs,json=awsSqs,proto3" json:"aws_sqs,omitempty" kong:"cmd,help='AWS Simple Queue Service'"`
	// @gotags: kong:"cmd,help='AWS Simple Notification Service'"
	AwsSns *args.AWSSNSConn `` /* 131-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Mongo (CDC)'"
	Mongo *args.MongoConn `protobuf:"bytes,104,opt,name=mongo,proto3" json:"mongo,omitempty" kong:"cmd,help='Mongo (CDC)'"`
	// @gotags: kong:"cmd,help='NATS PubSub'"
	Nats *args.NatsConn `protobuf:"bytes,105,opt,name=nats,proto3" json:"nats,omitempty" kong:"cmd,help='NATS PubSub'"`
	// @gotags: kong:"cmd,help='NATS Streaming (deprecated)'"
	NatsStreaming *args.NatsStreamingConn `` /* 148-byte string literal not displayed */
	// @gotags: kong:"cmd,help='NSQ'"
	Nsq *args.NSQConn `protobuf:"bytes,107,opt,name=nsq,proto3" json:"nsq,omitempty" kong:"cmd,help='NSQ'"`
	// @gotags: kong:"cmd,help='PostgreSQL (CDC)'"
	Postgres *args.PostgresConn `protobuf:"bytes,108,opt,name=postgres,proto3" json:"postgres,omitempty" kong:"cmd,help='PostgreSQL (CDC)'"`
	// @gotags: kong:"cmd,help='Pulsar'"
	Pulsar *args.PulsarConn `protobuf:"bytes,109,opt,name=pulsar,proto3" json:"pulsar,omitempty" kong:"cmd,help='Pulsar'"`
	// @gotags: kong:"cmd,help='Rabbit'"
	Rabbit *args.RabbitConn `protobuf:"bytes,110,opt,name=rabbit,proto3" json:"rabbit,omitempty" kong:"cmd,help='Rabbit'"`
	// @gotags: kong:"cmd,help='Rabbit Streams'"
	RabbitStreams *args.RabbitStreamsConn `` /* 135-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis PubSub'"
	RedisPubsub *args.RedisPubSubConn `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis Streams'"
	RedisStreams *args.RedisStreamsConn `` /* 131-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Azure Event Hub'"
	AzureEventHub *args.AzureEventHubConn `` /* 138-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Azure Service Bus'"
	AzureServiceBus *args.AzureServiceBusConn `` /* 146-byte string literal not displayed */
	// @gotags: kong:"cmd,help='MQTT'"
	Mqtt *args.MQTTConn `protobuf:"bytes,116,opt,name=mqtt,proto3" json:"mqtt,omitempty" kong:"cmd,help='MQTT'"`
	// @gotags: kong:"cmd,help='KubeMQ Queue'"
	KubemqQueue *args.KubeMQQueueConn `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Google Cloud Pub/Sub'"
	GcpPubsub *args.GCPPubSubConn `` /* 129-byte string literal not displayed */
	// @gotags: kong:"cmd,help='NATS JetStream'"
	NatsJetstream *args.NatsJetstreamConn `` /* 135-byte string literal not displayed */
	// @gotags: kong:"cmd,help='AWS Kinesis'"
	AwsKinesis           *args.AWSKinesisConn `protobuf:"bytes,120,opt,name=aws_kinesis,json=awsKinesis,proto3" json:"aws_kinesis,omitempty" kong:"cmd,help='AWS Kinesis'"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*CreateConnectionOptions) Descriptor added in v0.0.143

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

func (*CreateConnectionOptions) GetActiveMq added in v0.0.143

func (m *CreateConnectionOptions) GetActiveMq() *args.ActiveMQConn

func (*CreateConnectionOptions) GetAwsKinesis added in v0.0.143

func (m *CreateConnectionOptions) GetAwsKinesis() *args.AWSKinesisConn

func (*CreateConnectionOptions) GetAwsSns added in v0.0.143

func (m *CreateConnectionOptions) GetAwsSns() *args.AWSSNSConn

func (*CreateConnectionOptions) GetAwsSqs added in v0.0.143

func (m *CreateConnectionOptions) GetAwsSqs() *args.AWSSQSConn

func (*CreateConnectionOptions) GetAzureEventHub added in v0.0.143

func (m *CreateConnectionOptions) GetAzureEventHub() *args.AzureEventHubConn

func (*CreateConnectionOptions) GetAzureServiceBus added in v0.0.143

func (m *CreateConnectionOptions) GetAzureServiceBus() *args.AzureServiceBusConn

func (*CreateConnectionOptions) GetGcpPubsub added in v0.0.143

func (m *CreateConnectionOptions) GetGcpPubsub() *args.GCPPubSubConn

func (*CreateConnectionOptions) GetKafka added in v0.0.143

func (m *CreateConnectionOptions) GetKafka() *args.KafkaConn

func (*CreateConnectionOptions) GetKubemqQueue added in v0.0.143

func (m *CreateConnectionOptions) GetKubemqQueue() *args.KubeMQQueueConn

func (*CreateConnectionOptions) GetMongo added in v0.0.143

func (m *CreateConnectionOptions) GetMongo() *args.MongoConn

func (*CreateConnectionOptions) GetMqtt added in v0.0.143

func (m *CreateConnectionOptions) GetMqtt() *args.MQTTConn

func (*CreateConnectionOptions) GetName added in v0.0.143

func (m *CreateConnectionOptions) GetName() string

func (*CreateConnectionOptions) GetNats added in v0.0.143

func (m *CreateConnectionOptions) GetNats() *args.NatsConn

func (*CreateConnectionOptions) GetNatsJetstream added in v0.0.143

func (m *CreateConnectionOptions) GetNatsJetstream() *args.NatsJetstreamConn

func (*CreateConnectionOptions) GetNatsStreaming added in v0.0.143

func (m *CreateConnectionOptions) GetNatsStreaming() *args.NatsStreamingConn

func (*CreateConnectionOptions) GetNotes added in v0.0.143

func (m *CreateConnectionOptions) GetNotes() string

func (*CreateConnectionOptions) GetNsq added in v0.0.143

func (m *CreateConnectionOptions) GetNsq() *args.NSQConn

func (*CreateConnectionOptions) GetPostgres added in v0.0.143

func (m *CreateConnectionOptions) GetPostgres() *args.PostgresConn

func (*CreateConnectionOptions) GetPulsar added in v0.0.143

func (m *CreateConnectionOptions) GetPulsar() *args.PulsarConn

func (*CreateConnectionOptions) GetRabbit added in v0.0.143

func (m *CreateConnectionOptions) GetRabbit() *args.RabbitConn

func (*CreateConnectionOptions) GetRabbitStreams added in v0.0.143

func (m *CreateConnectionOptions) GetRabbitStreams() *args.RabbitStreamsConn

func (*CreateConnectionOptions) GetRedisPubsub added in v0.0.143

func (m *CreateConnectionOptions) GetRedisPubsub() *args.RedisPubSubConn

func (*CreateConnectionOptions) GetRedisStreams added in v0.0.143

func (m *CreateConnectionOptions) GetRedisStreams() *args.RedisStreamsConn

func (*CreateConnectionOptions) ProtoMessage added in v0.0.143

func (*CreateConnectionOptions) ProtoMessage()

func (*CreateConnectionOptions) Reset added in v0.0.143

func (m *CreateConnectionOptions) Reset()

func (*CreateConnectionOptions) String added in v0.0.143

func (m *CreateConnectionOptions) String() string

func (*CreateConnectionOptions) XXX_DiscardUnknown added in v0.0.143

func (m *CreateConnectionOptions) XXX_DiscardUnknown()

func (*CreateConnectionOptions) XXX_Marshal added in v0.0.143

func (m *CreateConnectionOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateConnectionOptions) XXX_Merge added in v0.0.143

func (m *CreateConnectionOptions) XXX_Merge(src proto.Message)

func (*CreateConnectionOptions) XXX_Size added in v0.0.143

func (m *CreateConnectionOptions) XXX_Size() int

func (*CreateConnectionOptions) XXX_Unmarshal added in v0.0.143

func (m *CreateConnectionOptions) XXX_Unmarshal(b []byte) error

type CreateOptions added in v0.0.143

type CreateOptions struct {
	// @gotags: kong:"cmd,help='Create connection in plumber server'"
	Connection *CreateConnectionOptions `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Create relay in plumber server'"
	Relay *CreateRelayOptions `protobuf:"bytes,2,opt,name=relay,proto3" json:"relay,omitempty" kong:"cmd,help='Create relay in plumber server'"`
	// @gotags: kong:"cmd,help='Create tunnel in plumber server'"
	Tunnel               *CreateTunnelOptions `protobuf:"bytes,3,opt,name=tunnel,proto3" json:"tunnel,omitempty" kong:"cmd,help='Create tunnel in plumber server'"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*CreateOptions) Descriptor added in v0.0.143

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

func (*CreateOptions) GetConnection added in v0.0.143

func (m *CreateOptions) GetConnection() *CreateConnectionOptions

func (*CreateOptions) GetRelay added in v0.0.143

func (m *CreateOptions) GetRelay() *CreateRelayOptions

func (*CreateOptions) GetTunnel added in v0.0.143

func (m *CreateOptions) GetTunnel() *CreateTunnelOptions

func (*CreateOptions) ProtoMessage added in v0.0.143

func (*CreateOptions) ProtoMessage()

func (*CreateOptions) Reset added in v0.0.143

func (m *CreateOptions) Reset()

func (*CreateOptions) String added in v0.0.143

func (m *CreateOptions) String() string

func (*CreateOptions) XXX_DiscardUnknown added in v0.0.143

func (m *CreateOptions) XXX_DiscardUnknown()

func (*CreateOptions) XXX_Marshal added in v0.0.143

func (m *CreateOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateOptions) XXX_Merge added in v0.0.143

func (m *CreateOptions) XXX_Merge(src proto.Message)

func (*CreateOptions) XXX_Size added in v0.0.143

func (m *CreateOptions) XXX_Size() int

func (*CreateOptions) XXX_Unmarshal added in v0.0.143

func (m *CreateOptions) XXX_Unmarshal(b []byte) error

type CreateRelayOptions added in v0.0.143

type CreateRelayOptions struct {
	// @gotags: kong:"help='ID of the connection to use',required"
	ConnectionId string `` /* 148-byte string literal not displayed */
	// @gotags: kong:"help='Secret collection token',required"
	CollectionToken string `` /* 153-byte string literal not displayed */
	// @gotags: kong:"help='How many messages to send in a single batch',default=1000"
	BatchSize int32 `` /* 160-byte string literal not displayed */
	// @gotags: kong:"help='How many times plumber will try re-sending a batch',default=3"
	BatchMaxRetry int32 `` /* 178-byte string literal not displayed */
	// @gotags: kong:"help='How many workers to launch per relay',default=10"
	NumWorkers int32 `` /* 154-byte string literal not displayed */
	// @gotags: kong:"help='Alternative collector to relay events to',default='grpc-collector.batch.sh:9000'"
	BatchshGrpcAddress string `` /* 211-byte string literal not displayed */
	// @gotags: kong:"help='Whether to use TLS with collector'"
	BatchshGrpcDisableTls bool `` /* 177-byte string literal not displayed */
	// @gotags: kong:"help='How long to wait before giving up talking to the gRPC collector',default=5"
	BatchshGrpcTimeoutSeconds int32 `` /* 229-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Apache Kafka'"
	Kafka *args.KafkaRelayArgs `protobuf:"bytes,100,opt,name=kafka,proto3" json:"kafka,omitempty" kong:"cmd,help='Apache Kafka'"`
	// @gotags: kong:"cmd,help='AWS Simple Queue System'"
	AwsSqs *args.AWSSQSRelayArgs `protobuf:"bytes,101,opt,name=aws_sqs,json=awsSqs,proto3" json:"aws_sqs,omitempty" kong:"cmd,help='AWS Simple Queue System'"`
	// @gotags: kong:"cmd,help='MongoDB (CDC)'"
	Mongo *args.MongoReadArgs `protobuf:"bytes,102,opt,name=mongo,proto3" json:"mongo,omitempty" kong:"cmd,help='MongoDB (CDC)'"`
	// @gotags: kong:"cmd,help='NSQ'"
	Nsq *args.NSQReadArgs `protobuf:"bytes,103,opt,name=nsq,proto3" json:"nsq,omitempty" kong:"cmd,help='NSQ'"`
	// @gotags: kong:"cmd,help='MQTT'"
	Rabbit *args.RabbitReadArgs `protobuf:"bytes,104,opt,name=rabbit,proto3" json:"rabbit,omitempty" kong:"cmd,help='MQTT'"`
	// @gotags: kong:"cmd,help='MQTT'"
	Mqtt *args.MQTTReadArgs `protobuf:"bytes,105,opt,name=mqtt,proto3" json:"mqtt,omitempty" kong:"cmd,help='MQTT'"`
	// @gotags: kong:"cmd,help='Azure Service Bus'"
	AzureServiceBus *args.AzureServiceBusReadArgs `` /* 146-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Google Cloud Platform Pub/Sub'"
	GcpPubsub *args.GCPPubSubReadArgs `` /* 138-byte string literal not displayed */
	// @gotags: kong:"cmd,help='KubeMQ Queue'"
	KubemqQueue *args.KubeMQQueueReadArgs `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis PubSub'"
	RedisPubsub *args.RedisPubSubReadArgs `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis Streams'"
	RedisStreams *args.RedisStreamsReadArgs `` /* 131-byte string literal not displayed */
	// @gotags: kong:"cmd,help='PostgreSQL (CDC)'"
	Postgres *args.PostgresReadArgs `protobuf:"bytes,112,opt,name=postgres,proto3" json:"postgres,omitempty" kong:"cmd,help='PostgreSQL (CDC)'"`
	// @gotags: kong:"cmd,help='NATS'"
	Nats *args.NatsReadArgs `protobuf:"bytes,113,opt,name=nats,proto3" json:"nats,omitempty" kong:"cmd,help='NATS'"`
	// @gotags: kong:"cmd,help='NATS Streaming'"
	NatsStreaming *args.NatsStreamingReadArgs `` /* 135-byte string literal not displayed */
	// @gotags: kong:"cmd,help='NATS JetStream'"
	NatsJetstream        *args.NatsJetstreamReadArgs `` /* 135-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

func (*CreateRelayOptions) Descriptor added in v0.0.143

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

func (*CreateRelayOptions) GetAwsSqs added in v0.0.143

func (m *CreateRelayOptions) GetAwsSqs() *args.AWSSQSRelayArgs

func (*CreateRelayOptions) GetAzureServiceBus added in v0.0.143

func (m *CreateRelayOptions) GetAzureServiceBus() *args.AzureServiceBusReadArgs

func (*CreateRelayOptions) GetBatchMaxRetry added in v0.0.143

func (m *CreateRelayOptions) GetBatchMaxRetry() int32

func (*CreateRelayOptions) GetBatchSize added in v0.0.143

func (m *CreateRelayOptions) GetBatchSize() int32

func (*CreateRelayOptions) GetBatchshGrpcAddress added in v0.0.150

func (m *CreateRelayOptions) GetBatchshGrpcAddress() string

func (*CreateRelayOptions) GetBatchshGrpcDisableTls added in v0.0.150

func (m *CreateRelayOptions) GetBatchshGrpcDisableTls() bool

func (*CreateRelayOptions) GetBatchshGrpcTimeoutSeconds added in v0.0.150

func (m *CreateRelayOptions) GetBatchshGrpcTimeoutSeconds() int32

func (*CreateRelayOptions) GetCollectionToken added in v0.0.143

func (m *CreateRelayOptions) GetCollectionToken() string

func (*CreateRelayOptions) GetConnectionId added in v0.0.143

func (m *CreateRelayOptions) GetConnectionId() string

func (*CreateRelayOptions) GetGcpPubsub added in v0.0.143

func (m *CreateRelayOptions) GetGcpPubsub() *args.GCPPubSubReadArgs

func (*CreateRelayOptions) GetKafka added in v0.0.143

func (m *CreateRelayOptions) GetKafka() *args.KafkaRelayArgs

func (*CreateRelayOptions) GetKubemqQueue added in v0.0.143

func (m *CreateRelayOptions) GetKubemqQueue() *args.KubeMQQueueReadArgs

func (*CreateRelayOptions) GetMongo added in v0.0.143

func (m *CreateRelayOptions) GetMongo() *args.MongoReadArgs

func (*CreateRelayOptions) GetMqtt added in v0.0.143

func (m *CreateRelayOptions) GetMqtt() *args.MQTTReadArgs

func (*CreateRelayOptions) GetNats added in v0.0.143

func (m *CreateRelayOptions) GetNats() *args.NatsReadArgs

func (*CreateRelayOptions) GetNatsJetstream added in v0.0.143

func (m *CreateRelayOptions) GetNatsJetstream() *args.NatsJetstreamReadArgs

func (*CreateRelayOptions) GetNatsStreaming added in v0.0.143

func (m *CreateRelayOptions) GetNatsStreaming() *args.NatsStreamingReadArgs

func (*CreateRelayOptions) GetNsq added in v0.0.143

func (m *CreateRelayOptions) GetNsq() *args.NSQReadArgs

func (*CreateRelayOptions) GetNumWorkers added in v0.0.143

func (m *CreateRelayOptions) GetNumWorkers() int32

func (*CreateRelayOptions) GetPostgres added in v0.0.143

func (m *CreateRelayOptions) GetPostgres() *args.PostgresReadArgs

func (*CreateRelayOptions) GetRabbit added in v0.0.143

func (m *CreateRelayOptions) GetRabbit() *args.RabbitReadArgs

func (*CreateRelayOptions) GetRedisPubsub added in v0.0.143

func (m *CreateRelayOptions) GetRedisPubsub() *args.RedisPubSubReadArgs

func (*CreateRelayOptions) GetRedisStreams added in v0.0.143

func (m *CreateRelayOptions) GetRedisStreams() *args.RedisStreamsReadArgs

func (*CreateRelayOptions) ProtoMessage added in v0.0.143

func (*CreateRelayOptions) ProtoMessage()

func (*CreateRelayOptions) Reset added in v0.0.143

func (m *CreateRelayOptions) Reset()

func (*CreateRelayOptions) String added in v0.0.143

func (m *CreateRelayOptions) String() string

func (*CreateRelayOptions) XXX_DiscardUnknown added in v0.0.143

func (m *CreateRelayOptions) XXX_DiscardUnknown()

func (*CreateRelayOptions) XXX_Marshal added in v0.0.143

func (m *CreateRelayOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateRelayOptions) XXX_Merge added in v0.0.143

func (m *CreateRelayOptions) XXX_Merge(src proto.Message)

func (*CreateRelayOptions) XXX_Size added in v0.0.143

func (m *CreateRelayOptions) XXX_Size() int

func (*CreateRelayOptions) XXX_Unmarshal added in v0.0.143

func (m *CreateRelayOptions) XXX_Unmarshal(b []byte) error

type CreateTunnelOptions added in v0.0.143

type CreateTunnelOptions struct {
	// @gotags: kong:"help='Connection ID for the tunnel to use',required=true"
	ConnectionId string `` /* 161-byte string literal not displayed */
	// @gotags: kong:"help='Batch API token (create in settings -> security)',required=true"
	TunnelToken string `` /* 171-byte string literal not displayed */
	// @gotags: kong:"help='Name for the tunnel (auto-generated if left empty)'"
	Name string `` /* 126-byte string literal not displayed */
	// @gotags: kong:"help='Notes associated with the tunnel'"
	Notes string `protobuf:"bytes,5,opt,name=notes,proto3" json:"notes,omitempty" kong:"help='Notes associated with the tunnel'"`
	// @gotags: kong:"help='Tunnel API address',default='dproxy.batch.sh:443'"
	XTunnelAddress string `` /* 165-byte string literal not displayed */
	// @gotags: kong:"help='Tunnel API initial connection timeout',default=5"
	XTunnelTimeoutSeconds uint32 `` /* 188-byte string literal not displayed */
	// @gotags: kong:"help='Use gRPC insecure mode when talking to Batch Tunnel API'"
	XTunnelInsecure bool `` /* 176-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Apache Kafka'"
	Kafka *args.KafkaWriteArgs `protobuf:"bytes,100,opt,name=kafka,proto3" json:"kafka,omitempty" kong:"cmd,help='Apache Kafka'"`
	// @gotags: kong:"cmd,help='Apache ActiveMQ'"
	Activemq *args.ActiveMQWriteArgs `protobuf:"bytes,101,opt,name=activemq,proto3" json:"activemq,omitempty" kong:"cmd,help='Apache ActiveMQ'"`
	// @gotags: kong:"cmd,help='AWS Simple Queue System'"
	AwsSqs *args.AWSSQSWriteArgs `protobuf:"bytes,102,opt,name=aws_sqs,json=awsSqs,proto3" json:"aws_sqs,omitempty" kong:"cmd,help='AWS Simple Queue System'"`
	// @gotags: kong:"cmd,help='AWS Simple Notification System'"
	AwsSns *args.AWSSNSWriteArgs `` /* 130-byte string literal not displayed */
	// @gotags: kong:"cmd,help='NATS'"
	Nats *args.NatsWriteArgs `protobuf:"bytes,104,opt,name=nats,proto3" json:"nats,omitempty" kong:"cmd,help='NATS'"`
	// @gotags: kong:"cmd,help='NATS Streaming'"
	NatsStreaming *args.NatsStreamingWriteArgs `` /* 135-byte string literal not displayed */
	// @gotags: kong:"cmd,help='NSQ'"
	Nsq *args.NSQWriteArgs `protobuf:"bytes,106,opt,name=nsq,proto3" json:"nsq,omitempty" kong:"cmd,help='NSQ'"`
	// @gotags: kong:"cmd,help='RabbitMQ'"
	Rabbit *args.RabbitWriteArgs `protobuf:"bytes,107,opt,name=rabbit,proto3" json:"rabbit,omitempty" kong:"cmd,help='RabbitMQ'"`
	// @gotags: kong:"cmd,help='MQTT'"
	Mqtt *args.MQTTWriteArgs `protobuf:"bytes,108,opt,name=mqtt,proto3" json:"mqtt,omitempty" kong:"cmd,help='MQTT'"`
	// @gotags: kong:"cmd,help='Azure Service Bus'"
	AzureServiceBus *args.AzureServiceBusWriteArgs `` /* 146-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Azure Event Hub'"
	AzureEventHub *args.AzureEventHubWriteArgs `` /* 138-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Google Cloud Platform Pub/Sub'"
	GcpPubsub *args.GCPPubSubWriteArgs `` /* 138-byte string literal not displayed */
	// @gotags: kong:"cmd,help='KubeMQ Queue'"
	KubemqQueue *args.KubeMQQueueWriteArgs `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis PubSub'"
	RedisPubsub *args.RedisPubSubWriteArgs `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis Streams'"
	RedisStreams *args.RedisStreamsWriteArgs `` /* 131-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Apache Pulsar'"
	Pulsar *args.PulsarWriteArgs `protobuf:"bytes,115,opt,name=pulsar,proto3" json:"pulsar,omitempty" kong:"cmd,help='Apache Pulsar'"`
	// @gotags: kong:"cmd,help='RabbitMQ Streams'"
	RabbitStreams *args.RabbitStreamsWriteArgs `` /* 137-byte string literal not displayed */
	// @gotags: kong:"cmd,help='NATS JetStream'"
	NatsJetstream *args.NatsJetstreamWriteArgs `` /* 135-byte string literal not displayed */
	// @gotags: kong:"cmd,help='AWS Kinesis Streams'"
	AwsKinesis           *args.AWSKinesisWriteArgs `` /* 131-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*CreateTunnelOptions) Descriptor added in v0.0.143

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

func (*CreateTunnelOptions) GetActivemq added in v0.0.143

func (m *CreateTunnelOptions) GetActivemq() *args.ActiveMQWriteArgs

func (*CreateTunnelOptions) GetAwsKinesis added in v0.0.143

func (m *CreateTunnelOptions) GetAwsKinesis() *args.AWSKinesisWriteArgs

func (*CreateTunnelOptions) GetAwsSns added in v0.0.143

func (m *CreateTunnelOptions) GetAwsSns() *args.AWSSNSWriteArgs

func (*CreateTunnelOptions) GetAwsSqs added in v0.0.143

func (m *CreateTunnelOptions) GetAwsSqs() *args.AWSSQSWriteArgs

func (*CreateTunnelOptions) GetAzureEventHub added in v0.0.143

func (m *CreateTunnelOptions) GetAzureEventHub() *args.AzureEventHubWriteArgs

func (*CreateTunnelOptions) GetAzureServiceBus added in v0.0.143

func (m *CreateTunnelOptions) GetAzureServiceBus() *args.AzureServiceBusWriteArgs

func (*CreateTunnelOptions) GetConnectionId added in v0.0.143

func (m *CreateTunnelOptions) GetConnectionId() string

func (*CreateTunnelOptions) GetGcpPubsub added in v0.0.143

func (m *CreateTunnelOptions) GetGcpPubsub() *args.GCPPubSubWriteArgs

func (*CreateTunnelOptions) GetKafka added in v0.0.143

func (m *CreateTunnelOptions) GetKafka() *args.KafkaWriteArgs

func (*CreateTunnelOptions) GetKubemqQueue added in v0.0.143

func (m *CreateTunnelOptions) GetKubemqQueue() *args.KubeMQQueueWriteArgs

func (*CreateTunnelOptions) GetMqtt added in v0.0.143

func (m *CreateTunnelOptions) GetMqtt() *args.MQTTWriteArgs

func (*CreateTunnelOptions) GetName added in v0.0.143

func (m *CreateTunnelOptions) GetName() string

func (*CreateTunnelOptions) GetNats added in v0.0.143

func (m *CreateTunnelOptions) GetNats() *args.NatsWriteArgs

func (*CreateTunnelOptions) GetNatsJetstream added in v0.0.143

func (m *CreateTunnelOptions) GetNatsJetstream() *args.NatsJetstreamWriteArgs

func (*CreateTunnelOptions) GetNatsStreaming added in v0.0.143

func (m *CreateTunnelOptions) GetNatsStreaming() *args.NatsStreamingWriteArgs

func (*CreateTunnelOptions) GetNotes added in v0.0.143

func (m *CreateTunnelOptions) GetNotes() string

func (*CreateTunnelOptions) GetNsq added in v0.0.143

func (m *CreateTunnelOptions) GetNsq() *args.NSQWriteArgs

func (*CreateTunnelOptions) GetPulsar added in v0.0.143

func (m *CreateTunnelOptions) GetPulsar() *args.PulsarWriteArgs

func (*CreateTunnelOptions) GetRabbit added in v0.0.143

func (m *CreateTunnelOptions) GetRabbit() *args.RabbitWriteArgs

func (*CreateTunnelOptions) GetRabbitStreams added in v0.0.143

func (m *CreateTunnelOptions) GetRabbitStreams() *args.RabbitStreamsWriteArgs

func (*CreateTunnelOptions) GetRedisPubsub added in v0.0.143

func (m *CreateTunnelOptions) GetRedisPubsub() *args.RedisPubSubWriteArgs

func (*CreateTunnelOptions) GetRedisStreams added in v0.0.143

func (m *CreateTunnelOptions) GetRedisStreams() *args.RedisStreamsWriteArgs

func (*CreateTunnelOptions) GetTunnelToken added in v0.0.152

func (m *CreateTunnelOptions) GetTunnelToken() string

func (*CreateTunnelOptions) GetXTunnelAddress added in v0.0.143

func (m *CreateTunnelOptions) GetXTunnelAddress() string

func (*CreateTunnelOptions) GetXTunnelInsecure added in v0.0.143

func (m *CreateTunnelOptions) GetXTunnelInsecure() bool

func (*CreateTunnelOptions) GetXTunnelTimeoutSeconds added in v0.0.143

func (m *CreateTunnelOptions) GetXTunnelTimeoutSeconds() uint32

func (*CreateTunnelOptions) ProtoMessage added in v0.0.143

func (*CreateTunnelOptions) ProtoMessage()

func (*CreateTunnelOptions) Reset added in v0.0.143

func (m *CreateTunnelOptions) Reset()

func (*CreateTunnelOptions) String added in v0.0.143

func (m *CreateTunnelOptions) String() string

func (*CreateTunnelOptions) XXX_DiscardUnknown added in v0.0.143

func (m *CreateTunnelOptions) XXX_DiscardUnknown()

func (*CreateTunnelOptions) XXX_Marshal added in v0.0.143

func (m *CreateTunnelOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateTunnelOptions) XXX_Merge added in v0.0.143

func (m *CreateTunnelOptions) XXX_Merge(src proto.Message)

func (*CreateTunnelOptions) XXX_Size added in v0.0.143

func (m *CreateTunnelOptions) XXX_Size() int

func (*CreateTunnelOptions) XXX_Unmarshal added in v0.0.143

func (m *CreateTunnelOptions) XXX_Unmarshal(b []byte) error

type DeleteConnectionOptions added in v0.0.143

type DeleteConnectionOptions struct {
	// @gotags: kong:"help='ID of the connection to delete',required=true"
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty" kong:"help='ID of the connection to delete',required=true"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteConnectionOptions) Descriptor added in v0.0.143

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

func (*DeleteConnectionOptions) GetId added in v0.0.143

func (m *DeleteConnectionOptions) GetId() string

func (*DeleteConnectionOptions) ProtoMessage added in v0.0.143

func (*DeleteConnectionOptions) ProtoMessage()

func (*DeleteConnectionOptions) Reset added in v0.0.143

func (m *DeleteConnectionOptions) Reset()

func (*DeleteConnectionOptions) String added in v0.0.143

func (m *DeleteConnectionOptions) String() string

func (*DeleteConnectionOptions) XXX_DiscardUnknown added in v0.0.143

func (m *DeleteConnectionOptions) XXX_DiscardUnknown()

func (*DeleteConnectionOptions) XXX_Marshal added in v0.0.143

func (m *DeleteConnectionOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteConnectionOptions) XXX_Merge added in v0.0.143

func (m *DeleteConnectionOptions) XXX_Merge(src proto.Message)

func (*DeleteConnectionOptions) XXX_Size added in v0.0.143

func (m *DeleteConnectionOptions) XXX_Size() int

func (*DeleteConnectionOptions) XXX_Unmarshal added in v0.0.143

func (m *DeleteConnectionOptions) XXX_Unmarshal(b []byte) error

type DeleteOptions added in v0.0.143

type DeleteOptions struct {
	// @gotags: kong:"cmd,help='Delete connection in plumber server'"
	Connection *DeleteConnectionOptions `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Delete relay in plumber server'"
	Relay *DeleteRelayOptions `protobuf:"bytes,2,opt,name=relay,proto3" json:"relay,omitempty" kong:"cmd,help='Delete relay in plumber server'"`
	// @gotags: kong:"cmd,help='Delete tunnel in plumber server'"
	Tunnel               *DeleteTunnelOptions `protobuf:"bytes,3,opt,name=tunnel,proto3" json:"tunnel,omitempty" kong:"cmd,help='Delete tunnel in plumber server'"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*DeleteOptions) Descriptor added in v0.0.143

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

func (*DeleteOptions) GetConnection added in v0.0.143

func (m *DeleteOptions) GetConnection() *DeleteConnectionOptions

func (*DeleteOptions) GetRelay added in v0.0.143

func (m *DeleteOptions) GetRelay() *DeleteRelayOptions

func (*DeleteOptions) GetTunnel added in v0.0.143

func (m *DeleteOptions) GetTunnel() *DeleteTunnelOptions

func (*DeleteOptions) ProtoMessage added in v0.0.143

func (*DeleteOptions) ProtoMessage()

func (*DeleteOptions) Reset added in v0.0.143

func (m *DeleteOptions) Reset()

func (*DeleteOptions) String added in v0.0.143

func (m *DeleteOptions) String() string

func (*DeleteOptions) XXX_DiscardUnknown added in v0.0.143

func (m *DeleteOptions) XXX_DiscardUnknown()

func (*DeleteOptions) XXX_Marshal added in v0.0.143

func (m *DeleteOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteOptions) XXX_Merge added in v0.0.143

func (m *DeleteOptions) XXX_Merge(src proto.Message)

func (*DeleteOptions) XXX_Size added in v0.0.143

func (m *DeleteOptions) XXX_Size() int

func (*DeleteOptions) XXX_Unmarshal added in v0.0.143

func (m *DeleteOptions) XXX_Unmarshal(b []byte) error

type DeleteRelayOptions added in v0.0.143

type DeleteRelayOptions struct {
	// @gotags: kong:"help='ID of the relay to delete',required=true"
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty" kong:"help='ID of the relay to delete',required=true"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteRelayOptions) Descriptor added in v0.0.143

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

func (*DeleteRelayOptions) GetId added in v0.0.143

func (m *DeleteRelayOptions) GetId() string

func (*DeleteRelayOptions) ProtoMessage added in v0.0.143

func (*DeleteRelayOptions) ProtoMessage()

func (*DeleteRelayOptions) Reset added in v0.0.143

func (m *DeleteRelayOptions) Reset()

func (*DeleteRelayOptions) String added in v0.0.143

func (m *DeleteRelayOptions) String() string

func (*DeleteRelayOptions) XXX_DiscardUnknown added in v0.0.143

func (m *DeleteRelayOptions) XXX_DiscardUnknown()

func (*DeleteRelayOptions) XXX_Marshal added in v0.0.143

func (m *DeleteRelayOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteRelayOptions) XXX_Merge added in v0.0.143

func (m *DeleteRelayOptions) XXX_Merge(src proto.Message)

func (*DeleteRelayOptions) XXX_Size added in v0.0.143

func (m *DeleteRelayOptions) XXX_Size() int

func (*DeleteRelayOptions) XXX_Unmarshal added in v0.0.143

func (m *DeleteRelayOptions) XXX_Unmarshal(b []byte) error

type DeleteTunnelOptions added in v0.0.143

type DeleteTunnelOptions struct {
	// @gotags: kong:"help='ID of the tunnel to delete',required=true"
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty" kong:"help='ID of the tunnel to delete',required=true"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteTunnelOptions) Descriptor added in v0.0.143

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

func (*DeleteTunnelOptions) GetId added in v0.0.143

func (m *DeleteTunnelOptions) GetId() string

func (*DeleteTunnelOptions) ProtoMessage added in v0.0.143

func (*DeleteTunnelOptions) ProtoMessage()

func (*DeleteTunnelOptions) Reset added in v0.0.143

func (m *DeleteTunnelOptions) Reset()

func (*DeleteTunnelOptions) String added in v0.0.143

func (m *DeleteTunnelOptions) String() string

func (*DeleteTunnelOptions) XXX_DiscardUnknown added in v0.0.143

func (m *DeleteTunnelOptions) XXX_DiscardUnknown()

func (*DeleteTunnelOptions) XXX_Marshal added in v0.0.143

func (m *DeleteTunnelOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteTunnelOptions) XXX_Merge added in v0.0.143

func (m *DeleteTunnelOptions) XXX_Merge(src proto.Message)

func (*DeleteTunnelOptions) XXX_Size added in v0.0.143

func (m *DeleteTunnelOptions) XXX_Size() int

func (*DeleteTunnelOptions) XXX_Unmarshal added in v0.0.143

func (m *DeleteTunnelOptions) XXX_Unmarshal(b []byte) error

type GetConnectionOptions added in v0.0.143

type GetConnectionOptions struct {
	// @gotags: kong:"help='ID of the connection to get (leave empty to get all)'"
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty" kong:"help='ID of the connection to get (leave empty to get all)'"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetConnectionOptions) Descriptor added in v0.0.143

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

func (*GetConnectionOptions) GetId added in v0.0.143

func (m *GetConnectionOptions) GetId() string

func (*GetConnectionOptions) ProtoMessage added in v0.0.143

func (*GetConnectionOptions) ProtoMessage()

func (*GetConnectionOptions) Reset added in v0.0.143

func (m *GetConnectionOptions) Reset()

func (*GetConnectionOptions) String added in v0.0.143

func (m *GetConnectionOptions) String() string

func (*GetConnectionOptions) XXX_DiscardUnknown added in v0.0.143

func (m *GetConnectionOptions) XXX_DiscardUnknown()

func (*GetConnectionOptions) XXX_Marshal added in v0.0.143

func (m *GetConnectionOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetConnectionOptions) XXX_Merge added in v0.0.143

func (m *GetConnectionOptions) XXX_Merge(src proto.Message)

func (*GetConnectionOptions) XXX_Size added in v0.0.143

func (m *GetConnectionOptions) XXX_Size() int

func (*GetConnectionOptions) XXX_Unmarshal added in v0.0.143

func (m *GetConnectionOptions) XXX_Unmarshal(b []byte) error

type GetOptions added in v0.0.143

type GetOptions struct {
	// @gotags: kong:"cmd,help='Get connection(s) from plumber server'"
	Connection *GetConnectionOptions `` /* 129-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Get relay(s) from plumber server'"
	Relay *GetRelayOptions `protobuf:"bytes,2,opt,name=relay,proto3" json:"relay,omitempty" kong:"cmd,help='Get relay(s) from plumber server'"`
	// @gotags: kong:"cmd,help='Get tunnel(s) from plumber server'"
	Tunnel               *GetTunnelOptions `protobuf:"bytes,3,opt,name=tunnel,proto3" json:"tunnel,omitempty" kong:"cmd,help='Get tunnel(s) from plumber server'"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*GetOptions) Descriptor added in v0.0.143

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

func (*GetOptions) GetConnection added in v0.0.143

func (m *GetOptions) GetConnection() *GetConnectionOptions

func (*GetOptions) GetRelay added in v0.0.143

func (m *GetOptions) GetRelay() *GetRelayOptions

func (*GetOptions) GetTunnel added in v0.0.143

func (m *GetOptions) GetTunnel() *GetTunnelOptions

func (*GetOptions) ProtoMessage added in v0.0.143

func (*GetOptions) ProtoMessage()

func (*GetOptions) Reset added in v0.0.143

func (m *GetOptions) Reset()

func (*GetOptions) String added in v0.0.143

func (m *GetOptions) String() string

func (*GetOptions) XXX_DiscardUnknown added in v0.0.143

func (m *GetOptions) XXX_DiscardUnknown()

func (*GetOptions) XXX_Marshal added in v0.0.143

func (m *GetOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetOptions) XXX_Merge added in v0.0.143

func (m *GetOptions) XXX_Merge(src proto.Message)

func (*GetOptions) XXX_Size added in v0.0.143

func (m *GetOptions) XXX_Size() int

func (*GetOptions) XXX_Unmarshal added in v0.0.143

func (m *GetOptions) XXX_Unmarshal(b []byte) error

type GetRelayOptions added in v0.0.143

type GetRelayOptions struct {
	// @gotags: kong:"help='ID of the relay to get (leave empty to get all)'"
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty" kong:"help='ID of the relay to get (leave empty to get all)'"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetRelayOptions) Descriptor added in v0.0.143

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

func (*GetRelayOptions) GetId added in v0.0.143

func (m *GetRelayOptions) GetId() string

func (*GetRelayOptions) ProtoMessage added in v0.0.143

func (*GetRelayOptions) ProtoMessage()

func (*GetRelayOptions) Reset added in v0.0.143

func (m *GetRelayOptions) Reset()

func (*GetRelayOptions) String added in v0.0.143

func (m *GetRelayOptions) String() string

func (*GetRelayOptions) XXX_DiscardUnknown added in v0.0.143

func (m *GetRelayOptions) XXX_DiscardUnknown()

func (*GetRelayOptions) XXX_Marshal added in v0.0.143

func (m *GetRelayOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetRelayOptions) XXX_Merge added in v0.0.143

func (m *GetRelayOptions) XXX_Merge(src proto.Message)

func (*GetRelayOptions) XXX_Size added in v0.0.143

func (m *GetRelayOptions) XXX_Size() int

func (*GetRelayOptions) XXX_Unmarshal added in v0.0.143

func (m *GetRelayOptions) XXX_Unmarshal(b []byte) error

type GetTunnelOptions added in v0.0.143

type GetTunnelOptions struct {
	// @gotags: kong:"help='ID of the tunnel to get (leave empty to get all)'"
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty" kong:"help='ID of the tunnel to get (leave empty to get all)'"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetTunnelOptions) Descriptor added in v0.0.143

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

func (*GetTunnelOptions) GetId added in v0.0.143

func (m *GetTunnelOptions) GetId() string

func (*GetTunnelOptions) ProtoMessage added in v0.0.143

func (*GetTunnelOptions) ProtoMessage()

func (*GetTunnelOptions) Reset added in v0.0.143

func (m *GetTunnelOptions) Reset()

func (*GetTunnelOptions) String added in v0.0.143

func (m *GetTunnelOptions) String() string

func (*GetTunnelOptions) XXX_DiscardUnknown added in v0.0.143

func (m *GetTunnelOptions) XXX_DiscardUnknown()

func (*GetTunnelOptions) XXX_Marshal added in v0.0.143

func (m *GetTunnelOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetTunnelOptions) XXX_Merge added in v0.0.143

func (m *GetTunnelOptions) XXX_Merge(src proto.Message)

func (*GetTunnelOptions) XXX_Size added in v0.0.143

func (m *GetTunnelOptions) XXX_Size() int

func (*GetTunnelOptions) XXX_Unmarshal added in v0.0.143

func (m *GetTunnelOptions) XXX_Unmarshal(b []byte) error

type GlobalCLIOptions added in v0.0.51

type GlobalCLIOptions struct {
	// @gotags: kong:"help='Enable debug output',short=d"
	Debug bool `protobuf:"varint,1,opt,name=debug,proto3" json:"debug,omitempty" kong:"help='Enable debug output',short=d"`
	// @gotags: kong:"help='Disable fancy output (like curl -s)',short=q"
	Quiet bool `protobuf:"varint,2,opt,name=quiet,proto3" json:"quiet,omitempty" kong:"help='Disable fancy output (like curl -s)',short=q"`
	// @gotags: kong:"help='Display plumber version'"
	Version bool `protobuf:"varint,3,opt,name=version,proto3" json:"version,omitempty" kong:"help='Display plumber version'"`
	// @gotags: kong:"-"
	XFullCommand string `protobuf:"bytes,1000,opt,name=_full_command,json=FullCommand,proto3" json:"_full_command,omitempty" kong:"-"`
	// @gotags: kong:"-"
	XAction string `protobuf:"bytes,1001,opt,name=_action,json=Action,proto3" json:"_action,omitempty" kong:"-"`
	// @gotags: kong:"-"
	XBackend string `protobuf:"bytes,1002,opt,name=_backend,json=Backend,proto3" json:"_backend,omitempty" kong:"-"`
	// @gotags: kong:"-"
	XCommands            []string `protobuf:"bytes,1003,rep,name=_commands,json=Commands,proto3" json:"_commands,omitempty" kong:"-"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GlobalCLIOptions) Descriptor added in v0.0.51

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

func (*GlobalCLIOptions) GetDebug added in v0.0.51

func (m *GlobalCLIOptions) GetDebug() bool

func (*GlobalCLIOptions) GetQuiet added in v0.0.51

func (m *GlobalCLIOptions) GetQuiet() bool

func (*GlobalCLIOptions) GetVersion added in v0.0.51

func (m *GlobalCLIOptions) GetVersion() bool

func (*GlobalCLIOptions) GetXAction added in v0.0.51

func (m *GlobalCLIOptions) GetXAction() string

func (*GlobalCLIOptions) GetXBackend added in v0.0.51

func (m *GlobalCLIOptions) GetXBackend() string

func (*GlobalCLIOptions) GetXCommands added in v0.0.147

func (m *GlobalCLIOptions) GetXCommands() []string

func (*GlobalCLIOptions) GetXFullCommand added in v0.0.51

func (m *GlobalCLIOptions) GetXFullCommand() string

func (*GlobalCLIOptions) ProtoMessage added in v0.0.51

func (*GlobalCLIOptions) ProtoMessage()

func (*GlobalCLIOptions) Reset added in v0.0.51

func (m *GlobalCLIOptions) Reset()

func (*GlobalCLIOptions) String added in v0.0.51

func (m *GlobalCLIOptions) String() string

func (*GlobalCLIOptions) XXX_DiscardUnknown added in v0.0.51

func (m *GlobalCLIOptions) XXX_DiscardUnknown()

func (*GlobalCLIOptions) XXX_Marshal added in v0.0.51

func (m *GlobalCLIOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GlobalCLIOptions) XXX_Merge added in v0.0.51

func (m *GlobalCLIOptions) XXX_Merge(src proto.Message)

func (*GlobalCLIOptions) XXX_Size added in v0.0.51

func (m *GlobalCLIOptions) XXX_Size() int

func (*GlobalCLIOptions) XXX_Unmarshal added in v0.0.51

func (m *GlobalCLIOptions) XXX_Unmarshal(b []byte) error

type GlobalManageOptions added in v0.0.143

type GlobalManageOptions struct {
	// @gotags: kong:"help='Plumber server gRPC API address',default='localhost:9090'"
	ManageAddress string `` /* 171-byte string literal not displayed */
	// @gotags: kong:"help='Plumber server auth token',default='batchcorp'"
	ManageToken string `` /* 154-byte string literal not displayed */
	// @gotags: kong:"help='gRPC call timeout seconds',default=10"
	ManageTimeoutSeconds int64 `` /* 175-byte string literal not displayed */
	// @gotags: kong:"help='Use TLS when talking to plumber server',default='false'"
	ManageUseTls bool `` /* 169-byte string literal not displayed */
	// @gotags: kong:"help='Skip TLS server certificate verification',default='false'"
	ManageInsecureTls bool `` /* 186-byte string literal not displayed */
	// @gotags: kong:"help='TLS CA file'"
	ManageTlsCaFile string `` /* 136-byte string literal not displayed */
	// @gotags: kong:"help='TLS client cert file'"
	ManageTlsCertFile string `` /* 151-byte string literal not displayed */
	// @gotags: kong:"help='TLS client key file'"
	ManageTlsKeyFile string `` /* 147-byte string literal not displayed */
	// @gotags: kong:"help='Disable pretty/colorized output',default='false'"
	DisablePretty        bool     `` /* 163-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GlobalManageOptions) Descriptor added in v0.0.143

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

func (*GlobalManageOptions) GetDisablePretty added in v0.0.148

func (m *GlobalManageOptions) GetDisablePretty() bool

func (*GlobalManageOptions) GetManageAddress added in v0.0.147

func (m *GlobalManageOptions) GetManageAddress() string

func (*GlobalManageOptions) GetManageInsecureTls added in v0.0.147

func (m *GlobalManageOptions) GetManageInsecureTls() bool

func (*GlobalManageOptions) GetManageTimeoutSeconds added in v0.0.147

func (m *GlobalManageOptions) GetManageTimeoutSeconds() int64

func (*GlobalManageOptions) GetManageTlsCaFile added in v0.0.147

func (m *GlobalManageOptions) GetManageTlsCaFile() string

func (*GlobalManageOptions) GetManageTlsCertFile added in v0.0.147

func (m *GlobalManageOptions) GetManageTlsCertFile() string

func (*GlobalManageOptions) GetManageTlsKeyFile added in v0.0.147

func (m *GlobalManageOptions) GetManageTlsKeyFile() string

func (*GlobalManageOptions) GetManageToken added in v0.0.147

func (m *GlobalManageOptions) GetManageToken() string

func (*GlobalManageOptions) GetManageUseTls added in v0.0.147

func (m *GlobalManageOptions) GetManageUseTls() bool

func (*GlobalManageOptions) ProtoMessage added in v0.0.143

func (*GlobalManageOptions) ProtoMessage()

func (*GlobalManageOptions) Reset added in v0.0.143

func (m *GlobalManageOptions) Reset()

func (*GlobalManageOptions) String added in v0.0.143

func (m *GlobalManageOptions) String() string

func (*GlobalManageOptions) XXX_DiscardUnknown added in v0.0.143

func (m *GlobalManageOptions) XXX_DiscardUnknown()

func (*GlobalManageOptions) XXX_Marshal added in v0.0.143

func (m *GlobalManageOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GlobalManageOptions) XXX_Merge added in v0.0.143

func (m *GlobalManageOptions) XXX_Merge(src proto.Message)

func (*GlobalManageOptions) XXX_Size added in v0.0.143

func (m *GlobalManageOptions) XXX_Size() int

func (*GlobalManageOptions) XXX_Unmarshal added in v0.0.143

func (m *GlobalManageOptions) XXX_Unmarshal(b []byte) error

type HTTPDestination added in v0.0.54

type HTTPDestination struct {
	// @gotags: kong:"help='Full URL to HTTP server (ex: https://example.com/some/path)',required"
	Url string `` /* 142-byte string literal not displayed */
	// @gotags: kong:"help='Optional map of headers to pass on replay (--headers key1=value1,key2=value2..)'"
	Headers              map[string]string `` /* 249-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*HTTPDestination) Descriptor added in v0.0.54

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

func (*HTTPDestination) GetHeaders added in v0.0.54

func (m *HTTPDestination) GetHeaders() map[string]string

func (*HTTPDestination) GetUrl added in v0.0.54

func (m *HTTPDestination) GetUrl() string

func (*HTTPDestination) ProtoMessage added in v0.0.54

func (*HTTPDestination) ProtoMessage()

func (*HTTPDestination) Reset added in v0.0.54

func (m *HTTPDestination) Reset()

func (*HTTPDestination) String added in v0.0.54

func (m *HTTPDestination) String() string

func (*HTTPDestination) XXX_DiscardUnknown added in v0.0.54

func (m *HTTPDestination) XXX_DiscardUnknown()

func (*HTTPDestination) XXX_Marshal added in v0.0.54

func (m *HTTPDestination) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HTTPDestination) XXX_Merge added in v0.0.54

func (m *HTTPDestination) XXX_Merge(src proto.Message)

func (*HTTPDestination) XXX_Size added in v0.0.54

func (m *HTTPDestination) XXX_Size() int

func (*HTTPDestination) XXX_Unmarshal added in v0.0.54

func (m *HTTPDestination) XXX_Unmarshal(b []byte) error

type InferSchemaOptions added in v0.0.82

type InferSchemaOptions struct {
	// Type of schema to infer from the data
	// @gotags: kong:"-"
	Type InferSchemaOptions_Type `protobuf:"varint,1,opt,name=type,proto3,enum=protos.opts.InferSchemaOptions_Type" json:"type,omitempty" kong:"-"`
	// Existing schema ID. Can be filled out by end user, or by plumber
	// If filled out by end user, plumber will pull the schema and evolve from it
	// If empty, plumber will make a new schema, save and publish to other instances, and then evolve from it
	// @gotags: kong:"-"
	SchemaId             string   `protobuf:"bytes,2,opt,name=schema_id,json=schemaId,proto3" json:"schema_id,omitempty" kong:"-"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*InferSchemaOptions) Descriptor added in v0.0.82

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

func (*InferSchemaOptions) GetSchemaId added in v0.0.82

func (m *InferSchemaOptions) GetSchemaId() string

func (*InferSchemaOptions) GetType added in v0.0.82

func (*InferSchemaOptions) ProtoMessage added in v0.0.82

func (*InferSchemaOptions) ProtoMessage()

func (*InferSchemaOptions) Reset added in v0.0.82

func (m *InferSchemaOptions) Reset()

func (*InferSchemaOptions) String added in v0.0.82

func (m *InferSchemaOptions) String() string

func (*InferSchemaOptions) XXX_DiscardUnknown added in v0.0.82

func (m *InferSchemaOptions) XXX_DiscardUnknown()

func (*InferSchemaOptions) XXX_Marshal added in v0.0.82

func (m *InferSchemaOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*InferSchemaOptions) XXX_Merge added in v0.0.82

func (m *InferSchemaOptions) XXX_Merge(src proto.Message)

func (*InferSchemaOptions) XXX_Size added in v0.0.82

func (m *InferSchemaOptions) XXX_Size() int

func (*InferSchemaOptions) XXX_Unmarshal added in v0.0.82

func (m *InferSchemaOptions) XXX_Unmarshal(b []byte) error

type InferSchemaOptions_Type added in v0.0.82

type InferSchemaOptions_Type int32
const (
	InferSchemaOptions_UNSET      InferSchemaOptions_Type = 0
	InferSchemaOptions_JSONSCHEMA InferSchemaOptions_Type = 1
)

func (InferSchemaOptions_Type) EnumDescriptor added in v0.0.82

func (InferSchemaOptions_Type) EnumDescriptor() ([]byte, []int)

func (InferSchemaOptions_Type) String added in v0.0.82

func (x InferSchemaOptions_Type) String() string

type IsConnectionOptions_Conn added in v0.0.49

type IsConnectionOptions_Conn = isConnectionOptions_Conn

func GenerateConnOpts added in v0.0.61

func GenerateConnOpts(backend string, connArgs interface{}) (IsConnectionOptions_Conn, bool)

type ManageOptions added in v0.0.143

type ManageOptions struct {
	// @gotags: kong:"embed"
	GlobalOptions *GlobalManageOptions `protobuf:"bytes,1,opt,name=global_options,json=globalOptions,proto3" json:"global_options,omitempty" kong:"embed"`
	// @gotags: kong:"cmd,help='Get resource(s) from plumber server'"
	Get *GetOptions `protobuf:"bytes,2,opt,name=get,proto3" json:"get,omitempty" kong:"cmd,help='Get resource(s) from plumber server'"`
	// @gotags: kong:"cmd,help='Create resources in plumber server'"
	Create *CreateOptions `protobuf:"bytes,3,opt,name=create,proto3" json:"create,omitempty" kong:"cmd,help='Create resources in plumber server'"`
	// @gotags: kong:"cmd,help='Delete resources in plumber server'"
	Delete *DeleteOptions `protobuf:"bytes,5,opt,name=delete,proto3" json:"delete,omitempty" kong:"cmd,help='Delete resources in plumber server'"`
	// @gotags: kong:"cmd,help='Stop resources in plumber server'"
	Stop *StopOptions `protobuf:"bytes,6,opt,name=stop,proto3" json:"stop,omitempty" kong:"cmd,help='Stop resources in plumber server'"`
	// @gotags: kong:"cmd,help='Resume/Start resources in plumber server'"
	Resume               *ResumeOptions `protobuf:"bytes,7,opt,name=resume,proto3" json:"resume,omitempty" kong:"cmd,help='Resume/Start resources in plumber server'"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ManageOptions) Descriptor added in v0.0.143

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

func (*ManageOptions) GetCreate added in v0.0.143

func (m *ManageOptions) GetCreate() *CreateOptions

func (*ManageOptions) GetDelete added in v0.0.143

func (m *ManageOptions) GetDelete() *DeleteOptions

func (*ManageOptions) GetGet added in v0.0.143

func (m *ManageOptions) GetGet() *GetOptions

func (*ManageOptions) GetGlobalOptions added in v0.0.143

func (m *ManageOptions) GetGlobalOptions() *GlobalManageOptions

func (*ManageOptions) GetResume added in v0.0.143

func (m *ManageOptions) GetResume() *ResumeOptions

func (*ManageOptions) GetStop added in v0.0.143

func (m *ManageOptions) GetStop() *StopOptions

func (*ManageOptions) ProtoMessage added in v0.0.143

func (*ManageOptions) ProtoMessage()

func (*ManageOptions) Reset added in v0.0.143

func (m *ManageOptions) Reset()

func (*ManageOptions) String added in v0.0.143

func (m *ManageOptions) String() string

func (*ManageOptions) XXX_DiscardUnknown added in v0.0.143

func (m *ManageOptions) XXX_DiscardUnknown()

func (*ManageOptions) XXX_Marshal added in v0.0.143

func (m *ManageOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ManageOptions) XXX_Merge added in v0.0.143

func (m *ManageOptions) XXX_Merge(src proto.Message)

func (*ManageOptions) XXX_Size added in v0.0.143

func (m *ManageOptions) XXX_Size() int

func (*ManageOptions) XXX_Unmarshal added in v0.0.143

func (m *ManageOptions) XXX_Unmarshal(b []byte) error

type ReadCLIOptions added in v0.0.49

type ReadCLIOptions struct {
	// @gotags: kong:"help='Display more verbose information during reads (varies by backend)'"
	VerboseOutput bool `` /* 181-byte string literal not displayed */
	// @gotags: kong:"help='Pretty (colorized) output'"
	Pretty bool `protobuf:"varint,2,opt,name=pretty,proto3" json:"pretty,omitempty" kong:"help='Pretty (colorized) output'"`
	// @gotags: kong:"help='Display all output as JSON (including tabular metadata)'"
	Json                 bool     `` /* 132-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReadCLIOptions) Descriptor added in v0.0.49

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

func (*ReadCLIOptions) GetJson added in v0.0.117

func (m *ReadCLIOptions) GetJson() bool

func (*ReadCLIOptions) GetPretty added in v0.0.54

func (m *ReadCLIOptions) GetPretty() bool

func (*ReadCLIOptions) GetVerboseOutput added in v0.0.49

func (m *ReadCLIOptions) GetVerboseOutput() bool

func (*ReadCLIOptions) ProtoMessage added in v0.0.49

func (*ReadCLIOptions) ProtoMessage()

func (*ReadCLIOptions) Reset added in v0.0.49

func (m *ReadCLIOptions) Reset()

func (*ReadCLIOptions) String added in v0.0.49

func (m *ReadCLIOptions) String() string

func (*ReadCLIOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadCLIOptions) XXX_DiscardUnknown()

func (*ReadCLIOptions) XXX_Marshal added in v0.0.49

func (m *ReadCLIOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadCLIOptions) XXX_Merge added in v0.0.49

func (m *ReadCLIOptions) XXX_Merge(src proto.Message)

func (*ReadCLIOptions) XXX_Size added in v0.0.49

func (m *ReadCLIOptions) XXX_Size() int

func (*ReadCLIOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadCLIOptions) XXX_Unmarshal(b []byte) error

type ReadFilterOptions added in v0.0.75

type ReadFilterOptions struct {
	// @gotags: kong:"-"
	Query                string   `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty" kong:"-"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReadFilterOptions) Descriptor added in v0.0.75

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

func (*ReadFilterOptions) GetQuery added in v0.0.75

func (m *ReadFilterOptions) GetQuery() string

func (*ReadFilterOptions) ProtoMessage added in v0.0.75

func (*ReadFilterOptions) ProtoMessage()

func (*ReadFilterOptions) Reset added in v0.0.75

func (m *ReadFilterOptions) Reset()

func (*ReadFilterOptions) String added in v0.0.75

func (m *ReadFilterOptions) String() string

func (*ReadFilterOptions) XXX_DiscardUnknown added in v0.0.75

func (m *ReadFilterOptions) XXX_DiscardUnknown()

func (*ReadFilterOptions) XXX_Marshal added in v0.0.75

func (m *ReadFilterOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadFilterOptions) XXX_Merge added in v0.0.75

func (m *ReadFilterOptions) XXX_Merge(src proto.Message)

func (*ReadFilterOptions) XXX_Size added in v0.0.75

func (m *ReadFilterOptions) XXX_Size() int

func (*ReadFilterOptions) XXX_Unmarshal added in v0.0.75

func (m *ReadFilterOptions) XXX_Unmarshal(b []byte) error

type ReadGroupAWSKinesisOptions added in v0.0.121

type ReadGroupAWSKinesisOptions struct {
	// @gotags: kong:"embed"
	XConn *args.AWSKinesisConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AWSKinesisReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                 `json:"-"`
	XXX_unrecognized     []byte                   `json:"-"`
	XXX_sizecache        int32                    `json:"-"`
}

func (*ReadGroupAWSKinesisOptions) Descriptor added in v0.0.121

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

func (*ReadGroupAWSKinesisOptions) GetArgs added in v0.0.121

func (*ReadGroupAWSKinesisOptions) GetXConn added in v0.0.121

func (*ReadGroupAWSKinesisOptions) ProtoMessage added in v0.0.121

func (*ReadGroupAWSKinesisOptions) ProtoMessage()

func (*ReadGroupAWSKinesisOptions) Reset added in v0.0.121

func (m *ReadGroupAWSKinesisOptions) Reset()

func (*ReadGroupAWSKinesisOptions) String added in v0.0.121

func (m *ReadGroupAWSKinesisOptions) String() string

func (*ReadGroupAWSKinesisOptions) XXX_DiscardUnknown added in v0.0.121

func (m *ReadGroupAWSKinesisOptions) XXX_DiscardUnknown()

func (*ReadGroupAWSKinesisOptions) XXX_Marshal added in v0.0.121

func (m *ReadGroupAWSKinesisOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupAWSKinesisOptions) XXX_Merge added in v0.0.121

func (m *ReadGroupAWSKinesisOptions) XXX_Merge(src proto.Message)

func (*ReadGroupAWSKinesisOptions) XXX_Size added in v0.0.121

func (m *ReadGroupAWSKinesisOptions) XXX_Size() int

func (*ReadGroupAWSKinesisOptions) XXX_Unmarshal added in v0.0.121

func (m *ReadGroupAWSKinesisOptions) XXX_Unmarshal(b []byte) error

type ReadGroupAWSSQSOptions added in v0.0.49

type ReadGroupAWSSQSOptions struct {
	// @gotags: kong:"embed"
	XConn *args.AWSSQSConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AWSSQSReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*ReadGroupAWSSQSOptions) Descriptor added in v0.0.49

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

func (*ReadGroupAWSSQSOptions) GetArgs added in v0.0.49

func (*ReadGroupAWSSQSOptions) GetXConn added in v0.0.49

func (m *ReadGroupAWSSQSOptions) GetXConn() *args.AWSSQSConn

func (*ReadGroupAWSSQSOptions) ProtoMessage added in v0.0.49

func (*ReadGroupAWSSQSOptions) ProtoMessage()

func (*ReadGroupAWSSQSOptions) Reset added in v0.0.49

func (m *ReadGroupAWSSQSOptions) Reset()

func (*ReadGroupAWSSQSOptions) String added in v0.0.49

func (m *ReadGroupAWSSQSOptions) String() string

func (*ReadGroupAWSSQSOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadGroupAWSSQSOptions) XXX_DiscardUnknown()

func (*ReadGroupAWSSQSOptions) XXX_Marshal added in v0.0.49

func (m *ReadGroupAWSSQSOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupAWSSQSOptions) XXX_Merge added in v0.0.49

func (m *ReadGroupAWSSQSOptions) XXX_Merge(src proto.Message)

func (*ReadGroupAWSSQSOptions) XXX_Size added in v0.0.49

func (m *ReadGroupAWSSQSOptions) XXX_Size() int

func (*ReadGroupAWSSQSOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadGroupAWSSQSOptions) XXX_Unmarshal(b []byte) error

type ReadGroupActiveMQOptions added in v0.0.49

type ReadGroupActiveMQOptions struct {
	// @gotags: kong:"embed"
	XConn *args.ActiveMQConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.ActiveMQReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}               `json:"-"`
	XXX_unrecognized     []byte                 `json:"-"`
	XXX_sizecache        int32                  `json:"-"`
}

func (*ReadGroupActiveMQOptions) Descriptor added in v0.0.49

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

func (*ReadGroupActiveMQOptions) GetArgs added in v0.0.49

func (*ReadGroupActiveMQOptions) GetXConn added in v0.0.49

func (*ReadGroupActiveMQOptions) ProtoMessage added in v0.0.49

func (*ReadGroupActiveMQOptions) ProtoMessage()

func (*ReadGroupActiveMQOptions) Reset added in v0.0.49

func (m *ReadGroupActiveMQOptions) Reset()

func (*ReadGroupActiveMQOptions) String added in v0.0.49

func (m *ReadGroupActiveMQOptions) String() string

func (*ReadGroupActiveMQOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadGroupActiveMQOptions) XXX_DiscardUnknown()

func (*ReadGroupActiveMQOptions) XXX_Marshal added in v0.0.49

func (m *ReadGroupActiveMQOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupActiveMQOptions) XXX_Merge added in v0.0.49

func (m *ReadGroupActiveMQOptions) XXX_Merge(src proto.Message)

func (*ReadGroupActiveMQOptions) XXX_Size added in v0.0.49

func (m *ReadGroupActiveMQOptions) XXX_Size() int

func (*ReadGroupActiveMQOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadGroupActiveMQOptions) XXX_Unmarshal(b []byte) error

type ReadGroupAzureEventHubOptions added in v0.0.49

type ReadGroupAzureEventHubOptions struct {
	// @gotags: kong:"embed"
	XConn *args.AzureEventHubConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AzureEventHubReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

func (*ReadGroupAzureEventHubOptions) Descriptor added in v0.0.49

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

func (*ReadGroupAzureEventHubOptions) GetArgs added in v0.0.49

func (*ReadGroupAzureEventHubOptions) GetXConn added in v0.0.49

func (*ReadGroupAzureEventHubOptions) ProtoMessage added in v0.0.49

func (*ReadGroupAzureEventHubOptions) ProtoMessage()

func (*ReadGroupAzureEventHubOptions) Reset added in v0.0.49

func (m *ReadGroupAzureEventHubOptions) Reset()

func (*ReadGroupAzureEventHubOptions) String added in v0.0.49

func (*ReadGroupAzureEventHubOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadGroupAzureEventHubOptions) XXX_DiscardUnknown()

func (*ReadGroupAzureEventHubOptions) XXX_Marshal added in v0.0.49

func (m *ReadGroupAzureEventHubOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupAzureEventHubOptions) XXX_Merge added in v0.0.49

func (m *ReadGroupAzureEventHubOptions) XXX_Merge(src proto.Message)

func (*ReadGroupAzureEventHubOptions) XXX_Size added in v0.0.49

func (m *ReadGroupAzureEventHubOptions) XXX_Size() int

func (*ReadGroupAzureEventHubOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadGroupAzureEventHubOptions) XXX_Unmarshal(b []byte) error

type ReadGroupAzureServiceBusOptions added in v0.0.49

type ReadGroupAzureServiceBusOptions struct {
	// @gotags: kong:"embed"
	XConn *args.AzureServiceBusConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AzureServiceBusReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                      `json:"-"`
	XXX_unrecognized     []byte                        `json:"-"`
	XXX_sizecache        int32                         `json:"-"`
}

func (*ReadGroupAzureServiceBusOptions) Descriptor added in v0.0.49

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

func (*ReadGroupAzureServiceBusOptions) GetArgs added in v0.0.49

func (*ReadGroupAzureServiceBusOptions) GetXConn added in v0.0.49

func (*ReadGroupAzureServiceBusOptions) ProtoMessage added in v0.0.49

func (*ReadGroupAzureServiceBusOptions) ProtoMessage()

func (*ReadGroupAzureServiceBusOptions) Reset added in v0.0.49

func (*ReadGroupAzureServiceBusOptions) String added in v0.0.49

func (*ReadGroupAzureServiceBusOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadGroupAzureServiceBusOptions) XXX_DiscardUnknown()

func (*ReadGroupAzureServiceBusOptions) XXX_Marshal added in v0.0.49

func (m *ReadGroupAzureServiceBusOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupAzureServiceBusOptions) XXX_Merge added in v0.0.49

func (m *ReadGroupAzureServiceBusOptions) XXX_Merge(src proto.Message)

func (*ReadGroupAzureServiceBusOptions) XXX_Size added in v0.0.49

func (m *ReadGroupAzureServiceBusOptions) XXX_Size() int

func (*ReadGroupAzureServiceBusOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadGroupAzureServiceBusOptions) XXX_Unmarshal(b []byte) error

type ReadGroupGCPPubSubOptions added in v0.0.49

type ReadGroupGCPPubSubOptions struct {
	// @gotags: kong:"embed"
	XConn *args.GCPPubSubConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.GCPPubSubReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*ReadGroupGCPPubSubOptions) Descriptor added in v0.0.49

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

func (*ReadGroupGCPPubSubOptions) GetArgs added in v0.0.49

func (*ReadGroupGCPPubSubOptions) GetXConn added in v0.0.49

func (*ReadGroupGCPPubSubOptions) ProtoMessage added in v0.0.49

func (*ReadGroupGCPPubSubOptions) ProtoMessage()

func (*ReadGroupGCPPubSubOptions) Reset added in v0.0.49

func (m *ReadGroupGCPPubSubOptions) Reset()

func (*ReadGroupGCPPubSubOptions) String added in v0.0.49

func (m *ReadGroupGCPPubSubOptions) String() string

func (*ReadGroupGCPPubSubOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadGroupGCPPubSubOptions) XXX_DiscardUnknown()

func (*ReadGroupGCPPubSubOptions) XXX_Marshal added in v0.0.49

func (m *ReadGroupGCPPubSubOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupGCPPubSubOptions) XXX_Merge added in v0.0.49

func (m *ReadGroupGCPPubSubOptions) XXX_Merge(src proto.Message)

func (*ReadGroupGCPPubSubOptions) XXX_Size added in v0.0.49

func (m *ReadGroupGCPPubSubOptions) XXX_Size() int

func (*ReadGroupGCPPubSubOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadGroupGCPPubSubOptions) XXX_Unmarshal(b []byte) error

type ReadGroupKafkaOptions added in v0.0.49

type ReadGroupKafkaOptions struct {
	// @gotags: kong:"embed"
	XConn *args.KafkaConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.KafkaReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*ReadGroupKafkaOptions) Descriptor added in v0.0.49

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

func (*ReadGroupKafkaOptions) GetArgs added in v0.0.49

func (*ReadGroupKafkaOptions) GetXConn added in v0.0.49

func (m *ReadGroupKafkaOptions) GetXConn() *args.KafkaConn

func (*ReadGroupKafkaOptions) ProtoMessage added in v0.0.49

func (*ReadGroupKafkaOptions) ProtoMessage()

func (*ReadGroupKafkaOptions) Reset added in v0.0.49

func (m *ReadGroupKafkaOptions) Reset()

func (*ReadGroupKafkaOptions) String added in v0.0.49

func (m *ReadGroupKafkaOptions) String() string

func (*ReadGroupKafkaOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadGroupKafkaOptions) XXX_DiscardUnknown()

func (*ReadGroupKafkaOptions) XXX_Marshal added in v0.0.49

func (m *ReadGroupKafkaOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupKafkaOptions) XXX_Merge added in v0.0.49

func (m *ReadGroupKafkaOptions) XXX_Merge(src proto.Message)

func (*ReadGroupKafkaOptions) XXX_Size added in v0.0.49

func (m *ReadGroupKafkaOptions) XXX_Size() int

func (*ReadGroupKafkaOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadGroupKafkaOptions) XXX_Unmarshal(b []byte) error

type ReadGroupKubeMQQueueOptions added in v0.0.49

type ReadGroupKubeMQQueueOptions struct {
	// @gotags: kong:"embed"
	XConn *args.KubeMQQueueConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.KubeMQQueueReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*ReadGroupKubeMQQueueOptions) Descriptor added in v0.0.49

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

func (*ReadGroupKubeMQQueueOptions) GetArgs added in v0.0.49

func (*ReadGroupKubeMQQueueOptions) GetXConn added in v0.0.49

func (*ReadGroupKubeMQQueueOptions) ProtoMessage added in v0.0.49

func (*ReadGroupKubeMQQueueOptions) ProtoMessage()

func (*ReadGroupKubeMQQueueOptions) Reset added in v0.0.49

func (m *ReadGroupKubeMQQueueOptions) Reset()

func (*ReadGroupKubeMQQueueOptions) String added in v0.0.49

func (m *ReadGroupKubeMQQueueOptions) String() string

func (*ReadGroupKubeMQQueueOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadGroupKubeMQQueueOptions) XXX_DiscardUnknown()

func (*ReadGroupKubeMQQueueOptions) XXX_Marshal added in v0.0.49

func (m *ReadGroupKubeMQQueueOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupKubeMQQueueOptions) XXX_Merge added in v0.0.49

func (m *ReadGroupKubeMQQueueOptions) XXX_Merge(src proto.Message)

func (*ReadGroupKubeMQQueueOptions) XXX_Size added in v0.0.49

func (m *ReadGroupKubeMQQueueOptions) XXX_Size() int

func (*ReadGroupKubeMQQueueOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadGroupKubeMQQueueOptions) XXX_Unmarshal(b []byte) error

type ReadGroupMQTTOptions added in v0.0.49

type ReadGroupMQTTOptions struct {
	// @gotags: kong:"embed"
	XConn *args.MQTTConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.MQTTReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*ReadGroupMQTTOptions) Descriptor added in v0.0.49

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

func (*ReadGroupMQTTOptions) GetArgs added in v0.0.49

func (m *ReadGroupMQTTOptions) GetArgs() *args.MQTTReadArgs

func (*ReadGroupMQTTOptions) GetXConn added in v0.0.49

func (m *ReadGroupMQTTOptions) GetXConn() *args.MQTTConn

func (*ReadGroupMQTTOptions) ProtoMessage added in v0.0.49

func (*ReadGroupMQTTOptions) ProtoMessage()

func (*ReadGroupMQTTOptions) Reset added in v0.0.49

func (m *ReadGroupMQTTOptions) Reset()

func (*ReadGroupMQTTOptions) String added in v0.0.49

func (m *ReadGroupMQTTOptions) String() string

func (*ReadGroupMQTTOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadGroupMQTTOptions) XXX_DiscardUnknown()

func (*ReadGroupMQTTOptions) XXX_Marshal added in v0.0.49

func (m *ReadGroupMQTTOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupMQTTOptions) XXX_Merge added in v0.0.49

func (m *ReadGroupMQTTOptions) XXX_Merge(src proto.Message)

func (*ReadGroupMQTTOptions) XXX_Size added in v0.0.49

func (m *ReadGroupMQTTOptions) XXX_Size() int

func (*ReadGroupMQTTOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadGroupMQTTOptions) XXX_Unmarshal(b []byte) error

type ReadGroupMongoOptions added in v0.0.49

type ReadGroupMongoOptions struct {
	// @gotags: kong:"embed"
	XConn *args.MongoConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.MongoReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*ReadGroupMongoOptions) Descriptor added in v0.0.49

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

func (*ReadGroupMongoOptions) GetArgs added in v0.0.49

func (*ReadGroupMongoOptions) GetXConn added in v0.0.49

func (m *ReadGroupMongoOptions) GetXConn() *args.MongoConn

func (*ReadGroupMongoOptions) ProtoMessage added in v0.0.49

func (*ReadGroupMongoOptions) ProtoMessage()

func (*ReadGroupMongoOptions) Reset added in v0.0.49

func (m *ReadGroupMongoOptions) Reset()

func (*ReadGroupMongoOptions) String added in v0.0.49

func (m *ReadGroupMongoOptions) String() string

func (*ReadGroupMongoOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadGroupMongoOptions) XXX_DiscardUnknown()

func (*ReadGroupMongoOptions) XXX_Marshal added in v0.0.49

func (m *ReadGroupMongoOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupMongoOptions) XXX_Merge added in v0.0.49

func (m *ReadGroupMongoOptions) XXX_Merge(src proto.Message)

func (*ReadGroupMongoOptions) XXX_Size added in v0.0.49

func (m *ReadGroupMongoOptions) XXX_Size() int

func (*ReadGroupMongoOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadGroupMongoOptions) XXX_Unmarshal(b []byte) error

type ReadGroupNSQOptions added in v0.0.49

type ReadGroupNSQOptions struct {
	// @gotags: kong:"embed"
	XConn *args.NSQConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NSQReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*ReadGroupNSQOptions) Descriptor added in v0.0.49

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

func (*ReadGroupNSQOptions) GetArgs added in v0.0.49

func (m *ReadGroupNSQOptions) GetArgs() *args.NSQReadArgs

func (*ReadGroupNSQOptions) GetXConn added in v0.0.49

func (m *ReadGroupNSQOptions) GetXConn() *args.NSQConn

func (*ReadGroupNSQOptions) ProtoMessage added in v0.0.49

func (*ReadGroupNSQOptions) ProtoMessage()

func (*ReadGroupNSQOptions) Reset added in v0.0.49

func (m *ReadGroupNSQOptions) Reset()

func (*ReadGroupNSQOptions) String added in v0.0.49

func (m *ReadGroupNSQOptions) String() string

func (*ReadGroupNSQOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadGroupNSQOptions) XXX_DiscardUnknown()

func (*ReadGroupNSQOptions) XXX_Marshal added in v0.0.49

func (m *ReadGroupNSQOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupNSQOptions) XXX_Merge added in v0.0.49

func (m *ReadGroupNSQOptions) XXX_Merge(src proto.Message)

func (*ReadGroupNSQOptions) XXX_Size added in v0.0.49

func (m *ReadGroupNSQOptions) XXX_Size() int

func (*ReadGroupNSQOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadGroupNSQOptions) XXX_Unmarshal(b []byte) error

type ReadGroupNatsJetstreamOptions added in v0.0.119

type ReadGroupNatsJetstreamOptions struct {
	// @gotags: kong:"embed"
	XConn *args.NatsJetstreamConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NatsJetstreamReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

func (*ReadGroupNatsJetstreamOptions) Descriptor added in v0.0.119

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

func (*ReadGroupNatsJetstreamOptions) GetArgs added in v0.0.119

func (*ReadGroupNatsJetstreamOptions) GetXConn added in v0.0.119

func (*ReadGroupNatsJetstreamOptions) ProtoMessage added in v0.0.119

func (*ReadGroupNatsJetstreamOptions) ProtoMessage()

func (*ReadGroupNatsJetstreamOptions) Reset added in v0.0.119

func (m *ReadGroupNatsJetstreamOptions) Reset()

func (*ReadGroupNatsJetstreamOptions) String added in v0.0.119

func (*ReadGroupNatsJetstreamOptions) XXX_DiscardUnknown added in v0.0.119

func (m *ReadGroupNatsJetstreamOptions) XXX_DiscardUnknown()

func (*ReadGroupNatsJetstreamOptions) XXX_Marshal added in v0.0.119

func (m *ReadGroupNatsJetstreamOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupNatsJetstreamOptions) XXX_Merge added in v0.0.119

func (m *ReadGroupNatsJetstreamOptions) XXX_Merge(src proto.Message)

func (*ReadGroupNatsJetstreamOptions) XXX_Size added in v0.0.119

func (m *ReadGroupNatsJetstreamOptions) XXX_Size() int

func (*ReadGroupNatsJetstreamOptions) XXX_Unmarshal added in v0.0.119

func (m *ReadGroupNatsJetstreamOptions) XXX_Unmarshal(b []byte) error

type ReadGroupNatsOptions added in v0.0.49

type ReadGroupNatsOptions struct {
	// @gotags: kong:"embed"
	XConn *args.NatsConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NatsReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*ReadGroupNatsOptions) Descriptor added in v0.0.49

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

func (*ReadGroupNatsOptions) GetArgs added in v0.0.49

func (m *ReadGroupNatsOptions) GetArgs() *args.NatsReadArgs

func (*ReadGroupNatsOptions) GetXConn added in v0.0.49

func (m *ReadGroupNatsOptions) GetXConn() *args.NatsConn

func (*ReadGroupNatsOptions) ProtoMessage added in v0.0.49

func (*ReadGroupNatsOptions) ProtoMessage()

func (*ReadGroupNatsOptions) Reset added in v0.0.49

func (m *ReadGroupNatsOptions) Reset()

func (*ReadGroupNatsOptions) String added in v0.0.49

func (m *ReadGroupNatsOptions) String() string

func (*ReadGroupNatsOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadGroupNatsOptions) XXX_DiscardUnknown()

func (*ReadGroupNatsOptions) XXX_Marshal added in v0.0.49

func (m *ReadGroupNatsOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupNatsOptions) XXX_Merge added in v0.0.49

func (m *ReadGroupNatsOptions) XXX_Merge(src proto.Message)

func (*ReadGroupNatsOptions) XXX_Size added in v0.0.49

func (m *ReadGroupNatsOptions) XXX_Size() int

func (*ReadGroupNatsOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadGroupNatsOptions) XXX_Unmarshal(b []byte) error

type ReadGroupNatsStreamingOptions added in v0.0.49

type ReadGroupNatsStreamingOptions struct {
	// @gotags: kong:"embed"
	XConn *args.NatsStreamingConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NatsStreamingReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

func (*ReadGroupNatsStreamingOptions) Descriptor added in v0.0.49

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

func (*ReadGroupNatsStreamingOptions) GetArgs added in v0.0.49

func (*ReadGroupNatsStreamingOptions) GetXConn added in v0.0.49

func (*ReadGroupNatsStreamingOptions) ProtoMessage added in v0.0.49

func (*ReadGroupNatsStreamingOptions) ProtoMessage()

func (*ReadGroupNatsStreamingOptions) Reset added in v0.0.49

func (m *ReadGroupNatsStreamingOptions) Reset()

func (*ReadGroupNatsStreamingOptions) String added in v0.0.49

func (*ReadGroupNatsStreamingOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadGroupNatsStreamingOptions) XXX_DiscardUnknown()

func (*ReadGroupNatsStreamingOptions) XXX_Marshal added in v0.0.49

func (m *ReadGroupNatsStreamingOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupNatsStreamingOptions) XXX_Merge added in v0.0.49

func (m *ReadGroupNatsStreamingOptions) XXX_Merge(src proto.Message)

func (*ReadGroupNatsStreamingOptions) XXX_Size added in v0.0.49

func (m *ReadGroupNatsStreamingOptions) XXX_Size() int

func (*ReadGroupNatsStreamingOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadGroupNatsStreamingOptions) XXX_Unmarshal(b []byte) error

type ReadGroupPostgresOptions added in v0.0.49

type ReadGroupPostgresOptions struct {
	// @gotags: kong:"embed"
	XConn *args.PostgresConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.PostgresReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}               `json:"-"`
	XXX_unrecognized     []byte                 `json:"-"`
	XXX_sizecache        int32                  `json:"-"`
}

func (*ReadGroupPostgresOptions) Descriptor added in v0.0.49

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

func (*ReadGroupPostgresOptions) GetArgs added in v0.0.49

func (*ReadGroupPostgresOptions) GetXConn added in v0.0.49

func (*ReadGroupPostgresOptions) ProtoMessage added in v0.0.49

func (*ReadGroupPostgresOptions) ProtoMessage()

func (*ReadGroupPostgresOptions) Reset added in v0.0.49

func (m *ReadGroupPostgresOptions) Reset()

func (*ReadGroupPostgresOptions) String added in v0.0.49

func (m *ReadGroupPostgresOptions) String() string

func (*ReadGroupPostgresOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadGroupPostgresOptions) XXX_DiscardUnknown()

func (*ReadGroupPostgresOptions) XXX_Marshal added in v0.0.49

func (m *ReadGroupPostgresOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupPostgresOptions) XXX_Merge added in v0.0.49

func (m *ReadGroupPostgresOptions) XXX_Merge(src proto.Message)

func (*ReadGroupPostgresOptions) XXX_Size added in v0.0.49

func (m *ReadGroupPostgresOptions) XXX_Size() int

func (*ReadGroupPostgresOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadGroupPostgresOptions) XXX_Unmarshal(b []byte) error

type ReadGroupPulsarOptions added in v0.0.49

type ReadGroupPulsarOptions struct {
	// @gotags: kong:"embed"
	XConn *args.PulsarConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.PulsarReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*ReadGroupPulsarOptions) Descriptor added in v0.0.49

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

func (*ReadGroupPulsarOptions) GetArgs added in v0.0.49

func (*ReadGroupPulsarOptions) GetXConn added in v0.0.49

func (m *ReadGroupPulsarOptions) GetXConn() *args.PulsarConn

func (*ReadGroupPulsarOptions) ProtoMessage added in v0.0.49

func (*ReadGroupPulsarOptions) ProtoMessage()

func (*ReadGroupPulsarOptions) Reset added in v0.0.49

func (m *ReadGroupPulsarOptions) Reset()

func (*ReadGroupPulsarOptions) String added in v0.0.49

func (m *ReadGroupPulsarOptions) String() string

func (*ReadGroupPulsarOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadGroupPulsarOptions) XXX_DiscardUnknown()

func (*ReadGroupPulsarOptions) XXX_Marshal added in v0.0.49

func (m *ReadGroupPulsarOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupPulsarOptions) XXX_Merge added in v0.0.49

func (m *ReadGroupPulsarOptions) XXX_Merge(src proto.Message)

func (*ReadGroupPulsarOptions) XXX_Size added in v0.0.49

func (m *ReadGroupPulsarOptions) XXX_Size() int

func (*ReadGroupPulsarOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadGroupPulsarOptions) XXX_Unmarshal(b []byte) error

type ReadGroupRabbitOptions added in v0.0.49

type ReadGroupRabbitOptions struct {
	// @gotags: kong:"embed"
	XConn *args.RabbitConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RabbitReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*ReadGroupRabbitOptions) Descriptor added in v0.0.49

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

func (*ReadGroupRabbitOptions) GetArgs added in v0.0.49

func (*ReadGroupRabbitOptions) GetXConn added in v0.0.49

func (m *ReadGroupRabbitOptions) GetXConn() *args.RabbitConn

func (*ReadGroupRabbitOptions) ProtoMessage added in v0.0.49

func (*ReadGroupRabbitOptions) ProtoMessage()

func (*ReadGroupRabbitOptions) Reset added in v0.0.49

func (m *ReadGroupRabbitOptions) Reset()

func (*ReadGroupRabbitOptions) String added in v0.0.49

func (m *ReadGroupRabbitOptions) String() string

func (*ReadGroupRabbitOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadGroupRabbitOptions) XXX_DiscardUnknown()

func (*ReadGroupRabbitOptions) XXX_Marshal added in v0.0.49

func (m *ReadGroupRabbitOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupRabbitOptions) XXX_Merge added in v0.0.49

func (m *ReadGroupRabbitOptions) XXX_Merge(src proto.Message)

func (*ReadGroupRabbitOptions) XXX_Size added in v0.0.49

func (m *ReadGroupRabbitOptions) XXX_Size() int

func (*ReadGroupRabbitOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadGroupRabbitOptions) XXX_Unmarshal(b []byte) error

type ReadGroupRabbitStreamsOptions added in v0.0.49

type ReadGroupRabbitStreamsOptions struct {
	// @gotags: kong:"embed"
	XConn *args.RabbitStreamsConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RabbitStreamsReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

func (*ReadGroupRabbitStreamsOptions) Descriptor added in v0.0.49

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

func (*ReadGroupRabbitStreamsOptions) GetArgs added in v0.0.49

func (*ReadGroupRabbitStreamsOptions) GetXConn added in v0.0.49

func (*ReadGroupRabbitStreamsOptions) ProtoMessage added in v0.0.49

func (*ReadGroupRabbitStreamsOptions) ProtoMessage()

func (*ReadGroupRabbitStreamsOptions) Reset added in v0.0.49

func (m *ReadGroupRabbitStreamsOptions) Reset()

func (*ReadGroupRabbitStreamsOptions) String added in v0.0.49

func (*ReadGroupRabbitStreamsOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadGroupRabbitStreamsOptions) XXX_DiscardUnknown()

func (*ReadGroupRabbitStreamsOptions) XXX_Marshal added in v0.0.49

func (m *ReadGroupRabbitStreamsOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupRabbitStreamsOptions) XXX_Merge added in v0.0.49

func (m *ReadGroupRabbitStreamsOptions) XXX_Merge(src proto.Message)

func (*ReadGroupRabbitStreamsOptions) XXX_Size added in v0.0.49

func (m *ReadGroupRabbitStreamsOptions) XXX_Size() int

func (*ReadGroupRabbitStreamsOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadGroupRabbitStreamsOptions) XXX_Unmarshal(b []byte) error

type ReadGroupRedisPubSubOptions added in v0.0.49

type ReadGroupRedisPubSubOptions struct {
	// @gotags: kong:"embed"
	XConn *args.RedisPubSubConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RedisPubSubReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*ReadGroupRedisPubSubOptions) Descriptor added in v0.0.49

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

func (*ReadGroupRedisPubSubOptions) GetArgs added in v0.0.49

func (*ReadGroupRedisPubSubOptions) GetXConn added in v0.0.49

func (*ReadGroupRedisPubSubOptions) ProtoMessage added in v0.0.49

func (*ReadGroupRedisPubSubOptions) ProtoMessage()

func (*ReadGroupRedisPubSubOptions) Reset added in v0.0.49

func (m *ReadGroupRedisPubSubOptions) Reset()

func (*ReadGroupRedisPubSubOptions) String added in v0.0.49

func (m *ReadGroupRedisPubSubOptions) String() string

func (*ReadGroupRedisPubSubOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadGroupRedisPubSubOptions) XXX_DiscardUnknown()

func (*ReadGroupRedisPubSubOptions) XXX_Marshal added in v0.0.49

func (m *ReadGroupRedisPubSubOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupRedisPubSubOptions) XXX_Merge added in v0.0.49

func (m *ReadGroupRedisPubSubOptions) XXX_Merge(src proto.Message)

func (*ReadGroupRedisPubSubOptions) XXX_Size added in v0.0.49

func (m *ReadGroupRedisPubSubOptions) XXX_Size() int

func (*ReadGroupRedisPubSubOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadGroupRedisPubSubOptions) XXX_Unmarshal(b []byte) error

type ReadGroupRedisStreamsOptions added in v0.0.49

type ReadGroupRedisStreamsOptions struct {
	// @gotags: kong:"embed"
	XConn *args.RedisStreamsConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RedisStreamsReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*ReadGroupRedisStreamsOptions) Descriptor added in v0.0.49

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

func (*ReadGroupRedisStreamsOptions) GetArgs added in v0.0.49

func (*ReadGroupRedisStreamsOptions) GetXConn added in v0.0.49

func (*ReadGroupRedisStreamsOptions) ProtoMessage added in v0.0.49

func (*ReadGroupRedisStreamsOptions) ProtoMessage()

func (*ReadGroupRedisStreamsOptions) Reset added in v0.0.49

func (m *ReadGroupRedisStreamsOptions) Reset()

func (*ReadGroupRedisStreamsOptions) String added in v0.0.49

func (*ReadGroupRedisStreamsOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadGroupRedisStreamsOptions) XXX_DiscardUnknown()

func (*ReadGroupRedisStreamsOptions) XXX_Marshal added in v0.0.49

func (m *ReadGroupRedisStreamsOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadGroupRedisStreamsOptions) XXX_Merge added in v0.0.49

func (m *ReadGroupRedisStreamsOptions) XXX_Merge(src proto.Message)

func (*ReadGroupRedisStreamsOptions) XXX_Size added in v0.0.49

func (m *ReadGroupRedisStreamsOptions) XXX_Size() int

func (*ReadGroupRedisStreamsOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadGroupRedisStreamsOptions) XXX_Unmarshal(b []byte) error

type ReadOptions added in v0.0.49

type ReadOptions struct {
	// Required; friendly name for the read
	// @gotags: kong:"-"
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty" kong:"-"`
	// Required for desktop; ignored in CLI.
	// @gotags: kong:"-"
	ConnectionId string `protobuf:"bytes,2,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty" kong:"-"`
	// Required; specify if a read is continuous or not (default: false)
	// @gotags: kong:"help='Follow/read continuously',short=f"
	Continuous bool `protobuf:"varint,3,opt,name=continuous,proto3" json:"continuous,omitempty" kong:"help='Follow/read continuously',short=f"`
	// Optional; specify if reading should utilize sampling
	// @gotags: kong:"embed,group=sampling"
	SampleOptions *ReadSampleOptions `` /* 128-byte string literal not displayed */
	// Optional; decode_options specify how to decode the _value_ in a message.
	// If left unset, plumber will still populate records.ReadRecord.Decoded
	// with the (untouched) value.
	// @gotags: kong:"embed,group=decode"
	DecodeOptions *encoding.DecodeOptions `` /* 126-byte string literal not displayed */
	// @gotags: kong:"help='Convert output before it is printed to STDOUT (options: unset; base64; gzip)',type=pbenum,pbenum_strip_prefix=CONVERT_OPTION_,pbenum_lowercase,default=unset"
	ConvertOutput ConvertOption `` /* 302-byte string literal not displayed */
	// @gotags: kong:"-"
	Filter *ReadFilterOptions `protobuf:"bytes,7,opt,name=filter,proto3" json:"filter,omitempty" kong:"-"`
	// Whether to infer a JSON schema from this read. Ignored if schema_id is populated. Desktop use only
	// @gotags: kong:"-"
	InferSchemaOptions *InferSchemaOptions `` /* 126-byte string literal not displayed */
	// Automatically set by plumber when a new read is created
	// @gotags: kong:"-"
	XId string `protobuf:"bytes,1000,opt,name=_id,json=Id,proto3" json:"_id,omitempty" kong:"-"`
	// Used by plumber to set read state
	// @gotags: kong:"-"
	XActive bool `protobuf:"varint,1001,opt,name=_active,json=Active,proto3" json:"_active,omitempty" kong:"-"`
	// Contains options/fields specific to the CLI
	// @gotags: kong:"embed"
	XCliOptions *ReadCLIOptions `protobuf:"bytes,1002,opt,name=_cli_options,json=CliOptions,proto3" json:"_cli_options,omitempty" kong:"embed"`
	// @gotags: kong:"cmd,help='Apache Kafka'"
	Kafka *ReadGroupKafkaOptions `protobuf:"bytes,100,opt,name=kafka,proto3" json:"kafka,omitempty" kong:"cmd,help='Apache Kafka'"`
	// @gotags: kong:"cmd,help='Apache ActiveMQ (STOMP)'"
	Activemq *ReadGroupActiveMQOptions `protobuf:"bytes,101,opt,name=activemq,proto3" json:"activemq,omitempty" kong:"cmd,help='Apache ActiveMQ (STOMP)'"`
	// @gotags: kong:"cmd,help='AWS Simple Queue System'"
	AwsSqs *ReadGroupAWSSQSOptions `protobuf:"bytes,102,opt,name=aws_sqs,json=awsSqs,proto3" json:"aws_sqs,omitempty" kong:"cmd,help='AWS Simple Queue System'"`
	// @gotags: kong:"cmd,help='MongoDB'"
	Mongo *ReadGroupMongoOptions `protobuf:"bytes,103,opt,name=mongo,proto3" json:"mongo,omitempty" kong:"cmd,help='MongoDB'"`
	// @gotags: kong:"cmd,help='NATS'"
	Nats *ReadGroupNatsOptions `protobuf:"bytes,104,opt,name=nats,proto3" json:"nats,omitempty" kong:"cmd,help='NATS'"`
	// @gotags: kong:"cmd,help='NATS Streaming'"
	NatsStreaming *ReadGroupNatsStreamingOptions `` /* 135-byte string literal not displayed */
	// @gotags: kong:"cmd,help='NSQ'"
	Nsq *ReadGroupNSQOptions `protobuf:"bytes,106,opt,name=nsq,proto3" json:"nsq,omitempty" kong:"cmd,help='NSQ'"`
	// @gotags: kong:"cmd,help='Apache Pulsar'"
	Pulsar *ReadGroupPulsarOptions `protobuf:"bytes,107,opt,name=pulsar,proto3" json:"pulsar,omitempty" kong:"cmd,help='Apache Pulsar'"`
	// @gotags: kong:"cmd,help='RabbitMQ'"
	Rabbit *ReadGroupRabbitOptions `protobuf:"bytes,108,opt,name=rabbit,proto3" json:"rabbit,omitempty" kong:"cmd,help='RabbitMQ'"`
	// @gotags: kong:"cmd,help='RabbitMQ Streams'"
	RabbitStreams *ReadGroupRabbitStreamsOptions `` /* 137-byte string literal not displayed */
	// @gotags: kong:"cmd,help='MQTT'"
	Mqtt *ReadGroupMQTTOptions `protobuf:"bytes,110,opt,name=mqtt,proto3" json:"mqtt,omitempty" kong:"cmd,help='MQTT'"`
	// @gotags: kong:"cmd,help='Azure Service Bus'"
	AzureServiceBus *ReadGroupAzureServiceBusOptions `` /* 146-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Azure Event Hub'"
	AzureEventHub *ReadGroupAzureEventHubOptions `` /* 138-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Google Cloud Platform Pub/Sub'"
	GcpPubsub *ReadGroupGCPPubSubOptions `` /* 138-byte string literal not displayed */
	// @gotags: kong:"cmd,help='KubeMQ Queue'"
	KubemqQueue *ReadGroupKubeMQQueueOptions `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis PubSub'"
	RedisPubsub *ReadGroupRedisPubSubOptions `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis Streams'"
	RedisStreams *ReadGroupRedisStreamsOptions `` /* 131-byte string literal not displayed */
	// @gotags: kong:"cmd,help='PostgreSQL'"
	Postgres *ReadGroupPostgresOptions `protobuf:"bytes,117,opt,name=postgres,proto3" json:"postgres,omitempty" kong:"cmd,help='PostgreSQL'"`
	// @gotags: kong:"cmd,help='NATS Jetstream'"
	NatsJetstream *ReadGroupNatsJetstreamOptions `` /* 135-byte string literal not displayed */
	// @gotags: kong:"cmd,help='AWS Kinesis Streams'"
	AwsKinesis           *ReadGroupAWSKinesisOptions `` /* 131-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

Relay is the structure that backends accept for facilitating a relay.

func (*ReadOptions) Descriptor added in v0.0.49

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

func (*ReadOptions) GetActivemq added in v0.0.49

func (m *ReadOptions) GetActivemq() *ReadGroupActiveMQOptions

func (*ReadOptions) GetAwsKinesis added in v0.0.121

func (m *ReadOptions) GetAwsKinesis() *ReadGroupAWSKinesisOptions

func (*ReadOptions) GetAwsSqs added in v0.0.114

func (m *ReadOptions) GetAwsSqs() *ReadGroupAWSSQSOptions

func (*ReadOptions) GetAzureEventHub added in v0.0.49

func (m *ReadOptions) GetAzureEventHub() *ReadGroupAzureEventHubOptions

func (*ReadOptions) GetAzureServiceBus added in v0.0.49

func (m *ReadOptions) GetAzureServiceBus() *ReadGroupAzureServiceBusOptions

func (*ReadOptions) GetConnectionId added in v0.0.49

func (m *ReadOptions) GetConnectionId() string

func (*ReadOptions) GetContinuous added in v0.0.49

func (m *ReadOptions) GetContinuous() bool

func (*ReadOptions) GetConvertOutput added in v0.0.54

func (m *ReadOptions) GetConvertOutput() ConvertOption

func (*ReadOptions) GetDecodeOptions added in v0.0.49

func (m *ReadOptions) GetDecodeOptions() *encoding.DecodeOptions

func (*ReadOptions) GetFilter added in v0.0.75

func (m *ReadOptions) GetFilter() *ReadFilterOptions

func (*ReadOptions) GetGcpPubsub added in v0.0.49

func (m *ReadOptions) GetGcpPubsub() *ReadGroupGCPPubSubOptions

func (*ReadOptions) GetInferSchemaOptions added in v0.0.82

func (m *ReadOptions) GetInferSchemaOptions() *InferSchemaOptions

func (*ReadOptions) GetKafka added in v0.0.49

func (m *ReadOptions) GetKafka() *ReadGroupKafkaOptions

func (*ReadOptions) GetKubemqQueue added in v0.0.49

func (m *ReadOptions) GetKubemqQueue() *ReadGroupKubeMQQueueOptions

func (*ReadOptions) GetMongo added in v0.0.49

func (m *ReadOptions) GetMongo() *ReadGroupMongoOptions

func (*ReadOptions) GetMqtt added in v0.0.49

func (m *ReadOptions) GetMqtt() *ReadGroupMQTTOptions

func (*ReadOptions) GetName added in v0.0.49

func (m *ReadOptions) GetName() string

func (*ReadOptions) GetNats added in v0.0.49

func (m *ReadOptions) GetNats() *ReadGroupNatsOptions

func (*ReadOptions) GetNatsJetstream added in v0.0.119

func (m *ReadOptions) GetNatsJetstream() *ReadGroupNatsJetstreamOptions

func (*ReadOptions) GetNatsStreaming added in v0.0.49

func (m *ReadOptions) GetNatsStreaming() *ReadGroupNatsStreamingOptions

func (*ReadOptions) GetNsq added in v0.0.49

func (m *ReadOptions) GetNsq() *ReadGroupNSQOptions

func (*ReadOptions) GetPostgres added in v0.0.49

func (m *ReadOptions) GetPostgres() *ReadGroupPostgresOptions

func (*ReadOptions) GetPulsar added in v0.0.49

func (m *ReadOptions) GetPulsar() *ReadGroupPulsarOptions

func (*ReadOptions) GetRabbit added in v0.0.49

func (m *ReadOptions) GetRabbit() *ReadGroupRabbitOptions

func (*ReadOptions) GetRabbitStreams added in v0.0.49

func (m *ReadOptions) GetRabbitStreams() *ReadGroupRabbitStreamsOptions

func (*ReadOptions) GetRedisPubsub added in v0.0.49

func (m *ReadOptions) GetRedisPubsub() *ReadGroupRedisPubSubOptions

func (*ReadOptions) GetRedisStreams added in v0.0.49

func (m *ReadOptions) GetRedisStreams() *ReadGroupRedisStreamsOptions

func (*ReadOptions) GetSampleOptions added in v0.0.49

func (m *ReadOptions) GetSampleOptions() *ReadSampleOptions

func (*ReadOptions) GetXActive added in v0.0.49

func (m *ReadOptions) GetXActive() bool

func (*ReadOptions) GetXCliOptions added in v0.0.49

func (m *ReadOptions) GetXCliOptions() *ReadCLIOptions

func (*ReadOptions) GetXId added in v0.0.49

func (m *ReadOptions) GetXId() string

func (*ReadOptions) ProtoMessage added in v0.0.49

func (*ReadOptions) ProtoMessage()

func (*ReadOptions) Reset added in v0.0.49

func (m *ReadOptions) Reset()

func (*ReadOptions) String added in v0.0.49

func (m *ReadOptions) String() string

func (*ReadOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadOptions) XXX_DiscardUnknown()

func (*ReadOptions) XXX_Marshal added in v0.0.49

func (m *ReadOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadOptions) XXX_Merge added in v0.0.49

func (m *ReadOptions) XXX_Merge(src proto.Message)

func (*ReadOptions) XXX_Size added in v0.0.49

func (m *ReadOptions) XXX_Size() int

func (*ReadOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadOptions) XXX_Unmarshal(b []byte) error

type ReadSampleOptions added in v0.0.49

type ReadSampleOptions struct {
	// @gotags: kong:"help='How many events to fetch during a sample interval',default=100"
	SampleRate uint32 `` /* 168-byte string literal not displayed */
	// @gotags: kong:"help='Sample interval seconds',enum:'1,60',default=60"
	SampleIntervalSeconds uint32   `` /* 188-byte string literal not displayed */
	XXX_NoUnkeyedLiteral  struct{} `json:"-"`
	XXX_unrecognized      []byte   `json:"-"`
	XXX_sizecache         int32    `json:"-"`
}

func (*ReadSampleOptions) Descriptor added in v0.0.49

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

func (*ReadSampleOptions) GetSampleIntervalSeconds added in v0.0.49

func (m *ReadSampleOptions) GetSampleIntervalSeconds() uint32

func (*ReadSampleOptions) GetSampleRate added in v0.0.49

func (m *ReadSampleOptions) GetSampleRate() uint32

func (*ReadSampleOptions) ProtoMessage added in v0.0.49

func (*ReadSampleOptions) ProtoMessage()

func (*ReadSampleOptions) Reset added in v0.0.49

func (m *ReadSampleOptions) Reset()

func (*ReadSampleOptions) String added in v0.0.49

func (m *ReadSampleOptions) String() string

func (*ReadSampleOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ReadSampleOptions) XXX_DiscardUnknown()

func (*ReadSampleOptions) XXX_Marshal added in v0.0.49

func (m *ReadSampleOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadSampleOptions) XXX_Merge added in v0.0.49

func (m *ReadSampleOptions) XXX_Merge(src proto.Message)

func (*ReadSampleOptions) XXX_Size added in v0.0.49

func (m *ReadSampleOptions) XXX_Size() int

func (*ReadSampleOptions) XXX_Unmarshal added in v0.0.49

func (m *ReadSampleOptions) XXX_Unmarshal(b []byte) error

type RelayCLIOptions added in v0.0.49

type RelayCLIOptions struct {
	// @gotags: kong:"help='What address to bind the built-in HTTP server to',env='PLUMBER_RELAY_HTTP_LISTEN_ADDRESS',default='localhost:9191'"
	HttpListenAddress    string   `` /* 242-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RelayCLIOptions) Descriptor added in v0.0.49

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

func (*RelayCLIOptions) GetHttpListenAddress added in v0.0.49

func (m *RelayCLIOptions) GetHttpListenAddress() string

func (*RelayCLIOptions) ProtoMessage added in v0.0.49

func (*RelayCLIOptions) ProtoMessage()

func (*RelayCLIOptions) Reset added in v0.0.49

func (m *RelayCLIOptions) Reset()

func (*RelayCLIOptions) String added in v0.0.49

func (m *RelayCLIOptions) String() string

func (*RelayCLIOptions) XXX_DiscardUnknown added in v0.0.49

func (m *RelayCLIOptions) XXX_DiscardUnknown()

func (*RelayCLIOptions) XXX_Marshal added in v0.0.49

func (m *RelayCLIOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayCLIOptions) XXX_Merge added in v0.0.49

func (m *RelayCLIOptions) XXX_Merge(src proto.Message)

func (*RelayCLIOptions) XXX_Size added in v0.0.49

func (m *RelayCLIOptions) XXX_Size() int

func (*RelayCLIOptions) XXX_Unmarshal added in v0.0.49

func (m *RelayCLIOptions) XXX_Unmarshal(b []byte) error

type RelayGroupAWSSQSOptions added in v0.0.49

type RelayGroupAWSSQSOptions struct {
	// @gotags: kong:"embed"
	XConn *args.AWSSQSConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AWSSQSRelayArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*RelayGroupAWSSQSOptions) Descriptor added in v0.0.49

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

func (*RelayGroupAWSSQSOptions) GetArgs added in v0.0.49

func (*RelayGroupAWSSQSOptions) GetXConn added in v0.0.49

func (m *RelayGroupAWSSQSOptions) GetXConn() *args.AWSSQSConn

func (*RelayGroupAWSSQSOptions) ProtoMessage added in v0.0.49

func (*RelayGroupAWSSQSOptions) ProtoMessage()

func (*RelayGroupAWSSQSOptions) Reset added in v0.0.49

func (m *RelayGroupAWSSQSOptions) Reset()

func (*RelayGroupAWSSQSOptions) String added in v0.0.49

func (m *RelayGroupAWSSQSOptions) String() string

func (*RelayGroupAWSSQSOptions) XXX_DiscardUnknown added in v0.0.49

func (m *RelayGroupAWSSQSOptions) XXX_DiscardUnknown()

func (*RelayGroupAWSSQSOptions) XXX_Marshal added in v0.0.49

func (m *RelayGroupAWSSQSOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayGroupAWSSQSOptions) XXX_Merge added in v0.0.49

func (m *RelayGroupAWSSQSOptions) XXX_Merge(src proto.Message)

func (*RelayGroupAWSSQSOptions) XXX_Size added in v0.0.49

func (m *RelayGroupAWSSQSOptions) XXX_Size() int

func (*RelayGroupAWSSQSOptions) XXX_Unmarshal added in v0.0.49

func (m *RelayGroupAWSSQSOptions) XXX_Unmarshal(b []byte) error

type RelayGroupAzureServiceBusOptions added in v0.0.49

type RelayGroupAzureServiceBusOptions struct {
	// @gotags: kong:"embed"
	XConn *args.AzureServiceBusConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AzureServiceBusReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                      `json:"-"`
	XXX_unrecognized     []byte                        `json:"-"`
	XXX_sizecache        int32                         `json:"-"`
}

func (*RelayGroupAzureServiceBusOptions) Descriptor added in v0.0.49

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

func (*RelayGroupAzureServiceBusOptions) GetArgs added in v0.0.49

func (*RelayGroupAzureServiceBusOptions) GetXConn added in v0.0.49

func (*RelayGroupAzureServiceBusOptions) ProtoMessage added in v0.0.49

func (*RelayGroupAzureServiceBusOptions) ProtoMessage()

func (*RelayGroupAzureServiceBusOptions) Reset added in v0.0.49

func (*RelayGroupAzureServiceBusOptions) String added in v0.0.49

func (*RelayGroupAzureServiceBusOptions) XXX_DiscardUnknown added in v0.0.49

func (m *RelayGroupAzureServiceBusOptions) XXX_DiscardUnknown()

func (*RelayGroupAzureServiceBusOptions) XXX_Marshal added in v0.0.49

func (m *RelayGroupAzureServiceBusOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayGroupAzureServiceBusOptions) XXX_Merge added in v0.0.49

func (*RelayGroupAzureServiceBusOptions) XXX_Size added in v0.0.49

func (m *RelayGroupAzureServiceBusOptions) XXX_Size() int

func (*RelayGroupAzureServiceBusOptions) XXX_Unmarshal added in v0.0.49

func (m *RelayGroupAzureServiceBusOptions) XXX_Unmarshal(b []byte) error

type RelayGroupGCPPubSubOptions added in v0.0.49

type RelayGroupGCPPubSubOptions struct {
	// @gotags: kong:"embed"
	XConn *args.GCPPubSubConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.GCPPubSubReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*RelayGroupGCPPubSubOptions) Descriptor added in v0.0.49

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

func (*RelayGroupGCPPubSubOptions) GetArgs added in v0.0.49

func (*RelayGroupGCPPubSubOptions) GetXConn added in v0.0.49

func (*RelayGroupGCPPubSubOptions) ProtoMessage added in v0.0.49

func (*RelayGroupGCPPubSubOptions) ProtoMessage()

func (*RelayGroupGCPPubSubOptions) Reset added in v0.0.49

func (m *RelayGroupGCPPubSubOptions) Reset()

func (*RelayGroupGCPPubSubOptions) String added in v0.0.49

func (m *RelayGroupGCPPubSubOptions) String() string

func (*RelayGroupGCPPubSubOptions) XXX_DiscardUnknown added in v0.0.49

func (m *RelayGroupGCPPubSubOptions) XXX_DiscardUnknown()

func (*RelayGroupGCPPubSubOptions) XXX_Marshal added in v0.0.49

func (m *RelayGroupGCPPubSubOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayGroupGCPPubSubOptions) XXX_Merge added in v0.0.49

func (m *RelayGroupGCPPubSubOptions) XXX_Merge(src proto.Message)

func (*RelayGroupGCPPubSubOptions) XXX_Size added in v0.0.49

func (m *RelayGroupGCPPubSubOptions) XXX_Size() int

func (*RelayGroupGCPPubSubOptions) XXX_Unmarshal added in v0.0.49

func (m *RelayGroupGCPPubSubOptions) XXX_Unmarshal(b []byte) error

type RelayGroupKafkaOptions added in v0.0.49

type RelayGroupKafkaOptions struct {
	// @gotags: kong:"embed"
	XConn *args.KafkaConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.KafkaRelayArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*RelayGroupKafkaOptions) Descriptor added in v0.0.49

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

func (*RelayGroupKafkaOptions) GetArgs added in v0.0.49

func (*RelayGroupKafkaOptions) GetXConn added in v0.0.49

func (m *RelayGroupKafkaOptions) GetXConn() *args.KafkaConn

func (*RelayGroupKafkaOptions) ProtoMessage added in v0.0.49

func (*RelayGroupKafkaOptions) ProtoMessage()

func (*RelayGroupKafkaOptions) Reset added in v0.0.49

func (m *RelayGroupKafkaOptions) Reset()

func (*RelayGroupKafkaOptions) String added in v0.0.49

func (m *RelayGroupKafkaOptions) String() string

func (*RelayGroupKafkaOptions) XXX_DiscardUnknown added in v0.0.49

func (m *RelayGroupKafkaOptions) XXX_DiscardUnknown()

func (*RelayGroupKafkaOptions) XXX_Marshal added in v0.0.49

func (m *RelayGroupKafkaOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayGroupKafkaOptions) XXX_Merge added in v0.0.49

func (m *RelayGroupKafkaOptions) XXX_Merge(src proto.Message)

func (*RelayGroupKafkaOptions) XXX_Size added in v0.0.49

func (m *RelayGroupKafkaOptions) XXX_Size() int

func (*RelayGroupKafkaOptions) XXX_Unmarshal added in v0.0.49

func (m *RelayGroupKafkaOptions) XXX_Unmarshal(b []byte) error

type RelayGroupKubeMQQueueOptions added in v0.0.49

type RelayGroupKubeMQQueueOptions struct {
	// @gotags: kong:"embed"
	XConn *args.KubeMQQueueConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.KubeMQQueueReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*RelayGroupKubeMQQueueOptions) Descriptor added in v0.0.49

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

func (*RelayGroupKubeMQQueueOptions) GetArgs added in v0.0.49

func (*RelayGroupKubeMQQueueOptions) GetXConn added in v0.0.49

func (*RelayGroupKubeMQQueueOptions) ProtoMessage added in v0.0.49

func (*RelayGroupKubeMQQueueOptions) ProtoMessage()

func (*RelayGroupKubeMQQueueOptions) Reset added in v0.0.49

func (m *RelayGroupKubeMQQueueOptions) Reset()

func (*RelayGroupKubeMQQueueOptions) String added in v0.0.49

func (*RelayGroupKubeMQQueueOptions) XXX_DiscardUnknown added in v0.0.49

func (m *RelayGroupKubeMQQueueOptions) XXX_DiscardUnknown()

func (*RelayGroupKubeMQQueueOptions) XXX_Marshal added in v0.0.49

func (m *RelayGroupKubeMQQueueOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayGroupKubeMQQueueOptions) XXX_Merge added in v0.0.49

func (m *RelayGroupKubeMQQueueOptions) XXX_Merge(src proto.Message)

func (*RelayGroupKubeMQQueueOptions) XXX_Size added in v0.0.49

func (m *RelayGroupKubeMQQueueOptions) XXX_Size() int

func (*RelayGroupKubeMQQueueOptions) XXX_Unmarshal added in v0.0.49

func (m *RelayGroupKubeMQQueueOptions) XXX_Unmarshal(b []byte) error

type RelayGroupMQTTOptions added in v0.0.49

type RelayGroupMQTTOptions struct {
	// @gotags: kong:"embed"
	XConn *args.MQTTConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.MQTTReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*RelayGroupMQTTOptions) Descriptor added in v0.0.49

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

func (*RelayGroupMQTTOptions) GetArgs added in v0.0.49

func (m *RelayGroupMQTTOptions) GetArgs() *args.MQTTReadArgs

func (*RelayGroupMQTTOptions) GetXConn added in v0.0.49

func (m *RelayGroupMQTTOptions) GetXConn() *args.MQTTConn

func (*RelayGroupMQTTOptions) ProtoMessage added in v0.0.49

func (*RelayGroupMQTTOptions) ProtoMessage()

func (*RelayGroupMQTTOptions) Reset added in v0.0.49

func (m *RelayGroupMQTTOptions) Reset()

func (*RelayGroupMQTTOptions) String added in v0.0.49

func (m *RelayGroupMQTTOptions) String() string

func (*RelayGroupMQTTOptions) XXX_DiscardUnknown added in v0.0.49

func (m *RelayGroupMQTTOptions) XXX_DiscardUnknown()

func (*RelayGroupMQTTOptions) XXX_Marshal added in v0.0.49

func (m *RelayGroupMQTTOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayGroupMQTTOptions) XXX_Merge added in v0.0.49

func (m *RelayGroupMQTTOptions) XXX_Merge(src proto.Message)

func (*RelayGroupMQTTOptions) XXX_Size added in v0.0.49

func (m *RelayGroupMQTTOptions) XXX_Size() int

func (*RelayGroupMQTTOptions) XXX_Unmarshal added in v0.0.49

func (m *RelayGroupMQTTOptions) XXX_Unmarshal(b []byte) error

type RelayGroupMongoOptions added in v0.0.49

type RelayGroupMongoOptions struct {
	// @gotags: kong:"embed"
	XConn *args.MongoConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.MongoReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*RelayGroupMongoOptions) Descriptor added in v0.0.49

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

func (*RelayGroupMongoOptions) GetArgs added in v0.0.49

func (*RelayGroupMongoOptions) GetXConn added in v0.0.49

func (m *RelayGroupMongoOptions) GetXConn() *args.MongoConn

func (*RelayGroupMongoOptions) ProtoMessage added in v0.0.49

func (*RelayGroupMongoOptions) ProtoMessage()

func (*RelayGroupMongoOptions) Reset added in v0.0.49

func (m *RelayGroupMongoOptions) Reset()

func (*RelayGroupMongoOptions) String added in v0.0.49

func (m *RelayGroupMongoOptions) String() string

func (*RelayGroupMongoOptions) XXX_DiscardUnknown added in v0.0.49

func (m *RelayGroupMongoOptions) XXX_DiscardUnknown()

func (*RelayGroupMongoOptions) XXX_Marshal added in v0.0.49

func (m *RelayGroupMongoOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayGroupMongoOptions) XXX_Merge added in v0.0.49

func (m *RelayGroupMongoOptions) XXX_Merge(src proto.Message)

func (*RelayGroupMongoOptions) XXX_Size added in v0.0.49

func (m *RelayGroupMongoOptions) XXX_Size() int

func (*RelayGroupMongoOptions) XXX_Unmarshal added in v0.0.49

func (m *RelayGroupMongoOptions) XXX_Unmarshal(b []byte) error

type RelayGroupNSQOptions added in v0.0.49

type RelayGroupNSQOptions struct {
	// @gotags: kong:"embed"
	XConn *args.NSQConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NSQReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*RelayGroupNSQOptions) Descriptor added in v0.0.49

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

func (*RelayGroupNSQOptions) GetArgs added in v0.0.49

func (m *RelayGroupNSQOptions) GetArgs() *args.NSQReadArgs

func (*RelayGroupNSQOptions) GetXConn added in v0.0.49

func (m *RelayGroupNSQOptions) GetXConn() *args.NSQConn

func (*RelayGroupNSQOptions) ProtoMessage added in v0.0.49

func (*RelayGroupNSQOptions) ProtoMessage()

func (*RelayGroupNSQOptions) Reset added in v0.0.49

func (m *RelayGroupNSQOptions) Reset()

func (*RelayGroupNSQOptions) String added in v0.0.49

func (m *RelayGroupNSQOptions) String() string

func (*RelayGroupNSQOptions) XXX_DiscardUnknown added in v0.0.49

func (m *RelayGroupNSQOptions) XXX_DiscardUnknown()

func (*RelayGroupNSQOptions) XXX_Marshal added in v0.0.49

func (m *RelayGroupNSQOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayGroupNSQOptions) XXX_Merge added in v0.0.49

func (m *RelayGroupNSQOptions) XXX_Merge(src proto.Message)

func (*RelayGroupNSQOptions) XXX_Size added in v0.0.49

func (m *RelayGroupNSQOptions) XXX_Size() int

func (*RelayGroupNSQOptions) XXX_Unmarshal added in v0.0.49

func (m *RelayGroupNSQOptions) XXX_Unmarshal(b []byte) error

type RelayGroupNatsJetStreamOptions added in v0.0.125

type RelayGroupNatsJetStreamOptions struct {
	// @gotags: kong:"embed"
	XConn *args.NatsJetstreamConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NatsJetstreamReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

func (*RelayGroupNatsJetStreamOptions) Descriptor added in v0.0.125

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

func (*RelayGroupNatsJetStreamOptions) GetArgs added in v0.0.125

func (*RelayGroupNatsJetStreamOptions) GetXConn added in v0.0.125

func (*RelayGroupNatsJetStreamOptions) ProtoMessage added in v0.0.125

func (*RelayGroupNatsJetStreamOptions) ProtoMessage()

func (*RelayGroupNatsJetStreamOptions) Reset added in v0.0.125

func (m *RelayGroupNatsJetStreamOptions) Reset()

func (*RelayGroupNatsJetStreamOptions) String added in v0.0.125

func (*RelayGroupNatsJetStreamOptions) XXX_DiscardUnknown added in v0.0.125

func (m *RelayGroupNatsJetStreamOptions) XXX_DiscardUnknown()

func (*RelayGroupNatsJetStreamOptions) XXX_Marshal added in v0.0.125

func (m *RelayGroupNatsJetStreamOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayGroupNatsJetStreamOptions) XXX_Merge added in v0.0.125

func (m *RelayGroupNatsJetStreamOptions) XXX_Merge(src proto.Message)

func (*RelayGroupNatsJetStreamOptions) XXX_Size added in v0.0.125

func (m *RelayGroupNatsJetStreamOptions) XXX_Size() int

func (*RelayGroupNatsJetStreamOptions) XXX_Unmarshal added in v0.0.125

func (m *RelayGroupNatsJetStreamOptions) XXX_Unmarshal(b []byte) error

type RelayGroupNatsOptions added in v0.0.125

type RelayGroupNatsOptions struct {
	// @gotags: kong:"embed"
	XConn *args.NatsConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NatsReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*RelayGroupNatsOptions) Descriptor added in v0.0.125

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

func (*RelayGroupNatsOptions) GetArgs added in v0.0.125

func (m *RelayGroupNatsOptions) GetArgs() *args.NatsReadArgs

func (*RelayGroupNatsOptions) GetXConn added in v0.0.125

func (m *RelayGroupNatsOptions) GetXConn() *args.NatsConn

func (*RelayGroupNatsOptions) ProtoMessage added in v0.0.125

func (*RelayGroupNatsOptions) ProtoMessage()

func (*RelayGroupNatsOptions) Reset added in v0.0.125

func (m *RelayGroupNatsOptions) Reset()

func (*RelayGroupNatsOptions) String added in v0.0.125

func (m *RelayGroupNatsOptions) String() string

func (*RelayGroupNatsOptions) XXX_DiscardUnknown added in v0.0.125

func (m *RelayGroupNatsOptions) XXX_DiscardUnknown()

func (*RelayGroupNatsOptions) XXX_Marshal added in v0.0.125

func (m *RelayGroupNatsOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayGroupNatsOptions) XXX_Merge added in v0.0.125

func (m *RelayGroupNatsOptions) XXX_Merge(src proto.Message)

func (*RelayGroupNatsOptions) XXX_Size added in v0.0.125

func (m *RelayGroupNatsOptions) XXX_Size() int

func (*RelayGroupNatsOptions) XXX_Unmarshal added in v0.0.125

func (m *RelayGroupNatsOptions) XXX_Unmarshal(b []byte) error

type RelayGroupNatsStreamingOptions added in v0.0.125

type RelayGroupNatsStreamingOptions struct {
	// @gotags: kong:"embed"
	XConn *args.NatsStreamingConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NatsStreamingReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

func (*RelayGroupNatsStreamingOptions) Descriptor added in v0.0.125

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

func (*RelayGroupNatsStreamingOptions) GetArgs added in v0.0.125

func (*RelayGroupNatsStreamingOptions) GetXConn added in v0.0.125

func (*RelayGroupNatsStreamingOptions) ProtoMessage added in v0.0.125

func (*RelayGroupNatsStreamingOptions) ProtoMessage()

func (*RelayGroupNatsStreamingOptions) Reset added in v0.0.125

func (m *RelayGroupNatsStreamingOptions) Reset()

func (*RelayGroupNatsStreamingOptions) String added in v0.0.125

func (*RelayGroupNatsStreamingOptions) XXX_DiscardUnknown added in v0.0.125

func (m *RelayGroupNatsStreamingOptions) XXX_DiscardUnknown()

func (*RelayGroupNatsStreamingOptions) XXX_Marshal added in v0.0.125

func (m *RelayGroupNatsStreamingOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayGroupNatsStreamingOptions) XXX_Merge added in v0.0.125

func (m *RelayGroupNatsStreamingOptions) XXX_Merge(src proto.Message)

func (*RelayGroupNatsStreamingOptions) XXX_Size added in v0.0.125

func (m *RelayGroupNatsStreamingOptions) XXX_Size() int

func (*RelayGroupNatsStreamingOptions) XXX_Unmarshal added in v0.0.125

func (m *RelayGroupNatsStreamingOptions) XXX_Unmarshal(b []byte) error

type RelayGroupPostgresOptions added in v0.0.49

type RelayGroupPostgresOptions struct {
	// @gotags: kong:"embed"
	XConn *args.PostgresConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.PostgresReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}               `json:"-"`
	XXX_unrecognized     []byte                 `json:"-"`
	XXX_sizecache        int32                  `json:"-"`
}

func (*RelayGroupPostgresOptions) Descriptor added in v0.0.49

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

func (*RelayGroupPostgresOptions) GetArgs added in v0.0.49

func (*RelayGroupPostgresOptions) GetXConn added in v0.0.49

func (*RelayGroupPostgresOptions) ProtoMessage added in v0.0.49

func (*RelayGroupPostgresOptions) ProtoMessage()

func (*RelayGroupPostgresOptions) Reset added in v0.0.49

func (m *RelayGroupPostgresOptions) Reset()

func (*RelayGroupPostgresOptions) String added in v0.0.49

func (m *RelayGroupPostgresOptions) String() string

func (*RelayGroupPostgresOptions) XXX_DiscardUnknown added in v0.0.49

func (m *RelayGroupPostgresOptions) XXX_DiscardUnknown()

func (*RelayGroupPostgresOptions) XXX_Marshal added in v0.0.49

func (m *RelayGroupPostgresOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayGroupPostgresOptions) XXX_Merge added in v0.0.49

func (m *RelayGroupPostgresOptions) XXX_Merge(src proto.Message)

func (*RelayGroupPostgresOptions) XXX_Size added in v0.0.49

func (m *RelayGroupPostgresOptions) XXX_Size() int

func (*RelayGroupPostgresOptions) XXX_Unmarshal added in v0.0.49

func (m *RelayGroupPostgresOptions) XXX_Unmarshal(b []byte) error

type RelayGroupRabbitOptions added in v0.0.49

type RelayGroupRabbitOptions struct {
	// @gotags: kong:"embed"
	XConn *args.RabbitConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RabbitReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*RelayGroupRabbitOptions) Descriptor added in v0.0.49

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

func (*RelayGroupRabbitOptions) GetArgs added in v0.0.49

func (*RelayGroupRabbitOptions) GetXConn added in v0.0.49

func (m *RelayGroupRabbitOptions) GetXConn() *args.RabbitConn

func (*RelayGroupRabbitOptions) ProtoMessage added in v0.0.49

func (*RelayGroupRabbitOptions) ProtoMessage()

func (*RelayGroupRabbitOptions) Reset added in v0.0.49

func (m *RelayGroupRabbitOptions) Reset()

func (*RelayGroupRabbitOptions) String added in v0.0.49

func (m *RelayGroupRabbitOptions) String() string

func (*RelayGroupRabbitOptions) XXX_DiscardUnknown added in v0.0.49

func (m *RelayGroupRabbitOptions) XXX_DiscardUnknown()

func (*RelayGroupRabbitOptions) XXX_Marshal added in v0.0.49

func (m *RelayGroupRabbitOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayGroupRabbitOptions) XXX_Merge added in v0.0.49

func (m *RelayGroupRabbitOptions) XXX_Merge(src proto.Message)

func (*RelayGroupRabbitOptions) XXX_Size added in v0.0.49

func (m *RelayGroupRabbitOptions) XXX_Size() int

func (*RelayGroupRabbitOptions) XXX_Unmarshal added in v0.0.49

func (m *RelayGroupRabbitOptions) XXX_Unmarshal(b []byte) error

type RelayGroupRedisPubSubOptions added in v0.0.49

type RelayGroupRedisPubSubOptions struct {
	// @gotags: kong:"embed"
	XConn *args.RedisPubSubConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RedisPubSubReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*RelayGroupRedisPubSubOptions) Descriptor added in v0.0.49

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

func (*RelayGroupRedisPubSubOptions) GetArgs added in v0.0.49

func (*RelayGroupRedisPubSubOptions) GetXConn added in v0.0.49

func (*RelayGroupRedisPubSubOptions) ProtoMessage added in v0.0.49

func (*RelayGroupRedisPubSubOptions) ProtoMessage()

func (*RelayGroupRedisPubSubOptions) Reset added in v0.0.49

func (m *RelayGroupRedisPubSubOptions) Reset()

func (*RelayGroupRedisPubSubOptions) String added in v0.0.49

func (*RelayGroupRedisPubSubOptions) XXX_DiscardUnknown added in v0.0.49

func (m *RelayGroupRedisPubSubOptions) XXX_DiscardUnknown()

func (*RelayGroupRedisPubSubOptions) XXX_Marshal added in v0.0.49

func (m *RelayGroupRedisPubSubOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayGroupRedisPubSubOptions) XXX_Merge added in v0.0.49

func (m *RelayGroupRedisPubSubOptions) XXX_Merge(src proto.Message)

func (*RelayGroupRedisPubSubOptions) XXX_Size added in v0.0.49

func (m *RelayGroupRedisPubSubOptions) XXX_Size() int

func (*RelayGroupRedisPubSubOptions) XXX_Unmarshal added in v0.0.49

func (m *RelayGroupRedisPubSubOptions) XXX_Unmarshal(b []byte) error

type RelayGroupRedisStreamsOptions added in v0.0.49

type RelayGroupRedisStreamsOptions struct {
	// @gotags: kong:"embed"
	XConn *args.RedisStreamsConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RedisStreamsReadArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*RelayGroupRedisStreamsOptions) Descriptor added in v0.0.49

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

func (*RelayGroupRedisStreamsOptions) GetArgs added in v0.0.49

func (*RelayGroupRedisStreamsOptions) GetXConn added in v0.0.49

func (*RelayGroupRedisStreamsOptions) ProtoMessage added in v0.0.49

func (*RelayGroupRedisStreamsOptions) ProtoMessage()

func (*RelayGroupRedisStreamsOptions) Reset added in v0.0.49

func (m *RelayGroupRedisStreamsOptions) Reset()

func (*RelayGroupRedisStreamsOptions) String added in v0.0.49

func (*RelayGroupRedisStreamsOptions) XXX_DiscardUnknown added in v0.0.49

func (m *RelayGroupRedisStreamsOptions) XXX_DiscardUnknown()

func (*RelayGroupRedisStreamsOptions) XXX_Marshal added in v0.0.49

func (m *RelayGroupRedisStreamsOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayGroupRedisStreamsOptions) XXX_Merge added in v0.0.49

func (m *RelayGroupRedisStreamsOptions) XXX_Merge(src proto.Message)

func (*RelayGroupRedisStreamsOptions) XXX_Size added in v0.0.49

func (m *RelayGroupRedisStreamsOptions) XXX_Size() int

func (*RelayGroupRedisStreamsOptions) XXX_Unmarshal added in v0.0.49

func (m *RelayGroupRedisStreamsOptions) XXX_Unmarshal(b []byte) error

type RelayOptions added in v0.0.49

type RelayOptions struct {
	// @gotags: kong:"help='Secret collection token',env='PLUMBER_RELAY_TOKEN',name=token,required"
	CollectionToken string `` /* 190-byte string literal not displayed */
	// @gotags: kong:"help='How many messages to send in a single batch',env='PLUMBER_RELAY_BATCH_SIZE',default=1000"
	BatchSize int32 `` /* 191-byte string literal not displayed */
	// @gotags: kong:"help='How many times plumber will try re-sending a batch',env='PLUMBER_RELAY_BATCH_MAX_RETRY',default=3"
	BatchMaxRetry int32 `` /* 214-byte string literal not displayed */
	// Required for desktop; ignored in CLI.
	// @gotags: kong:"-"
	ConnectionId string `protobuf:"bytes,4,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty" kong:"-"`
	// @gotags: kong:"help='How many workers to launch per relay',env='PLUMBER_RELAY_NUM_WORKERS',default=10"
	NumWorkers int32 `` /* 186-byte string literal not displayed */
	// @gotags: kong:"group=stats,help='Display periodic read stats'"
	StatsEnable bool `` /* 149-byte string literal not displayed */
	// @gotags: kong:"group=stats,help='How often to print stats',default=5"
	StatsReportIntervalSec int32 `` /* 193-byte string literal not displayed */
	// @gotags: kong:"help='Alternative collector to relay events to',name='grpc-address',env='PLUMBER_RELAY_GRPC_ADDRESS',default='grpc-collector.batch.sh:9000'"
	XBatchshGrpcAddress string `` /* 269-byte string literal not displayed */
	// @gotags: kong:"help='Whether to use TLS with collector',name=grpc-disable-tls,env='PLUMBER_RELAY_GRPC_DISABLE_TLS',default=false"
	XBatchshGrpcDisableTls bool `` /* 255-byte string literal not displayed */
	// @gotags: kong:"help='How long to wait before giving up talking to the gRPC collector',name='grpc-timeout-seconds',env='PLUMBER_RELAY_GRPC_TIMEOUT',default=5"
	XBatchshGrpcTimeoutSeconds int32 `` /* 295-byte string literal not displayed */
	// ID of the created relay entry; populated by plumber.
	// @gotags: kong:"-"
	XRelayId string `protobuf:"bytes,1003,opt,name=_relay_id,json=RelayId,proto3" json:"_relay_id,omitempty" kong:"-"`
	// @gotags: kong:"embed"
	XCliOptions *RelayCLIOptions `protobuf:"bytes,1004,opt,name=_cli_options,json=CliOptions,proto3" json:"_cli_options,omitempty" kong:"embed"`
	// Populated by plumber server during GetRelay* methods
	// @gotags: kong:"-"
	XActive bool `protobuf:"varint,1005,opt,name=_active,json=Active,proto3" json:"_active,omitempty" kong:"-"`
	// @gotags: kong:"cmd,help='Apache Kafka'"
	Kafka *RelayGroupKafkaOptions `protobuf:"bytes,100,opt,name=kafka,proto3" json:"kafka,omitempty" kong:"cmd,help='Apache Kafka'"`
	// @gotags: kong:"cmd,help='AWS Simple Queue System'"
	AwsSqs *RelayGroupAWSSQSOptions `protobuf:"bytes,101,opt,name=aws_sqs,json=awsSqs,proto3" json:"aws_sqs,omitempty" kong:"cmd,help='AWS Simple Queue System'"`
	// @gotags: kong:"cmd,help='MongoDB (CDC)'"
	Mongo *RelayGroupMongoOptions `protobuf:"bytes,102,opt,name=mongo,proto3" json:"mongo,omitempty" kong:"cmd,help='MongoDB (CDC)'"`
	// @gotags: kong:"cmd,help='NSQ'"
	Nsq *RelayGroupNSQOptions `protobuf:"bytes,103,opt,name=nsq,proto3" json:"nsq,omitempty" kong:"cmd,help='NSQ'"`
	// @gotags: kong:"cmd,help='MQTT'"
	Rabbit *RelayGroupRabbitOptions `protobuf:"bytes,104,opt,name=rabbit,proto3" json:"rabbit,omitempty" kong:"cmd,help='MQTT'"`
	// @gotags: kong:"cmd,help='MQTT'"
	Mqtt *RelayGroupMQTTOptions `protobuf:"bytes,105,opt,name=mqtt,proto3" json:"mqtt,omitempty" kong:"cmd,help='MQTT'"`
	// @gotags: kong:"cmd,help='Azure Service Bus'"
	AzureServiceBus *RelayGroupAzureServiceBusOptions `` /* 146-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Google Cloud Platform Pub/Sub'"
	GcpPubsub *RelayGroupGCPPubSubOptions `` /* 138-byte string literal not displayed */
	// @gotags: kong:"cmd,help='KubeMQ Queue'"
	KubemqQueue *RelayGroupKubeMQQueueOptions `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis PubSub'"
	RedisPubsub *RelayGroupRedisPubSubOptions `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis Streams'"
	RedisStreams *RelayGroupRedisStreamsOptions `` /* 131-byte string literal not displayed */
	// @gotags: kong:"cmd,help='PostgreSQL (CDC)'"
	Postgres *RelayGroupPostgresOptions `protobuf:"bytes,112,opt,name=postgres,proto3" json:"postgres,omitempty" kong:"cmd,help='PostgreSQL (CDC)'"`
	// @gotags: kong:"cmd,help='NATS'"
	Nats *RelayGroupNatsOptions `protobuf:"bytes,113,opt,name=nats,proto3" json:"nats,omitempty" kong:"cmd,help='NATS'"`
	// @gotags: kong:"cmd,help='NATS Streaming'"
	NatsStreaming *RelayGroupNatsStreamingOptions `` /* 135-byte string literal not displayed */
	// @gotags: kong:"cmd,help='NATS JetStream'"
	NatsJetstream        *RelayGroupNatsJetStreamOptions `` /* 135-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                        `json:"-"`
	XXX_unrecognized     []byte                          `json:"-"`
	XXX_sizecache        int32                           `json:"-"`
}

Relay is the structure that backends accept for facilitating a relay. NOTE: _conn is only used by the CLI - desktop does not need to set it.

func (*RelayOptions) Descriptor added in v0.0.49

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

func (*RelayOptions) GetAwsSqs added in v0.0.114

func (m *RelayOptions) GetAwsSqs() *RelayGroupAWSSQSOptions

func (*RelayOptions) GetAzureServiceBus added in v0.0.49

func (m *RelayOptions) GetAzureServiceBus() *RelayGroupAzureServiceBusOptions

func (*RelayOptions) GetBatchMaxRetry added in v0.0.49

func (m *RelayOptions) GetBatchMaxRetry() int32

func (*RelayOptions) GetBatchSize added in v0.0.49

func (m *RelayOptions) GetBatchSize() int32

func (*RelayOptions) GetCollectionToken added in v0.0.49

func (m *RelayOptions) GetCollectionToken() string

func (*RelayOptions) GetConnectionId added in v0.0.49

func (m *RelayOptions) GetConnectionId() string

func (*RelayOptions) GetGcpPubsub added in v0.0.49

func (m *RelayOptions) GetGcpPubsub() *RelayGroupGCPPubSubOptions

func (*RelayOptions) GetKafka added in v0.0.49

func (m *RelayOptions) GetKafka() *RelayGroupKafkaOptions

func (*RelayOptions) GetKubemqQueue added in v0.0.49

func (m *RelayOptions) GetKubemqQueue() *RelayGroupKubeMQQueueOptions

func (*RelayOptions) GetMongo added in v0.0.49

func (m *RelayOptions) GetMongo() *RelayGroupMongoOptions

func (*RelayOptions) GetMqtt added in v0.0.49

func (m *RelayOptions) GetMqtt() *RelayGroupMQTTOptions

func (*RelayOptions) GetNats added in v0.0.125

func (m *RelayOptions) GetNats() *RelayGroupNatsOptions

func (*RelayOptions) GetNatsJetstream added in v0.0.125

func (m *RelayOptions) GetNatsJetstream() *RelayGroupNatsJetStreamOptions

func (*RelayOptions) GetNatsStreaming added in v0.0.125

func (m *RelayOptions) GetNatsStreaming() *RelayGroupNatsStreamingOptions

func (*RelayOptions) GetNsq added in v0.0.49

func (m *RelayOptions) GetNsq() *RelayGroupNSQOptions

func (*RelayOptions) GetNumWorkers added in v0.0.49

func (m *RelayOptions) GetNumWorkers() int32

func (*RelayOptions) GetPostgres added in v0.0.49

func (m *RelayOptions) GetPostgres() *RelayGroupPostgresOptions

func (*RelayOptions) GetRabbit added in v0.0.49

func (m *RelayOptions) GetRabbit() *RelayGroupRabbitOptions

func (*RelayOptions) GetRedisPubsub added in v0.0.49

func (m *RelayOptions) GetRedisPubsub() *RelayGroupRedisPubSubOptions

func (*RelayOptions) GetRedisStreams added in v0.0.49

func (m *RelayOptions) GetRedisStreams() *RelayGroupRedisStreamsOptions

func (*RelayOptions) GetStatsEnable added in v0.0.100

func (m *RelayOptions) GetStatsEnable() bool

func (*RelayOptions) GetStatsReportIntervalSec added in v0.0.100

func (m *RelayOptions) GetStatsReportIntervalSec() int32

func (*RelayOptions) GetXActive added in v0.0.131

func (m *RelayOptions) GetXActive() bool

func (*RelayOptions) GetXBatchshGrpcAddress added in v0.0.49

func (m *RelayOptions) GetXBatchshGrpcAddress() string

func (*RelayOptions) GetXBatchshGrpcDisableTls added in v0.0.49

func (m *RelayOptions) GetXBatchshGrpcDisableTls() bool

func (*RelayOptions) GetXBatchshGrpcTimeoutSeconds added in v0.0.49

func (m *RelayOptions) GetXBatchshGrpcTimeoutSeconds() int32

func (*RelayOptions) GetXCliOptions added in v0.0.49

func (m *RelayOptions) GetXCliOptions() *RelayCLIOptions

func (*RelayOptions) GetXRelayId added in v0.0.49

func (m *RelayOptions) GetXRelayId() string

func (*RelayOptions) ProtoMessage added in v0.0.49

func (*RelayOptions) ProtoMessage()

func (*RelayOptions) Reset added in v0.0.49

func (m *RelayOptions) Reset()

func (*RelayOptions) String added in v0.0.49

func (m *RelayOptions) String() string

func (*RelayOptions) XXX_DiscardUnknown added in v0.0.49

func (m *RelayOptions) XXX_DiscardUnknown()

func (*RelayOptions) XXX_Marshal added in v0.0.49

func (m *RelayOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayOptions) XXX_Merge added in v0.0.49

func (m *RelayOptions) XXX_Merge(src proto.Message)

func (*RelayOptions) XXX_Size added in v0.0.49

func (m *RelayOptions) XXX_Size() int

func (*RelayOptions) XXX_Unmarshal added in v0.0.49

func (m *RelayOptions) XXX_Unmarshal(b []byte) error

type ResumeOptions added in v0.0.143

type ResumeOptions struct {
	// @gotags: kong:"cmd,help='Resume/Start relay in plumber server'"
	Relay *ResumeRelayOptions `protobuf:"bytes,1,opt,name=relay,proto3" json:"relay,omitempty" kong:"cmd,help='Resume/Start relay in plumber server'"`
	// @gotags: kong:"cmd,help='Resume/Start tunnel in plumber server'"
	Tunnel               *ResumeTunnelOptions `protobuf:"bytes,2,opt,name=tunnel,proto3" json:"tunnel,omitempty" kong:"cmd,help='Resume/Start tunnel in plumber server'"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*ResumeOptions) Descriptor added in v0.0.143

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

func (*ResumeOptions) GetRelay added in v0.0.143

func (m *ResumeOptions) GetRelay() *ResumeRelayOptions

func (*ResumeOptions) GetTunnel added in v0.0.143

func (m *ResumeOptions) GetTunnel() *ResumeTunnelOptions

func (*ResumeOptions) ProtoMessage added in v0.0.143

func (*ResumeOptions) ProtoMessage()

func (*ResumeOptions) Reset added in v0.0.143

func (m *ResumeOptions) Reset()

func (*ResumeOptions) String added in v0.0.143

func (m *ResumeOptions) String() string

func (*ResumeOptions) XXX_DiscardUnknown added in v0.0.143

func (m *ResumeOptions) XXX_DiscardUnknown()

func (*ResumeOptions) XXX_Marshal added in v0.0.143

func (m *ResumeOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResumeOptions) XXX_Merge added in v0.0.143

func (m *ResumeOptions) XXX_Merge(src proto.Message)

func (*ResumeOptions) XXX_Size added in v0.0.143

func (m *ResumeOptions) XXX_Size() int

func (*ResumeOptions) XXX_Unmarshal added in v0.0.143

func (m *ResumeOptions) XXX_Unmarshal(b []byte) error

type ResumeRelayOptions added in v0.0.143

type ResumeRelayOptions struct {
	// @gotags: kong:"help='ID of the relay to resume',required=true"
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty" kong:"help='ID of the relay to resume',required=true"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ResumeRelayOptions) Descriptor added in v0.0.143

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

func (*ResumeRelayOptions) GetId added in v0.0.143

func (m *ResumeRelayOptions) GetId() string

func (*ResumeRelayOptions) ProtoMessage added in v0.0.143

func (*ResumeRelayOptions) ProtoMessage()

func (*ResumeRelayOptions) Reset added in v0.0.143

func (m *ResumeRelayOptions) Reset()

func (*ResumeRelayOptions) String added in v0.0.143

func (m *ResumeRelayOptions) String() string

func (*ResumeRelayOptions) XXX_DiscardUnknown added in v0.0.143

func (m *ResumeRelayOptions) XXX_DiscardUnknown()

func (*ResumeRelayOptions) XXX_Marshal added in v0.0.143

func (m *ResumeRelayOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResumeRelayOptions) XXX_Merge added in v0.0.143

func (m *ResumeRelayOptions) XXX_Merge(src proto.Message)

func (*ResumeRelayOptions) XXX_Size added in v0.0.143

func (m *ResumeRelayOptions) XXX_Size() int

func (*ResumeRelayOptions) XXX_Unmarshal added in v0.0.143

func (m *ResumeRelayOptions) XXX_Unmarshal(b []byte) error

type ResumeTunnelOptions added in v0.0.143

type ResumeTunnelOptions struct {
	// @gotags: kong:"help='ID of the tunnel to resume',required=true"
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty" kong:"help='ID of the tunnel to resume',required=true"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ResumeTunnelOptions) Descriptor added in v0.0.143

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

func (*ResumeTunnelOptions) GetId added in v0.0.143

func (m *ResumeTunnelOptions) GetId() string

func (*ResumeTunnelOptions) ProtoMessage added in v0.0.143

func (*ResumeTunnelOptions) ProtoMessage()

func (*ResumeTunnelOptions) Reset added in v0.0.143

func (m *ResumeTunnelOptions) Reset()

func (*ResumeTunnelOptions) String added in v0.0.143

func (m *ResumeTunnelOptions) String() string

func (*ResumeTunnelOptions) XXX_DiscardUnknown added in v0.0.143

func (m *ResumeTunnelOptions) XXX_DiscardUnknown()

func (*ResumeTunnelOptions) XXX_Marshal added in v0.0.143

func (m *ResumeTunnelOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResumeTunnelOptions) XXX_Merge added in v0.0.143

func (m *ResumeTunnelOptions) XXX_Merge(src proto.Message)

func (*ResumeTunnelOptions) XXX_Size added in v0.0.143

func (m *ResumeTunnelOptions) XXX_Size() int

func (*ResumeTunnelOptions) XXX_Unmarshal added in v0.0.143

func (m *ResumeTunnelOptions) XXX_Unmarshal(b []byte) error

type ServerOptions added in v0.0.49

type ServerOptions struct {
	// @gotags: kong:"default=plumber1,help='Unique ID that identifies this plumber node',env='PLUMBER_SERVER_NODE_ID',required"
	NodeId string `` /* 192-byte string literal not displayed */
	// @gotags: kong:"default=aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa,help='ID of the plumber cluster (has to be the same across all nodes)',env='PLUMBER_SERVER_CLUSTER_ID',required"
	ClusterId string `` /* 252-byte string literal not displayed */
	// @gotags: kong:"help='Host:port that the gRPC server will bind to',env='PLUMBER_SERVER_GRPC_LISTEN_ADDRESS',default=0.0.0.0:9090"
	GrpcListenAddress string `` /* 234-byte string literal not displayed */
	// @gotags: kong:"default=batchcorp,help='All gRPC requests require this auth token to be set',env='PLUMBER_SERVER_AUTH_TOKEN',required"
	AuthToken string `` /* 213-byte string literal not displayed */
	// @gotags: kong:"help='Comma separated list of NATS server URLs (can contain user:password if using auth; only used if --enable-cluster is true)',env='PLUMBER_SERVER_NATS_URL',default='nats://localhost:4222'"
	NatsUrl []string `` /* 280-byte string literal not displayed */
	// @gotags: kong:"help='Whether to use TLS (only used if --enable-cluster is true)',env='PLUMBER_SERVER_USE_TLS'"
	UseTls bool `` /* 184-byte string literal not displayed */
	// @gotags: kong:"help='TLS client cert file (only used if --enable-cluster is true)',env='PLUMBER_SERVER_TLS_CERT_FILE'"
	TlsCertFile string `` /* 206-byte string literal not displayed */
	// @gotags: kong:"help='TLS client key file (only used if --enable-cluster is true)',env='PLUMBER_SERVER_TLS_KEY_FILE'"
	TlsKeyFile string `` /* 201-byte string literal not displayed */
	// @gotags: kong:"help='TLS CA certificate file (only used if --enable-cluster is true)',env='PLUMBER_SERVER_TLS_CA_FILE'"
	TlsCaFile string `` /* 201-byte string literal not displayed */
	// @gotags: kong:"help='Skip server cert verification (only used if --enable-cluster is true)',env='PLUMBER_SERVER_TLS_SKIP_VERIFY',default=false"
	TlsSkipVerify bool `` /* 238-byte string literal not displayed */
	// @gotags: kong:"help='Run plumber in cluster mode (will use NATS)',env='PLUMBER_SERVER_ENABLE_CLUSTER',default=false"
	EnableCluster bool `` /* 210-byte string literal not displayed */
	// @gotags: kong:"help='Location to store time-series data for counters',default='./.tsdata'"
	StatsDatabasePath string `` /* 197-byte string literal not displayed */
	// @gotags: kong:"help='How often to flush time-series data (in seconds) from memory to storage',default='60'"
	StatsFlushIntervalSeconds int32 `` /* 241-byte string literal not displayed */
	// @gotags: kong:"help='What address to bind the built-in HTTP server to',default='0.0.0.0:9191'"
	HttpListenAddress string `` /* 201-byte string literal not displayed */
	// @gotags: kong:"help='Allow plumber to be controlled from https://console.batch.sh',env='PLUMBER_REMOTE_CONTROL_ENABLED',default=false"
	RemoteControlEnabled bool `` /* 251-byte string literal not displayed */
	// @gotags: kong:"help='Address of Batch.sh Plumber remote control service',env='PLUMBER_REMOTE_CONTROL_ADDRESS',default='foreman.batch.sh:443'"
	RemoteControlAddress string `` /* 257-byte string literal not displayed */
	// @gotags: kong:"help='Batch.sh API token, needed to access remote control service',env='PLUMBER_REMOTE_CONTROL_API_TOKEN'"
	RemoteControlApiToken string `` /* 242-byte string literal not displayed */
	// @gotags: kong:"help='Connect to remote control server without TLS',default=false"
	RemoteControlDisableTls bool     `` /* 209-byte string literal not displayed */
	XXX_NoUnkeyedLiteral    struct{} `json:"-"`
	XXX_unrecognized        []byte   `json:"-"`
	XXX_sizecache           int32    `json:"-"`
}

func (*ServerOptions) Descriptor added in v0.0.49

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

func (*ServerOptions) GetAuthToken added in v0.0.49

func (m *ServerOptions) GetAuthToken() string

func (*ServerOptions) GetClusterId added in v0.0.49

func (m *ServerOptions) GetClusterId() string

func (*ServerOptions) GetEnableCluster added in v0.0.138

func (m *ServerOptions) GetEnableCluster() bool

func (*ServerOptions) GetGrpcListenAddress added in v0.0.49

func (m *ServerOptions) GetGrpcListenAddress() string

func (*ServerOptions) GetHttpListenAddress added in v0.0.134

func (m *ServerOptions) GetHttpListenAddress() string

func (*ServerOptions) GetNatsUrl added in v0.0.137

func (m *ServerOptions) GetNatsUrl() []string

func (*ServerOptions) GetNodeId added in v0.0.49

func (m *ServerOptions) GetNodeId() string

func (*ServerOptions) GetRemoteControlAddress added in v0.0.154

func (m *ServerOptions) GetRemoteControlAddress() string

func (*ServerOptions) GetRemoteControlApiToken added in v0.0.154

func (m *ServerOptions) GetRemoteControlApiToken() string

func (*ServerOptions) GetRemoteControlDisableTls added in v0.0.154

func (m *ServerOptions) GetRemoteControlDisableTls() bool

func (*ServerOptions) GetRemoteControlEnabled added in v0.0.154

func (m *ServerOptions) GetRemoteControlEnabled() bool

func (*ServerOptions) GetStatsDatabasePath added in v0.0.92

func (m *ServerOptions) GetStatsDatabasePath() string

func (*ServerOptions) GetStatsFlushIntervalSeconds added in v0.0.92

func (m *ServerOptions) GetStatsFlushIntervalSeconds() int32

func (*ServerOptions) GetTlsCaFile added in v0.0.137

func (m *ServerOptions) GetTlsCaFile() string

func (*ServerOptions) GetTlsCertFile added in v0.0.137

func (m *ServerOptions) GetTlsCertFile() string

func (*ServerOptions) GetTlsKeyFile added in v0.0.137

func (m *ServerOptions) GetTlsKeyFile() string

func (*ServerOptions) GetTlsSkipVerify added in v0.0.137

func (m *ServerOptions) GetTlsSkipVerify() bool

func (*ServerOptions) GetUseTls added in v0.0.139

func (m *ServerOptions) GetUseTls() bool

func (*ServerOptions) ProtoMessage added in v0.0.49

func (*ServerOptions) ProtoMessage()

func (*ServerOptions) Reset added in v0.0.49

func (m *ServerOptions) Reset()

func (*ServerOptions) String added in v0.0.49

func (m *ServerOptions) String() string

func (*ServerOptions) XXX_DiscardUnknown added in v0.0.49

func (m *ServerOptions) XXX_DiscardUnknown()

func (*ServerOptions) XXX_Marshal added in v0.0.49

func (m *ServerOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ServerOptions) XXX_Merge added in v0.0.49

func (m *ServerOptions) XXX_Merge(src proto.Message)

func (*ServerOptions) XXX_Size added in v0.0.49

func (m *ServerOptions) XXX_Size() int

func (*ServerOptions) XXX_Unmarshal added in v0.0.49

func (m *ServerOptions) XXX_Unmarshal(b []byte) error

type StopOptions added in v0.0.143

type StopOptions struct {
	// @gotags: kong:"cmd,help='Stop relay in plumber server'"
	Relay *StopRelayOptions `protobuf:"bytes,1,opt,name=relay,proto3" json:"relay,omitempty" kong:"cmd,help='Stop relay in plumber server'"`
	// @gotags: kong:"cmd,help='Stop tunnel in plumber server'"
	Tunnel               *StopTunnelOptions `protobuf:"bytes,2,opt,name=tunnel,proto3" json:"tunnel,omitempty" kong:"cmd,help='Stop tunnel in plumber server'"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*StopOptions) Descriptor added in v0.0.143

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

func (*StopOptions) GetRelay added in v0.0.143

func (m *StopOptions) GetRelay() *StopRelayOptions

func (*StopOptions) GetTunnel added in v0.0.143

func (m *StopOptions) GetTunnel() *StopTunnelOptions

func (*StopOptions) ProtoMessage added in v0.0.143

func (*StopOptions) ProtoMessage()

func (*StopOptions) Reset added in v0.0.143

func (m *StopOptions) Reset()

func (*StopOptions) String added in v0.0.143

func (m *StopOptions) String() string

func (*StopOptions) XXX_DiscardUnknown added in v0.0.143

func (m *StopOptions) XXX_DiscardUnknown()

func (*StopOptions) XXX_Marshal added in v0.0.143

func (m *StopOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StopOptions) XXX_Merge added in v0.0.143

func (m *StopOptions) XXX_Merge(src proto.Message)

func (*StopOptions) XXX_Size added in v0.0.143

func (m *StopOptions) XXX_Size() int

func (*StopOptions) XXX_Unmarshal added in v0.0.143

func (m *StopOptions) XXX_Unmarshal(b []byte) error

type StopRelayOptions added in v0.0.143

type StopRelayOptions struct {
	// @gotags: kong:"help='ID of the relay to stop',required=true"
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty" kong:"help='ID of the relay to stop',required=true"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*StopRelayOptions) Descriptor added in v0.0.143

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

func (*StopRelayOptions) GetId added in v0.0.143

func (m *StopRelayOptions) GetId() string

func (*StopRelayOptions) ProtoMessage added in v0.0.143

func (*StopRelayOptions) ProtoMessage()

func (*StopRelayOptions) Reset added in v0.0.143

func (m *StopRelayOptions) Reset()

func (*StopRelayOptions) String added in v0.0.143

func (m *StopRelayOptions) String() string

func (*StopRelayOptions) XXX_DiscardUnknown added in v0.0.143

func (m *StopRelayOptions) XXX_DiscardUnknown()

func (*StopRelayOptions) XXX_Marshal added in v0.0.143

func (m *StopRelayOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StopRelayOptions) XXX_Merge added in v0.0.143

func (m *StopRelayOptions) XXX_Merge(src proto.Message)

func (*StopRelayOptions) XXX_Size added in v0.0.143

func (m *StopRelayOptions) XXX_Size() int

func (*StopRelayOptions) XXX_Unmarshal added in v0.0.143

func (m *StopRelayOptions) XXX_Unmarshal(b []byte) error

type StopTunnelOptions added in v0.0.143

type StopTunnelOptions struct {
	// @gotags: kong:"help='ID of the tunnel to stop',required=true"
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty" kong:"help='ID of the tunnel to stop',required=true"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*StopTunnelOptions) Descriptor added in v0.0.143

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

func (*StopTunnelOptions) GetId added in v0.0.143

func (m *StopTunnelOptions) GetId() string

func (*StopTunnelOptions) ProtoMessage added in v0.0.143

func (*StopTunnelOptions) ProtoMessage()

func (*StopTunnelOptions) Reset added in v0.0.143

func (m *StopTunnelOptions) Reset()

func (*StopTunnelOptions) String added in v0.0.143

func (m *StopTunnelOptions) String() string

func (*StopTunnelOptions) XXX_DiscardUnknown added in v0.0.143

func (m *StopTunnelOptions) XXX_DiscardUnknown()

func (*StopTunnelOptions) XXX_Marshal added in v0.0.143

func (m *StopTunnelOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StopTunnelOptions) XXX_Merge added in v0.0.143

func (m *StopTunnelOptions) XXX_Merge(src proto.Message)

func (*StopTunnelOptions) XXX_Size added in v0.0.143

func (m *StopTunnelOptions) XXX_Size() int

func (*StopTunnelOptions) XXX_Unmarshal added in v0.0.143

func (m *StopTunnelOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupAWSKinesisOptions added in v0.0.142

type TunnelGroupAWSKinesisOptions struct {
	// @gotags: kong:"embed"
	XConn *args.AWSKinesisConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AWSKinesisWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*TunnelGroupAWSKinesisOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupAWSKinesisOptions) GetArgs added in v0.0.142

func (*TunnelGroupAWSKinesisOptions) GetXConn added in v0.0.142

func (*TunnelGroupAWSKinesisOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupAWSKinesisOptions) ProtoMessage()

func (*TunnelGroupAWSKinesisOptions) Reset added in v0.0.142

func (m *TunnelGroupAWSKinesisOptions) Reset()

func (*TunnelGroupAWSKinesisOptions) String added in v0.0.142

func (*TunnelGroupAWSKinesisOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupAWSKinesisOptions) XXX_DiscardUnknown()

func (*TunnelGroupAWSKinesisOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupAWSKinesisOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupAWSKinesisOptions) XXX_Merge added in v0.0.142

func (m *TunnelGroupAWSKinesisOptions) XXX_Merge(src proto.Message)

func (*TunnelGroupAWSKinesisOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupAWSKinesisOptions) XXX_Size() int

func (*TunnelGroupAWSKinesisOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupAWSKinesisOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupAWSSNSOptions added in v0.0.142

type TunnelGroupAWSSNSOptions struct {
	// @gotags: kong:"embed"
	XConn *args.AWSSNSConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AWSSNSWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*TunnelGroupAWSSNSOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupAWSSNSOptions) GetArgs added in v0.0.142

func (*TunnelGroupAWSSNSOptions) GetXConn added in v0.0.142

func (m *TunnelGroupAWSSNSOptions) GetXConn() *args.AWSSNSConn

func (*TunnelGroupAWSSNSOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupAWSSNSOptions) ProtoMessage()

func (*TunnelGroupAWSSNSOptions) Reset added in v0.0.142

func (m *TunnelGroupAWSSNSOptions) Reset()

func (*TunnelGroupAWSSNSOptions) String added in v0.0.142

func (m *TunnelGroupAWSSNSOptions) String() string

func (*TunnelGroupAWSSNSOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupAWSSNSOptions) XXX_DiscardUnknown()

func (*TunnelGroupAWSSNSOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupAWSSNSOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupAWSSNSOptions) XXX_Merge added in v0.0.142

func (m *TunnelGroupAWSSNSOptions) XXX_Merge(src proto.Message)

func (*TunnelGroupAWSSNSOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupAWSSNSOptions) XXX_Size() int

func (*TunnelGroupAWSSNSOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupAWSSNSOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupAWSSQSOptions added in v0.0.142

type TunnelGroupAWSSQSOptions struct {
	// @gotags: kong:"embed"
	XConn *args.AWSSQSConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AWSSQSWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*TunnelGroupAWSSQSOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupAWSSQSOptions) GetArgs added in v0.0.142

func (*TunnelGroupAWSSQSOptions) GetXConn added in v0.0.142

func (m *TunnelGroupAWSSQSOptions) GetXConn() *args.AWSSQSConn

func (*TunnelGroupAWSSQSOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupAWSSQSOptions) ProtoMessage()

func (*TunnelGroupAWSSQSOptions) Reset added in v0.0.142

func (m *TunnelGroupAWSSQSOptions) Reset()

func (*TunnelGroupAWSSQSOptions) String added in v0.0.142

func (m *TunnelGroupAWSSQSOptions) String() string

func (*TunnelGroupAWSSQSOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupAWSSQSOptions) XXX_DiscardUnknown()

func (*TunnelGroupAWSSQSOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupAWSSQSOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupAWSSQSOptions) XXX_Merge added in v0.0.142

func (m *TunnelGroupAWSSQSOptions) XXX_Merge(src proto.Message)

func (*TunnelGroupAWSSQSOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupAWSSQSOptions) XXX_Size() int

func (*TunnelGroupAWSSQSOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupAWSSQSOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupActiveMQOptions added in v0.0.142

type TunnelGroupActiveMQOptions struct {
	// @gotags: kong:"embed"
	XConn *args.ActiveMQConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.ActiveMQWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*TunnelGroupActiveMQOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupActiveMQOptions) GetArgs added in v0.0.142

func (*TunnelGroupActiveMQOptions) GetXConn added in v0.0.142

func (*TunnelGroupActiveMQOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupActiveMQOptions) ProtoMessage()

func (*TunnelGroupActiveMQOptions) Reset added in v0.0.142

func (m *TunnelGroupActiveMQOptions) Reset()

func (*TunnelGroupActiveMQOptions) String added in v0.0.142

func (m *TunnelGroupActiveMQOptions) String() string

func (*TunnelGroupActiveMQOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupActiveMQOptions) XXX_DiscardUnknown()

func (*TunnelGroupActiveMQOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupActiveMQOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupActiveMQOptions) XXX_Merge added in v0.0.142

func (m *TunnelGroupActiveMQOptions) XXX_Merge(src proto.Message)

func (*TunnelGroupActiveMQOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupActiveMQOptions) XXX_Size() int

func (*TunnelGroupActiveMQOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupActiveMQOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupAzureEventHubOptions added in v0.0.142

type TunnelGroupAzureEventHubOptions struct {
	// @gotags: kong:"embed"
	XConn *args.AzureEventHubConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AzureEventHubWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                     `json:"-"`
	XXX_unrecognized     []byte                       `json:"-"`
	XXX_sizecache        int32                        `json:"-"`
}

func (*TunnelGroupAzureEventHubOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupAzureEventHubOptions) GetArgs added in v0.0.142

func (*TunnelGroupAzureEventHubOptions) GetXConn added in v0.0.142

func (*TunnelGroupAzureEventHubOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupAzureEventHubOptions) ProtoMessage()

func (*TunnelGroupAzureEventHubOptions) Reset added in v0.0.142

func (*TunnelGroupAzureEventHubOptions) String added in v0.0.142

func (*TunnelGroupAzureEventHubOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupAzureEventHubOptions) XXX_DiscardUnknown()

func (*TunnelGroupAzureEventHubOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupAzureEventHubOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupAzureEventHubOptions) XXX_Merge added in v0.0.142

func (m *TunnelGroupAzureEventHubOptions) XXX_Merge(src proto.Message)

func (*TunnelGroupAzureEventHubOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupAzureEventHubOptions) XXX_Size() int

func (*TunnelGroupAzureEventHubOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupAzureEventHubOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupAzureServiceBusOptions added in v0.0.142

type TunnelGroupAzureServiceBusOptions struct {
	// @gotags: kong:"embed"{
	XConn *args.AzureServiceBusConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AzureServiceBusWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                       `json:"-"`
	XXX_unrecognized     []byte                         `json:"-"`
	XXX_sizecache        int32                          `json:"-"`
}

func (*TunnelGroupAzureServiceBusOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupAzureServiceBusOptions) GetArgs added in v0.0.142

func (*TunnelGroupAzureServiceBusOptions) GetXConn added in v0.0.142

func (*TunnelGroupAzureServiceBusOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupAzureServiceBusOptions) ProtoMessage()

func (*TunnelGroupAzureServiceBusOptions) Reset added in v0.0.142

func (*TunnelGroupAzureServiceBusOptions) String added in v0.0.142

func (*TunnelGroupAzureServiceBusOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupAzureServiceBusOptions) XXX_DiscardUnknown()

func (*TunnelGroupAzureServiceBusOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupAzureServiceBusOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupAzureServiceBusOptions) XXX_Merge added in v0.0.142

func (*TunnelGroupAzureServiceBusOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupAzureServiceBusOptions) XXX_Size() int

func (*TunnelGroupAzureServiceBusOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupAzureServiceBusOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupGCPPubSubOptions added in v0.0.142

type TunnelGroupGCPPubSubOptions struct {
	// @gotags: kong:"embed"
	XConn *args.GCPPubSubConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.GCPPubSubWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                 `json:"-"`
	XXX_unrecognized     []byte                   `json:"-"`
	XXX_sizecache        int32                    `json:"-"`
}

func (*TunnelGroupGCPPubSubOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupGCPPubSubOptions) GetArgs added in v0.0.142

func (*TunnelGroupGCPPubSubOptions) GetXConn added in v0.0.142

func (*TunnelGroupGCPPubSubOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupGCPPubSubOptions) ProtoMessage()

func (*TunnelGroupGCPPubSubOptions) Reset added in v0.0.142

func (m *TunnelGroupGCPPubSubOptions) Reset()

func (*TunnelGroupGCPPubSubOptions) String added in v0.0.142

func (m *TunnelGroupGCPPubSubOptions) String() string

func (*TunnelGroupGCPPubSubOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupGCPPubSubOptions) XXX_DiscardUnknown()

func (*TunnelGroupGCPPubSubOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupGCPPubSubOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupGCPPubSubOptions) XXX_Merge added in v0.0.142

func (m *TunnelGroupGCPPubSubOptions) XXX_Merge(src proto.Message)

func (*TunnelGroupGCPPubSubOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupGCPPubSubOptions) XXX_Size() int

func (*TunnelGroupGCPPubSubOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupGCPPubSubOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupKafkaOptions added in v0.0.142

type TunnelGroupKafkaOptions struct {
	// @gotags: kong:"embed"
	XConn *args.KafkaConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.KafkaWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*TunnelGroupKafkaOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupKafkaOptions) GetArgs added in v0.0.142

func (*TunnelGroupKafkaOptions) GetXConn added in v0.0.142

func (m *TunnelGroupKafkaOptions) GetXConn() *args.KafkaConn

func (*TunnelGroupKafkaOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupKafkaOptions) ProtoMessage()

func (*TunnelGroupKafkaOptions) Reset added in v0.0.142

func (m *TunnelGroupKafkaOptions) Reset()

func (*TunnelGroupKafkaOptions) String added in v0.0.142

func (m *TunnelGroupKafkaOptions) String() string

func (*TunnelGroupKafkaOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupKafkaOptions) XXX_DiscardUnknown()

func (*TunnelGroupKafkaOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupKafkaOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupKafkaOptions) XXX_Merge added in v0.0.142

func (m *TunnelGroupKafkaOptions) XXX_Merge(src proto.Message)

func (*TunnelGroupKafkaOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupKafkaOptions) XXX_Size() int

func (*TunnelGroupKafkaOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupKafkaOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupKubeMQQueueOptions added in v0.0.142

type TunnelGroupKubeMQQueueOptions struct {
	// @gotags: kong:"embed"
	XConn *args.KubeMQQueueConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.KubeMQQueueWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*TunnelGroupKubeMQQueueOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupKubeMQQueueOptions) GetArgs added in v0.0.142

func (*TunnelGroupKubeMQQueueOptions) GetXConn added in v0.0.142

func (*TunnelGroupKubeMQQueueOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupKubeMQQueueOptions) ProtoMessage()

func (*TunnelGroupKubeMQQueueOptions) Reset added in v0.0.142

func (m *TunnelGroupKubeMQQueueOptions) Reset()

func (*TunnelGroupKubeMQQueueOptions) String added in v0.0.142

func (*TunnelGroupKubeMQQueueOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupKubeMQQueueOptions) XXX_DiscardUnknown()

func (*TunnelGroupKubeMQQueueOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupKubeMQQueueOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupKubeMQQueueOptions) XXX_Merge added in v0.0.142

func (m *TunnelGroupKubeMQQueueOptions) XXX_Merge(src proto.Message)

func (*TunnelGroupKubeMQQueueOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupKubeMQQueueOptions) XXX_Size() int

func (*TunnelGroupKubeMQQueueOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupKubeMQQueueOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupMQTTOptions added in v0.0.142

type TunnelGroupMQTTOptions struct {
	// @gotags: kong:"embed"
	XConn *args.MQTTConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.MQTTWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*TunnelGroupMQTTOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupMQTTOptions) GetArgs added in v0.0.142

func (*TunnelGroupMQTTOptions) GetXConn added in v0.0.142

func (m *TunnelGroupMQTTOptions) GetXConn() *args.MQTTConn

func (*TunnelGroupMQTTOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupMQTTOptions) ProtoMessage()

func (*TunnelGroupMQTTOptions) Reset added in v0.0.142

func (m *TunnelGroupMQTTOptions) Reset()

func (*TunnelGroupMQTTOptions) String added in v0.0.142

func (m *TunnelGroupMQTTOptions) String() string

func (*TunnelGroupMQTTOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupMQTTOptions) XXX_DiscardUnknown()

func (*TunnelGroupMQTTOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupMQTTOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupMQTTOptions) XXX_Merge added in v0.0.142

func (m *TunnelGroupMQTTOptions) XXX_Merge(src proto.Message)

func (*TunnelGroupMQTTOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupMQTTOptions) XXX_Size() int

func (*TunnelGroupMQTTOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupMQTTOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupNSQOptions added in v0.0.142

type TunnelGroupNSQOptions struct {
	// @gotags: kong:"embed"
	XConn *args.NSQConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NSQWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*TunnelGroupNSQOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupNSQOptions) GetArgs added in v0.0.142

func (m *TunnelGroupNSQOptions) GetArgs() *args.NSQWriteArgs

func (*TunnelGroupNSQOptions) GetXConn added in v0.0.142

func (m *TunnelGroupNSQOptions) GetXConn() *args.NSQConn

func (*TunnelGroupNSQOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupNSQOptions) ProtoMessage()

func (*TunnelGroupNSQOptions) Reset added in v0.0.142

func (m *TunnelGroupNSQOptions) Reset()

func (*TunnelGroupNSQOptions) String added in v0.0.142

func (m *TunnelGroupNSQOptions) String() string

func (*TunnelGroupNSQOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupNSQOptions) XXX_DiscardUnknown()

func (*TunnelGroupNSQOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupNSQOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupNSQOptions) XXX_Merge added in v0.0.142

func (m *TunnelGroupNSQOptions) XXX_Merge(src proto.Message)

func (*TunnelGroupNSQOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupNSQOptions) XXX_Size() int

func (*TunnelGroupNSQOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupNSQOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupNatsJetstreamOptions added in v0.0.142

type TunnelGroupNatsJetstreamOptions struct {
	// @gotags: kong:"embed"
	XConn *args.NatsJetstreamConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NatsJetstreamWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                     `json:"-"`
	XXX_unrecognized     []byte                       `json:"-"`
	XXX_sizecache        int32                        `json:"-"`
}

func (*TunnelGroupNatsJetstreamOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupNatsJetstreamOptions) GetArgs added in v0.0.142

func (*TunnelGroupNatsJetstreamOptions) GetXConn added in v0.0.142

func (*TunnelGroupNatsJetstreamOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupNatsJetstreamOptions) ProtoMessage()

func (*TunnelGroupNatsJetstreamOptions) Reset added in v0.0.142

func (*TunnelGroupNatsJetstreamOptions) String added in v0.0.142

func (*TunnelGroupNatsJetstreamOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupNatsJetstreamOptions) XXX_DiscardUnknown()

func (*TunnelGroupNatsJetstreamOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupNatsJetstreamOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupNatsJetstreamOptions) XXX_Merge added in v0.0.142

func (m *TunnelGroupNatsJetstreamOptions) XXX_Merge(src proto.Message)

func (*TunnelGroupNatsJetstreamOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupNatsJetstreamOptions) XXX_Size() int

func (*TunnelGroupNatsJetstreamOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupNatsJetstreamOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupNatsOptions added in v0.0.142

type TunnelGroupNatsOptions struct {
	// @gotags: kong:"embed"
	XConn *args.NatsConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NatsWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*TunnelGroupNatsOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupNatsOptions) GetArgs added in v0.0.142

func (*TunnelGroupNatsOptions) GetXConn added in v0.0.142

func (m *TunnelGroupNatsOptions) GetXConn() *args.NatsConn

func (*TunnelGroupNatsOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupNatsOptions) ProtoMessage()

func (*TunnelGroupNatsOptions) Reset added in v0.0.142

func (m *TunnelGroupNatsOptions) Reset()

func (*TunnelGroupNatsOptions) String added in v0.0.142

func (m *TunnelGroupNatsOptions) String() string

func (*TunnelGroupNatsOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupNatsOptions) XXX_DiscardUnknown()

func (*TunnelGroupNatsOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupNatsOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupNatsOptions) XXX_Merge added in v0.0.142

func (m *TunnelGroupNatsOptions) XXX_Merge(src proto.Message)

func (*TunnelGroupNatsOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupNatsOptions) XXX_Size() int

func (*TunnelGroupNatsOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupNatsOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupNatsStreamingOptions added in v0.0.142

type TunnelGroupNatsStreamingOptions struct {
	// @gotags: kong:"embed"
	XConn *args.NatsStreamingConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NatsStreamingWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                     `json:"-"`
	XXX_unrecognized     []byte                       `json:"-"`
	XXX_sizecache        int32                        `json:"-"`
}

func (*TunnelGroupNatsStreamingOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupNatsStreamingOptions) GetArgs added in v0.0.142

func (*TunnelGroupNatsStreamingOptions) GetXConn added in v0.0.142

func (*TunnelGroupNatsStreamingOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupNatsStreamingOptions) ProtoMessage()

func (*TunnelGroupNatsStreamingOptions) Reset added in v0.0.142

func (*TunnelGroupNatsStreamingOptions) String added in v0.0.142

func (*TunnelGroupNatsStreamingOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupNatsStreamingOptions) XXX_DiscardUnknown()

func (*TunnelGroupNatsStreamingOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupNatsStreamingOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupNatsStreamingOptions) XXX_Merge added in v0.0.142

func (m *TunnelGroupNatsStreamingOptions) XXX_Merge(src proto.Message)

func (*TunnelGroupNatsStreamingOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupNatsStreamingOptions) XXX_Size() int

func (*TunnelGroupNatsStreamingOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupNatsStreamingOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupPulsarOptions added in v0.0.142

type TunnelGroupPulsarOptions struct {
	// @gotags: kong:"embed"
	XConn *args.PulsarConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.PulsarWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*TunnelGroupPulsarOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupPulsarOptions) GetArgs added in v0.0.142

func (*TunnelGroupPulsarOptions) GetXConn added in v0.0.142

func (m *TunnelGroupPulsarOptions) GetXConn() *args.PulsarConn

func (*TunnelGroupPulsarOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupPulsarOptions) ProtoMessage()

func (*TunnelGroupPulsarOptions) Reset added in v0.0.142

func (m *TunnelGroupPulsarOptions) Reset()

func (*TunnelGroupPulsarOptions) String added in v0.0.142

func (m *TunnelGroupPulsarOptions) String() string

func (*TunnelGroupPulsarOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupPulsarOptions) XXX_DiscardUnknown()

func (*TunnelGroupPulsarOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupPulsarOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupPulsarOptions) XXX_Merge added in v0.0.142

func (m *TunnelGroupPulsarOptions) XXX_Merge(src proto.Message)

func (*TunnelGroupPulsarOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupPulsarOptions) XXX_Size() int

func (*TunnelGroupPulsarOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupPulsarOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupRabbitOptions added in v0.0.142

type TunnelGroupRabbitOptions struct {
	// @gotags: kong:"embed"
	XConn *args.RabbitConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RabbitWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*TunnelGroupRabbitOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupRabbitOptions) GetArgs added in v0.0.142

func (*TunnelGroupRabbitOptions) GetXConn added in v0.0.142

func (m *TunnelGroupRabbitOptions) GetXConn() *args.RabbitConn

func (*TunnelGroupRabbitOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupRabbitOptions) ProtoMessage()

func (*TunnelGroupRabbitOptions) Reset added in v0.0.142

func (m *TunnelGroupRabbitOptions) Reset()

func (*TunnelGroupRabbitOptions) String added in v0.0.142

func (m *TunnelGroupRabbitOptions) String() string

func (*TunnelGroupRabbitOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupRabbitOptions) XXX_DiscardUnknown()

func (*TunnelGroupRabbitOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupRabbitOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupRabbitOptions) XXX_Merge added in v0.0.142

func (m *TunnelGroupRabbitOptions) XXX_Merge(src proto.Message)

func (*TunnelGroupRabbitOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupRabbitOptions) XXX_Size() int

func (*TunnelGroupRabbitOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupRabbitOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupRabbitStreamsOptions added in v0.0.142

type TunnelGroupRabbitStreamsOptions struct {
	// @gotags: kong:"embed"
	XConn *args.RabbitStreamsConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RabbitStreamsWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                     `json:"-"`
	XXX_unrecognized     []byte                       `json:"-"`
	XXX_sizecache        int32                        `json:"-"`
}

func (*TunnelGroupRabbitStreamsOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupRabbitStreamsOptions) GetArgs added in v0.0.142

func (*TunnelGroupRabbitStreamsOptions) GetXConn added in v0.0.142

func (*TunnelGroupRabbitStreamsOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupRabbitStreamsOptions) ProtoMessage()

func (*TunnelGroupRabbitStreamsOptions) Reset added in v0.0.142

func (*TunnelGroupRabbitStreamsOptions) String added in v0.0.142

func (*TunnelGroupRabbitStreamsOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupRabbitStreamsOptions) XXX_DiscardUnknown()

func (*TunnelGroupRabbitStreamsOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupRabbitStreamsOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupRabbitStreamsOptions) XXX_Merge added in v0.0.142

func (m *TunnelGroupRabbitStreamsOptions) XXX_Merge(src proto.Message)

func (*TunnelGroupRabbitStreamsOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupRabbitStreamsOptions) XXX_Size() int

func (*TunnelGroupRabbitStreamsOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupRabbitStreamsOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupRedisPubSubOptions added in v0.0.142

type TunnelGroupRedisPubSubOptions struct {
	// @gotags: kong:"embed"
	XConn *args.RedisPubSubConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RedisPubSubWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*TunnelGroupRedisPubSubOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupRedisPubSubOptions) GetArgs added in v0.0.142

func (*TunnelGroupRedisPubSubOptions) GetXConn added in v0.0.142

func (*TunnelGroupRedisPubSubOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupRedisPubSubOptions) ProtoMessage()

func (*TunnelGroupRedisPubSubOptions) Reset added in v0.0.142

func (m *TunnelGroupRedisPubSubOptions) Reset()

func (*TunnelGroupRedisPubSubOptions) String added in v0.0.142

func (*TunnelGroupRedisPubSubOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupRedisPubSubOptions) XXX_DiscardUnknown()

func (*TunnelGroupRedisPubSubOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupRedisPubSubOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupRedisPubSubOptions) XXX_Merge added in v0.0.142

func (m *TunnelGroupRedisPubSubOptions) XXX_Merge(src proto.Message)

func (*TunnelGroupRedisPubSubOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupRedisPubSubOptions) XXX_Size() int

func (*TunnelGroupRedisPubSubOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupRedisPubSubOptions) XXX_Unmarshal(b []byte) error

type TunnelGroupRedisStreamsOptions added in v0.0.142

type TunnelGroupRedisStreamsOptions struct {
	// @gotags: kong:"embed"
	XConn *args.RedisStreamsConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RedisStreamsWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

func (*TunnelGroupRedisStreamsOptions) Descriptor added in v0.0.142

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

func (*TunnelGroupRedisStreamsOptions) GetArgs added in v0.0.142

func (*TunnelGroupRedisStreamsOptions) GetXConn added in v0.0.142

func (*TunnelGroupRedisStreamsOptions) ProtoMessage added in v0.0.142

func (*TunnelGroupRedisStreamsOptions) ProtoMessage()

func (*TunnelGroupRedisStreamsOptions) Reset added in v0.0.142

func (m *TunnelGroupRedisStreamsOptions) Reset()

func (*TunnelGroupRedisStreamsOptions) String added in v0.0.142

func (*TunnelGroupRedisStreamsOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelGroupRedisStreamsOptions) XXX_DiscardUnknown()

func (*TunnelGroupRedisStreamsOptions) XXX_Marshal added in v0.0.142

func (m *TunnelGroupRedisStreamsOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelGroupRedisStreamsOptions) XXX_Merge added in v0.0.142

func (m *TunnelGroupRedisStreamsOptions) XXX_Merge(src proto.Message)

func (*TunnelGroupRedisStreamsOptions) XXX_Size added in v0.0.142

func (m *TunnelGroupRedisStreamsOptions) XXX_Size() int

func (*TunnelGroupRedisStreamsOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelGroupRedisStreamsOptions) XXX_Unmarshal(b []byte) error

type TunnelOptions added in v0.0.142

type TunnelOptions struct {
	// @gotags: kong:"help='API token to use for tunnel (create here: https://console.batch.sh/account/security)',required"
	ApiToken string `` /* 193-byte string literal not displayed */
	// @gotags: kong:"-"
	ConnectionId string `protobuf:"bytes,2,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty" kong:"-"`
	// @gotags: kong:"help='Tunnel API address',default='dproxy.batch.sh:443'"
	XGrpcAddress string `` /* 159-byte string literal not displayed */
	// @gotags: kong:"help='Tunnel API initial connection timeout',default=5"
	XGrpcTimeoutSeconds uint32 `` /* 182-byte string literal not displayed */
	// @gotags: kong:"help='Use gRPC insecure mode when talking to Batch'"
	XGrpcInsecure bool `` /* 159-byte string literal not displayed */
	// Optional for server, ignored for CLI.
	// NOTE: CLI-based tunnels will be treated as ephemeral.
	// @gotags: kong:"-"
	Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty" kong:"-"`
	// ID of the created tunnel; populated by plumber.
	// @gotags: kong:"-"
	XTunnelId string `protobuf:"bytes,1000,opt,name=_tunnel_id,json=TunnelId,proto3" json:"_tunnel_id,omitempty" kong:"-"`
	// Set by CreateTunnel() StopTunnel() and ResumeTunnel() methods in Plumber
	// @gotags: kong:"-"
	XActive bool `protobuf:"varint,1001,opt,name=_active,json=Active,proto3" json:"_active,omitempty" kong:"-"`
	// @gotags: kong:"cmd,help='Apache Kafka'"
	Kafka *TunnelGroupKafkaOptions `protobuf:"bytes,100,opt,name=kafka,proto3" json:"kafka,omitempty" kong:"cmd,help='Apache Kafka'"`
	// @gotags: kong:"cmd,help='Apache ActiveMQ'"
	Activemq *TunnelGroupActiveMQOptions `protobuf:"bytes,101,opt,name=activemq,proto3" json:"activemq,omitempty" kong:"cmd,help='Apache ActiveMQ'"`
	// @gotags: kong:"cmd,help='AWS Simple Queue System'"
	AwsSqs *TunnelGroupAWSSQSOptions `protobuf:"bytes,102,opt,name=aws_sqs,json=awsSqs,proto3" json:"aws_sqs,omitempty" kong:"cmd,help='AWS Simple Queue System'"`
	// @gotags: kong:"cmd,help='AWS Simple Notification System'"
	AwsSns *TunnelGroupAWSSNSOptions `` /* 130-byte string literal not displayed */
	// @gotags: kong:"cmd,help='NATS'"
	Nats *TunnelGroupNatsOptions `protobuf:"bytes,104,opt,name=nats,proto3" json:"nats,omitempty" kong:"cmd,help='NATS'"`
	// @gotags: kong:"cmd,help='NATS Streaming'"
	NatsStreaming *TunnelGroupNatsStreamingOptions `` /* 135-byte string literal not displayed */
	// @gotags: kong:"cmd,help='NSQ'"
	Nsq *TunnelGroupNSQOptions `protobuf:"bytes,106,opt,name=nsq,proto3" json:"nsq,omitempty" kong:"cmd,help='NSQ'"`
	// @gotags: kong:"cmd,help='RabbitMQ'"
	Rabbit *TunnelGroupRabbitOptions `protobuf:"bytes,107,opt,name=rabbit,proto3" json:"rabbit,omitempty" kong:"cmd,help='RabbitMQ'"`
	// @gotags: kong:"cmd,help='MQTT'"
	Mqtt *TunnelGroupMQTTOptions `protobuf:"bytes,108,opt,name=mqtt,proto3" json:"mqtt,omitempty" kong:"cmd,help='MQTT'"`
	// @gotags: kong:"cmd,help='Azure Service Bus'"
	AzureServiceBus *TunnelGroupAzureServiceBusOptions `` /* 146-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Azure Event Hub'"
	AzureEventHub *TunnelGroupAzureEventHubOptions `` /* 138-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Google Cloud Platform Pub/Sub'"
	GcpPubsub *TunnelGroupGCPPubSubOptions `` /* 138-byte string literal not displayed */
	// @gotags: kong:"cmd,help='KubeMQ Queue'"
	KubemqQueue *TunnelGroupKubeMQQueueOptions `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis PubSub'"
	RedisPubsub *TunnelGroupRedisPubSubOptions `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis Streams'"
	RedisStreams *TunnelGroupRedisStreamsOptions `` /* 131-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Apache Pulsar'"
	Pulsar *TunnelGroupPulsarOptions `protobuf:"bytes,115,opt,name=pulsar,proto3" json:"pulsar,omitempty" kong:"cmd,help='Apache Pulsar'"`
	// @gotags: kong:"cmd,help='RabbitMQ Streams'"
	RabbitStreams *TunnelGroupRabbitStreamsOptions `` /* 137-byte string literal not displayed */
	// @gotags: kong:"cmd,help='NATS JetStream'"
	NatsJetstream *TunnelGroupNatsJetstreamOptions `` /* 135-byte string literal not displayed */
	// @gotags: kong:"cmd,help='AWS Kinesis Streams'"
	AwsKinesis           *TunnelGroupAWSKinesisOptions `` /* 131-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                      `json:"-"`
	XXX_unrecognized     []byte                        `json:"-"`
	XXX_sizecache        int32                         `json:"-"`
}

func (*TunnelOptions) Descriptor added in v0.0.142

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

func (*TunnelOptions) GetActivemq added in v0.0.142

func (m *TunnelOptions) GetActivemq() *TunnelGroupActiveMQOptions

func (*TunnelOptions) GetApiToken added in v0.0.142

func (m *TunnelOptions) GetApiToken() string

func (*TunnelOptions) GetAwsKinesis added in v0.0.142

func (m *TunnelOptions) GetAwsKinesis() *TunnelGroupAWSKinesisOptions

func (*TunnelOptions) GetAwsSns added in v0.0.142

func (m *TunnelOptions) GetAwsSns() *TunnelGroupAWSSNSOptions

func (*TunnelOptions) GetAwsSqs added in v0.0.142

func (m *TunnelOptions) GetAwsSqs() *TunnelGroupAWSSQSOptions

func (*TunnelOptions) GetAzureEventHub added in v0.0.142

func (m *TunnelOptions) GetAzureEventHub() *TunnelGroupAzureEventHubOptions

func (*TunnelOptions) GetAzureServiceBus added in v0.0.142

func (m *TunnelOptions) GetAzureServiceBus() *TunnelGroupAzureServiceBusOptions

func (*TunnelOptions) GetConnectionId added in v0.0.142

func (m *TunnelOptions) GetConnectionId() string

func (*TunnelOptions) GetGcpPubsub added in v0.0.142

func (m *TunnelOptions) GetGcpPubsub() *TunnelGroupGCPPubSubOptions

func (*TunnelOptions) GetKafka added in v0.0.142

func (m *TunnelOptions) GetKafka() *TunnelGroupKafkaOptions

func (*TunnelOptions) GetKubemqQueue added in v0.0.142

func (m *TunnelOptions) GetKubemqQueue() *TunnelGroupKubeMQQueueOptions

func (*TunnelOptions) GetMqtt added in v0.0.142

func (m *TunnelOptions) GetMqtt() *TunnelGroupMQTTOptions

func (*TunnelOptions) GetName added in v0.0.142

func (m *TunnelOptions) GetName() string

func (*TunnelOptions) GetNats added in v0.0.142

func (m *TunnelOptions) GetNats() *TunnelGroupNatsOptions

func (*TunnelOptions) GetNatsJetstream added in v0.0.142

func (m *TunnelOptions) GetNatsJetstream() *TunnelGroupNatsJetstreamOptions

func (*TunnelOptions) GetNatsStreaming added in v0.0.142

func (m *TunnelOptions) GetNatsStreaming() *TunnelGroupNatsStreamingOptions

func (*TunnelOptions) GetNsq added in v0.0.142

func (m *TunnelOptions) GetNsq() *TunnelGroupNSQOptions

func (*TunnelOptions) GetPulsar added in v0.0.142

func (m *TunnelOptions) GetPulsar() *TunnelGroupPulsarOptions

func (*TunnelOptions) GetRabbit added in v0.0.142

func (m *TunnelOptions) GetRabbit() *TunnelGroupRabbitOptions

func (*TunnelOptions) GetRabbitStreams added in v0.0.142

func (m *TunnelOptions) GetRabbitStreams() *TunnelGroupRabbitStreamsOptions

func (*TunnelOptions) GetRedisPubsub added in v0.0.142

func (m *TunnelOptions) GetRedisPubsub() *TunnelGroupRedisPubSubOptions

func (*TunnelOptions) GetRedisStreams added in v0.0.142

func (m *TunnelOptions) GetRedisStreams() *TunnelGroupRedisStreamsOptions

func (*TunnelOptions) GetXActive added in v0.0.142

func (m *TunnelOptions) GetXActive() bool

func (*TunnelOptions) GetXGrpcAddress added in v0.0.142

func (m *TunnelOptions) GetXGrpcAddress() string

func (*TunnelOptions) GetXGrpcInsecure added in v0.0.142

func (m *TunnelOptions) GetXGrpcInsecure() bool

func (*TunnelOptions) GetXGrpcTimeoutSeconds added in v0.0.142

func (m *TunnelOptions) GetXGrpcTimeoutSeconds() uint32

func (*TunnelOptions) GetXTunnelId added in v0.0.142

func (m *TunnelOptions) GetXTunnelId() string

func (*TunnelOptions) ProtoMessage added in v0.0.142

func (*TunnelOptions) ProtoMessage()

func (*TunnelOptions) Reset added in v0.0.142

func (m *TunnelOptions) Reset()

func (*TunnelOptions) String added in v0.0.142

func (m *TunnelOptions) String() string

func (*TunnelOptions) XXX_DiscardUnknown added in v0.0.142

func (m *TunnelOptions) XXX_DiscardUnknown()

func (*TunnelOptions) XXX_Marshal added in v0.0.142

func (m *TunnelOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TunnelOptions) XXX_Merge added in v0.0.142

func (m *TunnelOptions) XXX_Merge(src proto.Message)

func (*TunnelOptions) XXX_Size added in v0.0.142

func (m *TunnelOptions) XXX_Size() int

func (*TunnelOptions) XXX_Unmarshal added in v0.0.142

func (m *TunnelOptions) XXX_Unmarshal(b []byte) error

type WriteCLIOptions added in v0.0.49

type WriteCLIOptions struct {
	// @gotags: kong:"help='Write data from input file',existingfile,xor=input"
	InputFile string `` /* 152-byte string literal not displayed */
	// @gotags: kong:"help='Treat input as JSON array - each array element will be written as a separate message'"
	InputAsJsonArray bool `` /* 213-byte string literal not displayed */
	// @gotags: kong:"-"
	InputStdin           []string `protobuf:"bytes,3,rep,name=input_stdin,json=inputStdin,proto3" json:"input_stdin,omitempty" kong:"-"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*WriteCLIOptions) Descriptor added in v0.0.49

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

func (*WriteCLIOptions) GetInputAsJsonArray added in v0.0.49

func (m *WriteCLIOptions) GetInputAsJsonArray() bool

func (*WriteCLIOptions) GetInputFile added in v0.0.49

func (m *WriteCLIOptions) GetInputFile() string

func (*WriteCLIOptions) GetInputStdin added in v0.0.54

func (m *WriteCLIOptions) GetInputStdin() []string

func (*WriteCLIOptions) ProtoMessage added in v0.0.49

func (*WriteCLIOptions) ProtoMessage()

func (*WriteCLIOptions) Reset added in v0.0.49

func (m *WriteCLIOptions) Reset()

func (*WriteCLIOptions) String added in v0.0.49

func (m *WriteCLIOptions) String() string

func (*WriteCLIOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteCLIOptions) XXX_DiscardUnknown()

func (*WriteCLIOptions) XXX_Marshal added in v0.0.49

func (m *WriteCLIOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteCLIOptions) XXX_Merge added in v0.0.49

func (m *WriteCLIOptions) XXX_Merge(src proto.Message)

func (*WriteCLIOptions) XXX_Size added in v0.0.49

func (m *WriteCLIOptions) XXX_Size() int

func (*WriteCLIOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteCLIOptions) XXX_Unmarshal(b []byte) error

type WriteGroupAWSKinesisOptions added in v0.0.121

type WriteGroupAWSKinesisOptions struct {
	// @gotags: kong:"embed"
	XConn *args.AWSKinesisConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AWSKinesisWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*WriteGroupAWSKinesisOptions) Descriptor added in v0.0.121

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

func (*WriteGroupAWSKinesisOptions) GetArgs added in v0.0.121

func (*WriteGroupAWSKinesisOptions) GetXConn added in v0.0.121

func (*WriteGroupAWSKinesisOptions) ProtoMessage added in v0.0.121

func (*WriteGroupAWSKinesisOptions) ProtoMessage()

func (*WriteGroupAWSKinesisOptions) Reset added in v0.0.121

func (m *WriteGroupAWSKinesisOptions) Reset()

func (*WriteGroupAWSKinesisOptions) String added in v0.0.121

func (m *WriteGroupAWSKinesisOptions) String() string

func (*WriteGroupAWSKinesisOptions) XXX_DiscardUnknown added in v0.0.121

func (m *WriteGroupAWSKinesisOptions) XXX_DiscardUnknown()

func (*WriteGroupAWSKinesisOptions) XXX_Marshal added in v0.0.121

func (m *WriteGroupAWSKinesisOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupAWSKinesisOptions) XXX_Merge added in v0.0.121

func (m *WriteGroupAWSKinesisOptions) XXX_Merge(src proto.Message)

func (*WriteGroupAWSKinesisOptions) XXX_Size added in v0.0.121

func (m *WriteGroupAWSKinesisOptions) XXX_Size() int

func (*WriteGroupAWSKinesisOptions) XXX_Unmarshal added in v0.0.121

func (m *WriteGroupAWSKinesisOptions) XXX_Unmarshal(b []byte) error

type WriteGroupAWSSNSOptions added in v0.0.49

type WriteGroupAWSSNSOptions struct {
	// @gotags: kong:"embed"
	XConn *args.AWSSNSConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AWSSNSWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*WriteGroupAWSSNSOptions) Descriptor added in v0.0.49

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

func (*WriteGroupAWSSNSOptions) GetArgs added in v0.0.49

func (*WriteGroupAWSSNSOptions) GetXConn added in v0.0.49

func (m *WriteGroupAWSSNSOptions) GetXConn() *args.AWSSNSConn

func (*WriteGroupAWSSNSOptions) ProtoMessage added in v0.0.49

func (*WriteGroupAWSSNSOptions) ProtoMessage()

func (*WriteGroupAWSSNSOptions) Reset added in v0.0.49

func (m *WriteGroupAWSSNSOptions) Reset()

func (*WriteGroupAWSSNSOptions) String added in v0.0.49

func (m *WriteGroupAWSSNSOptions) String() string

func (*WriteGroupAWSSNSOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteGroupAWSSNSOptions) XXX_DiscardUnknown()

func (*WriteGroupAWSSNSOptions) XXX_Marshal added in v0.0.49

func (m *WriteGroupAWSSNSOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupAWSSNSOptions) XXX_Merge added in v0.0.49

func (m *WriteGroupAWSSNSOptions) XXX_Merge(src proto.Message)

func (*WriteGroupAWSSNSOptions) XXX_Size added in v0.0.49

func (m *WriteGroupAWSSNSOptions) XXX_Size() int

func (*WriteGroupAWSSNSOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteGroupAWSSNSOptions) XXX_Unmarshal(b []byte) error

type WriteGroupAWSSQSOptions added in v0.0.49

type WriteGroupAWSSQSOptions struct {
	// @gotags: kong:"embed"
	XConn *args.AWSSQSConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AWSSQSWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*WriteGroupAWSSQSOptions) Descriptor added in v0.0.49

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

func (*WriteGroupAWSSQSOptions) GetArgs added in v0.0.49

func (*WriteGroupAWSSQSOptions) GetXConn added in v0.0.49

func (m *WriteGroupAWSSQSOptions) GetXConn() *args.AWSSQSConn

func (*WriteGroupAWSSQSOptions) ProtoMessage added in v0.0.49

func (*WriteGroupAWSSQSOptions) ProtoMessage()

func (*WriteGroupAWSSQSOptions) Reset added in v0.0.49

func (m *WriteGroupAWSSQSOptions) Reset()

func (*WriteGroupAWSSQSOptions) String added in v0.0.49

func (m *WriteGroupAWSSQSOptions) String() string

func (*WriteGroupAWSSQSOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteGroupAWSSQSOptions) XXX_DiscardUnknown()

func (*WriteGroupAWSSQSOptions) XXX_Marshal added in v0.0.49

func (m *WriteGroupAWSSQSOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupAWSSQSOptions) XXX_Merge added in v0.0.49

func (m *WriteGroupAWSSQSOptions) XXX_Merge(src proto.Message)

func (*WriteGroupAWSSQSOptions) XXX_Size added in v0.0.49

func (m *WriteGroupAWSSQSOptions) XXX_Size() int

func (*WriteGroupAWSSQSOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteGroupAWSSQSOptions) XXX_Unmarshal(b []byte) error

type WriteGroupActiveMQOptions added in v0.0.49

type WriteGroupActiveMQOptions struct {
	// @gotags: kong:"embed"
	XConn *args.ActiveMQConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.ActiveMQWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*WriteGroupActiveMQOptions) Descriptor added in v0.0.49

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

func (*WriteGroupActiveMQOptions) GetArgs added in v0.0.49

func (*WriteGroupActiveMQOptions) GetXConn added in v0.0.49

func (*WriteGroupActiveMQOptions) ProtoMessage added in v0.0.49

func (*WriteGroupActiveMQOptions) ProtoMessage()

func (*WriteGroupActiveMQOptions) Reset added in v0.0.49

func (m *WriteGroupActiveMQOptions) Reset()

func (*WriteGroupActiveMQOptions) String added in v0.0.49

func (m *WriteGroupActiveMQOptions) String() string

func (*WriteGroupActiveMQOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteGroupActiveMQOptions) XXX_DiscardUnknown()

func (*WriteGroupActiveMQOptions) XXX_Marshal added in v0.0.49

func (m *WriteGroupActiveMQOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupActiveMQOptions) XXX_Merge added in v0.0.49

func (m *WriteGroupActiveMQOptions) XXX_Merge(src proto.Message)

func (*WriteGroupActiveMQOptions) XXX_Size added in v0.0.49

func (m *WriteGroupActiveMQOptions) XXX_Size() int

func (*WriteGroupActiveMQOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteGroupActiveMQOptions) XXX_Unmarshal(b []byte) error

type WriteGroupAzureEventHubOptions added in v0.0.49

type WriteGroupAzureEventHubOptions struct {
	// @gotags: kong:"embed"
	XConn *args.AzureEventHubConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AzureEventHubWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                     `json:"-"`
	XXX_unrecognized     []byte                       `json:"-"`
	XXX_sizecache        int32                        `json:"-"`
}

func (*WriteGroupAzureEventHubOptions) Descriptor added in v0.0.49

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

func (*WriteGroupAzureEventHubOptions) GetArgs added in v0.0.49

func (*WriteGroupAzureEventHubOptions) GetXConn added in v0.0.49

func (*WriteGroupAzureEventHubOptions) ProtoMessage added in v0.0.49

func (*WriteGroupAzureEventHubOptions) ProtoMessage()

func (*WriteGroupAzureEventHubOptions) Reset added in v0.0.49

func (m *WriteGroupAzureEventHubOptions) Reset()

func (*WriteGroupAzureEventHubOptions) String added in v0.0.49

func (*WriteGroupAzureEventHubOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteGroupAzureEventHubOptions) XXX_DiscardUnknown()

func (*WriteGroupAzureEventHubOptions) XXX_Marshal added in v0.0.49

func (m *WriteGroupAzureEventHubOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupAzureEventHubOptions) XXX_Merge added in v0.0.49

func (m *WriteGroupAzureEventHubOptions) XXX_Merge(src proto.Message)

func (*WriteGroupAzureEventHubOptions) XXX_Size added in v0.0.49

func (m *WriteGroupAzureEventHubOptions) XXX_Size() int

func (*WriteGroupAzureEventHubOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteGroupAzureEventHubOptions) XXX_Unmarshal(b []byte) error

type WriteGroupAzureServiceBusOptions added in v0.0.49

type WriteGroupAzureServiceBusOptions struct {
	// @gotags: kong:"embed"{
	XConn *args.AzureServiceBusConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AzureServiceBusWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                       `json:"-"`
	XXX_unrecognized     []byte                         `json:"-"`
	XXX_sizecache        int32                          `json:"-"`
}

func (*WriteGroupAzureServiceBusOptions) Descriptor added in v0.0.49

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

func (*WriteGroupAzureServiceBusOptions) GetArgs added in v0.0.49

func (*WriteGroupAzureServiceBusOptions) GetXConn added in v0.0.49

func (*WriteGroupAzureServiceBusOptions) ProtoMessage added in v0.0.49

func (*WriteGroupAzureServiceBusOptions) ProtoMessage()

func (*WriteGroupAzureServiceBusOptions) Reset added in v0.0.49

func (*WriteGroupAzureServiceBusOptions) String added in v0.0.49

func (*WriteGroupAzureServiceBusOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteGroupAzureServiceBusOptions) XXX_DiscardUnknown()

func (*WriteGroupAzureServiceBusOptions) XXX_Marshal added in v0.0.49

func (m *WriteGroupAzureServiceBusOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupAzureServiceBusOptions) XXX_Merge added in v0.0.49

func (*WriteGroupAzureServiceBusOptions) XXX_Size added in v0.0.49

func (m *WriteGroupAzureServiceBusOptions) XXX_Size() int

func (*WriteGroupAzureServiceBusOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteGroupAzureServiceBusOptions) XXX_Unmarshal(b []byte) error

type WriteGroupGCPPubSubOptions added in v0.0.49

type WriteGroupGCPPubSubOptions struct {
	// @gotags: kong:"embed"
	XConn *args.GCPPubSubConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.GCPPubSubWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                 `json:"-"`
	XXX_unrecognized     []byte                   `json:"-"`
	XXX_sizecache        int32                    `json:"-"`
}

func (*WriteGroupGCPPubSubOptions) Descriptor added in v0.0.49

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

func (*WriteGroupGCPPubSubOptions) GetArgs added in v0.0.49

func (*WriteGroupGCPPubSubOptions) GetXConn added in v0.0.49

func (*WriteGroupGCPPubSubOptions) ProtoMessage added in v0.0.49

func (*WriteGroupGCPPubSubOptions) ProtoMessage()

func (*WriteGroupGCPPubSubOptions) Reset added in v0.0.49

func (m *WriteGroupGCPPubSubOptions) Reset()

func (*WriteGroupGCPPubSubOptions) String added in v0.0.49

func (m *WriteGroupGCPPubSubOptions) String() string

func (*WriteGroupGCPPubSubOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteGroupGCPPubSubOptions) XXX_DiscardUnknown()

func (*WriteGroupGCPPubSubOptions) XXX_Marshal added in v0.0.49

func (m *WriteGroupGCPPubSubOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupGCPPubSubOptions) XXX_Merge added in v0.0.49

func (m *WriteGroupGCPPubSubOptions) XXX_Merge(src proto.Message)

func (*WriteGroupGCPPubSubOptions) XXX_Size added in v0.0.49

func (m *WriteGroupGCPPubSubOptions) XXX_Size() int

func (*WriteGroupGCPPubSubOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteGroupGCPPubSubOptions) XXX_Unmarshal(b []byte) error

type WriteGroupKafkaOptions added in v0.0.49

type WriteGroupKafkaOptions struct {
	// @gotags: kong:"embed"
	XConn *args.KafkaConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.KafkaWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*WriteGroupKafkaOptions) Descriptor added in v0.0.49

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

func (*WriteGroupKafkaOptions) GetArgs added in v0.0.49

func (*WriteGroupKafkaOptions) GetXConn added in v0.0.49

func (m *WriteGroupKafkaOptions) GetXConn() *args.KafkaConn

func (*WriteGroupKafkaOptions) ProtoMessage added in v0.0.49

func (*WriteGroupKafkaOptions) ProtoMessage()

func (*WriteGroupKafkaOptions) Reset added in v0.0.49

func (m *WriteGroupKafkaOptions) Reset()

func (*WriteGroupKafkaOptions) String added in v0.0.49

func (m *WriteGroupKafkaOptions) String() string

func (*WriteGroupKafkaOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteGroupKafkaOptions) XXX_DiscardUnknown()

func (*WriteGroupKafkaOptions) XXX_Marshal added in v0.0.49

func (m *WriteGroupKafkaOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupKafkaOptions) XXX_Merge added in v0.0.49

func (m *WriteGroupKafkaOptions) XXX_Merge(src proto.Message)

func (*WriteGroupKafkaOptions) XXX_Size added in v0.0.49

func (m *WriteGroupKafkaOptions) XXX_Size() int

func (*WriteGroupKafkaOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteGroupKafkaOptions) XXX_Unmarshal(b []byte) error

type WriteGroupKubeMQQueueOptions added in v0.0.49

type WriteGroupKubeMQQueueOptions struct {
	// @gotags: kong:"embed"
	XConn *args.KubeMQQueueConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.KubeMQQueueWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*WriteGroupKubeMQQueueOptions) Descriptor added in v0.0.49

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

func (*WriteGroupKubeMQQueueOptions) GetArgs added in v0.0.49

func (*WriteGroupKubeMQQueueOptions) GetXConn added in v0.0.49

func (*WriteGroupKubeMQQueueOptions) ProtoMessage added in v0.0.49

func (*WriteGroupKubeMQQueueOptions) ProtoMessage()

func (*WriteGroupKubeMQQueueOptions) Reset added in v0.0.49

func (m *WriteGroupKubeMQQueueOptions) Reset()

func (*WriteGroupKubeMQQueueOptions) String added in v0.0.49

func (*WriteGroupKubeMQQueueOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteGroupKubeMQQueueOptions) XXX_DiscardUnknown()

func (*WriteGroupKubeMQQueueOptions) XXX_Marshal added in v0.0.49

func (m *WriteGroupKubeMQQueueOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupKubeMQQueueOptions) XXX_Merge added in v0.0.49

func (m *WriteGroupKubeMQQueueOptions) XXX_Merge(src proto.Message)

func (*WriteGroupKubeMQQueueOptions) XXX_Size added in v0.0.49

func (m *WriteGroupKubeMQQueueOptions) XXX_Size() int

func (*WriteGroupKubeMQQueueOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteGroupKubeMQQueueOptions) XXX_Unmarshal(b []byte) error

type WriteGroupMQTTOptions added in v0.0.49

type WriteGroupMQTTOptions struct {
	// @gotags: kong:"embed"
	XConn *args.MQTTConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.MQTTWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*WriteGroupMQTTOptions) Descriptor added in v0.0.49

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

func (*WriteGroupMQTTOptions) GetArgs added in v0.0.49

func (*WriteGroupMQTTOptions) GetXConn added in v0.0.49

func (m *WriteGroupMQTTOptions) GetXConn() *args.MQTTConn

func (*WriteGroupMQTTOptions) ProtoMessage added in v0.0.49

func (*WriteGroupMQTTOptions) ProtoMessage()

func (*WriteGroupMQTTOptions) Reset added in v0.0.49

func (m *WriteGroupMQTTOptions) Reset()

func (*WriteGroupMQTTOptions) String added in v0.0.49

func (m *WriteGroupMQTTOptions) String() string

func (*WriteGroupMQTTOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteGroupMQTTOptions) XXX_DiscardUnknown()

func (*WriteGroupMQTTOptions) XXX_Marshal added in v0.0.49

func (m *WriteGroupMQTTOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupMQTTOptions) XXX_Merge added in v0.0.49

func (m *WriteGroupMQTTOptions) XXX_Merge(src proto.Message)

func (*WriteGroupMQTTOptions) XXX_Size added in v0.0.49

func (m *WriteGroupMQTTOptions) XXX_Size() int

func (*WriteGroupMQTTOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteGroupMQTTOptions) XXX_Unmarshal(b []byte) error

type WriteGroupNSQOptions added in v0.0.49

type WriteGroupNSQOptions struct {
	// @gotags: kong:"embed"
	XConn *args.NSQConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NSQWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*WriteGroupNSQOptions) Descriptor added in v0.0.49

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

func (*WriteGroupNSQOptions) GetArgs added in v0.0.49

func (m *WriteGroupNSQOptions) GetArgs() *args.NSQWriteArgs

func (*WriteGroupNSQOptions) GetXConn added in v0.0.49

func (m *WriteGroupNSQOptions) GetXConn() *args.NSQConn

func (*WriteGroupNSQOptions) ProtoMessage added in v0.0.49

func (*WriteGroupNSQOptions) ProtoMessage()

func (*WriteGroupNSQOptions) Reset added in v0.0.49

func (m *WriteGroupNSQOptions) Reset()

func (*WriteGroupNSQOptions) String added in v0.0.49

func (m *WriteGroupNSQOptions) String() string

func (*WriteGroupNSQOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteGroupNSQOptions) XXX_DiscardUnknown()

func (*WriteGroupNSQOptions) XXX_Marshal added in v0.0.49

func (m *WriteGroupNSQOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupNSQOptions) XXX_Merge added in v0.0.49

func (m *WriteGroupNSQOptions) XXX_Merge(src proto.Message)

func (*WriteGroupNSQOptions) XXX_Size added in v0.0.49

func (m *WriteGroupNSQOptions) XXX_Size() int

func (*WriteGroupNSQOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteGroupNSQOptions) XXX_Unmarshal(b []byte) error

type WriteGroupNatsJetstreamOptions added in v0.0.119

type WriteGroupNatsJetstreamOptions struct {
	// @gotags: kong:"embed"
	XConn *args.NatsJetstreamConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NatsJetstreamWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                     `json:"-"`
	XXX_unrecognized     []byte                       `json:"-"`
	XXX_sizecache        int32                        `json:"-"`
}

func (*WriteGroupNatsJetstreamOptions) Descriptor added in v0.0.119

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

func (*WriteGroupNatsJetstreamOptions) GetArgs added in v0.0.119

func (*WriteGroupNatsJetstreamOptions) GetXConn added in v0.0.119

func (*WriteGroupNatsJetstreamOptions) ProtoMessage added in v0.0.119

func (*WriteGroupNatsJetstreamOptions) ProtoMessage()

func (*WriteGroupNatsJetstreamOptions) Reset added in v0.0.119

func (m *WriteGroupNatsJetstreamOptions) Reset()

func (*WriteGroupNatsJetstreamOptions) String added in v0.0.119

func (*WriteGroupNatsJetstreamOptions) XXX_DiscardUnknown added in v0.0.119

func (m *WriteGroupNatsJetstreamOptions) XXX_DiscardUnknown()

func (*WriteGroupNatsJetstreamOptions) XXX_Marshal added in v0.0.119

func (m *WriteGroupNatsJetstreamOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupNatsJetstreamOptions) XXX_Merge added in v0.0.119

func (m *WriteGroupNatsJetstreamOptions) XXX_Merge(src proto.Message)

func (*WriteGroupNatsJetstreamOptions) XXX_Size added in v0.0.119

func (m *WriteGroupNatsJetstreamOptions) XXX_Size() int

func (*WriteGroupNatsJetstreamOptions) XXX_Unmarshal added in v0.0.119

func (m *WriteGroupNatsJetstreamOptions) XXX_Unmarshal(b []byte) error

type WriteGroupNatsOptions added in v0.0.49

type WriteGroupNatsOptions struct {
	// @gotags: kong:"embed"
	XConn *args.NatsConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NatsWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*WriteGroupNatsOptions) Descriptor added in v0.0.49

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

func (*WriteGroupNatsOptions) GetArgs added in v0.0.49

func (*WriteGroupNatsOptions) GetXConn added in v0.0.49

func (m *WriteGroupNatsOptions) GetXConn() *args.NatsConn

func (*WriteGroupNatsOptions) ProtoMessage added in v0.0.49

func (*WriteGroupNatsOptions) ProtoMessage()

func (*WriteGroupNatsOptions) Reset added in v0.0.49

func (m *WriteGroupNatsOptions) Reset()

func (*WriteGroupNatsOptions) String added in v0.0.49

func (m *WriteGroupNatsOptions) String() string

func (*WriteGroupNatsOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteGroupNatsOptions) XXX_DiscardUnknown()

func (*WriteGroupNatsOptions) XXX_Marshal added in v0.0.49

func (m *WriteGroupNatsOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupNatsOptions) XXX_Merge added in v0.0.49

func (m *WriteGroupNatsOptions) XXX_Merge(src proto.Message)

func (*WriteGroupNatsOptions) XXX_Size added in v0.0.49

func (m *WriteGroupNatsOptions) XXX_Size() int

func (*WriteGroupNatsOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteGroupNatsOptions) XXX_Unmarshal(b []byte) error

type WriteGroupNatsStreamingOptions added in v0.0.49

type WriteGroupNatsStreamingOptions struct {
	// @gotags: kong:"embed"
	XConn *args.NatsStreamingConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NatsStreamingWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                     `json:"-"`
	XXX_unrecognized     []byte                       `json:"-"`
	XXX_sizecache        int32                        `json:"-"`
}

func (*WriteGroupNatsStreamingOptions) Descriptor added in v0.0.49

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

func (*WriteGroupNatsStreamingOptions) GetArgs added in v0.0.49

func (*WriteGroupNatsStreamingOptions) GetXConn added in v0.0.49

func (*WriteGroupNatsStreamingOptions) ProtoMessage added in v0.0.49

func (*WriteGroupNatsStreamingOptions) ProtoMessage()

func (*WriteGroupNatsStreamingOptions) Reset added in v0.0.49

func (m *WriteGroupNatsStreamingOptions) Reset()

func (*WriteGroupNatsStreamingOptions) String added in v0.0.49

func (*WriteGroupNatsStreamingOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteGroupNatsStreamingOptions) XXX_DiscardUnknown()

func (*WriteGroupNatsStreamingOptions) XXX_Marshal added in v0.0.49

func (m *WriteGroupNatsStreamingOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupNatsStreamingOptions) XXX_Merge added in v0.0.49

func (m *WriteGroupNatsStreamingOptions) XXX_Merge(src proto.Message)

func (*WriteGroupNatsStreamingOptions) XXX_Size added in v0.0.49

func (m *WriteGroupNatsStreamingOptions) XXX_Size() int

func (*WriteGroupNatsStreamingOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteGroupNatsStreamingOptions) XXX_Unmarshal(b []byte) error

type WriteGroupPulsarOptions added in v0.0.49

type WriteGroupPulsarOptions struct {
	// @gotags: kong:"embed"
	XConn *args.PulsarConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.PulsarWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*WriteGroupPulsarOptions) Descriptor added in v0.0.49

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

func (*WriteGroupPulsarOptions) GetArgs added in v0.0.49

func (*WriteGroupPulsarOptions) GetXConn added in v0.0.49

func (m *WriteGroupPulsarOptions) GetXConn() *args.PulsarConn

func (*WriteGroupPulsarOptions) ProtoMessage added in v0.0.49

func (*WriteGroupPulsarOptions) ProtoMessage()

func (*WriteGroupPulsarOptions) Reset added in v0.0.49

func (m *WriteGroupPulsarOptions) Reset()

func (*WriteGroupPulsarOptions) String added in v0.0.49

func (m *WriteGroupPulsarOptions) String() string

func (*WriteGroupPulsarOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteGroupPulsarOptions) XXX_DiscardUnknown()

func (*WriteGroupPulsarOptions) XXX_Marshal added in v0.0.49

func (m *WriteGroupPulsarOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupPulsarOptions) XXX_Merge added in v0.0.49

func (m *WriteGroupPulsarOptions) XXX_Merge(src proto.Message)

func (*WriteGroupPulsarOptions) XXX_Size added in v0.0.49

func (m *WriteGroupPulsarOptions) XXX_Size() int

func (*WriteGroupPulsarOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteGroupPulsarOptions) XXX_Unmarshal(b []byte) error

type WriteGroupRabbitOptions added in v0.0.49

type WriteGroupRabbitOptions struct {
	// @gotags: kong:"embed"
	XConn *args.RabbitConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RabbitWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*WriteGroupRabbitOptions) Descriptor added in v0.0.49

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

func (*WriteGroupRabbitOptions) GetArgs added in v0.0.49

func (*WriteGroupRabbitOptions) GetXConn added in v0.0.49

func (m *WriteGroupRabbitOptions) GetXConn() *args.RabbitConn

func (*WriteGroupRabbitOptions) ProtoMessage added in v0.0.49

func (*WriteGroupRabbitOptions) ProtoMessage()

func (*WriteGroupRabbitOptions) Reset added in v0.0.49

func (m *WriteGroupRabbitOptions) Reset()

func (*WriteGroupRabbitOptions) String added in v0.0.49

func (m *WriteGroupRabbitOptions) String() string

func (*WriteGroupRabbitOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteGroupRabbitOptions) XXX_DiscardUnknown()

func (*WriteGroupRabbitOptions) XXX_Marshal added in v0.0.49

func (m *WriteGroupRabbitOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupRabbitOptions) XXX_Merge added in v0.0.49

func (m *WriteGroupRabbitOptions) XXX_Merge(src proto.Message)

func (*WriteGroupRabbitOptions) XXX_Size added in v0.0.49

func (m *WriteGroupRabbitOptions) XXX_Size() int

func (*WriteGroupRabbitOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteGroupRabbitOptions) XXX_Unmarshal(b []byte) error

type WriteGroupRabbitStreamsOptions added in v0.0.49

type WriteGroupRabbitStreamsOptions struct {
	// @gotags: kong:"embed"
	XConn *args.RabbitStreamsConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RabbitStreamsWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                     `json:"-"`
	XXX_unrecognized     []byte                       `json:"-"`
	XXX_sizecache        int32                        `json:"-"`
}

func (*WriteGroupRabbitStreamsOptions) Descriptor added in v0.0.49

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

func (*WriteGroupRabbitStreamsOptions) GetArgs added in v0.0.49

func (*WriteGroupRabbitStreamsOptions) GetXConn added in v0.0.49

func (*WriteGroupRabbitStreamsOptions) ProtoMessage added in v0.0.49

func (*WriteGroupRabbitStreamsOptions) ProtoMessage()

func (*WriteGroupRabbitStreamsOptions) Reset added in v0.0.49

func (m *WriteGroupRabbitStreamsOptions) Reset()

func (*WriteGroupRabbitStreamsOptions) String added in v0.0.49

func (*WriteGroupRabbitStreamsOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteGroupRabbitStreamsOptions) XXX_DiscardUnknown()

func (*WriteGroupRabbitStreamsOptions) XXX_Marshal added in v0.0.49

func (m *WriteGroupRabbitStreamsOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupRabbitStreamsOptions) XXX_Merge added in v0.0.49

func (m *WriteGroupRabbitStreamsOptions) XXX_Merge(src proto.Message)

func (*WriteGroupRabbitStreamsOptions) XXX_Size added in v0.0.49

func (m *WriteGroupRabbitStreamsOptions) XXX_Size() int

func (*WriteGroupRabbitStreamsOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteGroupRabbitStreamsOptions) XXX_Unmarshal(b []byte) error

type WriteGroupRedisPubSubOptions added in v0.0.49

type WriteGroupRedisPubSubOptions struct {
	// @gotags: kong:"embed"
	XConn *args.RedisPubSubConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RedisPubSubWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*WriteGroupRedisPubSubOptions) Descriptor added in v0.0.49

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

func (*WriteGroupRedisPubSubOptions) GetArgs added in v0.0.49

func (*WriteGroupRedisPubSubOptions) GetXConn added in v0.0.49

func (*WriteGroupRedisPubSubOptions) ProtoMessage added in v0.0.49

func (*WriteGroupRedisPubSubOptions) ProtoMessage()

func (*WriteGroupRedisPubSubOptions) Reset added in v0.0.49

func (m *WriteGroupRedisPubSubOptions) Reset()

func (*WriteGroupRedisPubSubOptions) String added in v0.0.49

func (*WriteGroupRedisPubSubOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteGroupRedisPubSubOptions) XXX_DiscardUnknown()

func (*WriteGroupRedisPubSubOptions) XXX_Marshal added in v0.0.49

func (m *WriteGroupRedisPubSubOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupRedisPubSubOptions) XXX_Merge added in v0.0.49

func (m *WriteGroupRedisPubSubOptions) XXX_Merge(src proto.Message)

func (*WriteGroupRedisPubSubOptions) XXX_Size added in v0.0.49

func (m *WriteGroupRedisPubSubOptions) XXX_Size() int

func (*WriteGroupRedisPubSubOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteGroupRedisPubSubOptions) XXX_Unmarshal(b []byte) error

type WriteGroupRedisStreamsOptions added in v0.0.49

type WriteGroupRedisStreamsOptions struct {
	// @gotags: kong:"embed"
	XConn *args.RedisStreamsConn `protobuf:"bytes,1,opt,name=_conn,json=Conn,proto3" json:"_conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RedisStreamsWriteArgs `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

func (*WriteGroupRedisStreamsOptions) Descriptor added in v0.0.49

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

func (*WriteGroupRedisStreamsOptions) GetArgs added in v0.0.49

func (*WriteGroupRedisStreamsOptions) GetXConn added in v0.0.49

func (*WriteGroupRedisStreamsOptions) ProtoMessage added in v0.0.49

func (*WriteGroupRedisStreamsOptions) ProtoMessage()

func (*WriteGroupRedisStreamsOptions) Reset added in v0.0.49

func (m *WriteGroupRedisStreamsOptions) Reset()

func (*WriteGroupRedisStreamsOptions) String added in v0.0.49

func (*WriteGroupRedisStreamsOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteGroupRedisStreamsOptions) XXX_DiscardUnknown()

func (*WriteGroupRedisStreamsOptions) XXX_Marshal added in v0.0.49

func (m *WriteGroupRedisStreamsOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteGroupRedisStreamsOptions) XXX_Merge added in v0.0.49

func (m *WriteGroupRedisStreamsOptions) XXX_Merge(src proto.Message)

func (*WriteGroupRedisStreamsOptions) XXX_Size added in v0.0.49

func (m *WriteGroupRedisStreamsOptions) XXX_Size() int

func (*WriteGroupRedisStreamsOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteGroupRedisStreamsOptions) XXX_Unmarshal(b []byte) error

type WriteOptions added in v0.0.49

type WriteOptions struct {
	// Required for desktop; ignored in CLI.
	// @gotags: kong:"-"
	ConnectionId string `protobuf:"bytes,1,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty" kong:"-"`
	// @gotags: kong:"embed"
	Record *records.WriteRecord `protobuf:"bytes,2,opt,name=record,proto3" json:"record,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	EncodeOptions *encoding.EncodeOptions `protobuf:"bytes,3,opt,name=encode_options,json=encodeOptions,proto3" json:"encode_options,omitempty" kong:"embed"`
	// Optional; CLI-specific and non-backend-specific options
	// @gotags: kong:"embed"
	XCliOptions *WriteCLIOptions `protobuf:"bytes,1000,opt,name=_cli_options,json=CliOptions,proto3" json:"_cli_options,omitempty" kong:"embed"`
	// @gotags: kong:"cmd,help='Apache Kafka'"
	Kafka *WriteGroupKafkaOptions `protobuf:"bytes,100,opt,name=kafka,proto3" json:"kafka,omitempty" kong:"cmd,help='Apache Kafka'"`
	// @gotags: kong:"cmd,help='Apache ActiveMQ'"
	Activemq *WriteGroupActiveMQOptions `protobuf:"bytes,101,opt,name=activemq,proto3" json:"activemq,omitempty" kong:"cmd,help='Apache ActiveMQ'"`
	// @gotags: kong:"cmd,help='AWS Simple Queue System'"
	AwsSqs *WriteGroupAWSSQSOptions `protobuf:"bytes,102,opt,name=aws_sqs,json=awsSqs,proto3" json:"aws_sqs,omitempty" kong:"cmd,help='AWS Simple Queue System'"`
	// @gotags: kong:"cmd,help='AWS Simple Notification System'"
	AwsSns *WriteGroupAWSSNSOptions `` /* 130-byte string literal not displayed */
	// @gotags: kong:"cmd,help='NATS'"
	Nats *WriteGroupNatsOptions `protobuf:"bytes,104,opt,name=nats,proto3" json:"nats,omitempty" kong:"cmd,help='NATS'"`
	// @gotags: kong:"cmd,help='NATS Streaming'"
	NatsStreaming *WriteGroupNatsStreamingOptions `` /* 135-byte string literal not displayed */
	// @gotags: kong:"cmd,help='NSQ'"
	Nsq *WriteGroupNSQOptions `protobuf:"bytes,106,opt,name=nsq,proto3" json:"nsq,omitempty" kong:"cmd,help='NSQ'"`
	// @gotags: kong:"cmd,help='Apache Pulsar'"
	Pulsar *WriteGroupPulsarOptions `protobuf:"bytes,107,opt,name=pulsar,proto3" json:"pulsar,omitempty" kong:"cmd,help='Apache Pulsar'"`
	// @gotags: kong:"cmd,help='RabbitMQ'"
	Rabbit *WriteGroupRabbitOptions `protobuf:"bytes,108,opt,name=rabbit,proto3" json:"rabbit,omitempty" kong:"cmd,help='RabbitMQ'"`
	// @gotags: kong:"cmd,help='RabbitMQ Streams'"
	RabbitStreams *WriteGroupRabbitStreamsOptions `` /* 137-byte string literal not displayed */
	// @gotags: kong:"cmd,help='MQTT'"
	Mqtt *WriteGroupMQTTOptions `protobuf:"bytes,110,opt,name=mqtt,proto3" json:"mqtt,omitempty" kong:"cmd,help='MQTT'"`
	// @gotags: kong:"cmd,help='Azure Service Bus'"
	AzureServiceBus *WriteGroupAzureServiceBusOptions `` /* 146-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Azure Event Hub'"
	AzureEventHub *WriteGroupAzureEventHubOptions `` /* 138-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Google Cloud Platform Pub/Sub'"
	GcpPubsub *WriteGroupGCPPubSubOptions `` /* 138-byte string literal not displayed */
	// @gotags: kong:"cmd,help='KubeMQ Queue'"
	KubemqQueue *WriteGroupKubeMQQueueOptions `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis PubSub'"
	RedisPubsub *WriteGroupRedisPubSubOptions `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis Streams'"
	RedisStreams *WriteGroupRedisStreamsOptions `` /* 131-byte string literal not displayed */
	// @gotags: kong:"cmd,help='NATS JetStream'"
	NatsJetstream *WriteGroupNatsJetstreamOptions `` /* 135-byte string literal not displayed */
	// @gotags: kong:"cmd,help='AWS Kinesis Streams'"
	AwsKinesis           *WriteGroupAWSKinesisOptions `` /* 131-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                     `json:"-"`
	XXX_unrecognized     []byte                       `json:"-"`
	XXX_sizecache        int32                        `json:"-"`
}

Write is the structure that backends accept for facilitating a write. NOTE: _conn is only used by the CLI - desktop does not need to set it.

func (*WriteOptions) Descriptor added in v0.0.49

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

func (*WriteOptions) GetActivemq added in v0.0.49

func (m *WriteOptions) GetActivemq() *WriteGroupActiveMQOptions

func (*WriteOptions) GetAwsKinesis added in v0.0.121

func (m *WriteOptions) GetAwsKinesis() *WriteGroupAWSKinesisOptions

func (*WriteOptions) GetAwsSns added in v0.0.114

func (m *WriteOptions) GetAwsSns() *WriteGroupAWSSNSOptions

func (*WriteOptions) GetAwsSqs added in v0.0.114

func (m *WriteOptions) GetAwsSqs() *WriteGroupAWSSQSOptions

func (*WriteOptions) GetAzureEventHub added in v0.0.49

func (m *WriteOptions) GetAzureEventHub() *WriteGroupAzureEventHubOptions

func (*WriteOptions) GetAzureServiceBus added in v0.0.49

func (m *WriteOptions) GetAzureServiceBus() *WriteGroupAzureServiceBusOptions

func (*WriteOptions) GetConnectionId added in v0.0.49

func (m *WriteOptions) GetConnectionId() string

func (*WriteOptions) GetEncodeOptions added in v0.0.50

func (m *WriteOptions) GetEncodeOptions() *encoding.EncodeOptions

func (*WriteOptions) GetGcpPubsub added in v0.0.49

func (m *WriteOptions) GetGcpPubsub() *WriteGroupGCPPubSubOptions

func (*WriteOptions) GetKafka added in v0.0.49

func (m *WriteOptions) GetKafka() *WriteGroupKafkaOptions

func (*WriteOptions) GetKubemqQueue added in v0.0.49

func (m *WriteOptions) GetKubemqQueue() *WriteGroupKubeMQQueueOptions

func (*WriteOptions) GetMqtt added in v0.0.49

func (m *WriteOptions) GetMqtt() *WriteGroupMQTTOptions

func (*WriteOptions) GetNats added in v0.0.49

func (m *WriteOptions) GetNats() *WriteGroupNatsOptions

func (*WriteOptions) GetNatsJetstream added in v0.0.119

func (m *WriteOptions) GetNatsJetstream() *WriteGroupNatsJetstreamOptions

func (*WriteOptions) GetNatsStreaming added in v0.0.49

func (m *WriteOptions) GetNatsStreaming() *WriteGroupNatsStreamingOptions

func (*WriteOptions) GetNsq added in v0.0.49

func (m *WriteOptions) GetNsq() *WriteGroupNSQOptions

func (*WriteOptions) GetPulsar added in v0.0.49

func (m *WriteOptions) GetPulsar() *WriteGroupPulsarOptions

func (*WriteOptions) GetRabbit added in v0.0.49

func (m *WriteOptions) GetRabbit() *WriteGroupRabbitOptions

func (*WriteOptions) GetRabbitStreams added in v0.0.49

func (m *WriteOptions) GetRabbitStreams() *WriteGroupRabbitStreamsOptions

func (*WriteOptions) GetRecord added in v0.0.49

func (m *WriteOptions) GetRecord() *records.WriteRecord

func (*WriteOptions) GetRedisPubsub added in v0.0.49

func (m *WriteOptions) GetRedisPubsub() *WriteGroupRedisPubSubOptions

func (*WriteOptions) GetRedisStreams added in v0.0.49

func (m *WriteOptions) GetRedisStreams() *WriteGroupRedisStreamsOptions

func (*WriteOptions) GetXCliOptions added in v0.0.49

func (m *WriteOptions) GetXCliOptions() *WriteCLIOptions

func (*WriteOptions) ProtoMessage added in v0.0.49

func (*WriteOptions) ProtoMessage()

func (*WriteOptions) Reset added in v0.0.49

func (m *WriteOptions) Reset()

func (*WriteOptions) String added in v0.0.49

func (m *WriteOptions) String() string

func (*WriteOptions) XXX_DiscardUnknown added in v0.0.49

func (m *WriteOptions) XXX_DiscardUnknown()

func (*WriteOptions) XXX_Marshal added in v0.0.49

func (m *WriteOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WriteOptions) XXX_Merge added in v0.0.49

func (m *WriteOptions) XXX_Merge(src proto.Message)

func (*WriteOptions) XXX_Size added in v0.0.49

func (m *WriteOptions) XXX_Size() int

func (*WriteOptions) XXX_Unmarshal added in v0.0.49

func (m *WriteOptions) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

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