protos

package
v0.0.46 Latest Latest
Warning

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

Go to latest
Published: Sep 8, 2021 License: Apache-2.0 Imports: 11 Imported by: 4

Documentation

Index

Constants

This section is empty.

Variables

View Source
var BackendType_name = map[int32]string{
	0:  "BACKEND_TYPE_UNSET",
	1:  "BACKEND_TYPE_KAFKA",
	2:  "BACKEND_TYPE_RABBIT",
	3:  "BACKEND_TYPE_RABBIT_STREAMS",
	4:  "BACKEND_TYPE_NSQ",
	5:  "BACKEND_TYPE_NATS",
	6:  "BACKEND_TYPE_NATS_STREAMING",
	7:  "BACKEND_TYPE_GCP_PUBSUB",
	8:  "BACKEND_TYPE_AZURE_SERVICE_BUS",
	9:  "BACKEND_TYPE_AZURE_EVENT_HUB",
	10: "BACKEND_TYPE_AWS_SQS",
	11: "BACKEND_TYPE_AWS_SNS",
	12: "BACKEND_TYPE_REDIS_PUBSUB",
	13: "BACKEND_TYPE_REDIS_STREAMS",
	14: "BACKEND_TYPE_ACTIVEMQ",
	15: "BACKEND_TYPE_PULSAR",
	16: "BACKEND_TYPE_MQTT",
	17: "BACKEND_TYPE_POSTGRES_CDC",
	18: "BACKEND_TYPE_MONGODB_CDC",
	19: "BACKEND_TYPE_KUBE_MQ",
}
View Source
var BackendType_value = map[string]int32{
	"BACKEND_TYPE_UNSET":             0,
	"BACKEND_TYPE_KAFKA":             1,
	"BACKEND_TYPE_RABBIT":            2,
	"BACKEND_TYPE_RABBIT_STREAMS":    3,
	"BACKEND_TYPE_NSQ":               4,
	"BACKEND_TYPE_NATS":              5,
	"BACKEND_TYPE_NATS_STREAMING":    6,
	"BACKEND_TYPE_GCP_PUBSUB":        7,
	"BACKEND_TYPE_AZURE_SERVICE_BUS": 8,
	"BACKEND_TYPE_AZURE_EVENT_HUB":   9,
	"BACKEND_TYPE_AWS_SQS":           10,
	"BACKEND_TYPE_AWS_SNS":           11,
	"BACKEND_TYPE_REDIS_PUBSUB":      12,
	"BACKEND_TYPE_REDIS_STREAMS":     13,
	"BACKEND_TYPE_ACTIVEMQ":          14,
	"BACKEND_TYPE_PULSAR":            15,
	"BACKEND_TYPE_MQTT":              16,
	"BACKEND_TYPE_POSTGRES_CDC":      17,
	"BACKEND_TYPE_MONGODB_CDC":       18,
	"BACKEND_TYPE_KUBE_MQ":           19,
}
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 GithubEvent_Type_name = map[int32]string{
	0: "UNSET",
	1: "AUTH_RESPONSE",
	2: "INSTALL_CREATED",
	3: "INSTALL_UPDATED",
	4: "INSTALL_DELETED",
	5: "PULL_CREATED",
	6: "PULL_MERGED",
}
View Source
var GithubEvent_Type_value = map[string]int32{
	"UNSET":           0,
	"AUTH_RESPONSE":   1,
	"INSTALL_CREATED": 2,
	"INSTALL_UPDATED": 3,
	"INSTALL_DELETED": 4,
	"PULL_CREATED":    5,
	"PULL_MERGED":     6,
}
View Source
var PollGithubAuthResponse_Status_name = map[int32]string{
	0: "PENDING",
	1: "SUCCESS",
	2: "FAILED",
}
View Source
var PollGithubAuthResponse_Status_value = map[string]int32{
	"PENDING": 0,
	"SUCCESS": 1,
	"FAILED":  2,
}

Functions

func RegisterGithubServerServer added in v0.0.41

func RegisterGithubServerServer(s *grpc.Server, srv GithubServerServer)

func RegisterPlumberServerServer

func RegisterPlumberServerServer(s *grpc.Server, srv PlumberServerServer)

Types

type AuthResponse added in v0.0.41

type AuthResponse struct {
	Authorized           bool     `protobuf:"varint,1,opt,name=authorized,proto3" json:"authorized,omitempty"`
	Message              string   `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

AuthResponse is sent by github-service and received by plumber GithubServer.Connect()

func (*AuthResponse) Descriptor added in v0.0.41

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

func (*AuthResponse) GetAuthorized added in v0.0.41

func (m *AuthResponse) GetAuthorized() bool

func (*AuthResponse) GetMessage added in v0.0.41

func (m *AuthResponse) GetMessage() string

func (*AuthResponse) ProtoMessage added in v0.0.41

func (*AuthResponse) ProtoMessage()

func (*AuthResponse) Reset added in v0.0.41

func (m *AuthResponse) Reset()

func (*AuthResponse) String added in v0.0.41

func (m *AuthResponse) String() string

func (*AuthResponse) XXX_DiscardUnknown added in v0.0.41

func (m *AuthResponse) XXX_DiscardUnknown()

func (*AuthResponse) XXX_Marshal added in v0.0.41

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

func (*AuthResponse) XXX_Merge added in v0.0.41

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

func (*AuthResponse) XXX_Size added in v0.0.41

func (m *AuthResponse) XXX_Size() int

func (*AuthResponse) XXX_Unmarshal added in v0.0.41

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

type BackendType added in v0.0.46

type BackendType int32
const (
	BackendType_BACKEND_TYPE_UNSET             BackendType = 0
	BackendType_BACKEND_TYPE_KAFKA             BackendType = 1
	BackendType_BACKEND_TYPE_RABBIT            BackendType = 2
	BackendType_BACKEND_TYPE_RABBIT_STREAMS    BackendType = 3
	BackendType_BACKEND_TYPE_NSQ               BackendType = 4
	BackendType_BACKEND_TYPE_NATS              BackendType = 5
	BackendType_BACKEND_TYPE_NATS_STREAMING    BackendType = 6
	BackendType_BACKEND_TYPE_GCP_PUBSUB        BackendType = 7
	BackendType_BACKEND_TYPE_AZURE_SERVICE_BUS BackendType = 8
	BackendType_BACKEND_TYPE_AZURE_EVENT_HUB   BackendType = 9
	BackendType_BACKEND_TYPE_AWS_SQS           BackendType = 10
	BackendType_BACKEND_TYPE_AWS_SNS           BackendType = 11
	BackendType_BACKEND_TYPE_REDIS_PUBSUB      BackendType = 12
	BackendType_BACKEND_TYPE_REDIS_STREAMS     BackendType = 13
	BackendType_BACKEND_TYPE_ACTIVEMQ          BackendType = 14
	BackendType_BACKEND_TYPE_PULSAR            BackendType = 15
	BackendType_BACKEND_TYPE_MQTT              BackendType = 16
	BackendType_BACKEND_TYPE_POSTGRES_CDC      BackendType = 17
	BackendType_BACKEND_TYPE_MONGODB_CDC       BackendType = 18
	BackendType_BACKEND_TYPE_KUBE_MQ           BackendType = 19
)

func (BackendType) EnumDescriptor added in v0.0.46

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

func (BackendType) String added in v0.0.46

func (x BackendType) String() string

type CLIOptions added in v0.0.42

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 *ReadConfig `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 *WriteConfig `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 *RelayConfig `` /* 129-byte string literal not displayed */
	// @gotags: kong:"cmd,group=server,help='Run plumber in server mode'"
	Server               *ServerConfig `protobuf:"bytes,5,opt,name=server,proto3" json:"server,omitempty" kong:"cmd,group=server,help='Run plumber in server mode'"`
	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.42

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

func (*CLIOptions) GetGlobal added in v0.0.42

func (m *CLIOptions) GetGlobal() *GlobalCLIOptions

func (*CLIOptions) GetRead added in v0.0.42

func (m *CLIOptions) GetRead() *ReadConfig

func (*CLIOptions) GetRelay added in v0.0.42

func (m *CLIOptions) GetRelay() *RelayConfig

func (*CLIOptions) GetServer added in v0.0.42

func (m *CLIOptions) GetServer() *ServerConfig

func (*CLIOptions) GetWrite added in v0.0.42

func (m *CLIOptions) GetWrite() *WriteConfig

func (*CLIOptions) ProtoMessage added in v0.0.42

func (*CLIOptions) ProtoMessage()

func (*CLIOptions) Reset added in v0.0.42

func (m *CLIOptions) Reset()

func (*CLIOptions) String added in v0.0.42

func (m *CLIOptions) String() string

func (*CLIOptions) XXX_DiscardUnknown added in v0.0.42

func (m *CLIOptions) XXX_DiscardUnknown()

func (*CLIOptions) XXX_Marshal added in v0.0.42

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

func (*CLIOptions) XXX_Merge added in v0.0.42

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

func (*CLIOptions) XXX_Size added in v0.0.42

func (m *CLIOptions) XXX_Size() int

func (*CLIOptions) XXX_Unmarshal added in v0.0.42

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

type CLIRelayConfig added in v0.0.39

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

func (*CLIRelayConfig) Descriptor added in v0.0.39

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

func (*CLIRelayConfig) GetHttpListenAddress added in v0.0.39

func (m *CLIRelayConfig) GetHttpListenAddress() string

func (*CLIRelayConfig) ProtoMessage added in v0.0.39

func (*CLIRelayConfig) ProtoMessage()

func (*CLIRelayConfig) Reset added in v0.0.39

func (m *CLIRelayConfig) Reset()

func (*CLIRelayConfig) String added in v0.0.39

func (m *CLIRelayConfig) String() string

func (*CLIRelayConfig) XXX_DiscardUnknown added in v0.0.39

func (m *CLIRelayConfig) XXX_DiscardUnknown()

func (*CLIRelayConfig) XXX_Marshal added in v0.0.39

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

func (*CLIRelayConfig) XXX_Merge added in v0.0.39

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

func (*CLIRelayConfig) XXX_Size added in v0.0.39

func (m *CLIRelayConfig) XXX_Size() int

func (*CLIRelayConfig) XXX_Unmarshal added in v0.0.39

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

type ConnectAuthRequest added in v0.0.41

type ConnectAuthRequest struct {
	// Batch API token
	ApiToken string `protobuf:"bytes,1,opt,name=api_token,json=apiToken,proto3" json:"api_token,omitempty"`
	// Plumber Cluster ID
	ClusterId            string   `protobuf:"bytes,2,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Sent by plumber, received by github-service

func (*ConnectAuthRequest) Descriptor added in v0.0.41

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

func (*ConnectAuthRequest) GetApiToken added in v0.0.41

func (m *ConnectAuthRequest) GetApiToken() string

func (*ConnectAuthRequest) GetClusterId added in v0.0.41

func (m *ConnectAuthRequest) GetClusterId() string

func (*ConnectAuthRequest) ProtoMessage added in v0.0.41

func (*ConnectAuthRequest) ProtoMessage()

func (*ConnectAuthRequest) Reset added in v0.0.41

func (m *ConnectAuthRequest) Reset()

func (*ConnectAuthRequest) String added in v0.0.41

func (m *ConnectAuthRequest) String() string

func (*ConnectAuthRequest) XXX_DiscardUnknown added in v0.0.41

func (m *ConnectAuthRequest) XXX_DiscardUnknown()

func (*ConnectAuthRequest) XXX_Marshal added in v0.0.41

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

func (*ConnectAuthRequest) XXX_Merge added in v0.0.41

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

func (*ConnectAuthRequest) XXX_Size added in v0.0.41

func (m *ConnectAuthRequest) XXX_Size() int

func (*ConnectAuthRequest) XXX_Unmarshal added in v0.0.41

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

type ConnectionConfig added in v0.0.35

type ConnectionConfig 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"`
	// Used internally by plumber
	XId string `protobuf:"bytes,3,opt,name=_id,json=Id,proto3" json:"_id,omitempty"`
	// Types that are valid to be assigned to Conn:
	//	*ConnectionConfig_Kafka
	//	*ConnectionConfig_ActiveMq
	//	*ConnectionConfig_Awssqs
	//	*ConnectionConfig_Awssns
	//	*ConnectionConfig_Mongo
	//	*ConnectionConfig_Nats
	//	*ConnectionConfig_NatsStreaming
	//	*ConnectionConfig_Nsq
	//	*ConnectionConfig_Postgres
	//	*ConnectionConfig_Pulsar
	//	*ConnectionConfig_Rabbit
	//	*ConnectionConfig_RabbitStreams
	//	*ConnectionConfig_RedisPubsub
	//	*ConnectionConfig_RedisStreams
	//	*ConnectionConfig_AzureEventHub
	//	*ConnectionConfig_AzureServiceBus
	//	*ConnectionConfig_Mqtt
	//	*ConnectionConfig_KubemqQueue
	//	*ConnectionConfig_GcpPubsub
	Conn                 isConnectionConfig_Conn `protobuf_oneof:"conn"`
	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 (*ConnectionConfig) Descriptor added in v0.0.35

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

func (*ConnectionConfig) GetActiveMq added in v0.0.35

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

func (*ConnectionConfig) GetAwssns added in v0.0.35

func (m *ConnectionConfig) GetAwssns() *args.AWSSNSConn

func (*ConnectionConfig) GetAwssqs added in v0.0.35

func (m *ConnectionConfig) GetAwssqs() *args.AWSSQSConn

func (*ConnectionConfig) GetAzureEventHub added in v0.0.35

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

func (*ConnectionConfig) GetAzureServiceBus added in v0.0.35

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

func (*ConnectionConfig) GetConn added in v0.0.35

func (m *ConnectionConfig) GetConn() isConnectionConfig_Conn

func (*ConnectionConfig) GetGcpPubsub added in v0.0.42

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

func (*ConnectionConfig) GetKafka added in v0.0.35

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

func (*ConnectionConfig) GetKubemqQueue added in v0.0.42

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

func (*ConnectionConfig) GetMongo added in v0.0.35

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

func (*ConnectionConfig) GetMqtt added in v0.0.42

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

func (*ConnectionConfig) GetName added in v0.0.35

func (m *ConnectionConfig) GetName() string

func (*ConnectionConfig) GetNats added in v0.0.35

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

func (*ConnectionConfig) GetNatsStreaming added in v0.0.35

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

func (*ConnectionConfig) GetNotes added in v0.0.35

func (m *ConnectionConfig) GetNotes() string

func (*ConnectionConfig) GetNsq added in v0.0.35

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

func (*ConnectionConfig) GetPostgres added in v0.0.35

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

func (*ConnectionConfig) GetPulsar added in v0.0.35

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

func (*ConnectionConfig) GetRabbit added in v0.0.35

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

func (*ConnectionConfig) GetRabbitStreams added in v0.0.35

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

func (*ConnectionConfig) GetRedisPubsub added in v0.0.35

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

func (*ConnectionConfig) GetRedisStreams added in v0.0.35

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

func (*ConnectionConfig) GetXId added in v0.0.46

func (m *ConnectionConfig) GetXId() string

func (*ConnectionConfig) ProtoMessage added in v0.0.35

func (*ConnectionConfig) ProtoMessage()

func (*ConnectionConfig) Reset added in v0.0.35

func (m *ConnectionConfig) Reset()

func (*ConnectionConfig) String added in v0.0.35

func (m *ConnectionConfig) String() string

func (*ConnectionConfig) XXX_DiscardUnknown added in v0.0.35

func (m *ConnectionConfig) XXX_DiscardUnknown()

func (*ConnectionConfig) XXX_Marshal added in v0.0.35

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

func (*ConnectionConfig) XXX_Merge added in v0.0.35

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

func (*ConnectionConfig) XXX_OneofWrappers added in v0.0.35

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

XXX_OneofWrappers is for the internal use of the proto package.

func (*ConnectionConfig) XXX_Size added in v0.0.35

func (m *ConnectionConfig) XXX_Size() int

func (*ConnectionConfig) XXX_Unmarshal added in v0.0.35

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

type ConnectionConfig_ActiveMq added in v0.0.35

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

type ConnectionConfig_Awssns added in v0.0.35

type ConnectionConfig_Awssns struct {
	Awssns *args.AWSSNSConn `protobuf:"bytes,103,opt,name=awssns,proto3,oneof"`
}

type ConnectionConfig_Awssqs added in v0.0.35

type ConnectionConfig_Awssqs struct {
	Awssqs *args.AWSSQSConn `protobuf:"bytes,102,opt,name=awssqs,proto3,oneof"`
}

type ConnectionConfig_AzureEventHub added in v0.0.35

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

type ConnectionConfig_AzureServiceBus added in v0.0.35

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

type ConnectionConfig_GcpPubsub added in v0.0.42

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

type ConnectionConfig_Kafka added in v0.0.35

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

type ConnectionConfig_KubemqQueue added in v0.0.42

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

type ConnectionConfig_Mongo added in v0.0.35

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

type ConnectionConfig_Mqtt added in v0.0.42

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

type ConnectionConfig_Nats added in v0.0.35

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

type ConnectionConfig_NatsStreaming added in v0.0.35

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

type ConnectionConfig_Nsq added in v0.0.35

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

type ConnectionConfig_Postgres added in v0.0.35

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

type ConnectionConfig_Pulsar added in v0.0.35

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

type ConnectionConfig_Rabbit added in v0.0.35

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

type ConnectionConfig_RabbitStreams added in v0.0.35

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

type ConnectionConfig_RedisPubsub added in v0.0.35

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

type ConnectionConfig_RedisStreams added in v0.0.35

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

type ConvertOption added in v0.0.42

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.42

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

func (ConvertOption) String added in v0.0.42

func (x ConvertOption) String() string

type CreateConnectionRequest

type CreateConnectionRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth      `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	Config               *ConnectionConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*CreateConnectionRequest) Descriptor

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

func (*CreateConnectionRequest) GetAuth

func (m *CreateConnectionRequest) GetAuth() *common.Auth

func (*CreateConnectionRequest) GetConfig added in v0.0.35

func (m *CreateConnectionRequest) GetConfig() *ConnectionConfig

func (*CreateConnectionRequest) ProtoMessage

func (*CreateConnectionRequest) ProtoMessage()

func (*CreateConnectionRequest) Reset

func (m *CreateConnectionRequest) Reset()

func (*CreateConnectionRequest) String

func (m *CreateConnectionRequest) String() string

func (*CreateConnectionRequest) XXX_DiscardUnknown

func (m *CreateConnectionRequest) XXX_DiscardUnknown()

func (*CreateConnectionRequest) XXX_Marshal

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

func (*CreateConnectionRequest) XXX_Merge

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

func (*CreateConnectionRequest) XXX_Size

func (m *CreateConnectionRequest) XXX_Size() int

func (*CreateConnectionRequest) XXX_Unmarshal

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

type CreateConnectionResponse

type CreateConnectionResponse struct {
	// Set with uuid that represents connection if create is successful
	ConnectionId         string   `protobuf:"bytes,1,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateConnectionResponse) Descriptor

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

func (*CreateConnectionResponse) GetConnectionId

func (m *CreateConnectionResponse) GetConnectionId() string

func (*CreateConnectionResponse) ProtoMessage

func (*CreateConnectionResponse) ProtoMessage()

func (*CreateConnectionResponse) Reset

func (m *CreateConnectionResponse) Reset()

func (*CreateConnectionResponse) String

func (m *CreateConnectionResponse) String() string

func (*CreateConnectionResponse) XXX_DiscardUnknown

func (m *CreateConnectionResponse) XXX_DiscardUnknown()

func (*CreateConnectionResponse) XXX_Marshal

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

func (*CreateConnectionResponse) XXX_Merge

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

func (*CreateConnectionResponse) XXX_Size

func (m *CreateConnectionResponse) XXX_Size() int

func (*CreateConnectionResponse) XXX_Unmarshal

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

type CreateReadRequest added in v0.0.20

type CreateReadRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	Config               *ReadConfig  `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*CreateReadRequest) Descriptor added in v0.0.20

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

func (*CreateReadRequest) GetAuth added in v0.0.20

func (m *CreateReadRequest) GetAuth() *common.Auth

func (*CreateReadRequest) GetConfig added in v0.0.34

func (m *CreateReadRequest) GetConfig() *ReadConfig

func (*CreateReadRequest) ProtoMessage added in v0.0.20

func (*CreateReadRequest) ProtoMessage()

func (*CreateReadRequest) Reset added in v0.0.20

func (m *CreateReadRequest) Reset()

func (*CreateReadRequest) String added in v0.0.20

func (m *CreateReadRequest) String() string

func (*CreateReadRequest) XXX_DiscardUnknown added in v0.0.20

func (m *CreateReadRequest) XXX_DiscardUnknown()

func (*CreateReadRequest) XXX_Marshal added in v0.0.20

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

func (*CreateReadRequest) XXX_Merge added in v0.0.20

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

func (*CreateReadRequest) XXX_Size added in v0.0.20

func (m *CreateReadRequest) XXX_Size() int

func (*CreateReadRequest) XXX_Unmarshal added in v0.0.20

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

type CreateReadResponse added in v0.0.20

type CreateReadResponse struct {
	Status *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	// Assigned and returned by plumber-server to identify a successful read request
	ReadId               string   `protobuf:"bytes,1,opt,name=read_id,json=readId,proto3" json:"read_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateReadResponse) Descriptor added in v0.0.20

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

func (*CreateReadResponse) GetReadId added in v0.0.20

func (m *CreateReadResponse) GetReadId() string

func (*CreateReadResponse) GetStatus added in v0.0.20

func (m *CreateReadResponse) GetStatus() *common.Status

func (*CreateReadResponse) ProtoMessage added in v0.0.20

func (*CreateReadResponse) ProtoMessage()

func (*CreateReadResponse) Reset added in v0.0.20

func (m *CreateReadResponse) Reset()

func (*CreateReadResponse) String added in v0.0.20

func (m *CreateReadResponse) String() string

func (*CreateReadResponse) XXX_DiscardUnknown added in v0.0.20

func (m *CreateReadResponse) XXX_DiscardUnknown()

func (*CreateReadResponse) XXX_Marshal added in v0.0.20

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

func (*CreateReadResponse) XXX_Merge added in v0.0.20

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

func (*CreateReadResponse) XXX_Size added in v0.0.20

func (m *CreateReadResponse) XXX_Size() int

func (*CreateReadResponse) XXX_Unmarshal added in v0.0.20

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

type CreateRelayRequest

type CreateRelayRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	Config               *RelayConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*CreateRelayRequest) Descriptor

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

func (*CreateRelayRequest) GetAuth

func (m *CreateRelayRequest) GetAuth() *common.Auth

func (*CreateRelayRequest) GetConfig added in v0.0.37

func (m *CreateRelayRequest) GetConfig() *RelayConfig

func (*CreateRelayRequest) ProtoMessage

func (*CreateRelayRequest) ProtoMessage()

func (*CreateRelayRequest) Reset

func (m *CreateRelayRequest) Reset()

func (*CreateRelayRequest) String

func (m *CreateRelayRequest) String() string

func (*CreateRelayRequest) XXX_DiscardUnknown

func (m *CreateRelayRequest) XXX_DiscardUnknown()

func (*CreateRelayRequest) XXX_Marshal

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

func (*CreateRelayRequest) XXX_Merge

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

func (*CreateRelayRequest) XXX_Size

func (m *CreateRelayRequest) XXX_Size() int

func (*CreateRelayRequest) XXX_Unmarshal

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

type CreateRelayResponse

type CreateRelayResponse struct {
	Status *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	// ID of the created relay entry
	RelayId              string   `protobuf:"bytes,1,opt,name=relay_id,json=relayId,proto3" json:"relay_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateRelayResponse) Descriptor

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

func (*CreateRelayResponse) GetRelayId

func (m *CreateRelayResponse) GetRelayId() string

func (*CreateRelayResponse) GetStatus

func (m *CreateRelayResponse) GetStatus() *common.Status

func (*CreateRelayResponse) ProtoMessage

func (*CreateRelayResponse) ProtoMessage()

func (*CreateRelayResponse) Reset

func (m *CreateRelayResponse) Reset()

func (*CreateRelayResponse) String

func (m *CreateRelayResponse) String() string

func (*CreateRelayResponse) XXX_DiscardUnknown

func (m *CreateRelayResponse) XXX_DiscardUnknown()

func (*CreateRelayResponse) XXX_Marshal

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

func (*CreateRelayResponse) XXX_Merge

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

func (*CreateRelayResponse) XXX_Size

func (m *CreateRelayResponse) XXX_Size() int

func (*CreateRelayResponse) XXX_Unmarshal

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

type CreateServiceRequest added in v0.0.27

type CreateServiceRequest struct {
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	Service              *Service     `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*CreateServiceRequest) Descriptor added in v0.0.27

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

func (*CreateServiceRequest) GetAuth added in v0.0.27

func (m *CreateServiceRequest) GetAuth() *common.Auth

func (*CreateServiceRequest) GetService added in v0.0.27

func (m *CreateServiceRequest) GetService() *Service

func (*CreateServiceRequest) ProtoMessage added in v0.0.27

func (*CreateServiceRequest) ProtoMessage()

func (*CreateServiceRequest) Reset added in v0.0.27

func (m *CreateServiceRequest) Reset()

func (*CreateServiceRequest) String added in v0.0.27

func (m *CreateServiceRequest) String() string

func (*CreateServiceRequest) XXX_DiscardUnknown added in v0.0.27

func (m *CreateServiceRequest) XXX_DiscardUnknown()

func (*CreateServiceRequest) XXX_Marshal added in v0.0.27

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

func (*CreateServiceRequest) XXX_Merge added in v0.0.27

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

func (*CreateServiceRequest) XXX_Size added in v0.0.27

func (m *CreateServiceRequest) XXX_Size() int

func (*CreateServiceRequest) XXX_Unmarshal added in v0.0.27

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

type CreateServiceResponse added in v0.0.27

type CreateServiceResponse struct {
	Service              *Service       `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*CreateServiceResponse) Descriptor added in v0.0.27

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

func (*CreateServiceResponse) GetService added in v0.0.27

func (m *CreateServiceResponse) GetService() *Service

func (*CreateServiceResponse) GetStatus added in v0.0.27

func (m *CreateServiceResponse) GetStatus() *common.Status

func (*CreateServiceResponse) ProtoMessage added in v0.0.27

func (*CreateServiceResponse) ProtoMessage()

func (*CreateServiceResponse) Reset added in v0.0.27

func (m *CreateServiceResponse) Reset()

func (*CreateServiceResponse) String added in v0.0.27

func (m *CreateServiceResponse) String() string

func (*CreateServiceResponse) XXX_DiscardUnknown added in v0.0.27

func (m *CreateServiceResponse) XXX_DiscardUnknown()

func (*CreateServiceResponse) XXX_Marshal added in v0.0.27

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

func (*CreateServiceResponse) XXX_Merge added in v0.0.27

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

func (*CreateServiceResponse) XXX_Size added in v0.0.27

func (m *CreateServiceResponse) XXX_Size() int

func (*CreateServiceResponse) XXX_Unmarshal added in v0.0.27

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

type DeleteConnectionRequest

type DeleteConnectionRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	ConnectionId         string       `protobuf:"bytes,1,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*DeleteConnectionRequest) Descriptor

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

func (*DeleteConnectionRequest) GetAuth

func (m *DeleteConnectionRequest) GetAuth() *common.Auth

func (*DeleteConnectionRequest) GetConnectionId

func (m *DeleteConnectionRequest) GetConnectionId() string

func (*DeleteConnectionRequest) ProtoMessage

func (*DeleteConnectionRequest) ProtoMessage()

func (*DeleteConnectionRequest) Reset

func (m *DeleteConnectionRequest) Reset()

func (*DeleteConnectionRequest) String

func (m *DeleteConnectionRequest) String() string

func (*DeleteConnectionRequest) XXX_DiscardUnknown

func (m *DeleteConnectionRequest) XXX_DiscardUnknown()

func (*DeleteConnectionRequest) XXX_Marshal

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

func (*DeleteConnectionRequest) XXX_Merge

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

func (*DeleteConnectionRequest) XXX_Size

func (m *DeleteConnectionRequest) XXX_Size() int

func (*DeleteConnectionRequest) XXX_Unmarshal

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

type DeleteConnectionResponse

type DeleteConnectionResponse struct {
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DeleteConnectionResponse) Descriptor

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

func (*DeleteConnectionResponse) GetStatus

func (m *DeleteConnectionResponse) GetStatus() *common.Status

func (*DeleteConnectionResponse) ProtoMessage

func (*DeleteConnectionResponse) ProtoMessage()

func (*DeleteConnectionResponse) Reset

func (m *DeleteConnectionResponse) Reset()

func (*DeleteConnectionResponse) String

func (m *DeleteConnectionResponse) String() string

func (*DeleteConnectionResponse) XXX_DiscardUnknown

func (m *DeleteConnectionResponse) XXX_DiscardUnknown()

func (*DeleteConnectionResponse) XXX_Marshal

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

func (*DeleteConnectionResponse) XXX_Merge

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

func (*DeleteConnectionResponse) XXX_Size

func (m *DeleteConnectionResponse) XXX_Size() int

func (*DeleteConnectionResponse) XXX_Unmarshal

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

type DeleteReadRequest added in v0.0.20

type DeleteReadRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	ReadId               string       `protobuf:"bytes,1,opt,name=read_id,json=readId,proto3" json:"read_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*DeleteReadRequest) Descriptor added in v0.0.20

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

func (*DeleteReadRequest) GetAuth added in v0.0.20

func (m *DeleteReadRequest) GetAuth() *common.Auth

func (*DeleteReadRequest) GetReadId added in v0.0.20

func (m *DeleteReadRequest) GetReadId() string

func (*DeleteReadRequest) ProtoMessage added in v0.0.20

func (*DeleteReadRequest) ProtoMessage()

func (*DeleteReadRequest) Reset added in v0.0.20

func (m *DeleteReadRequest) Reset()

func (*DeleteReadRequest) String added in v0.0.20

func (m *DeleteReadRequest) String() string

func (*DeleteReadRequest) XXX_DiscardUnknown added in v0.0.20

func (m *DeleteReadRequest) XXX_DiscardUnknown()

func (*DeleteReadRequest) XXX_Marshal added in v0.0.20

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

func (*DeleteReadRequest) XXX_Merge added in v0.0.20

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

func (*DeleteReadRequest) XXX_Size added in v0.0.20

func (m *DeleteReadRequest) XXX_Size() int

func (*DeleteReadRequest) XXX_Unmarshal added in v0.0.20

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

type DeleteReadResponse added in v0.0.20

type DeleteReadResponse struct {
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DeleteReadResponse) Descriptor added in v0.0.20

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

func (*DeleteReadResponse) GetStatus added in v0.0.20

func (m *DeleteReadResponse) GetStatus() *common.Status

func (*DeleteReadResponse) ProtoMessage added in v0.0.20

func (*DeleteReadResponse) ProtoMessage()

func (*DeleteReadResponse) Reset added in v0.0.20

func (m *DeleteReadResponse) Reset()

func (*DeleteReadResponse) String added in v0.0.20

func (m *DeleteReadResponse) String() string

func (*DeleteReadResponse) XXX_DiscardUnknown added in v0.0.20

func (m *DeleteReadResponse) XXX_DiscardUnknown()

func (*DeleteReadResponse) XXX_Marshal added in v0.0.20

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

func (*DeleteReadResponse) XXX_Merge added in v0.0.20

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

func (*DeleteReadResponse) XXX_Size added in v0.0.20

func (m *DeleteReadResponse) XXX_Size() int

func (*DeleteReadResponse) XXX_Unmarshal added in v0.0.20

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

type DeleteRelayRequest

type DeleteRelayRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	RelayId              string       `protobuf:"bytes,1,opt,name=relay_id,json=relayId,proto3" json:"relay_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*DeleteRelayRequest) Descriptor

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

func (*DeleteRelayRequest) GetAuth

func (m *DeleteRelayRequest) GetAuth() *common.Auth

func (*DeleteRelayRequest) GetRelayId

func (m *DeleteRelayRequest) GetRelayId() string

func (*DeleteRelayRequest) ProtoMessage

func (*DeleteRelayRequest) ProtoMessage()

func (*DeleteRelayRequest) Reset

func (m *DeleteRelayRequest) Reset()

func (*DeleteRelayRequest) String

func (m *DeleteRelayRequest) String() string

func (*DeleteRelayRequest) XXX_DiscardUnknown

func (m *DeleteRelayRequest) XXX_DiscardUnknown()

func (*DeleteRelayRequest) XXX_Marshal

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

func (*DeleteRelayRequest) XXX_Merge

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

func (*DeleteRelayRequest) XXX_Size

func (m *DeleteRelayRequest) XXX_Size() int

func (*DeleteRelayRequest) XXX_Unmarshal

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

type DeleteRelayResponse

type DeleteRelayResponse struct {
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DeleteRelayResponse) Descriptor

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

func (*DeleteRelayResponse) GetStatus

func (m *DeleteRelayResponse) GetStatus() *common.Status

func (*DeleteRelayResponse) ProtoMessage

func (*DeleteRelayResponse) ProtoMessage()

func (*DeleteRelayResponse) Reset

func (m *DeleteRelayResponse) Reset()

func (*DeleteRelayResponse) String

func (m *DeleteRelayResponse) String() string

func (*DeleteRelayResponse) XXX_DiscardUnknown

func (m *DeleteRelayResponse) XXX_DiscardUnknown()

func (*DeleteRelayResponse) XXX_Marshal

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

func (*DeleteRelayResponse) XXX_Merge

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

func (*DeleteRelayResponse) XXX_Size

func (m *DeleteRelayResponse) XXX_Size() int

func (*DeleteRelayResponse) XXX_Unmarshal

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

type DeleteSchemaRequest added in v0.0.26

type DeleteSchemaRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	Id                   string       `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*DeleteSchemaRequest) Descriptor added in v0.0.26

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

func (*DeleteSchemaRequest) GetAuth added in v0.0.26

func (m *DeleteSchemaRequest) GetAuth() *common.Auth

func (*DeleteSchemaRequest) GetId added in v0.0.26

func (m *DeleteSchemaRequest) GetId() string

func (*DeleteSchemaRequest) ProtoMessage added in v0.0.26

func (*DeleteSchemaRequest) ProtoMessage()

func (*DeleteSchemaRequest) Reset added in v0.0.26

func (m *DeleteSchemaRequest) Reset()

func (*DeleteSchemaRequest) String added in v0.0.26

func (m *DeleteSchemaRequest) String() string

func (*DeleteSchemaRequest) XXX_DiscardUnknown added in v0.0.26

func (m *DeleteSchemaRequest) XXX_DiscardUnknown()

func (*DeleteSchemaRequest) XXX_Marshal added in v0.0.26

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

func (*DeleteSchemaRequest) XXX_Merge added in v0.0.26

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

func (*DeleteSchemaRequest) XXX_Size added in v0.0.26

func (m *DeleteSchemaRequest) XXX_Size() int

func (*DeleteSchemaRequest) XXX_Unmarshal added in v0.0.26

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

type DeleteSchemaResponse added in v0.0.26

type DeleteSchemaResponse struct {
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DeleteSchemaResponse) Descriptor added in v0.0.26

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

func (*DeleteSchemaResponse) GetStatus added in v0.0.26

func (m *DeleteSchemaResponse) GetStatus() *common.Status

func (*DeleteSchemaResponse) ProtoMessage added in v0.0.26

func (*DeleteSchemaResponse) ProtoMessage()

func (*DeleteSchemaResponse) Reset added in v0.0.26

func (m *DeleteSchemaResponse) Reset()

func (*DeleteSchemaResponse) String added in v0.0.26

func (m *DeleteSchemaResponse) String() string

func (*DeleteSchemaResponse) XXX_DiscardUnknown added in v0.0.26

func (m *DeleteSchemaResponse) XXX_DiscardUnknown()

func (*DeleteSchemaResponse) XXX_Marshal added in v0.0.26

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

func (*DeleteSchemaResponse) XXX_Merge added in v0.0.26

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

func (*DeleteSchemaResponse) XXX_Size added in v0.0.26

func (m *DeleteSchemaResponse) XXX_Size() int

func (*DeleteSchemaResponse) XXX_Unmarshal added in v0.0.26

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

type DeleteServiceRequest added in v0.0.27

type DeleteServiceRequest struct {
	Id                   string       `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*DeleteServiceRequest) Descriptor added in v0.0.27

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

func (*DeleteServiceRequest) GetAuth added in v0.0.27

func (m *DeleteServiceRequest) GetAuth() *common.Auth

func (*DeleteServiceRequest) GetId added in v0.0.27

func (m *DeleteServiceRequest) GetId() string

func (*DeleteServiceRequest) ProtoMessage added in v0.0.27

func (*DeleteServiceRequest) ProtoMessage()

func (*DeleteServiceRequest) Reset added in v0.0.27

func (m *DeleteServiceRequest) Reset()

func (*DeleteServiceRequest) String added in v0.0.27

func (m *DeleteServiceRequest) String() string

func (*DeleteServiceRequest) XXX_DiscardUnknown added in v0.0.27

func (m *DeleteServiceRequest) XXX_DiscardUnknown()

func (*DeleteServiceRequest) XXX_Marshal added in v0.0.27

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

func (*DeleteServiceRequest) XXX_Merge added in v0.0.27

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

func (*DeleteServiceRequest) XXX_Size added in v0.0.27

func (m *DeleteServiceRequest) XXX_Size() int

func (*DeleteServiceRequest) XXX_Unmarshal added in v0.0.27

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

type DeleteServiceResponse added in v0.0.27

type DeleteServiceResponse struct {
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DeleteServiceResponse) Descriptor added in v0.0.27

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

func (*DeleteServiceResponse) GetStatus added in v0.0.27

func (m *DeleteServiceResponse) GetStatus() *common.Status

func (*DeleteServiceResponse) ProtoMessage added in v0.0.27

func (*DeleteServiceResponse) ProtoMessage()

func (*DeleteServiceResponse) Reset added in v0.0.27

func (m *DeleteServiceResponse) Reset()

func (*DeleteServiceResponse) String added in v0.0.27

func (m *DeleteServiceResponse) String() string

func (*DeleteServiceResponse) XXX_DiscardUnknown added in v0.0.27

func (m *DeleteServiceResponse) XXX_DiscardUnknown()

func (*DeleteServiceResponse) XXX_Marshal added in v0.0.27

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

func (*DeleteServiceResponse) XXX_Merge added in v0.0.27

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

func (*DeleteServiceResponse) XXX_Size added in v0.0.27

func (m *DeleteServiceResponse) XXX_Size() int

func (*DeleteServiceResponse) XXX_Unmarshal added in v0.0.27

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

type GetAllConnectionsRequest

type GetAllConnectionsRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*GetAllConnectionsRequest) Descriptor

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

func (*GetAllConnectionsRequest) GetAuth

func (m *GetAllConnectionsRequest) GetAuth() *common.Auth

func (*GetAllConnectionsRequest) ProtoMessage

func (*GetAllConnectionsRequest) ProtoMessage()

func (*GetAllConnectionsRequest) Reset

func (m *GetAllConnectionsRequest) Reset()

func (*GetAllConnectionsRequest) String

func (m *GetAllConnectionsRequest) String() string

func (*GetAllConnectionsRequest) XXX_DiscardUnknown

func (m *GetAllConnectionsRequest) XXX_DiscardUnknown()

func (*GetAllConnectionsRequest) XXX_Marshal

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

func (*GetAllConnectionsRequest) XXX_Merge

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

func (*GetAllConnectionsRequest) XXX_Size

func (m *GetAllConnectionsRequest) XXX_Size() int

func (*GetAllConnectionsRequest) XXX_Unmarshal

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

type GetAllConnectionsResponse

type GetAllConnectionsResponse struct {
	Configs              []*ConnectionConfig `protobuf:"bytes,1,rep,name=configs,proto3" json:"configs,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*GetAllConnectionsResponse) Descriptor

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

func (*GetAllConnectionsResponse) GetConfigs added in v0.0.35

func (m *GetAllConnectionsResponse) GetConfigs() []*ConnectionConfig

func (*GetAllConnectionsResponse) ProtoMessage

func (*GetAllConnectionsResponse) ProtoMessage()

func (*GetAllConnectionsResponse) Reset

func (m *GetAllConnectionsResponse) Reset()

func (*GetAllConnectionsResponse) String

func (m *GetAllConnectionsResponse) String() string

func (*GetAllConnectionsResponse) XXX_DiscardUnknown

func (m *GetAllConnectionsResponse) XXX_DiscardUnknown()

func (*GetAllConnectionsResponse) XXX_Marshal

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

func (*GetAllConnectionsResponse) XXX_Merge

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

func (*GetAllConnectionsResponse) XXX_Size

func (m *GetAllConnectionsResponse) XXX_Size() int

func (*GetAllConnectionsResponse) XXX_Unmarshal

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

type GetAllReadsRequest added in v0.0.18

type GetAllReadsRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*GetAllReadsRequest) Descriptor added in v0.0.18

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

func (*GetAllReadsRequest) GetAuth added in v0.0.18

func (m *GetAllReadsRequest) GetAuth() *common.Auth

func (*GetAllReadsRequest) ProtoMessage added in v0.0.18

func (*GetAllReadsRequest) ProtoMessage()

func (*GetAllReadsRequest) Reset added in v0.0.18

func (m *GetAllReadsRequest) Reset()

func (*GetAllReadsRequest) String added in v0.0.18

func (m *GetAllReadsRequest) String() string

func (*GetAllReadsRequest) XXX_DiscardUnknown added in v0.0.18

func (m *GetAllReadsRequest) XXX_DiscardUnknown()

func (*GetAllReadsRequest) XXX_Marshal added in v0.0.18

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

func (*GetAllReadsRequest) XXX_Merge added in v0.0.18

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

func (*GetAllReadsRequest) XXX_Size added in v0.0.18

func (m *GetAllReadsRequest) XXX_Size() int

func (*GetAllReadsRequest) XXX_Unmarshal added in v0.0.18

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

type GetAllReadsResponse added in v0.0.18

type GetAllReadsResponse struct {
	Read                 []*ReadConfig  `protobuf:"bytes,1,rep,name=read,proto3" json:"read,omitempty"`
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*GetAllReadsResponse) Descriptor added in v0.0.18

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

func (*GetAllReadsResponse) GetRead added in v0.0.18

func (m *GetAllReadsResponse) GetRead() []*ReadConfig

func (*GetAllReadsResponse) GetStatus added in v0.0.18

func (m *GetAllReadsResponse) GetStatus() *common.Status

func (*GetAllReadsResponse) ProtoMessage added in v0.0.18

func (*GetAllReadsResponse) ProtoMessage()

func (*GetAllReadsResponse) Reset added in v0.0.18

func (m *GetAllReadsResponse) Reset()

func (*GetAllReadsResponse) String added in v0.0.18

func (m *GetAllReadsResponse) String() string

func (*GetAllReadsResponse) XXX_DiscardUnknown added in v0.0.18

func (m *GetAllReadsResponse) XXX_DiscardUnknown()

func (*GetAllReadsResponse) XXX_Marshal added in v0.0.18

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

func (*GetAllReadsResponse) XXX_Merge added in v0.0.18

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

func (*GetAllReadsResponse) XXX_Size added in v0.0.18

func (m *GetAllReadsResponse) XXX_Size() int

func (*GetAllReadsResponse) XXX_Unmarshal added in v0.0.18

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

type GetAllRelaysRequest

type GetAllRelaysRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*GetAllRelaysRequest) Descriptor

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

func (*GetAllRelaysRequest) GetAuth

func (m *GetAllRelaysRequest) GetAuth() *common.Auth

func (*GetAllRelaysRequest) ProtoMessage

func (*GetAllRelaysRequest) ProtoMessage()

func (*GetAllRelaysRequest) Reset

func (m *GetAllRelaysRequest) Reset()

func (*GetAllRelaysRequest) String

func (m *GetAllRelaysRequest) String() string

func (*GetAllRelaysRequest) XXX_DiscardUnknown

func (m *GetAllRelaysRequest) XXX_DiscardUnknown()

func (*GetAllRelaysRequest) XXX_Marshal

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

func (*GetAllRelaysRequest) XXX_Merge

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

func (*GetAllRelaysRequest) XXX_Size

func (m *GetAllRelaysRequest) XXX_Size() int

func (*GetAllRelaysRequest) XXX_Unmarshal

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

type GetAllRelaysResponse

type GetAllRelaysResponse struct {
	Status *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	// Will be set as empty []Relay if no relays are configured
	Configs              []*RelayConfig `protobuf:"bytes,1,rep,name=configs,proto3" json:"configs,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*GetAllRelaysResponse) Descriptor

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

func (*GetAllRelaysResponse) GetConfigs added in v0.0.34

func (m *GetAllRelaysResponse) GetConfigs() []*RelayConfig

func (*GetAllRelaysResponse) GetStatus

func (m *GetAllRelaysResponse) GetStatus() *common.Status

func (*GetAllRelaysResponse) ProtoMessage

func (*GetAllRelaysResponse) ProtoMessage()

func (*GetAllRelaysResponse) Reset

func (m *GetAllRelaysResponse) Reset()

func (*GetAllRelaysResponse) String

func (m *GetAllRelaysResponse) String() string

func (*GetAllRelaysResponse) XXX_DiscardUnknown

func (m *GetAllRelaysResponse) XXX_DiscardUnknown()

func (*GetAllRelaysResponse) XXX_Marshal

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

func (*GetAllRelaysResponse) XXX_Merge

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

func (*GetAllRelaysResponse) XXX_Size

func (m *GetAllRelaysResponse) XXX_Size() int

func (*GetAllRelaysResponse) XXX_Unmarshal

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

type GetAllSchemasRequest added in v0.0.26

type GetAllSchemasRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*GetAllSchemasRequest) Descriptor added in v0.0.26

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

func (*GetAllSchemasRequest) GetAuth added in v0.0.26

func (m *GetAllSchemasRequest) GetAuth() *common.Auth

func (*GetAllSchemasRequest) ProtoMessage added in v0.0.26

func (*GetAllSchemasRequest) ProtoMessage()

func (*GetAllSchemasRequest) Reset added in v0.0.26

func (m *GetAllSchemasRequest) Reset()

func (*GetAllSchemasRequest) String added in v0.0.26

func (m *GetAllSchemasRequest) String() string

func (*GetAllSchemasRequest) XXX_DiscardUnknown added in v0.0.26

func (m *GetAllSchemasRequest) XXX_DiscardUnknown()

func (*GetAllSchemasRequest) XXX_Marshal added in v0.0.26

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

func (*GetAllSchemasRequest) XXX_Merge added in v0.0.26

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

func (*GetAllSchemasRequest) XXX_Size added in v0.0.26

func (m *GetAllSchemasRequest) XXX_Size() int

func (*GetAllSchemasRequest) XXX_Unmarshal added in v0.0.26

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

type GetAllSchemasResponse added in v0.0.26

type GetAllSchemasResponse struct {
	Schema               []*Schema `protobuf:"bytes,1,rep,name=schema,proto3" json:"schema,omitempty"`
	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
	XXX_unrecognized     []byte    `json:"-"`
	XXX_sizecache        int32     `json:"-"`
}

func (*GetAllSchemasResponse) Descriptor added in v0.0.26

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

func (*GetAllSchemasResponse) GetSchema added in v0.0.26

func (m *GetAllSchemasResponse) GetSchema() []*Schema

func (*GetAllSchemasResponse) ProtoMessage added in v0.0.26

func (*GetAllSchemasResponse) ProtoMessage()

func (*GetAllSchemasResponse) Reset added in v0.0.26

func (m *GetAllSchemasResponse) Reset()

func (*GetAllSchemasResponse) String added in v0.0.26

func (m *GetAllSchemasResponse) String() string

func (*GetAllSchemasResponse) XXX_DiscardUnknown added in v0.0.26

func (m *GetAllSchemasResponse) XXX_DiscardUnknown()

func (*GetAllSchemasResponse) XXX_Marshal added in v0.0.26

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

func (*GetAllSchemasResponse) XXX_Merge added in v0.0.26

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

func (*GetAllSchemasResponse) XXX_Size added in v0.0.26

func (m *GetAllSchemasResponse) XXX_Size() int

func (*GetAllSchemasResponse) XXX_Unmarshal added in v0.0.26

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

type GetAllServicesRequest added in v0.0.27

type GetAllServicesRequest struct {
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*GetAllServicesRequest) Descriptor added in v0.0.27

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

func (*GetAllServicesRequest) GetAuth added in v0.0.27

func (m *GetAllServicesRequest) GetAuth() *common.Auth

func (*GetAllServicesRequest) ProtoMessage added in v0.0.27

func (*GetAllServicesRequest) ProtoMessage()

func (*GetAllServicesRequest) Reset added in v0.0.27

func (m *GetAllServicesRequest) Reset()

func (*GetAllServicesRequest) String added in v0.0.27

func (m *GetAllServicesRequest) String() string

func (*GetAllServicesRequest) XXX_DiscardUnknown added in v0.0.27

func (m *GetAllServicesRequest) XXX_DiscardUnknown()

func (*GetAllServicesRequest) XXX_Marshal added in v0.0.27

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

func (*GetAllServicesRequest) XXX_Merge added in v0.0.27

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

func (*GetAllServicesRequest) XXX_Size added in v0.0.27

func (m *GetAllServicesRequest) XXX_Size() int

func (*GetAllServicesRequest) XXX_Unmarshal added in v0.0.27

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

type GetAllServicesResponse added in v0.0.27

type GetAllServicesResponse struct {
	Services             []*Service     `protobuf:"bytes,1,rep,name=services,proto3" json:"services,omitempty"`
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*GetAllServicesResponse) Descriptor added in v0.0.27

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

func (*GetAllServicesResponse) GetServices added in v0.0.27

func (m *GetAllServicesResponse) GetServices() []*Service

func (*GetAllServicesResponse) GetStatus added in v0.0.27

func (m *GetAllServicesResponse) GetStatus() *common.Status

func (*GetAllServicesResponse) ProtoMessage added in v0.0.27

func (*GetAllServicesResponse) ProtoMessage()

func (*GetAllServicesResponse) Reset added in v0.0.27

func (m *GetAllServicesResponse) Reset()

func (*GetAllServicesResponse) String added in v0.0.27

func (m *GetAllServicesResponse) String() string

func (*GetAllServicesResponse) XXX_DiscardUnknown added in v0.0.27

func (m *GetAllServicesResponse) XXX_DiscardUnknown()

func (*GetAllServicesResponse) XXX_Marshal added in v0.0.27

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

func (*GetAllServicesResponse) XXX_Merge added in v0.0.27

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

func (*GetAllServicesResponse) XXX_Size added in v0.0.27

func (m *GetAllServicesResponse) XXX_Size() int

func (*GetAllServicesResponse) XXX_Unmarshal added in v0.0.27

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

type GetConnectionRequest

type GetConnectionRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	ConnectionId         string       `protobuf:"bytes,1,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*GetConnectionRequest) Descriptor

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

func (*GetConnectionRequest) GetAuth

func (m *GetConnectionRequest) GetAuth() *common.Auth

func (*GetConnectionRequest) GetConnectionId

func (m *GetConnectionRequest) GetConnectionId() string

func (*GetConnectionRequest) ProtoMessage

func (*GetConnectionRequest) ProtoMessage()

func (*GetConnectionRequest) Reset

func (m *GetConnectionRequest) Reset()

func (*GetConnectionRequest) String

func (m *GetConnectionRequest) String() string

func (*GetConnectionRequest) XXX_DiscardUnknown

func (m *GetConnectionRequest) XXX_DiscardUnknown()

func (*GetConnectionRequest) XXX_Marshal

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

func (*GetConnectionRequest) XXX_Merge

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

func (*GetConnectionRequest) XXX_Size

func (m *GetConnectionRequest) XXX_Size() int

func (*GetConnectionRequest) XXX_Unmarshal

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

type GetConnectionResponse

type GetConnectionResponse struct {
	Connection           *ConnectionConfig `protobuf:"bytes,1,opt,name=connection,proto3" json:"connection,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*GetConnectionResponse) Descriptor

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

func (*GetConnectionResponse) GetConnection

func (m *GetConnectionResponse) GetConnection() *ConnectionConfig

func (*GetConnectionResponse) ProtoMessage

func (*GetConnectionResponse) ProtoMessage()

func (*GetConnectionResponse) Reset

func (m *GetConnectionResponse) Reset()

func (*GetConnectionResponse) String

func (m *GetConnectionResponse) String() string

func (*GetConnectionResponse) XXX_DiscardUnknown

func (m *GetConnectionResponse) XXX_DiscardUnknown()

func (*GetConnectionResponse) XXX_Marshal

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

func (*GetConnectionResponse) XXX_Merge

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

func (*GetConnectionResponse) XXX_Size

func (m *GetConnectionResponse) XXX_Size() int

func (*GetConnectionResponse) XXX_Unmarshal

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

type GetGithubEventsRequest added in v0.0.40

type GetGithubEventsRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*GetGithubEventsRequest) Descriptor added in v0.0.40

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

func (*GetGithubEventsRequest) GetAuth added in v0.0.40

func (m *GetGithubEventsRequest) GetAuth() *common.Auth

func (*GetGithubEventsRequest) ProtoMessage added in v0.0.40

func (*GetGithubEventsRequest) ProtoMessage()

func (*GetGithubEventsRequest) Reset added in v0.0.40

func (m *GetGithubEventsRequest) Reset()

func (*GetGithubEventsRequest) String added in v0.0.40

func (m *GetGithubEventsRequest) String() string

func (*GetGithubEventsRequest) XXX_DiscardUnknown added in v0.0.40

func (m *GetGithubEventsRequest) XXX_DiscardUnknown()

func (*GetGithubEventsRequest) XXX_Marshal added in v0.0.40

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

func (*GetGithubEventsRequest) XXX_Merge added in v0.0.40

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

func (*GetGithubEventsRequest) XXX_Size added in v0.0.40

func (m *GetGithubEventsRequest) XXX_Size() int

func (*GetGithubEventsRequest) XXX_Unmarshal added in v0.0.40

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

type GetRelayRequest

type GetRelayRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	RelayId              string       `protobuf:"bytes,1,opt,name=relay_id,json=relayId,proto3" json:"relay_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*GetRelayRequest) Descriptor

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

func (*GetRelayRequest) GetAuth

func (m *GetRelayRequest) GetAuth() *common.Auth

func (*GetRelayRequest) GetRelayId

func (m *GetRelayRequest) GetRelayId() string

func (*GetRelayRequest) ProtoMessage

func (*GetRelayRequest) ProtoMessage()

func (*GetRelayRequest) Reset

func (m *GetRelayRequest) Reset()

func (*GetRelayRequest) String

func (m *GetRelayRequest) String() string

func (*GetRelayRequest) XXX_DiscardUnknown

func (m *GetRelayRequest) XXX_DiscardUnknown()

func (*GetRelayRequest) XXX_Marshal

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

func (*GetRelayRequest) XXX_Merge

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

func (*GetRelayRequest) XXX_Size

func (m *GetRelayRequest) XXX_Size() int

func (*GetRelayRequest) XXX_Unmarshal

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

type GetRelayResponse

type GetRelayResponse struct {
	Status *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	// Set only if status is OK
	Config               *RelayConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*GetRelayResponse) Descriptor

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

func (*GetRelayResponse) GetConfig added in v0.0.34

func (m *GetRelayResponse) GetConfig() *RelayConfig

func (*GetRelayResponse) GetStatus

func (m *GetRelayResponse) GetStatus() *common.Status

func (*GetRelayResponse) ProtoMessage

func (*GetRelayResponse) ProtoMessage()

func (*GetRelayResponse) Reset

func (m *GetRelayResponse) Reset()

func (*GetRelayResponse) String

func (m *GetRelayResponse) String() string

func (*GetRelayResponse) XXX_DiscardUnknown

func (m *GetRelayResponse) XXX_DiscardUnknown()

func (*GetRelayResponse) XXX_Marshal

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

func (*GetRelayResponse) XXX_Merge

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

func (*GetRelayResponse) XXX_Size

func (m *GetRelayResponse) XXX_Size() int

func (*GetRelayResponse) XXX_Unmarshal

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

type GetSchemaRequest added in v0.0.26

type GetSchemaRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	Id                   string       `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*GetSchemaRequest) Descriptor added in v0.0.26

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

func (*GetSchemaRequest) GetAuth added in v0.0.26

func (m *GetSchemaRequest) GetAuth() *common.Auth

func (*GetSchemaRequest) GetId added in v0.0.26

func (m *GetSchemaRequest) GetId() string

func (*GetSchemaRequest) ProtoMessage added in v0.0.26

func (*GetSchemaRequest) ProtoMessage()

func (*GetSchemaRequest) Reset added in v0.0.26

func (m *GetSchemaRequest) Reset()

func (*GetSchemaRequest) String added in v0.0.26

func (m *GetSchemaRequest) String() string

func (*GetSchemaRequest) XXX_DiscardUnknown added in v0.0.26

func (m *GetSchemaRequest) XXX_DiscardUnknown()

func (*GetSchemaRequest) XXX_Marshal added in v0.0.26

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

func (*GetSchemaRequest) XXX_Merge added in v0.0.26

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

func (*GetSchemaRequest) XXX_Size added in v0.0.26

func (m *GetSchemaRequest) XXX_Size() int

func (*GetSchemaRequest) XXX_Unmarshal added in v0.0.26

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

type GetSchemaResponse added in v0.0.26

type GetSchemaResponse struct {
	Schema               *Schema  `protobuf:"bytes,1,opt,name=schema,proto3" json:"schema,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetSchemaResponse) Descriptor added in v0.0.26

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

func (*GetSchemaResponse) GetSchema added in v0.0.26

func (m *GetSchemaResponse) GetSchema() *Schema

func (*GetSchemaResponse) ProtoMessage added in v0.0.26

func (*GetSchemaResponse) ProtoMessage()

func (*GetSchemaResponse) Reset added in v0.0.26

func (m *GetSchemaResponse) Reset()

func (*GetSchemaResponse) String added in v0.0.26

func (m *GetSchemaResponse) String() string

func (*GetSchemaResponse) XXX_DiscardUnknown added in v0.0.26

func (m *GetSchemaResponse) XXX_DiscardUnknown()

func (*GetSchemaResponse) XXX_Marshal added in v0.0.26

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

func (*GetSchemaResponse) XXX_Merge added in v0.0.26

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

func (*GetSchemaResponse) XXX_Size added in v0.0.26

func (m *GetSchemaResponse) XXX_Size() int

func (*GetSchemaResponse) XXX_Unmarshal added in v0.0.26

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

type GetServerConfigRequest added in v0.0.40

type GetServerConfigRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*GetServerConfigRequest) Descriptor added in v0.0.40

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

func (*GetServerConfigRequest) GetAuth added in v0.0.40

func (m *GetServerConfigRequest) GetAuth() *common.Auth

func (*GetServerConfigRequest) ProtoMessage added in v0.0.40

func (*GetServerConfigRequest) ProtoMessage()

func (*GetServerConfigRequest) Reset added in v0.0.40

func (m *GetServerConfigRequest) Reset()

func (*GetServerConfigRequest) String added in v0.0.40

func (m *GetServerConfigRequest) String() string

func (*GetServerConfigRequest) XXX_DiscardUnknown added in v0.0.40

func (m *GetServerConfigRequest) XXX_DiscardUnknown()

func (*GetServerConfigRequest) XXX_Marshal added in v0.0.40

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

func (*GetServerConfigRequest) XXX_Merge added in v0.0.40

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

func (*GetServerConfigRequest) XXX_Size added in v0.0.40

func (m *GetServerConfigRequest) XXX_Size() int

func (*GetServerConfigRequest) XXX_Unmarshal added in v0.0.40

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

type GetServerConfigResponse added in v0.0.40

type GetServerConfigResponse struct {
	ServerConfig         *ServerConfig `protobuf:"bytes,1,opt,name=server_config,json=serverConfig,proto3" json:"server_config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*GetServerConfigResponse) Descriptor added in v0.0.40

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

func (*GetServerConfigResponse) GetServerConfig added in v0.0.40

func (m *GetServerConfigResponse) GetServerConfig() *ServerConfig

func (*GetServerConfigResponse) ProtoMessage added in v0.0.40

func (*GetServerConfigResponse) ProtoMessage()

func (*GetServerConfigResponse) Reset added in v0.0.40

func (m *GetServerConfigResponse) Reset()

func (*GetServerConfigResponse) String added in v0.0.40

func (m *GetServerConfigResponse) String() string

func (*GetServerConfigResponse) XXX_DiscardUnknown added in v0.0.40

func (m *GetServerConfigResponse) XXX_DiscardUnknown()

func (*GetServerConfigResponse) XXX_Marshal added in v0.0.40

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

func (*GetServerConfigResponse) XXX_Merge added in v0.0.40

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

func (*GetServerConfigResponse) XXX_Size added in v0.0.40

func (m *GetServerConfigResponse) XXX_Size() int

func (*GetServerConfigResponse) XXX_Unmarshal added in v0.0.40

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

type GetServiceRequest added in v0.0.27

type GetServiceRequest struct {
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	Id                   string       `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*GetServiceRequest) Descriptor added in v0.0.27

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

func (*GetServiceRequest) GetAuth added in v0.0.27

func (m *GetServiceRequest) GetAuth() *common.Auth

func (*GetServiceRequest) GetId added in v0.0.27

func (m *GetServiceRequest) GetId() string

func (*GetServiceRequest) ProtoMessage added in v0.0.27

func (*GetServiceRequest) ProtoMessage()

func (*GetServiceRequest) Reset added in v0.0.27

func (m *GetServiceRequest) Reset()

func (*GetServiceRequest) String added in v0.0.27

func (m *GetServiceRequest) String() string

func (*GetServiceRequest) XXX_DiscardUnknown added in v0.0.27

func (m *GetServiceRequest) XXX_DiscardUnknown()

func (*GetServiceRequest) XXX_Marshal added in v0.0.27

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

func (*GetServiceRequest) XXX_Merge added in v0.0.27

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

func (*GetServiceRequest) XXX_Size added in v0.0.27

func (m *GetServiceRequest) XXX_Size() int

func (*GetServiceRequest) XXX_Unmarshal added in v0.0.27

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

type GetServiceResponse added in v0.0.27

type GetServiceResponse struct {
	Service              *Service       `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*GetServiceResponse) Descriptor added in v0.0.27

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

func (*GetServiceResponse) GetService added in v0.0.27

func (m *GetServiceResponse) GetService() *Service

func (*GetServiceResponse) GetStatus added in v0.0.27

func (m *GetServiceResponse) GetStatus() *common.Status

func (*GetServiceResponse) ProtoMessage added in v0.0.27

func (*GetServiceResponse) ProtoMessage()

func (*GetServiceResponse) Reset added in v0.0.27

func (m *GetServiceResponse) Reset()

func (*GetServiceResponse) String added in v0.0.27

func (m *GetServiceResponse) String() string

func (*GetServiceResponse) XXX_DiscardUnknown added in v0.0.27

func (m *GetServiceResponse) XXX_DiscardUnknown()

func (*GetServiceResponse) XXX_Marshal added in v0.0.27

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

func (*GetServiceResponse) XXX_Merge added in v0.0.27

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

func (*GetServiceResponse) XXX_Size added in v0.0.27

func (m *GetServiceResponse) XXX_Size() int

func (*GetServiceResponse) XXX_Unmarshal added in v0.0.27

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

type GithubEvent added in v0.0.40

type GithubEvent struct {
	Type GithubEvent_Type `protobuf:"varint,1,opt,name=type,proto3,enum=protos.GithubEvent_Type" json:"type,omitempty"`
	// Types that are valid to be assigned to Payload:
	//	*GithubEvent_AuthResponse
	//	*GithubEvent_InstallCreated
	//	*GithubEvent_InstallUpdated
	//	*GithubEvent_InstallDeleted
	//	*GithubEvent_PrCreated
	//	*GithubEvent_PrMerged
	Payload              isGithubEvent_Payload `protobuf_oneof:"payload"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

GithubEvent is sent by batchcorp/github-service and received by Plumber instances to be acted upon It is also sent to the frontend to be acted upon See the following URL for reference to events we are receiving from github https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#

func (*GithubEvent) Descriptor added in v0.0.40

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

func (*GithubEvent) GetAuthResponse added in v0.0.41

func (m *GithubEvent) GetAuthResponse() *AuthResponse

func (*GithubEvent) GetInstallCreated added in v0.0.40

func (m *GithubEvent) GetInstallCreated() *InstallCreated

func (*GithubEvent) GetInstallDeleted added in v0.0.40

func (m *GithubEvent) GetInstallDeleted() *InstallDeleted

func (*GithubEvent) GetInstallUpdated added in v0.0.40

func (m *GithubEvent) GetInstallUpdated() *InstallUpdated

func (*GithubEvent) GetPayload added in v0.0.40

func (m *GithubEvent) GetPayload() isGithubEvent_Payload

func (*GithubEvent) GetPrCreated added in v0.0.40

func (m *GithubEvent) GetPrCreated() *PullRequestCreated

func (*GithubEvent) GetPrMerged added in v0.0.40

func (m *GithubEvent) GetPrMerged() *PullRequestMerged

func (*GithubEvent) GetType added in v0.0.41

func (m *GithubEvent) GetType() GithubEvent_Type

func (*GithubEvent) ProtoMessage added in v0.0.40

func (*GithubEvent) ProtoMessage()

func (*GithubEvent) Reset added in v0.0.40

func (m *GithubEvent) Reset()

func (*GithubEvent) String added in v0.0.40

func (m *GithubEvent) String() string

func (*GithubEvent) XXX_DiscardUnknown added in v0.0.40

func (m *GithubEvent) XXX_DiscardUnknown()

func (*GithubEvent) XXX_Marshal added in v0.0.40

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

func (*GithubEvent) XXX_Merge added in v0.0.40

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

func (*GithubEvent) XXX_OneofWrappers added in v0.0.40

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

XXX_OneofWrappers is for the internal use of the proto package.

func (*GithubEvent) XXX_Size added in v0.0.40

func (m *GithubEvent) XXX_Size() int

func (*GithubEvent) XXX_Unmarshal added in v0.0.40

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

type GithubEvent_AuthResponse added in v0.0.41

type GithubEvent_AuthResponse struct {
	AuthResponse *AuthResponse `protobuf:"bytes,100,opt,name=auth_response,json=authResponse,proto3,oneof"`
}

type GithubEvent_InstallCreated added in v0.0.40

type GithubEvent_InstallCreated struct {
	InstallCreated *InstallCreated `protobuf:"bytes,101,opt,name=install_created,json=installCreated,proto3,oneof"`
}

type GithubEvent_InstallDeleted added in v0.0.40

type GithubEvent_InstallDeleted struct {
	InstallDeleted *InstallDeleted `protobuf:"bytes,103,opt,name=install_deleted,json=installDeleted,proto3,oneof"`
}

type GithubEvent_InstallUpdated added in v0.0.40

type GithubEvent_InstallUpdated struct {
	InstallUpdated *InstallUpdated `protobuf:"bytes,102,opt,name=install_updated,json=installUpdated,proto3,oneof"`
}

type GithubEvent_PrCreated added in v0.0.40

type GithubEvent_PrCreated struct {
	PrCreated *PullRequestCreated `protobuf:"bytes,104,opt,name=pr_created,json=prCreated,proto3,oneof"`
}

type GithubEvent_PrMerged added in v0.0.40

type GithubEvent_PrMerged struct {
	PrMerged *PullRequestMerged `protobuf:"bytes,105,opt,name=pr_merged,json=prMerged,proto3,oneof"`
}

type GithubEvent_Type added in v0.0.41

type GithubEvent_Type int32
const (
	GithubEvent_UNSET           GithubEvent_Type = 0
	GithubEvent_AUTH_RESPONSE   GithubEvent_Type = 1
	GithubEvent_INSTALL_CREATED GithubEvent_Type = 2
	GithubEvent_INSTALL_UPDATED GithubEvent_Type = 3
	GithubEvent_INSTALL_DELETED GithubEvent_Type = 4
	GithubEvent_PULL_CREATED    GithubEvent_Type = 5
	GithubEvent_PULL_MERGED     GithubEvent_Type = 6
)

func (GithubEvent_Type) EnumDescriptor added in v0.0.41

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

func (GithubEvent_Type) String added in v0.0.41

func (x GithubEvent_Type) String() string

type GithubServerClient added in v0.0.41

type GithubServerClient interface {
	Connect(ctx context.Context, in *ConnectAuthRequest, opts ...grpc.CallOption) (GithubServer_ConnectClient, error)
}

GithubServerClient is the client API for GithubServer service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewGithubServerClient added in v0.0.41

func NewGithubServerClient(cc *grpc.ClientConn) GithubServerClient

type GithubServerServer added in v0.0.41

type GithubServerServer interface {
	Connect(*ConnectAuthRequest, GithubServer_ConnectServer) error
}

GithubServerServer is the server API for GithubServer service.

type GithubServer_ConnectClient added in v0.0.41

type GithubServer_ConnectClient interface {
	Recv() (*GithubEvent, error)
	grpc.ClientStream
}

type GithubServer_ConnectServer added in v0.0.41

type GithubServer_ConnectServer interface {
	Send(*GithubEvent) error
	grpc.ServerStream
}

type GlobalCLIOptions added in v0.0.42

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,4,opt,name=_full_command,json=FullCommand,proto3" json:"_full_command,omitempty" kong:"-"`
	// @gotags: kong:"-"
	XAction string `protobuf:"bytes,5,opt,name=_action,json=Action,proto3" json:"_action,omitempty" kong:"-"`
	// @gotags: kong:"-"
	XBackend             string   `protobuf:"bytes,6,opt,name=_backend,json=Backend,proto3" json:"_backend,omitempty" kong:"-"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GlobalCLIOptions) Descriptor added in v0.0.42

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

func (*GlobalCLIOptions) GetDebug added in v0.0.42

func (m *GlobalCLIOptions) GetDebug() bool

func (*GlobalCLIOptions) GetQuiet added in v0.0.42

func (m *GlobalCLIOptions) GetQuiet() bool

func (*GlobalCLIOptions) GetVersion added in v0.0.45

func (m *GlobalCLIOptions) GetVersion() bool

func (*GlobalCLIOptions) GetXAction added in v0.0.44

func (m *GlobalCLIOptions) GetXAction() string

func (*GlobalCLIOptions) GetXBackend added in v0.0.44

func (m *GlobalCLIOptions) GetXBackend() string

func (*GlobalCLIOptions) GetXFullCommand added in v0.0.44

func (m *GlobalCLIOptions) GetXFullCommand() string

func (*GlobalCLIOptions) ProtoMessage added in v0.0.42

func (*GlobalCLIOptions) ProtoMessage()

func (*GlobalCLIOptions) Reset added in v0.0.42

func (m *GlobalCLIOptions) Reset()

func (*GlobalCLIOptions) String added in v0.0.42

func (m *GlobalCLIOptions) String() string

func (*GlobalCLIOptions) XXX_DiscardUnknown added in v0.0.42

func (m *GlobalCLIOptions) XXX_DiscardUnknown()

func (*GlobalCLIOptions) XXX_Marshal added in v0.0.42

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

func (*GlobalCLIOptions) XXX_Merge added in v0.0.42

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

func (*GlobalCLIOptions) XXX_Size added in v0.0.42

func (m *GlobalCLIOptions) XXX_Size() int

func (*GlobalCLIOptions) XXX_Unmarshal added in v0.0.42

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

type ImportGithubRequest added in v0.0.26

type ImportGithubRequest struct {
	// Every gRPC request must have a valid auth config
	Auth      *common.Auth  `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	Name      string        `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Type      encoding.Type `protobuf:"varint,2,opt,name=type,proto3,enum=protos.encoding.Type" json:"type,omitempty"`
	GithubUrl string        `protobuf:"bytes,3,opt,name=github_url,json=githubUrl,proto3" json:"github_url,omitempty"`
	// Protobuf only, root message name
	RootType string `protobuf:"bytes,4,opt,name=root_type,json=rootType,proto3" json:"root_type,omitempty"`
	// Directory inside github repo where protos are stored
	RootDir              string   `protobuf:"bytes,5,opt,name=root_dir,json=rootDir,proto3" json:"root_dir,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ImportGithubRequest) Descriptor added in v0.0.26

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

func (*ImportGithubRequest) GetAuth added in v0.0.26

func (m *ImportGithubRequest) GetAuth() *common.Auth

func (*ImportGithubRequest) GetGithubUrl added in v0.0.26

func (m *ImportGithubRequest) GetGithubUrl() string

func (*ImportGithubRequest) GetName added in v0.0.26

func (m *ImportGithubRequest) GetName() string

func (*ImportGithubRequest) GetRootDir added in v0.0.28

func (m *ImportGithubRequest) GetRootDir() string

func (*ImportGithubRequest) GetRootType added in v0.0.26

func (m *ImportGithubRequest) GetRootType() string

func (*ImportGithubRequest) GetType added in v0.0.26

func (m *ImportGithubRequest) GetType() encoding.Type

func (*ImportGithubRequest) ProtoMessage added in v0.0.26

func (*ImportGithubRequest) ProtoMessage()

func (*ImportGithubRequest) Reset added in v0.0.26

func (m *ImportGithubRequest) Reset()

func (*ImportGithubRequest) String added in v0.0.26

func (m *ImportGithubRequest) String() string

func (*ImportGithubRequest) XXX_DiscardUnknown added in v0.0.26

func (m *ImportGithubRequest) XXX_DiscardUnknown()

func (*ImportGithubRequest) XXX_Marshal added in v0.0.26

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

func (*ImportGithubRequest) XXX_Merge added in v0.0.26

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

func (*ImportGithubRequest) XXX_Size added in v0.0.26

func (m *ImportGithubRequest) XXX_Size() int

func (*ImportGithubRequest) XXX_Unmarshal added in v0.0.26

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

type ImportGithubResponse added in v0.0.26

type ImportGithubResponse struct {
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	Id                   string         `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ImportGithubResponse) Descriptor added in v0.0.26

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

func (*ImportGithubResponse) GetId added in v0.0.26

func (m *ImportGithubResponse) GetId() string

func (*ImportGithubResponse) GetStatus added in v0.0.26

func (m *ImportGithubResponse) GetStatus() *common.Status

func (*ImportGithubResponse) ProtoMessage added in v0.0.26

func (*ImportGithubResponse) ProtoMessage()

func (*ImportGithubResponse) Reset added in v0.0.26

func (m *ImportGithubResponse) Reset()

func (*ImportGithubResponse) String added in v0.0.26

func (m *ImportGithubResponse) String() string

func (*ImportGithubResponse) XXX_DiscardUnknown added in v0.0.26

func (m *ImportGithubResponse) XXX_DiscardUnknown()

func (*ImportGithubResponse) XXX_Marshal added in v0.0.26

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

func (*ImportGithubResponse) XXX_Merge added in v0.0.26

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

func (*ImportGithubResponse) XXX_Size added in v0.0.26

func (m *ImportGithubResponse) XXX_Size() int

func (*ImportGithubResponse) XXX_Unmarshal added in v0.0.26

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

type ImportLocalRequest added in v0.0.26

type ImportLocalRequest struct {
	// Every gRPC request must have a valid auth config
	Auth       *common.Auth  `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	Name       string        `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Type       encoding.Type `protobuf:"varint,2,opt,name=type,proto3,enum=protos.encoding.Type" json:"type,omitempty"`
	ZipArchive []byte        `protobuf:"bytes,3,opt,name=zip_archive,json=zipArchive,proto3" json:"zip_archive,omitempty"`
	// Protobuf only, root message name
	RootType             string   `protobuf:"bytes,4,opt,name=root_type,json=rootType,proto3" json:"root_type,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ImportLocalRequest) Descriptor added in v0.0.26

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

func (*ImportLocalRequest) GetAuth added in v0.0.26

func (m *ImportLocalRequest) GetAuth() *common.Auth

func (*ImportLocalRequest) GetName added in v0.0.26

func (m *ImportLocalRequest) GetName() string

func (*ImportLocalRequest) GetRootType added in v0.0.26

func (m *ImportLocalRequest) GetRootType() string

func (*ImportLocalRequest) GetType added in v0.0.26

func (m *ImportLocalRequest) GetType() encoding.Type

func (*ImportLocalRequest) GetZipArchive added in v0.0.26

func (m *ImportLocalRequest) GetZipArchive() []byte

func (*ImportLocalRequest) ProtoMessage added in v0.0.26

func (*ImportLocalRequest) ProtoMessage()

func (*ImportLocalRequest) Reset added in v0.0.26

func (m *ImportLocalRequest) Reset()

func (*ImportLocalRequest) String added in v0.0.26

func (m *ImportLocalRequest) String() string

func (*ImportLocalRequest) XXX_DiscardUnknown added in v0.0.26

func (m *ImportLocalRequest) XXX_DiscardUnknown()

func (*ImportLocalRequest) XXX_Marshal added in v0.0.26

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

func (*ImportLocalRequest) XXX_Merge added in v0.0.26

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

func (*ImportLocalRequest) XXX_Size added in v0.0.26

func (m *ImportLocalRequest) XXX_Size() int

func (*ImportLocalRequest) XXX_Unmarshal added in v0.0.26

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

type ImportLocalResponse added in v0.0.26

type ImportLocalResponse struct {
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	Id                   string         `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ImportLocalResponse) Descriptor added in v0.0.26

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

func (*ImportLocalResponse) GetId added in v0.0.26

func (m *ImportLocalResponse) GetId() string

func (*ImportLocalResponse) GetStatus added in v0.0.26

func (m *ImportLocalResponse) GetStatus() *common.Status

func (*ImportLocalResponse) ProtoMessage added in v0.0.26

func (*ImportLocalResponse) ProtoMessage()

func (*ImportLocalResponse) Reset added in v0.0.26

func (m *ImportLocalResponse) Reset()

func (*ImportLocalResponse) String added in v0.0.26

func (m *ImportLocalResponse) String() string

func (*ImportLocalResponse) XXX_DiscardUnknown added in v0.0.26

func (m *ImportLocalResponse) XXX_DiscardUnknown()

func (*ImportLocalResponse) XXX_Marshal added in v0.0.26

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

func (*ImportLocalResponse) XXX_Merge added in v0.0.26

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

func (*ImportLocalResponse) XXX_Size added in v0.0.26

func (m *ImportLocalResponse) XXX_Size() int

func (*ImportLocalResponse) XXX_Unmarshal added in v0.0.26

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

type InstallCreated added in v0.0.40

type InstallCreated struct {
	InstallId            int64    `protobuf:"varint,1,opt,name=install_id,json=installId,proto3" json:"install_id,omitempty"`
	AccountId            int64    `protobuf:"varint,2,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Sent by github-service and received by plumber Sent by plumber, received by UI

func (*InstallCreated) Descriptor added in v0.0.40

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

func (*InstallCreated) GetAccountId added in v0.0.40

func (m *InstallCreated) GetAccountId() int64

func (*InstallCreated) GetInstallId added in v0.0.40

func (m *InstallCreated) GetInstallId() int64

func (*InstallCreated) ProtoMessage added in v0.0.40

func (*InstallCreated) ProtoMessage()

func (*InstallCreated) Reset added in v0.0.40

func (m *InstallCreated) Reset()

func (*InstallCreated) String added in v0.0.40

func (m *InstallCreated) String() string

func (*InstallCreated) XXX_DiscardUnknown added in v0.0.40

func (m *InstallCreated) XXX_DiscardUnknown()

func (*InstallCreated) XXX_Marshal added in v0.0.40

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

func (*InstallCreated) XXX_Merge added in v0.0.40

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

func (*InstallCreated) XXX_Size added in v0.0.40

func (m *InstallCreated) XXX_Size() int

func (*InstallCreated) XXX_Unmarshal added in v0.0.40

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

type InstallDeleted added in v0.0.40

type InstallDeleted struct {
	InstallId            int64    `protobuf:"varint,1,opt,name=install_id,json=installId,proto3" json:"install_id,omitempty"`
	AccountId            int64    `protobuf:"varint,2,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Sent by github-service and received by plumber Sent by plumber, received by UI

func (*InstallDeleted) Descriptor added in v0.0.40

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

func (*InstallDeleted) GetAccountId added in v0.0.40

func (m *InstallDeleted) GetAccountId() int64

func (*InstallDeleted) GetInstallId added in v0.0.40

func (m *InstallDeleted) GetInstallId() int64

func (*InstallDeleted) ProtoMessage added in v0.0.40

func (*InstallDeleted) ProtoMessage()

func (*InstallDeleted) Reset added in v0.0.40

func (m *InstallDeleted) Reset()

func (*InstallDeleted) String added in v0.0.40

func (m *InstallDeleted) String() string

func (*InstallDeleted) XXX_DiscardUnknown added in v0.0.40

func (m *InstallDeleted) XXX_DiscardUnknown()

func (*InstallDeleted) XXX_Marshal added in v0.0.40

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

func (*InstallDeleted) XXX_Merge added in v0.0.40

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

func (*InstallDeleted) XXX_Size added in v0.0.40

func (m *InstallDeleted) XXX_Size() int

func (*InstallDeleted) XXX_Unmarshal added in v0.0.40

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

type InstallUpdated added in v0.0.40

type InstallUpdated struct {
	InstallId            int64    `protobuf:"varint,1,opt,name=install_id,json=installId,proto3" json:"install_id,omitempty"`
	AccountId            int64    `protobuf:"varint,2,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Sent by github-service and received by plumber Sent by plumber, received by UI

func (*InstallUpdated) Descriptor added in v0.0.40

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

func (*InstallUpdated) GetAccountId added in v0.0.40

func (m *InstallUpdated) GetAccountId() int64

func (*InstallUpdated) GetInstallId added in v0.0.40

func (m *InstallUpdated) GetInstallId() int64

func (*InstallUpdated) ProtoMessage added in v0.0.40

func (*InstallUpdated) ProtoMessage()

func (*InstallUpdated) Reset added in v0.0.40

func (m *InstallUpdated) Reset()

func (*InstallUpdated) String added in v0.0.40

func (m *InstallUpdated) String() string

func (*InstallUpdated) XXX_DiscardUnknown added in v0.0.40

func (m *InstallUpdated) XXX_DiscardUnknown()

func (*InstallUpdated) XXX_Marshal added in v0.0.40

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

func (*InstallUpdated) XXX_Merge added in v0.0.40

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

func (*InstallUpdated) XXX_Size added in v0.0.40

func (m *InstallUpdated) XXX_Size() int

func (*InstallUpdated) XXX_Unmarshal added in v0.0.40

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

type IsGithubAuthRequest added in v0.0.25

type IsGithubAuthRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*IsGithubAuthRequest) Descriptor added in v0.0.25

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

func (*IsGithubAuthRequest) GetAuth added in v0.0.25

func (m *IsGithubAuthRequest) GetAuth() *common.Auth

func (*IsGithubAuthRequest) ProtoMessage added in v0.0.25

func (*IsGithubAuthRequest) ProtoMessage()

func (*IsGithubAuthRequest) Reset added in v0.0.25

func (m *IsGithubAuthRequest) Reset()

func (*IsGithubAuthRequest) String added in v0.0.25

func (m *IsGithubAuthRequest) String() string

func (*IsGithubAuthRequest) XXX_DiscardUnknown added in v0.0.25

func (m *IsGithubAuthRequest) XXX_DiscardUnknown()

func (*IsGithubAuthRequest) XXX_Marshal added in v0.0.25

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

func (*IsGithubAuthRequest) XXX_Merge added in v0.0.25

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

func (*IsGithubAuthRequest) XXX_Size added in v0.0.25

func (m *IsGithubAuthRequest) XXX_Size() int

func (*IsGithubAuthRequest) XXX_Unmarshal added in v0.0.25

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

type IsGithubAuthResponse added in v0.0.25

type IsGithubAuthResponse struct {
	Authorized           bool     `protobuf:"varint,1,opt,name=authorized,proto3" json:"authorized,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*IsGithubAuthResponse) Descriptor added in v0.0.25

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

func (*IsGithubAuthResponse) GetAuthorized added in v0.0.25

func (m *IsGithubAuthResponse) GetAuthorized() bool

func (*IsGithubAuthResponse) ProtoMessage added in v0.0.25

func (*IsGithubAuthResponse) ProtoMessage()

func (*IsGithubAuthResponse) Reset added in v0.0.25

func (m *IsGithubAuthResponse) Reset()

func (*IsGithubAuthResponse) String added in v0.0.25

func (m *IsGithubAuthResponse) String() string

func (*IsGithubAuthResponse) XXX_DiscardUnknown added in v0.0.25

func (m *IsGithubAuthResponse) XXX_DiscardUnknown()

func (*IsGithubAuthResponse) XXX_Marshal added in v0.0.25

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

func (*IsGithubAuthResponse) XXX_Merge added in v0.0.25

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

func (*IsGithubAuthResponse) XXX_Size added in v0.0.25

func (m *IsGithubAuthResponse) XXX_Size() int

func (*IsGithubAuthResponse) XXX_Unmarshal added in v0.0.25

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

type PlumberServerClient

type PlumberServerClient interface {
	// List configured/known connections
	GetAllConnections(ctx context.Context, in *GetAllConnectionsRequest, opts ...grpc.CallOption) (*GetAllConnectionsResponse, error)
	// Fetch a specific connection by ID
	GetConnection(ctx context.Context, in *GetConnectionRequest, opts ...grpc.CallOption) (*GetConnectionResponse, error)
	// Create a connection in plumber
	CreateConnection(ctx context.Context, in *CreateConnectionRequest, opts ...grpc.CallOption) (*CreateConnectionResponse, error)
	// Test a connection before saving its configuration
	TestConnection(ctx context.Context, in *TestConnectionRequest, opts ...grpc.CallOption) (*TestConnectionResponse, error)
	// Any active connections will be restarted
	UpdateConnection(ctx context.Context, in *UpdateConnectionRequest, opts ...grpc.CallOption) (*UpdateConnectionResponse, error)
	// If there are any active connections, delete will cause them to get closed
	DeleteConnection(ctx context.Context, in *DeleteConnectionRequest, opts ...grpc.CallOption) (*DeleteConnectionResponse, error)
	// Start reading data from a connection
	CreateRead(ctx context.Context, in *CreateReadRequest, opts ...grpc.CallOption) (*CreateReadResponse, error)
	// Streams messages received off of a read
	StartRead(ctx context.Context, in *StartReadRequest, opts ...grpc.CallOption) (PlumberServer_StartReadClient, error)
	// List all reads that have been created
	GetAllReads(ctx context.Context, in *GetAllReadsRequest, opts ...grpc.CallOption) (*GetAllReadsResponse, error)
	// Stop reading data from a connection
	StopRead(ctx context.Context, in *StopReadRequest, opts ...grpc.CallOption) (*StopReadResponse, error)
	// Resume reading data from an existing read
	ResumeRead(ctx context.Context, in *ResumeReadRequest, opts ...grpc.CallOption) (*ResumeReadResponse, error)
	// Resume reading data from an existing read
	DeleteRead(ctx context.Context, in *DeleteReadRequest, opts ...grpc.CallOption) (*DeleteReadResponse, error)
	// Write data to a connection
	Write(ctx context.Context, in *WriteRequest, opts ...grpc.CallOption) (*WriteResponse, error)
	// Create a data relay from plumber server to the Batch platform
	CreateRelay(ctx context.Context, in *CreateRelayRequest, opts ...grpc.CallOption) (*CreateRelayResponse, error)
	// Update a relay (such as API token) - relay will be interrupted!
	UpdateRelay(ctx context.Context, in *UpdateRelayRequest, opts ...grpc.CallOption) (*UpdateRelayResponse, error)
	ResumeRelay(ctx context.Context, in *ResumeRelayRequest, opts ...grpc.CallOption) (*ResumeRelayResponse, error)
	StopRelay(ctx context.Context, in *StopRelayRequest, opts ...grpc.CallOption) (*StopRelayResponse, error)
	GetAllRelays(ctx context.Context, in *GetAllRelaysRequest, opts ...grpc.CallOption) (*GetAllRelaysResponse, error)
	// Delete an existing relay
	DeleteRelay(ctx context.Context, in *DeleteRelayRequest, opts ...grpc.CallOption) (*DeleteRelayResponse, error)
	// Begins github authorization process
	StartGithubAuth(ctx context.Context, in *StartGithubAuthRequest, opts ...grpc.CallOption) (*StartGithubAuthResponse, error)
	// Starts a poll of the github authorization status
	PollGithubAuth(ctx context.Context, in *PollGithubAuthRequest, opts ...grpc.CallOption) (PlumberServer_PollGithubAuthClient, error)
	// Determines if we have authorized plumber with github
	IsGithubAuth(ctx context.Context, in *IsGithubAuthRequest, opts ...grpc.CallOption) (*IsGithubAuthResponse, error)
	// Retrieve a single schema
	GetSchema(ctx context.Context, in *GetSchemaRequest, opts ...grpc.CallOption) (*GetSchemaResponse, error)
	// Retrieve all schemas
	GetAllSchemas(ctx context.Context, in *GetAllSchemasRequest, opts ...grpc.CallOption) (*GetAllSchemasResponse, error)
	// Import a schema from github
	ImportGithub(ctx context.Context, in *ImportGithubRequest, opts ...grpc.CallOption) (*ImportGithubResponse, error)
	// Import a schema from the local file system
	ImportLocal(ctx context.Context, in *ImportLocalRequest, opts ...grpc.CallOption) (*ImportLocalResponse, error)
	// Delete a schema
	DeleteSchema(ctx context.Context, in *DeleteSchemaRequest, opts ...grpc.CallOption) (*DeleteSchemaResponse, error)
	GetService(ctx context.Context, in *GetServiceRequest, opts ...grpc.CallOption) (*GetServiceResponse, error)
	GetAllServices(ctx context.Context, in *GetAllServicesRequest, opts ...grpc.CallOption) (*GetAllServicesResponse, error)
	CreateService(ctx context.Context, in *CreateServiceRequest, opts ...grpc.CallOption) (*CreateServiceResponse, error)
	UpdateService(ctx context.Context, in *UpdateServiceRequest, opts ...grpc.CallOption) (*UpdateServiceResponse, error)
	DeleteService(ctx context.Context, in *DeleteServiceRequest, opts ...grpc.CallOption) (*DeleteServiceResponse, error)
	GetServerConfig(ctx context.Context, in *GetServerConfigRequest, opts ...grpc.CallOption) (*GetServerConfigResponse, error)
	// GetGithubEvents connects to github-app backend and returns a stream of events pushed from github
	GetGithubEvents(ctx context.Context, in *GetGithubEventsRequest, opts ...grpc.CallOption) (PlumberServer_GetGithubEventsClient, error)
}

PlumberServerClient is the client API for PlumberServer service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewPlumberServerClient

func NewPlumberServerClient(cc *grpc.ClientConn) PlumberServerClient

type PlumberServerServer

type PlumberServerServer interface {
	// List configured/known connections
	GetAllConnections(context.Context, *GetAllConnectionsRequest) (*GetAllConnectionsResponse, error)
	// Fetch a specific connection by ID
	GetConnection(context.Context, *GetConnectionRequest) (*GetConnectionResponse, error)
	// Create a connection in plumber
	CreateConnection(context.Context, *CreateConnectionRequest) (*CreateConnectionResponse, error)
	// Test a connection before saving its configuration
	TestConnection(context.Context, *TestConnectionRequest) (*TestConnectionResponse, error)
	// Any active connections will be restarted
	UpdateConnection(context.Context, *UpdateConnectionRequest) (*UpdateConnectionResponse, error)
	// If there are any active connections, delete will cause them to get closed
	DeleteConnection(context.Context, *DeleteConnectionRequest) (*DeleteConnectionResponse, error)
	// Start reading data from a connection
	CreateRead(context.Context, *CreateReadRequest) (*CreateReadResponse, error)
	// Streams messages received off of a read
	StartRead(*StartReadRequest, PlumberServer_StartReadServer) error
	// List all reads that have been created
	GetAllReads(context.Context, *GetAllReadsRequest) (*GetAllReadsResponse, error)
	// Stop reading data from a connection
	StopRead(context.Context, *StopReadRequest) (*StopReadResponse, error)
	// Resume reading data from an existing read
	ResumeRead(context.Context, *ResumeReadRequest) (*ResumeReadResponse, error)
	// Resume reading data from an existing read
	DeleteRead(context.Context, *DeleteReadRequest) (*DeleteReadResponse, error)
	// Write data to a connection
	Write(context.Context, *WriteRequest) (*WriteResponse, error)
	// Create a data relay from plumber server to the Batch platform
	CreateRelay(context.Context, *CreateRelayRequest) (*CreateRelayResponse, error)
	// Update a relay (such as API token) - relay will be interrupted!
	UpdateRelay(context.Context, *UpdateRelayRequest) (*UpdateRelayResponse, error)
	ResumeRelay(context.Context, *ResumeRelayRequest) (*ResumeRelayResponse, error)
	StopRelay(context.Context, *StopRelayRequest) (*StopRelayResponse, error)
	GetAllRelays(context.Context, *GetAllRelaysRequest) (*GetAllRelaysResponse, error)
	// Delete an existing relay
	DeleteRelay(context.Context, *DeleteRelayRequest) (*DeleteRelayResponse, error)
	// Begins github authorization process
	StartGithubAuth(context.Context, *StartGithubAuthRequest) (*StartGithubAuthResponse, error)
	// Starts a poll of the github authorization status
	PollGithubAuth(*PollGithubAuthRequest, PlumberServer_PollGithubAuthServer) error
	// Determines if we have authorized plumber with github
	IsGithubAuth(context.Context, *IsGithubAuthRequest) (*IsGithubAuthResponse, error)
	// Retrieve a single schema
	GetSchema(context.Context, *GetSchemaRequest) (*GetSchemaResponse, error)
	// Retrieve all schemas
	GetAllSchemas(context.Context, *GetAllSchemasRequest) (*GetAllSchemasResponse, error)
	// Import a schema from github
	ImportGithub(context.Context, *ImportGithubRequest) (*ImportGithubResponse, error)
	// Import a schema from the local file system
	ImportLocal(context.Context, *ImportLocalRequest) (*ImportLocalResponse, error)
	// Delete a schema
	DeleteSchema(context.Context, *DeleteSchemaRequest) (*DeleteSchemaResponse, error)
	GetService(context.Context, *GetServiceRequest) (*GetServiceResponse, error)
	GetAllServices(context.Context, *GetAllServicesRequest) (*GetAllServicesResponse, error)
	CreateService(context.Context, *CreateServiceRequest) (*CreateServiceResponse, error)
	UpdateService(context.Context, *UpdateServiceRequest) (*UpdateServiceResponse, error)
	DeleteService(context.Context, *DeleteServiceRequest) (*DeleteServiceResponse, error)
	GetServerConfig(context.Context, *GetServerConfigRequest) (*GetServerConfigResponse, error)
	// GetGithubEvents connects to github-app backend and returns a stream of events pushed from github
	GetGithubEvents(*GetGithubEventsRequest, PlumberServer_GetGithubEventsServer) error
}

PlumberServerServer is the server API for PlumberServer service.

type PlumberServer_GetGithubEventsClient added in v0.0.40

type PlumberServer_GetGithubEventsClient interface {
	Recv() (*GithubEvent, error)
	grpc.ClientStream
}

type PlumberServer_GetGithubEventsServer added in v0.0.40

type PlumberServer_GetGithubEventsServer interface {
	Send(*GithubEvent) error
	grpc.ServerStream
}

type PlumberServer_PollGithubAuthClient added in v0.0.25

type PlumberServer_PollGithubAuthClient interface {
	Recv() (*PollGithubAuthResponse, error)
	grpc.ClientStream
}

type PlumberServer_PollGithubAuthServer added in v0.0.25

type PlumberServer_PollGithubAuthServer interface {
	Send(*PollGithubAuthResponse) error
	grpc.ServerStream
}

type PlumberServer_StartReadClient

type PlumberServer_StartReadClient interface {
	Recv() (*StartReadResponse, error)
	grpc.ClientStream
}

type PlumberServer_StartReadServer

type PlumberServer_StartReadServer interface {
	Send(*StartReadResponse) error
	grpc.ServerStream
}

type PollGithubAuthRequest added in v0.0.25

type PollGithubAuthRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*PollGithubAuthRequest) Descriptor added in v0.0.25

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

func (*PollGithubAuthRequest) GetAuth added in v0.0.25

func (m *PollGithubAuthRequest) GetAuth() *common.Auth

func (*PollGithubAuthRequest) ProtoMessage added in v0.0.25

func (*PollGithubAuthRequest) ProtoMessage()

func (*PollGithubAuthRequest) Reset added in v0.0.25

func (m *PollGithubAuthRequest) Reset()

func (*PollGithubAuthRequest) String added in v0.0.25

func (m *PollGithubAuthRequest) String() string

func (*PollGithubAuthRequest) XXX_DiscardUnknown added in v0.0.25

func (m *PollGithubAuthRequest) XXX_DiscardUnknown()

func (*PollGithubAuthRequest) XXX_Marshal added in v0.0.25

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

func (*PollGithubAuthRequest) XXX_Merge added in v0.0.25

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

func (*PollGithubAuthRequest) XXX_Size added in v0.0.25

func (m *PollGithubAuthRequest) XXX_Size() int

func (*PollGithubAuthRequest) XXX_Unmarshal added in v0.0.25

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

type PollGithubAuthResponse added in v0.0.25

type PollGithubAuthResponse struct {
	Status               PollGithubAuthResponse_Status `protobuf:"varint,1,opt,name=status,proto3,enum=protos.PollGithubAuthResponse_Status" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                      `json:"-"`
	XXX_unrecognized     []byte                        `json:"-"`
	XXX_sizecache        int32                         `json:"-"`
}

func (*PollGithubAuthResponse) Descriptor added in v0.0.25

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

func (*PollGithubAuthResponse) GetStatus added in v0.0.25

func (*PollGithubAuthResponse) ProtoMessage added in v0.0.25

func (*PollGithubAuthResponse) ProtoMessage()

func (*PollGithubAuthResponse) Reset added in v0.0.25

func (m *PollGithubAuthResponse) Reset()

func (*PollGithubAuthResponse) String added in v0.0.25

func (m *PollGithubAuthResponse) String() string

func (*PollGithubAuthResponse) XXX_DiscardUnknown added in v0.0.25

func (m *PollGithubAuthResponse) XXX_DiscardUnknown()

func (*PollGithubAuthResponse) XXX_Marshal added in v0.0.25

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

func (*PollGithubAuthResponse) XXX_Merge added in v0.0.25

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

func (*PollGithubAuthResponse) XXX_Size added in v0.0.25

func (m *PollGithubAuthResponse) XXX_Size() int

func (*PollGithubAuthResponse) XXX_Unmarshal added in v0.0.25

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

type PollGithubAuthResponse_Status added in v0.0.25

type PollGithubAuthResponse_Status int32
const (
	PollGithubAuthResponse_PENDING PollGithubAuthResponse_Status = 0
	PollGithubAuthResponse_SUCCESS PollGithubAuthResponse_Status = 1
	PollGithubAuthResponse_FAILED  PollGithubAuthResponse_Status = 2
)

func (PollGithubAuthResponse_Status) EnumDescriptor added in v0.0.25

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

func (PollGithubAuthResponse_Status) String added in v0.0.25

type PullRequestCreated added in v0.0.40

type PullRequestCreated struct {
	Owner                string   `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	Repo                 string   `protobuf:"bytes,2,opt,name=repo,proto3" json:"repo,omitempty"`
	Number               int32    `protobuf:"varint,3,opt,name=number,proto3" json:"number,omitempty"`
	Url                  string   `protobuf:"bytes,4,opt,name=url,proto3" json:"url,omitempty"`
	Description          string   `protobuf:"bytes,5,opt,name=description,proto3" json:"description,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Sent by github-service and received by plumber Sent by plumber, received by UI

func (*PullRequestCreated) Descriptor added in v0.0.40

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

func (*PullRequestCreated) GetDescription added in v0.0.40

func (m *PullRequestCreated) GetDescription() string

func (*PullRequestCreated) GetNumber added in v0.0.40

func (m *PullRequestCreated) GetNumber() int32

func (*PullRequestCreated) GetOwner added in v0.0.40

func (m *PullRequestCreated) GetOwner() string

func (*PullRequestCreated) GetRepo added in v0.0.40

func (m *PullRequestCreated) GetRepo() string

func (*PullRequestCreated) GetUrl added in v0.0.40

func (m *PullRequestCreated) GetUrl() string

func (*PullRequestCreated) ProtoMessage added in v0.0.40

func (*PullRequestCreated) ProtoMessage()

func (*PullRequestCreated) Reset added in v0.0.40

func (m *PullRequestCreated) Reset()

func (*PullRequestCreated) String added in v0.0.40

func (m *PullRequestCreated) String() string

func (*PullRequestCreated) XXX_DiscardUnknown added in v0.0.40

func (m *PullRequestCreated) XXX_DiscardUnknown()

func (*PullRequestCreated) XXX_Marshal added in v0.0.40

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

func (*PullRequestCreated) XXX_Merge added in v0.0.40

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

func (*PullRequestCreated) XXX_Size added in v0.0.40

func (m *PullRequestCreated) XXX_Size() int

func (*PullRequestCreated) XXX_Unmarshal added in v0.0.40

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

type PullRequestMerged added in v0.0.40

type PullRequestMerged struct {
	Owner                string   `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	Repo                 string   `protobuf:"bytes,2,opt,name=repo,proto3" json:"repo,omitempty"`
	Number               int32    `protobuf:"varint,3,opt,name=number,proto3" json:"number,omitempty"`
	Url                  string   `protobuf:"bytes,4,opt,name=url,proto3" json:"url,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Sent by github-service and received by plumber Sent by plumber, received by UI

func (*PullRequestMerged) Descriptor added in v0.0.40

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

func (*PullRequestMerged) GetNumber added in v0.0.40

func (m *PullRequestMerged) GetNumber() int32

func (*PullRequestMerged) GetOwner added in v0.0.40

func (m *PullRequestMerged) GetOwner() string

func (*PullRequestMerged) GetRepo added in v0.0.40

func (m *PullRequestMerged) GetRepo() string

func (*PullRequestMerged) GetUrl added in v0.0.40

func (m *PullRequestMerged) GetUrl() string

func (*PullRequestMerged) ProtoMessage added in v0.0.40

func (*PullRequestMerged) ProtoMessage()

func (*PullRequestMerged) Reset added in v0.0.40

func (m *PullRequestMerged) Reset()

func (*PullRequestMerged) String added in v0.0.40

func (m *PullRequestMerged) String() string

func (*PullRequestMerged) XXX_DiscardUnknown added in v0.0.40

func (m *PullRequestMerged) XXX_DiscardUnknown()

func (*PullRequestMerged) XXX_Marshal added in v0.0.40

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

func (*PullRequestMerged) XXX_Merge added in v0.0.40

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

func (*PullRequestMerged) XXX_Size added in v0.0.40

func (m *PullRequestMerged) XXX_Size() int

func (*PullRequestMerged) XXX_Unmarshal added in v0.0.40

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

type ReadCLIConfig added in v0.0.38

type ReadCLIConfig struct {
	// @gotags: kong:"help='Display consumer offset stats during read'"
	DisplayOffsetStats bool `` /* 174-byte string literal not displayed */
	// @gotags: kong:"help='Convert output before it is printed to STDOUT (1 = base64, 2 = gzip)',enum"
	ConvertOutput []ConvertOption `` /* 222-byte string literal not displayed */
	// @gotags: kong:"help='Display more verbose information during reads (varies by backend)'"
	VerboseOutput bool `` /* 181-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 */
	XXX_NoUnkeyedLiteral   struct{} `json:"-"`
	XXX_unrecognized       []byte   `json:"-"`
	XXX_sizecache          int32    `json:"-"`
}

func (*ReadCLIConfig) Descriptor added in v0.0.38

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

func (*ReadCLIConfig) GetConvertOutput added in v0.0.38

func (m *ReadCLIConfig) GetConvertOutput() []ConvertOption

func (*ReadCLIConfig) GetDisplayOffsetStats added in v0.0.42

func (m *ReadCLIConfig) GetDisplayOffsetStats() bool

func (*ReadCLIConfig) GetStatsEnable added in v0.0.42

func (m *ReadCLIConfig) GetStatsEnable() bool

func (*ReadCLIConfig) GetStatsReportIntervalSec added in v0.0.42

func (m *ReadCLIConfig) GetStatsReportIntervalSec() int32

func (*ReadCLIConfig) GetVerboseOutput added in v0.0.38

func (m *ReadCLIConfig) GetVerboseOutput() bool

func (*ReadCLIConfig) ProtoMessage added in v0.0.38

func (*ReadCLIConfig) ProtoMessage()

func (*ReadCLIConfig) Reset added in v0.0.38

func (m *ReadCLIConfig) Reset()

func (*ReadCLIConfig) String added in v0.0.38

func (m *ReadCLIConfig) String() string

func (*ReadCLIConfig) XXX_DiscardUnknown added in v0.0.38

func (m *ReadCLIConfig) XXX_DiscardUnknown()

func (*ReadCLIConfig) XXX_Marshal added in v0.0.38

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

func (*ReadCLIConfig) XXX_Merge added in v0.0.38

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

func (*ReadCLIConfig) XXX_Size added in v0.0.38

func (m *ReadCLIConfig) XXX_Size() int

func (*ReadCLIConfig) XXX_Unmarshal added in v0.0.38

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

type ReadConfig added in v0.0.34

type ReadConfig 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: short:"f" default: "false"
	Continuous bool `protobuf:"varint,3,opt,name=continuous,proto3" json:"continuous,omitempty" 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 */
	// Any extra opts that can differ between reads (topics, read offset, etc.).
	// NOTE: Desktop can leave conn unset - an existing connection will be used
	// by looking up connection_id.
	// @gotags: kong:"embed"
	ReadOpts *ReadOpts `protobuf:"bytes,6,opt,name=read_opts,json=readOpts,proto3" json:"read_opts,omitempty" kong:"embed"`
	// 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"
	XCliConfig           *ReadCLIConfig `protobuf:"bytes,1002,opt,name=_cli_config,json=CliConfig,proto3" json:"_cli_config,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ReadConfig) Descriptor added in v0.0.34

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

func (*ReadConfig) GetConnectionId added in v0.0.34

func (m *ReadConfig) GetConnectionId() string

func (*ReadConfig) GetContinuous added in v0.0.42

func (m *ReadConfig) GetContinuous() bool

func (*ReadConfig) GetDecodeOptions added in v0.0.34

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

func (*ReadConfig) GetName added in v0.0.34

func (m *ReadConfig) GetName() string

func (*ReadConfig) GetReadOpts added in v0.0.46

func (m *ReadConfig) GetReadOpts() *ReadOpts

func (*ReadConfig) GetSampleOptions added in v0.0.42

func (m *ReadConfig) GetSampleOptions() *ReadSampleOptions

func (*ReadConfig) GetXActive added in v0.0.34

func (m *ReadConfig) GetXActive() bool

func (*ReadConfig) GetXCliConfig added in v0.0.38

func (m *ReadConfig) GetXCliConfig() *ReadCLIConfig

func (*ReadConfig) GetXId added in v0.0.34

func (m *ReadConfig) GetXId() string

func (*ReadConfig) ProtoMessage added in v0.0.34

func (*ReadConfig) ProtoMessage()

func (*ReadConfig) Reset added in v0.0.34

func (m *ReadConfig) Reset()

func (*ReadConfig) String added in v0.0.34

func (m *ReadConfig) String() string

func (*ReadConfig) XXX_DiscardUnknown added in v0.0.34

func (m *ReadConfig) XXX_DiscardUnknown()

func (*ReadConfig) XXX_Marshal added in v0.0.34

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

func (*ReadConfig) XXX_Merge added in v0.0.34

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

func (*ReadConfig) XXX_Size added in v0.0.34

func (m *ReadConfig) XXX_Size() int

func (*ReadConfig) XXX_Unmarshal added in v0.0.34

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

type ReadOpts added in v0.0.46

type ReadOpts struct {
	// @gotags: kong:"cmd,help='Apache Kafka'"
	Kafka *ReadOptsKafka `protobuf:"bytes,100,opt,name=kafka,proto3" json:"kafka,omitempty" kong:"cmd,help='Apache Kafka'"`
	// @gotags: kong:"cmd,help='Apache ActiveMQ (STOMP)'"
	Activemq *ReadOptsActiveMQ `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 *ReadOptsAWSSQS `protobuf:"bytes,102,opt,name=awssqs,proto3" json:"awssqs,omitempty" kong:"cmd,help='AWS Simple Queue System'"`
	// @gotags: kong:"cmd,help='MongoDB'"
	Mongo *ReadOptsMongo `protobuf:"bytes,103,opt,name=mongo,proto3" json:"mongo,omitempty" kong:"cmd,help='MongoDB'"`
	// @gotags: kong:"cmd,help='NATS'"
	Nats *ReadOptsNats `protobuf:"bytes,104,opt,name=nats,proto3" json:"nats,omitempty" kong:"cmd,help='NATS'"`
	// @gotags: kong:"cmd,help='NATS Streaming'"
	NatsStreaming *ReadOptsNatsStreaming `` /* 135-byte string literal not displayed */
	// @gotags: kong:"cmd,help='NSQ'"
	Nsq *ReadOptsNSQ `protobuf:"bytes,106,opt,name=nsq,proto3" json:"nsq,omitempty" kong:"cmd,help='NSQ'"`
	// @gotags: kong:"cmd,help='Apache Pulsar'"
	Pulsar *ReadOptsPulsar `protobuf:"bytes,107,opt,name=pulsar,proto3" json:"pulsar,omitempty" kong:"cmd,help='Apache Pulsar'"`
	// @gotags: kong:"cmd,help='RabbitMQ'"
	Rabbit *ReadOptsRabbit `protobuf:"bytes,108,opt,name=rabbit,proto3" json:"rabbit,omitempty" kong:"cmd,help='RabbitMQ'"`
	// @gotags: kong:"cmd,help='RabbitMQ Streams'"
	RabbitStreams *ReadOptsRabbitStreams `` /* 137-byte string literal not displayed */
	// @gotags: kong:"cmd,help='MQTT'"
	Mqtt *ReadOptsMQTT `protobuf:"bytes,110,opt,name=mqtt,proto3" json:"mqtt,omitempty" kong:"cmd,help='MQTT'"`
	// @gotags: kong:"cmd,help='Azure Service Bus'"
	AzureServiceBus *ReadOptsAzureServiceBus `` /* 146-byte string literal not displayed */
	// @gotags: kong:"cmd,help=”"
	AzureEventHub *ReadOptsAzureEventHub `protobuf:"bytes,112,opt,name=azure_event_hub,json=azureEventHub,proto3" json:"azure_event_hub,omitempty" kong:"cmd,help=''"`
	// @gotags: kong:"cmd,help='Google Cloud Platform Pub/Sub'"
	GcpPubsub *ReadOptsGCPPubSub `` /* 138-byte string literal not displayed */
	// @gotags: kong:"cmd,help='KubeMQ Queue'"
	KubemqQueue *ReadOptsKubeMQQueue `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis PubSub'"
	RedisPubsub *ReadOptsRedisPubSub `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis Streams'"
	RedisStreams *ReadOptsRedisStreams `` /* 131-byte string literal not displayed */
	// @gotags: kong:"cmd,help='PostgreSQL'"
	Postgres             *ReadOptsPostgres `protobuf:"bytes,117,opt,name=postgres,proto3" json:"postgres,omitempty" kong:"cmd,help='PostgreSQL'"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*ReadOpts) Descriptor added in v0.0.46

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

func (*ReadOpts) GetActivemq added in v0.0.46

func (m *ReadOpts) GetActivemq() *ReadOptsActiveMQ

func (*ReadOpts) GetAwssqs added in v0.0.46

func (m *ReadOpts) GetAwssqs() *ReadOptsAWSSQS

func (*ReadOpts) GetAzureEventHub added in v0.0.46

func (m *ReadOpts) GetAzureEventHub() *ReadOptsAzureEventHub

func (*ReadOpts) GetAzureServiceBus added in v0.0.46

func (m *ReadOpts) GetAzureServiceBus() *ReadOptsAzureServiceBus

func (*ReadOpts) GetGcpPubsub added in v0.0.46

func (m *ReadOpts) GetGcpPubsub() *ReadOptsGCPPubSub

func (*ReadOpts) GetKafka added in v0.0.46

func (m *ReadOpts) GetKafka() *ReadOptsKafka

func (*ReadOpts) GetKubemqQueue added in v0.0.46

func (m *ReadOpts) GetKubemqQueue() *ReadOptsKubeMQQueue

func (*ReadOpts) GetMongo added in v0.0.46

func (m *ReadOpts) GetMongo() *ReadOptsMongo

func (*ReadOpts) GetMqtt added in v0.0.46

func (m *ReadOpts) GetMqtt() *ReadOptsMQTT

func (*ReadOpts) GetNats added in v0.0.46

func (m *ReadOpts) GetNats() *ReadOptsNats

func (*ReadOpts) GetNatsStreaming added in v0.0.46

func (m *ReadOpts) GetNatsStreaming() *ReadOptsNatsStreaming

func (*ReadOpts) GetNsq added in v0.0.46

func (m *ReadOpts) GetNsq() *ReadOptsNSQ

func (*ReadOpts) GetPostgres added in v0.0.46

func (m *ReadOpts) GetPostgres() *ReadOptsPostgres

func (*ReadOpts) GetPulsar added in v0.0.46

func (m *ReadOpts) GetPulsar() *ReadOptsPulsar

func (*ReadOpts) GetRabbit added in v0.0.46

func (m *ReadOpts) GetRabbit() *ReadOptsRabbit

func (*ReadOpts) GetRabbitStreams added in v0.0.46

func (m *ReadOpts) GetRabbitStreams() *ReadOptsRabbitStreams

func (*ReadOpts) GetRedisPubsub added in v0.0.46

func (m *ReadOpts) GetRedisPubsub() *ReadOptsRedisPubSub

func (*ReadOpts) GetRedisStreams added in v0.0.46

func (m *ReadOpts) GetRedisStreams() *ReadOptsRedisStreams

func (*ReadOpts) ProtoMessage added in v0.0.46

func (*ReadOpts) ProtoMessage()

func (*ReadOpts) Reset added in v0.0.46

func (m *ReadOpts) Reset()

func (*ReadOpts) String added in v0.0.46

func (m *ReadOpts) String() string

func (*ReadOpts) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOpts) XXX_DiscardUnknown()

func (*ReadOpts) XXX_Marshal added in v0.0.46

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

func (*ReadOpts) XXX_Merge added in v0.0.46

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

func (*ReadOpts) XXX_Size added in v0.0.46

func (m *ReadOpts) XXX_Size() int

func (*ReadOpts) XXX_Unmarshal added in v0.0.46

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

type ReadOptsAWSSQS added in v0.0.46

type ReadOptsAWSSQS struct {
	// @gotags: kong:"embed"
	Conn *args.AWSSQSConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AWSSQSReadOpts `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 (*ReadOptsAWSSQS) Descriptor added in v0.0.46

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

func (*ReadOptsAWSSQS) GetArgs added in v0.0.46

func (m *ReadOptsAWSSQS) GetArgs() *args.AWSSQSReadOpts

func (*ReadOptsAWSSQS) GetConn added in v0.0.46

func (m *ReadOptsAWSSQS) GetConn() *args.AWSSQSConn

func (*ReadOptsAWSSQS) ProtoMessage added in v0.0.46

func (*ReadOptsAWSSQS) ProtoMessage()

func (*ReadOptsAWSSQS) Reset added in v0.0.46

func (m *ReadOptsAWSSQS) Reset()

func (*ReadOptsAWSSQS) String added in v0.0.46

func (m *ReadOptsAWSSQS) String() string

func (*ReadOptsAWSSQS) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOptsAWSSQS) XXX_DiscardUnknown()

func (*ReadOptsAWSSQS) XXX_Marshal added in v0.0.46

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

func (*ReadOptsAWSSQS) XXX_Merge added in v0.0.46

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

func (*ReadOptsAWSSQS) XXX_Size added in v0.0.46

func (m *ReadOptsAWSSQS) XXX_Size() int

func (*ReadOptsAWSSQS) XXX_Unmarshal added in v0.0.46

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

type ReadOptsActiveMQ added in v0.0.46

type ReadOptsActiveMQ struct {
	// @gotags: kong:"embed"
	Conn *args.ActiveMQConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.ActiveMQReadOpts `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 (*ReadOptsActiveMQ) Descriptor added in v0.0.46

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

func (*ReadOptsActiveMQ) GetArgs added in v0.0.46

func (m *ReadOptsActiveMQ) GetArgs() *args.ActiveMQReadOpts

func (*ReadOptsActiveMQ) GetConn added in v0.0.46

func (m *ReadOptsActiveMQ) GetConn() *args.ActiveMQConn

func (*ReadOptsActiveMQ) ProtoMessage added in v0.0.46

func (*ReadOptsActiveMQ) ProtoMessage()

func (*ReadOptsActiveMQ) Reset added in v0.0.46

func (m *ReadOptsActiveMQ) Reset()

func (*ReadOptsActiveMQ) String added in v0.0.46

func (m *ReadOptsActiveMQ) String() string

func (*ReadOptsActiveMQ) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOptsActiveMQ) XXX_DiscardUnknown()

func (*ReadOptsActiveMQ) XXX_Marshal added in v0.0.46

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

func (*ReadOptsActiveMQ) XXX_Merge added in v0.0.46

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

func (*ReadOptsActiveMQ) XXX_Size added in v0.0.46

func (m *ReadOptsActiveMQ) XXX_Size() int

func (*ReadOptsActiveMQ) XXX_Unmarshal added in v0.0.46

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

type ReadOptsAzureEventHub added in v0.0.46

type ReadOptsAzureEventHub struct {
	// @gotags: kong:"embed"
	Conn *args.AzureEventHubConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AzureEventHubReadOpts `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 (*ReadOptsAzureEventHub) Descriptor added in v0.0.46

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

func (*ReadOptsAzureEventHub) GetArgs added in v0.0.46

func (*ReadOptsAzureEventHub) GetConn added in v0.0.46

func (*ReadOptsAzureEventHub) ProtoMessage added in v0.0.46

func (*ReadOptsAzureEventHub) ProtoMessage()

func (*ReadOptsAzureEventHub) Reset added in v0.0.46

func (m *ReadOptsAzureEventHub) Reset()

func (*ReadOptsAzureEventHub) String added in v0.0.46

func (m *ReadOptsAzureEventHub) String() string

func (*ReadOptsAzureEventHub) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOptsAzureEventHub) XXX_DiscardUnknown()

func (*ReadOptsAzureEventHub) XXX_Marshal added in v0.0.46

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

func (*ReadOptsAzureEventHub) XXX_Merge added in v0.0.46

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

func (*ReadOptsAzureEventHub) XXX_Size added in v0.0.46

func (m *ReadOptsAzureEventHub) XXX_Size() int

func (*ReadOptsAzureEventHub) XXX_Unmarshal added in v0.0.46

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

type ReadOptsAzureServiceBus added in v0.0.46

type ReadOptsAzureServiceBus struct {
	// @gotags: kong:"embed"
	Conn *args.AzureServiceBusConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AzureServiceBusReadOpts `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 (*ReadOptsAzureServiceBus) Descriptor added in v0.0.46

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

func (*ReadOptsAzureServiceBus) GetArgs added in v0.0.46

func (*ReadOptsAzureServiceBus) GetConn added in v0.0.46

func (*ReadOptsAzureServiceBus) ProtoMessage added in v0.0.46

func (*ReadOptsAzureServiceBus) ProtoMessage()

func (*ReadOptsAzureServiceBus) Reset added in v0.0.46

func (m *ReadOptsAzureServiceBus) Reset()

func (*ReadOptsAzureServiceBus) String added in v0.0.46

func (m *ReadOptsAzureServiceBus) String() string

func (*ReadOptsAzureServiceBus) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOptsAzureServiceBus) XXX_DiscardUnknown()

func (*ReadOptsAzureServiceBus) XXX_Marshal added in v0.0.46

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

func (*ReadOptsAzureServiceBus) XXX_Merge added in v0.0.46

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

func (*ReadOptsAzureServiceBus) XXX_Size added in v0.0.46

func (m *ReadOptsAzureServiceBus) XXX_Size() int

func (*ReadOptsAzureServiceBus) XXX_Unmarshal added in v0.0.46

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

type ReadOptsGCPPubSub added in v0.0.46

type ReadOptsGCPPubSub struct {
	// @gotags: kong:"embed"
	Conn *args.GCPPubSubConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.GCPPubSubReadOpts `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 (*ReadOptsGCPPubSub) Descriptor added in v0.0.46

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

func (*ReadOptsGCPPubSub) GetArgs added in v0.0.46

func (*ReadOptsGCPPubSub) GetConn added in v0.0.46

func (m *ReadOptsGCPPubSub) GetConn() *args.GCPPubSubConn

func (*ReadOptsGCPPubSub) ProtoMessage added in v0.0.46

func (*ReadOptsGCPPubSub) ProtoMessage()

func (*ReadOptsGCPPubSub) Reset added in v0.0.46

func (m *ReadOptsGCPPubSub) Reset()

func (*ReadOptsGCPPubSub) String added in v0.0.46

func (m *ReadOptsGCPPubSub) String() string

func (*ReadOptsGCPPubSub) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOptsGCPPubSub) XXX_DiscardUnknown()

func (*ReadOptsGCPPubSub) XXX_Marshal added in v0.0.46

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

func (*ReadOptsGCPPubSub) XXX_Merge added in v0.0.46

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

func (*ReadOptsGCPPubSub) XXX_Size added in v0.0.46

func (m *ReadOptsGCPPubSub) XXX_Size() int

func (*ReadOptsGCPPubSub) XXX_Unmarshal added in v0.0.46

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

type ReadOptsKafka added in v0.0.46

type ReadOptsKafka struct {
	// @gotags: kong:"embed"
	Conn *args.KafkaConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.KafkaReadOpts `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 (*ReadOptsKafka) Descriptor added in v0.0.46

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

func (*ReadOptsKafka) GetArgs added in v0.0.46

func (m *ReadOptsKafka) GetArgs() *args.KafkaReadOpts

func (*ReadOptsKafka) GetConn added in v0.0.46

func (m *ReadOptsKafka) GetConn() *args.KafkaConn

func (*ReadOptsKafka) ProtoMessage added in v0.0.46

func (*ReadOptsKafka) ProtoMessage()

func (*ReadOptsKafka) Reset added in v0.0.46

func (m *ReadOptsKafka) Reset()

func (*ReadOptsKafka) String added in v0.0.46

func (m *ReadOptsKafka) String() string

func (*ReadOptsKafka) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOptsKafka) XXX_DiscardUnknown()

func (*ReadOptsKafka) XXX_Marshal added in v0.0.46

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

func (*ReadOptsKafka) XXX_Merge added in v0.0.46

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

func (*ReadOptsKafka) XXX_Size added in v0.0.46

func (m *ReadOptsKafka) XXX_Size() int

func (*ReadOptsKafka) XXX_Unmarshal added in v0.0.46

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

type ReadOptsKubeMQQueue added in v0.0.46

type ReadOptsKubeMQQueue struct {
	// @gotags: kong:"embed"
	Conn *args.KubeMQQueueConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.KubeMQQueueReadOpts `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 (*ReadOptsKubeMQQueue) Descriptor added in v0.0.46

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

func (*ReadOptsKubeMQQueue) GetArgs added in v0.0.46

func (*ReadOptsKubeMQQueue) GetConn added in v0.0.46

func (*ReadOptsKubeMQQueue) ProtoMessage added in v0.0.46

func (*ReadOptsKubeMQQueue) ProtoMessage()

func (*ReadOptsKubeMQQueue) Reset added in v0.0.46

func (m *ReadOptsKubeMQQueue) Reset()

func (*ReadOptsKubeMQQueue) String added in v0.0.46

func (m *ReadOptsKubeMQQueue) String() string

func (*ReadOptsKubeMQQueue) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOptsKubeMQQueue) XXX_DiscardUnknown()

func (*ReadOptsKubeMQQueue) XXX_Marshal added in v0.0.46

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

func (*ReadOptsKubeMQQueue) XXX_Merge added in v0.0.46

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

func (*ReadOptsKubeMQQueue) XXX_Size added in v0.0.46

func (m *ReadOptsKubeMQQueue) XXX_Size() int

func (*ReadOptsKubeMQQueue) XXX_Unmarshal added in v0.0.46

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

type ReadOptsMQTT added in v0.0.46

type ReadOptsMQTT struct {
	// @gotags: kong:"embed"
	Conn *args.MQTTConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.MQTTReadOpts `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 (*ReadOptsMQTT) Descriptor added in v0.0.46

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

func (*ReadOptsMQTT) GetArgs added in v0.0.46

func (m *ReadOptsMQTT) GetArgs() *args.MQTTReadOpts

func (*ReadOptsMQTT) GetConn added in v0.0.46

func (m *ReadOptsMQTT) GetConn() *args.MQTTConn

func (*ReadOptsMQTT) ProtoMessage added in v0.0.46

func (*ReadOptsMQTT) ProtoMessage()

func (*ReadOptsMQTT) Reset added in v0.0.46

func (m *ReadOptsMQTT) Reset()

func (*ReadOptsMQTT) String added in v0.0.46

func (m *ReadOptsMQTT) String() string

func (*ReadOptsMQTT) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOptsMQTT) XXX_DiscardUnknown()

func (*ReadOptsMQTT) XXX_Marshal added in v0.0.46

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

func (*ReadOptsMQTT) XXX_Merge added in v0.0.46

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

func (*ReadOptsMQTT) XXX_Size added in v0.0.46

func (m *ReadOptsMQTT) XXX_Size() int

func (*ReadOptsMQTT) XXX_Unmarshal added in v0.0.46

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

type ReadOptsMongo added in v0.0.46

type ReadOptsMongo struct {
	// @gotags: kong:"embed"
	Conn *args.MongoConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.MongoReadOpts `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 (*ReadOptsMongo) Descriptor added in v0.0.46

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

func (*ReadOptsMongo) GetArgs added in v0.0.46

func (m *ReadOptsMongo) GetArgs() *args.MongoReadOpts

func (*ReadOptsMongo) GetConn added in v0.0.46

func (m *ReadOptsMongo) GetConn() *args.MongoConn

func (*ReadOptsMongo) ProtoMessage added in v0.0.46

func (*ReadOptsMongo) ProtoMessage()

func (*ReadOptsMongo) Reset added in v0.0.46

func (m *ReadOptsMongo) Reset()

func (*ReadOptsMongo) String added in v0.0.46

func (m *ReadOptsMongo) String() string

func (*ReadOptsMongo) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOptsMongo) XXX_DiscardUnknown()

func (*ReadOptsMongo) XXX_Marshal added in v0.0.46

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

func (*ReadOptsMongo) XXX_Merge added in v0.0.46

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

func (*ReadOptsMongo) XXX_Size added in v0.0.46

func (m *ReadOptsMongo) XXX_Size() int

func (*ReadOptsMongo) XXX_Unmarshal added in v0.0.46

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

type ReadOptsNSQ added in v0.0.46

type ReadOptsNSQ struct {
	// @gotags: kong:"embed"
	Conn *args.NSQConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NSQReadOpts `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 (*ReadOptsNSQ) Descriptor added in v0.0.46

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

func (*ReadOptsNSQ) GetArgs added in v0.0.46

func (m *ReadOptsNSQ) GetArgs() *args.NSQReadOpts

func (*ReadOptsNSQ) GetConn added in v0.0.46

func (m *ReadOptsNSQ) GetConn() *args.NSQConn

func (*ReadOptsNSQ) ProtoMessage added in v0.0.46

func (*ReadOptsNSQ) ProtoMessage()

func (*ReadOptsNSQ) Reset added in v0.0.46

func (m *ReadOptsNSQ) Reset()

func (*ReadOptsNSQ) String added in v0.0.46

func (m *ReadOptsNSQ) String() string

func (*ReadOptsNSQ) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOptsNSQ) XXX_DiscardUnknown()

func (*ReadOptsNSQ) XXX_Marshal added in v0.0.46

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

func (*ReadOptsNSQ) XXX_Merge added in v0.0.46

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

func (*ReadOptsNSQ) XXX_Size added in v0.0.46

func (m *ReadOptsNSQ) XXX_Size() int

func (*ReadOptsNSQ) XXX_Unmarshal added in v0.0.46

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

type ReadOptsNats added in v0.0.46

type ReadOptsNats struct {
	// @gotags: kong:"embed"
	Conn *args.NatsConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NatsReadOpts `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 (*ReadOptsNats) Descriptor added in v0.0.46

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

func (*ReadOptsNats) GetArgs added in v0.0.46

func (m *ReadOptsNats) GetArgs() *args.NatsReadOpts

func (*ReadOptsNats) GetConn added in v0.0.46

func (m *ReadOptsNats) GetConn() *args.NatsConn

func (*ReadOptsNats) ProtoMessage added in v0.0.46

func (*ReadOptsNats) ProtoMessage()

func (*ReadOptsNats) Reset added in v0.0.46

func (m *ReadOptsNats) Reset()

func (*ReadOptsNats) String added in v0.0.46

func (m *ReadOptsNats) String() string

func (*ReadOptsNats) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOptsNats) XXX_DiscardUnknown()

func (*ReadOptsNats) XXX_Marshal added in v0.0.46

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

func (*ReadOptsNats) XXX_Merge added in v0.0.46

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

func (*ReadOptsNats) XXX_Size added in v0.0.46

func (m *ReadOptsNats) XXX_Size() int

func (*ReadOptsNats) XXX_Unmarshal added in v0.0.46

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

type ReadOptsNatsStreaming added in v0.0.46

type ReadOptsNatsStreaming struct {
	// @gotags: kong:"embed"
	Conn *args.NatsStreamingConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NatsStreamingReadOpts `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 (*ReadOptsNatsStreaming) Descriptor added in v0.0.46

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

func (*ReadOptsNatsStreaming) GetArgs added in v0.0.46

func (*ReadOptsNatsStreaming) GetConn added in v0.0.46

func (*ReadOptsNatsStreaming) ProtoMessage added in v0.0.46

func (*ReadOptsNatsStreaming) ProtoMessage()

func (*ReadOptsNatsStreaming) Reset added in v0.0.46

func (m *ReadOptsNatsStreaming) Reset()

func (*ReadOptsNatsStreaming) String added in v0.0.46

func (m *ReadOptsNatsStreaming) String() string

func (*ReadOptsNatsStreaming) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOptsNatsStreaming) XXX_DiscardUnknown()

func (*ReadOptsNatsStreaming) XXX_Marshal added in v0.0.46

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

func (*ReadOptsNatsStreaming) XXX_Merge added in v0.0.46

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

func (*ReadOptsNatsStreaming) XXX_Size added in v0.0.46

func (m *ReadOptsNatsStreaming) XXX_Size() int

func (*ReadOptsNatsStreaming) XXX_Unmarshal added in v0.0.46

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

type ReadOptsPostgres added in v0.0.46

type ReadOptsPostgres struct {
	// @gotags: kong:"embed"
	Conn *args.PostgresConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.PostgresReadOpts `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 (*ReadOptsPostgres) Descriptor added in v0.0.46

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

func (*ReadOptsPostgres) GetArgs added in v0.0.46

func (m *ReadOptsPostgres) GetArgs() *args.PostgresReadOpts

func (*ReadOptsPostgres) GetConn added in v0.0.46

func (m *ReadOptsPostgres) GetConn() *args.PostgresConn

func (*ReadOptsPostgres) ProtoMessage added in v0.0.46

func (*ReadOptsPostgres) ProtoMessage()

func (*ReadOptsPostgres) Reset added in v0.0.46

func (m *ReadOptsPostgres) Reset()

func (*ReadOptsPostgres) String added in v0.0.46

func (m *ReadOptsPostgres) String() string

func (*ReadOptsPostgres) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOptsPostgres) XXX_DiscardUnknown()

func (*ReadOptsPostgres) XXX_Marshal added in v0.0.46

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

func (*ReadOptsPostgres) XXX_Merge added in v0.0.46

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

func (*ReadOptsPostgres) XXX_Size added in v0.0.46

func (m *ReadOptsPostgres) XXX_Size() int

func (*ReadOptsPostgres) XXX_Unmarshal added in v0.0.46

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

type ReadOptsPulsar added in v0.0.46

type ReadOptsPulsar struct {
	// @gotags: kong:"embed"
	Conn *args.PulsarConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.PulsarReadOpts `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 (*ReadOptsPulsar) Descriptor added in v0.0.46

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

func (*ReadOptsPulsar) GetArgs added in v0.0.46

func (m *ReadOptsPulsar) GetArgs() *args.PulsarReadOpts

func (*ReadOptsPulsar) GetConn added in v0.0.46

func (m *ReadOptsPulsar) GetConn() *args.PulsarConn

func (*ReadOptsPulsar) ProtoMessage added in v0.0.46

func (*ReadOptsPulsar) ProtoMessage()

func (*ReadOptsPulsar) Reset added in v0.0.46

func (m *ReadOptsPulsar) Reset()

func (*ReadOptsPulsar) String added in v0.0.46

func (m *ReadOptsPulsar) String() string

func (*ReadOptsPulsar) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOptsPulsar) XXX_DiscardUnknown()

func (*ReadOptsPulsar) XXX_Marshal added in v0.0.46

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

func (*ReadOptsPulsar) XXX_Merge added in v0.0.46

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

func (*ReadOptsPulsar) XXX_Size added in v0.0.46

func (m *ReadOptsPulsar) XXX_Size() int

func (*ReadOptsPulsar) XXX_Unmarshal added in v0.0.46

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

type ReadOptsRabbit added in v0.0.46

type ReadOptsRabbit struct {
	// @gotags: kong:"embed"
	Conn *args.RabbitConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RabbitReadOpts `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 (*ReadOptsRabbit) Descriptor added in v0.0.46

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

func (*ReadOptsRabbit) GetArgs added in v0.0.46

func (m *ReadOptsRabbit) GetArgs() *args.RabbitReadOpts

func (*ReadOptsRabbit) GetConn added in v0.0.46

func (m *ReadOptsRabbit) GetConn() *args.RabbitConn

func (*ReadOptsRabbit) ProtoMessage added in v0.0.46

func (*ReadOptsRabbit) ProtoMessage()

func (*ReadOptsRabbit) Reset added in v0.0.46

func (m *ReadOptsRabbit) Reset()

func (*ReadOptsRabbit) String added in v0.0.46

func (m *ReadOptsRabbit) String() string

func (*ReadOptsRabbit) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOptsRabbit) XXX_DiscardUnknown()

func (*ReadOptsRabbit) XXX_Marshal added in v0.0.46

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

func (*ReadOptsRabbit) XXX_Merge added in v0.0.46

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

func (*ReadOptsRabbit) XXX_Size added in v0.0.46

func (m *ReadOptsRabbit) XXX_Size() int

func (*ReadOptsRabbit) XXX_Unmarshal added in v0.0.46

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

type ReadOptsRabbitStreams added in v0.0.46

type ReadOptsRabbitStreams struct {
	// @gotags: kong:"embed"
	Conn *args.RabbitStreamsConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RabbitStreamsReadOpts `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 (*ReadOptsRabbitStreams) Descriptor added in v0.0.46

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

func (*ReadOptsRabbitStreams) GetArgs added in v0.0.46

func (*ReadOptsRabbitStreams) GetConn added in v0.0.46

func (*ReadOptsRabbitStreams) ProtoMessage added in v0.0.46

func (*ReadOptsRabbitStreams) ProtoMessage()

func (*ReadOptsRabbitStreams) Reset added in v0.0.46

func (m *ReadOptsRabbitStreams) Reset()

func (*ReadOptsRabbitStreams) String added in v0.0.46

func (m *ReadOptsRabbitStreams) String() string

func (*ReadOptsRabbitStreams) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOptsRabbitStreams) XXX_DiscardUnknown()

func (*ReadOptsRabbitStreams) XXX_Marshal added in v0.0.46

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

func (*ReadOptsRabbitStreams) XXX_Merge added in v0.0.46

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

func (*ReadOptsRabbitStreams) XXX_Size added in v0.0.46

func (m *ReadOptsRabbitStreams) XXX_Size() int

func (*ReadOptsRabbitStreams) XXX_Unmarshal added in v0.0.46

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

type ReadOptsRedisPubSub added in v0.0.46

type ReadOptsRedisPubSub struct {
	// @gotags: kong:"embed"
	Conn *args.RedisPubSubConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RedisPubSubReadOpts `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 (*ReadOptsRedisPubSub) Descriptor added in v0.0.46

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

func (*ReadOptsRedisPubSub) GetArgs added in v0.0.46

func (*ReadOptsRedisPubSub) GetConn added in v0.0.46

func (*ReadOptsRedisPubSub) ProtoMessage added in v0.0.46

func (*ReadOptsRedisPubSub) ProtoMessage()

func (*ReadOptsRedisPubSub) Reset added in v0.0.46

func (m *ReadOptsRedisPubSub) Reset()

func (*ReadOptsRedisPubSub) String added in v0.0.46

func (m *ReadOptsRedisPubSub) String() string

func (*ReadOptsRedisPubSub) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOptsRedisPubSub) XXX_DiscardUnknown()

func (*ReadOptsRedisPubSub) XXX_Marshal added in v0.0.46

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

func (*ReadOptsRedisPubSub) XXX_Merge added in v0.0.46

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

func (*ReadOptsRedisPubSub) XXX_Size added in v0.0.46

func (m *ReadOptsRedisPubSub) XXX_Size() int

func (*ReadOptsRedisPubSub) XXX_Unmarshal added in v0.0.46

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

type ReadOptsRedisStreams added in v0.0.46

type ReadOptsRedisStreams struct {
	// @gotags: kong:"embed"
	Conn *args.RedisStreamsConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RedisStreamsReadOpts `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 (*ReadOptsRedisStreams) Descriptor added in v0.0.46

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

func (*ReadOptsRedisStreams) GetArgs added in v0.0.46

func (*ReadOptsRedisStreams) GetConn added in v0.0.46

func (*ReadOptsRedisStreams) ProtoMessage added in v0.0.46

func (*ReadOptsRedisStreams) ProtoMessage()

func (*ReadOptsRedisStreams) Reset added in v0.0.46

func (m *ReadOptsRedisStreams) Reset()

func (*ReadOptsRedisStreams) String added in v0.0.46

func (m *ReadOptsRedisStreams) String() string

func (*ReadOptsRedisStreams) XXX_DiscardUnknown added in v0.0.46

func (m *ReadOptsRedisStreams) XXX_DiscardUnknown()

func (*ReadOptsRedisStreams) XXX_Marshal added in v0.0.46

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

func (*ReadOptsRedisStreams) XXX_Merge added in v0.0.46

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

func (*ReadOptsRedisStreams) XXX_Size added in v0.0.46

func (m *ReadOptsRedisStreams) XXX_Size() int

func (*ReadOptsRedisStreams) XXX_Unmarshal added in v0.0.46

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

type ReadSampleOptions added in v0.0.42

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.42

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

func (*ReadSampleOptions) GetSampleIntervalSeconds added in v0.0.42

func (m *ReadSampleOptions) GetSampleIntervalSeconds() uint32

func (*ReadSampleOptions) GetSampleRate added in v0.0.42

func (m *ReadSampleOptions) GetSampleRate() uint32

func (*ReadSampleOptions) ProtoMessage added in v0.0.42

func (*ReadSampleOptions) ProtoMessage()

func (*ReadSampleOptions) Reset added in v0.0.42

func (m *ReadSampleOptions) Reset()

func (*ReadSampleOptions) String added in v0.0.42

func (m *ReadSampleOptions) String() string

func (*ReadSampleOptions) XXX_DiscardUnknown added in v0.0.42

func (m *ReadSampleOptions) XXX_DiscardUnknown()

func (*ReadSampleOptions) XXX_Marshal added in v0.0.42

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

func (*ReadSampleOptions) XXX_Merge added in v0.0.42

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

func (*ReadSampleOptions) XXX_Size added in v0.0.42

func (m *ReadSampleOptions) XXX_Size() int

func (*ReadSampleOptions) XXX_Unmarshal added in v0.0.42

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

type RelayConfig added in v0.0.34

type RelayConfig struct {
	// @gotags: kong:"help='Secret collection token',name=token,required"
	CollectionToken string `` /* 164-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 */
	// 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:"name='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',name='grpc-address',default='grpc-collector.batch.sh:9000'"
	XBatchshGrpcAddress string `` /* 233-byte string literal not displayed */
	// @gotags: kong:"help='Whether to use TLS with collector',name=grpc-disable-tls,default=true"
	XBatchshGrpcDisableTls bool `` /* 214-byte string literal not displayed */
	// @gotags: kong:"help='How long to wait before giving up talking to the gRPC collector',name='grpc-timeout-seconds'"
	XBatchshGrpcTimeoutSeconds int32 `` /* 249-byte string literal not displayed */
	// Any extra opts that can differ between relays (same as reads).
	// NOTE: Desktop can leave conn unset - an existing connection will be used
	// by looking up connection_id.
	// @gotags: kong:"embed"
	RelayOpts *RelayOpts `protobuf:"bytes,9,opt,name=relay_opts,json=relayOpts,proto3" json:"relay_opts,omitempty" kong:"embed"`
	// ID of the created relay entry; populated by plumber.
	// @gotags: kong:"-"
	XRelayId string `protobuf:"bytes,10,opt,name=_relay_id,json=RelayId,proto3" json:"_relay_id,omitempty" kong:"-"`
	// @gotags: kong:"embed"
	XCliConfig           *CLIRelayConfig `protobuf:"bytes,11,opt,name=_cli_config,json=CliConfig,proto3" json:"_cli_config,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*RelayConfig) Descriptor added in v0.0.34

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

func (*RelayConfig) GetBatchMaxRetry added in v0.0.34

func (m *RelayConfig) GetBatchMaxRetry() int32

func (*RelayConfig) GetBatchSize added in v0.0.34

func (m *RelayConfig) GetBatchSize() int32

func (*RelayConfig) GetCollectionToken added in v0.0.39

func (m *RelayConfig) GetCollectionToken() string

func (*RelayConfig) GetConnectionId added in v0.0.34

func (m *RelayConfig) GetConnectionId() string

func (*RelayConfig) GetNumWorkers added in v0.0.39

func (m *RelayConfig) GetNumWorkers() int32

func (*RelayConfig) GetRelayOpts added in v0.0.46

func (m *RelayConfig) GetRelayOpts() *RelayOpts

func (*RelayConfig) GetXBatchshGrpcAddress added in v0.0.37

func (m *RelayConfig) GetXBatchshGrpcAddress() string

func (*RelayConfig) GetXBatchshGrpcDisableTls added in v0.0.37

func (m *RelayConfig) GetXBatchshGrpcDisableTls() bool

func (*RelayConfig) GetXBatchshGrpcTimeoutSeconds added in v0.0.39

func (m *RelayConfig) GetXBatchshGrpcTimeoutSeconds() int32

func (*RelayConfig) GetXCliConfig added in v0.0.39

func (m *RelayConfig) GetXCliConfig() *CLIRelayConfig

func (*RelayConfig) GetXRelayId added in v0.0.35

func (m *RelayConfig) GetXRelayId() string

func (*RelayConfig) ProtoMessage added in v0.0.34

func (*RelayConfig) ProtoMessage()

func (*RelayConfig) Reset added in v0.0.34

func (m *RelayConfig) Reset()

func (*RelayConfig) String added in v0.0.34

func (m *RelayConfig) String() string

func (*RelayConfig) XXX_DiscardUnknown added in v0.0.34

func (m *RelayConfig) XXX_DiscardUnknown()

func (*RelayConfig) XXX_Marshal added in v0.0.34

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

func (*RelayConfig) XXX_Merge added in v0.0.34

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

func (*RelayConfig) XXX_Size added in v0.0.34

func (m *RelayConfig) XXX_Size() int

func (*RelayConfig) XXX_Unmarshal added in v0.0.34

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

type RelayOpts added in v0.0.46

type RelayOpts struct {
	// @gotags: kong:"cmd,help='Apache Kafka'"
	Kafka *RelayOptsKafka `protobuf:"bytes,100,opt,name=kafka,proto3" json:"kafka,omitempty" kong:"cmd,help='Apache Kafka'"`
	// @gotags: kong:"cmd,help='AWS Simple Queue System'"
	Awssqs *RelayOptsAWSSQS `protobuf:"bytes,101,opt,name=awssqs,proto3" json:"awssqs,omitempty" kong:"cmd,help='AWS Simple Queue System'"`
	// @gotags: kong:"cmd,help='MongoDB (CDC)'"
	Mongo *RelayOptsMongo `protobuf:"bytes,102,opt,name=mongo,proto3" json:"mongo,omitempty" kong:"cmd,help='MongoDB (CDC)'"`
	// @gotags: kong:"cmd,help='NSQ'"
	Nsq *RelayOptsNSQ `protobuf:"bytes,103,opt,name=nsq,proto3" json:"nsq,omitempty" kong:"cmd,help='NSQ'"`
	// @gotags: kong:"cmd,help='MQTT'"
	Rabbit *RelayOptsRabbit `protobuf:"bytes,104,opt,name=rabbit,proto3" json:"rabbit,omitempty" kong:"cmd,help='MQTT'"`
	// @gotags: kong:"cmd,help='MQTT'"
	Mqtt *RelayOptsMQTT `protobuf:"bytes,105,opt,name=mqtt,proto3" json:"mqtt,omitempty" kong:"cmd,help='MQTT'"`
	// @gotags: kong:"cmd,help='Azure Service Bus'"
	AzureServiceBus *RelayOptsAzureServiceBus `` /* 146-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Google Cloud Platform Pub/Sub'"
	GcpPubsub *RelayOptsGCPPubSub `` /* 138-byte string literal not displayed */
	// @gotags: kong:"cmd,help='KubeMQ Queue'"
	KubemqQueue *RelayOptsKubeMQQueue `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis PubSub'"
	RedisPubsub *RelayOptsRedisPubSub `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis Streams'"
	RedisStreams *RelayOptsRedisStreams `` /* 131-byte string literal not displayed */
	// @gotags: kong:"cmd,help='PostgreSQL (CDC)'"
	Postgres             *RelayOptsPostgres `protobuf:"bytes,112,opt,name=postgres,proto3" json:"postgres,omitempty" kong:"cmd,help='PostgreSQL (CDC)'"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*RelayOpts) Descriptor added in v0.0.46

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

func (*RelayOpts) GetAwssqs added in v0.0.46

func (m *RelayOpts) GetAwssqs() *RelayOptsAWSSQS

func (*RelayOpts) GetAzureServiceBus added in v0.0.46

func (m *RelayOpts) GetAzureServiceBus() *RelayOptsAzureServiceBus

func (*RelayOpts) GetGcpPubsub added in v0.0.46

func (m *RelayOpts) GetGcpPubsub() *RelayOptsGCPPubSub

func (*RelayOpts) GetKafka added in v0.0.46

func (m *RelayOpts) GetKafka() *RelayOptsKafka

func (*RelayOpts) GetKubemqQueue added in v0.0.46

func (m *RelayOpts) GetKubemqQueue() *RelayOptsKubeMQQueue

func (*RelayOpts) GetMongo added in v0.0.46

func (m *RelayOpts) GetMongo() *RelayOptsMongo

func (*RelayOpts) GetMqtt added in v0.0.46

func (m *RelayOpts) GetMqtt() *RelayOptsMQTT

func (*RelayOpts) GetNsq added in v0.0.46

func (m *RelayOpts) GetNsq() *RelayOptsNSQ

func (*RelayOpts) GetPostgres added in v0.0.46

func (m *RelayOpts) GetPostgres() *RelayOptsPostgres

func (*RelayOpts) GetRabbit added in v0.0.46

func (m *RelayOpts) GetRabbit() *RelayOptsRabbit

func (*RelayOpts) GetRedisPubsub added in v0.0.46

func (m *RelayOpts) GetRedisPubsub() *RelayOptsRedisPubSub

func (*RelayOpts) GetRedisStreams added in v0.0.46

func (m *RelayOpts) GetRedisStreams() *RelayOptsRedisStreams

func (*RelayOpts) ProtoMessage added in v0.0.46

func (*RelayOpts) ProtoMessage()

func (*RelayOpts) Reset added in v0.0.46

func (m *RelayOpts) Reset()

func (*RelayOpts) String added in v0.0.46

func (m *RelayOpts) String() string

func (*RelayOpts) XXX_DiscardUnknown added in v0.0.46

func (m *RelayOpts) XXX_DiscardUnknown()

func (*RelayOpts) XXX_Marshal added in v0.0.46

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

func (*RelayOpts) XXX_Merge added in v0.0.46

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

func (*RelayOpts) XXX_Size added in v0.0.46

func (m *RelayOpts) XXX_Size() int

func (*RelayOpts) XXX_Unmarshal added in v0.0.46

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

type RelayOptsAWSSQS added in v0.0.46

type RelayOptsAWSSQS struct {
	// @gotags: kong:"embed"
	Conn *args.AWSSQSConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AWSSQSRelayOpts `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 (*RelayOptsAWSSQS) Descriptor added in v0.0.46

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

func (*RelayOptsAWSSQS) GetArgs added in v0.0.46

func (m *RelayOptsAWSSQS) GetArgs() *args.AWSSQSRelayOpts

func (*RelayOptsAWSSQS) GetConn added in v0.0.46

func (m *RelayOptsAWSSQS) GetConn() *args.AWSSQSConn

func (*RelayOptsAWSSQS) ProtoMessage added in v0.0.46

func (*RelayOptsAWSSQS) ProtoMessage()

func (*RelayOptsAWSSQS) Reset added in v0.0.46

func (m *RelayOptsAWSSQS) Reset()

func (*RelayOptsAWSSQS) String added in v0.0.46

func (m *RelayOptsAWSSQS) String() string

func (*RelayOptsAWSSQS) XXX_DiscardUnknown added in v0.0.46

func (m *RelayOptsAWSSQS) XXX_DiscardUnknown()

func (*RelayOptsAWSSQS) XXX_Marshal added in v0.0.46

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

func (*RelayOptsAWSSQS) XXX_Merge added in v0.0.46

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

func (*RelayOptsAWSSQS) XXX_Size added in v0.0.46

func (m *RelayOptsAWSSQS) XXX_Size() int

func (*RelayOptsAWSSQS) XXX_Unmarshal added in v0.0.46

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

type RelayOptsAzureServiceBus added in v0.0.46

type RelayOptsAzureServiceBus struct {
	// @gotags: kong:"embed"
	Conn *args.AzureServiceBusConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.AzureServiceBusReadOpts `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 (*RelayOptsAzureServiceBus) Descriptor added in v0.0.46

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

func (*RelayOptsAzureServiceBus) GetArgs added in v0.0.46

func (*RelayOptsAzureServiceBus) GetConn added in v0.0.46

func (*RelayOptsAzureServiceBus) ProtoMessage added in v0.0.46

func (*RelayOptsAzureServiceBus) ProtoMessage()

func (*RelayOptsAzureServiceBus) Reset added in v0.0.46

func (m *RelayOptsAzureServiceBus) Reset()

func (*RelayOptsAzureServiceBus) String added in v0.0.46

func (m *RelayOptsAzureServiceBus) String() string

func (*RelayOptsAzureServiceBus) XXX_DiscardUnknown added in v0.0.46

func (m *RelayOptsAzureServiceBus) XXX_DiscardUnknown()

func (*RelayOptsAzureServiceBus) XXX_Marshal added in v0.0.46

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

func (*RelayOptsAzureServiceBus) XXX_Merge added in v0.0.46

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

func (*RelayOptsAzureServiceBus) XXX_Size added in v0.0.46

func (m *RelayOptsAzureServiceBus) XXX_Size() int

func (*RelayOptsAzureServiceBus) XXX_Unmarshal added in v0.0.46

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

type RelayOptsGCPPubSub added in v0.0.46

type RelayOptsGCPPubSub struct {
	// @gotags: kong:"embed"
	Conn *args.GCPPubSubConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.GCPPubSubReadOpts `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 (*RelayOptsGCPPubSub) Descriptor added in v0.0.46

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

func (*RelayOptsGCPPubSub) GetArgs added in v0.0.46

func (*RelayOptsGCPPubSub) GetConn added in v0.0.46

func (m *RelayOptsGCPPubSub) GetConn() *args.GCPPubSubConn

func (*RelayOptsGCPPubSub) ProtoMessage added in v0.0.46

func (*RelayOptsGCPPubSub) ProtoMessage()

func (*RelayOptsGCPPubSub) Reset added in v0.0.46

func (m *RelayOptsGCPPubSub) Reset()

func (*RelayOptsGCPPubSub) String added in v0.0.46

func (m *RelayOptsGCPPubSub) String() string

func (*RelayOptsGCPPubSub) XXX_DiscardUnknown added in v0.0.46

func (m *RelayOptsGCPPubSub) XXX_DiscardUnknown()

func (*RelayOptsGCPPubSub) XXX_Marshal added in v0.0.46

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

func (*RelayOptsGCPPubSub) XXX_Merge added in v0.0.46

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

func (*RelayOptsGCPPubSub) XXX_Size added in v0.0.46

func (m *RelayOptsGCPPubSub) XXX_Size() int

func (*RelayOptsGCPPubSub) XXX_Unmarshal added in v0.0.46

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

type RelayOptsKafka added in v0.0.46

type RelayOptsKafka struct {
	// @gotags: kong:"embed"
	Conn *args.KafkaConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.KafkaRelayOpts `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 (*RelayOptsKafka) Descriptor added in v0.0.46

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

func (*RelayOptsKafka) GetArgs added in v0.0.46

func (m *RelayOptsKafka) GetArgs() *args.KafkaRelayOpts

func (*RelayOptsKafka) GetConn added in v0.0.46

func (m *RelayOptsKafka) GetConn() *args.KafkaConn

func (*RelayOptsKafka) ProtoMessage added in v0.0.46

func (*RelayOptsKafka) ProtoMessage()

func (*RelayOptsKafka) Reset added in v0.0.46

func (m *RelayOptsKafka) Reset()

func (*RelayOptsKafka) String added in v0.0.46

func (m *RelayOptsKafka) String() string

func (*RelayOptsKafka) XXX_DiscardUnknown added in v0.0.46

func (m *RelayOptsKafka) XXX_DiscardUnknown()

func (*RelayOptsKafka) XXX_Marshal added in v0.0.46

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

func (*RelayOptsKafka) XXX_Merge added in v0.0.46

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

func (*RelayOptsKafka) XXX_Size added in v0.0.46

func (m *RelayOptsKafka) XXX_Size() int

func (*RelayOptsKafka) XXX_Unmarshal added in v0.0.46

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

type RelayOptsKubeMQQueue added in v0.0.46

type RelayOptsKubeMQQueue struct {
	// @gotags: kong:"embed"
	Conn *args.KubeMQQueueConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.KubeMQQueueReadOpts `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 (*RelayOptsKubeMQQueue) Descriptor added in v0.0.46

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

func (*RelayOptsKubeMQQueue) GetArgs added in v0.0.46

func (*RelayOptsKubeMQQueue) GetConn added in v0.0.46

func (*RelayOptsKubeMQQueue) ProtoMessage added in v0.0.46

func (*RelayOptsKubeMQQueue) ProtoMessage()

func (*RelayOptsKubeMQQueue) Reset added in v0.0.46

func (m *RelayOptsKubeMQQueue) Reset()

func (*RelayOptsKubeMQQueue) String added in v0.0.46

func (m *RelayOptsKubeMQQueue) String() string

func (*RelayOptsKubeMQQueue) XXX_DiscardUnknown added in v0.0.46

func (m *RelayOptsKubeMQQueue) XXX_DiscardUnknown()

func (*RelayOptsKubeMQQueue) XXX_Marshal added in v0.0.46

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

func (*RelayOptsKubeMQQueue) XXX_Merge added in v0.0.46

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

func (*RelayOptsKubeMQQueue) XXX_Size added in v0.0.46

func (m *RelayOptsKubeMQQueue) XXX_Size() int

func (*RelayOptsKubeMQQueue) XXX_Unmarshal added in v0.0.46

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

type RelayOptsMQTT added in v0.0.46

type RelayOptsMQTT struct {
	// @gotags: kong:"embed"
	Conn *args.MQTTConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.MQTTReadOpts `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 (*RelayOptsMQTT) Descriptor added in v0.0.46

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

func (*RelayOptsMQTT) GetArgs added in v0.0.46

func (m *RelayOptsMQTT) GetArgs() *args.MQTTReadOpts

func (*RelayOptsMQTT) GetConn added in v0.0.46

func (m *RelayOptsMQTT) GetConn() *args.MQTTConn

func (*RelayOptsMQTT) ProtoMessage added in v0.0.46

func (*RelayOptsMQTT) ProtoMessage()

func (*RelayOptsMQTT) Reset added in v0.0.46

func (m *RelayOptsMQTT) Reset()

func (*RelayOptsMQTT) String added in v0.0.46

func (m *RelayOptsMQTT) String() string

func (*RelayOptsMQTT) XXX_DiscardUnknown added in v0.0.46

func (m *RelayOptsMQTT) XXX_DiscardUnknown()

func (*RelayOptsMQTT) XXX_Marshal added in v0.0.46

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

func (*RelayOptsMQTT) XXX_Merge added in v0.0.46

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

func (*RelayOptsMQTT) XXX_Size added in v0.0.46

func (m *RelayOptsMQTT) XXX_Size() int

func (*RelayOptsMQTT) XXX_Unmarshal added in v0.0.46

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

type RelayOptsMongo added in v0.0.46

type RelayOptsMongo struct {
	// @gotags: kong:"embed"
	Conn *args.MongoConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.MongoReadOpts `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 (*RelayOptsMongo) Descriptor added in v0.0.46

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

func (*RelayOptsMongo) GetArgs added in v0.0.46

func (m *RelayOptsMongo) GetArgs() *args.MongoReadOpts

func (*RelayOptsMongo) GetConn added in v0.0.46

func (m *RelayOptsMongo) GetConn() *args.MongoConn

func (*RelayOptsMongo) ProtoMessage added in v0.0.46

func (*RelayOptsMongo) ProtoMessage()

func (*RelayOptsMongo) Reset added in v0.0.46

func (m *RelayOptsMongo) Reset()

func (*RelayOptsMongo) String added in v0.0.46

func (m *RelayOptsMongo) String() string

func (*RelayOptsMongo) XXX_DiscardUnknown added in v0.0.46

func (m *RelayOptsMongo) XXX_DiscardUnknown()

func (*RelayOptsMongo) XXX_Marshal added in v0.0.46

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

func (*RelayOptsMongo) XXX_Merge added in v0.0.46

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

func (*RelayOptsMongo) XXX_Size added in v0.0.46

func (m *RelayOptsMongo) XXX_Size() int

func (*RelayOptsMongo) XXX_Unmarshal added in v0.0.46

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

type RelayOptsNSQ added in v0.0.46

type RelayOptsNSQ struct {
	// @gotags: kong:"embed"
	Conn *args.NSQConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.NSQReadOpts `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 (*RelayOptsNSQ) Descriptor added in v0.0.46

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

func (*RelayOptsNSQ) GetArgs added in v0.0.46

func (m *RelayOptsNSQ) GetArgs() *args.NSQReadOpts

func (*RelayOptsNSQ) GetConn added in v0.0.46

func (m *RelayOptsNSQ) GetConn() *args.NSQConn

func (*RelayOptsNSQ) ProtoMessage added in v0.0.46

func (*RelayOptsNSQ) ProtoMessage()

func (*RelayOptsNSQ) Reset added in v0.0.46

func (m *RelayOptsNSQ) Reset()

func (*RelayOptsNSQ) String added in v0.0.46

func (m *RelayOptsNSQ) String() string

func (*RelayOptsNSQ) XXX_DiscardUnknown added in v0.0.46

func (m *RelayOptsNSQ) XXX_DiscardUnknown()

func (*RelayOptsNSQ) XXX_Marshal added in v0.0.46

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

func (*RelayOptsNSQ) XXX_Merge added in v0.0.46

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

func (*RelayOptsNSQ) XXX_Size added in v0.0.46

func (m *RelayOptsNSQ) XXX_Size() int

func (*RelayOptsNSQ) XXX_Unmarshal added in v0.0.46

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

type RelayOptsPostgres added in v0.0.46

type RelayOptsPostgres struct {
	// @gotags: kong:"embed"
	Conn *args.PostgresConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.PostgresReadOpts `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 (*RelayOptsPostgres) Descriptor added in v0.0.46

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

func (*RelayOptsPostgres) GetArgs added in v0.0.46

func (m *RelayOptsPostgres) GetArgs() *args.PostgresReadOpts

func (*RelayOptsPostgres) GetConn added in v0.0.46

func (m *RelayOptsPostgres) GetConn() *args.PostgresConn

func (*RelayOptsPostgres) ProtoMessage added in v0.0.46

func (*RelayOptsPostgres) ProtoMessage()

func (*RelayOptsPostgres) Reset added in v0.0.46

func (m *RelayOptsPostgres) Reset()

func (*RelayOptsPostgres) String added in v0.0.46

func (m *RelayOptsPostgres) String() string

func (*RelayOptsPostgres) XXX_DiscardUnknown added in v0.0.46

func (m *RelayOptsPostgres) XXX_DiscardUnknown()

func (*RelayOptsPostgres) XXX_Marshal added in v0.0.46

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

func (*RelayOptsPostgres) XXX_Merge added in v0.0.46

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

func (*RelayOptsPostgres) XXX_Size added in v0.0.46

func (m *RelayOptsPostgres) XXX_Size() int

func (*RelayOptsPostgres) XXX_Unmarshal added in v0.0.46

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

type RelayOptsRabbit added in v0.0.46

type RelayOptsRabbit struct {
	// @gotags: kong:"embed"
	Conn *args.RabbitConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RabbitReadOpts `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 (*RelayOptsRabbit) Descriptor added in v0.0.46

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

func (*RelayOptsRabbit) GetArgs added in v0.0.46

func (m *RelayOptsRabbit) GetArgs() *args.RabbitReadOpts

func (*RelayOptsRabbit) GetConn added in v0.0.46

func (m *RelayOptsRabbit) GetConn() *args.RabbitConn

func (*RelayOptsRabbit) ProtoMessage added in v0.0.46

func (*RelayOptsRabbit) ProtoMessage()

func (*RelayOptsRabbit) Reset added in v0.0.46

func (m *RelayOptsRabbit) Reset()

func (*RelayOptsRabbit) String added in v0.0.46

func (m *RelayOptsRabbit) String() string

func (*RelayOptsRabbit) XXX_DiscardUnknown added in v0.0.46

func (m *RelayOptsRabbit) XXX_DiscardUnknown()

func (*RelayOptsRabbit) XXX_Marshal added in v0.0.46

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

func (*RelayOptsRabbit) XXX_Merge added in v0.0.46

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

func (*RelayOptsRabbit) XXX_Size added in v0.0.46

func (m *RelayOptsRabbit) XXX_Size() int

func (*RelayOptsRabbit) XXX_Unmarshal added in v0.0.46

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

type RelayOptsRedisPubSub added in v0.0.46

type RelayOptsRedisPubSub struct {
	// @gotags: kong:"embed"
	Conn *args.RedisPubSubConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RedisPubSubReadOpts `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 (*RelayOptsRedisPubSub) Descriptor added in v0.0.46

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

func (*RelayOptsRedisPubSub) GetArgs added in v0.0.46

func (*RelayOptsRedisPubSub) GetConn added in v0.0.46

func (*RelayOptsRedisPubSub) ProtoMessage added in v0.0.46

func (*RelayOptsRedisPubSub) ProtoMessage()

func (*RelayOptsRedisPubSub) Reset added in v0.0.46

func (m *RelayOptsRedisPubSub) Reset()

func (*RelayOptsRedisPubSub) String added in v0.0.46

func (m *RelayOptsRedisPubSub) String() string

func (*RelayOptsRedisPubSub) XXX_DiscardUnknown added in v0.0.46

func (m *RelayOptsRedisPubSub) XXX_DiscardUnknown()

func (*RelayOptsRedisPubSub) XXX_Marshal added in v0.0.46

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

func (*RelayOptsRedisPubSub) XXX_Merge added in v0.0.46

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

func (*RelayOptsRedisPubSub) XXX_Size added in v0.0.46

func (m *RelayOptsRedisPubSub) XXX_Size() int

func (*RelayOptsRedisPubSub) XXX_Unmarshal added in v0.0.46

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

type RelayOptsRedisStreams added in v0.0.46

type RelayOptsRedisStreams struct {
	// @gotags: kong:"embed"
	Conn *args.RedisStreamsConn `protobuf:"bytes,1,opt,name=conn,proto3" json:"conn,omitempty" kong:"embed"`
	// @gotags: kong:"embed"
	Args                 *args.RedisStreamsReadOpts `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 (*RelayOptsRedisStreams) Descriptor added in v0.0.46

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

func (*RelayOptsRedisStreams) GetArgs added in v0.0.46

func (*RelayOptsRedisStreams) GetConn added in v0.0.46

func (*RelayOptsRedisStreams) ProtoMessage added in v0.0.46

func (*RelayOptsRedisStreams) ProtoMessage()

func (*RelayOptsRedisStreams) Reset added in v0.0.46

func (m *RelayOptsRedisStreams) Reset()

func (*RelayOptsRedisStreams) String added in v0.0.46

func (m *RelayOptsRedisStreams) String() string

func (*RelayOptsRedisStreams) XXX_DiscardUnknown added in v0.0.46

func (m *RelayOptsRedisStreams) XXX_DiscardUnknown()

func (*RelayOptsRedisStreams) XXX_Marshal added in v0.0.46

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

func (*RelayOptsRedisStreams) XXX_Merge added in v0.0.46

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

func (*RelayOptsRedisStreams) XXX_Size added in v0.0.46

func (m *RelayOptsRedisStreams) XXX_Size() int

func (*RelayOptsRedisStreams) XXX_Unmarshal added in v0.0.46

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

type ResumeReadRequest added in v0.0.20

type ResumeReadRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	ReadId               string       `protobuf:"bytes,1,opt,name=read_id,json=readId,proto3" json:"read_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ResumeReadRequest) Descriptor added in v0.0.20

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

func (*ResumeReadRequest) GetAuth added in v0.0.20

func (m *ResumeReadRequest) GetAuth() *common.Auth

func (*ResumeReadRequest) GetReadId added in v0.0.20

func (m *ResumeReadRequest) GetReadId() string

func (*ResumeReadRequest) ProtoMessage added in v0.0.20

func (*ResumeReadRequest) ProtoMessage()

func (*ResumeReadRequest) Reset added in v0.0.20

func (m *ResumeReadRequest) Reset()

func (*ResumeReadRequest) String added in v0.0.20

func (m *ResumeReadRequest) String() string

func (*ResumeReadRequest) XXX_DiscardUnknown added in v0.0.20

func (m *ResumeReadRequest) XXX_DiscardUnknown()

func (*ResumeReadRequest) XXX_Marshal added in v0.0.20

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

func (*ResumeReadRequest) XXX_Merge added in v0.0.20

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

func (*ResumeReadRequest) XXX_Size added in v0.0.20

func (m *ResumeReadRequest) XXX_Size() int

func (*ResumeReadRequest) XXX_Unmarshal added in v0.0.20

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

type ResumeReadResponse added in v0.0.20

type ResumeReadResponse struct {
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ResumeReadResponse) Descriptor added in v0.0.20

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

func (*ResumeReadResponse) GetStatus added in v0.0.20

func (m *ResumeReadResponse) GetStatus() *common.Status

func (*ResumeReadResponse) ProtoMessage added in v0.0.20

func (*ResumeReadResponse) ProtoMessage()

func (*ResumeReadResponse) Reset added in v0.0.20

func (m *ResumeReadResponse) Reset()

func (*ResumeReadResponse) String added in v0.0.20

func (m *ResumeReadResponse) String() string

func (*ResumeReadResponse) XXX_DiscardUnknown added in v0.0.20

func (m *ResumeReadResponse) XXX_DiscardUnknown()

func (*ResumeReadResponse) XXX_Marshal added in v0.0.20

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

func (*ResumeReadResponse) XXX_Merge added in v0.0.20

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

func (*ResumeReadResponse) XXX_Size added in v0.0.20

func (m *ResumeReadResponse) XXX_Size() int

func (*ResumeReadResponse) XXX_Unmarshal added in v0.0.20

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

type ResumeRelayRequest added in v0.0.16

type ResumeRelayRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	RelayId              string       `protobuf:"bytes,1,opt,name=relay_id,json=relayId,proto3" json:"relay_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

Resume a paused relay

func (*ResumeRelayRequest) Descriptor added in v0.0.16

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

func (*ResumeRelayRequest) GetAuth added in v0.0.16

func (m *ResumeRelayRequest) GetAuth() *common.Auth

func (*ResumeRelayRequest) GetRelayId added in v0.0.16

func (m *ResumeRelayRequest) GetRelayId() string

func (*ResumeRelayRequest) ProtoMessage added in v0.0.16

func (*ResumeRelayRequest) ProtoMessage()

func (*ResumeRelayRequest) Reset added in v0.0.16

func (m *ResumeRelayRequest) Reset()

func (*ResumeRelayRequest) String added in v0.0.16

func (m *ResumeRelayRequest) String() string

func (*ResumeRelayRequest) XXX_DiscardUnknown added in v0.0.16

func (m *ResumeRelayRequest) XXX_DiscardUnknown()

func (*ResumeRelayRequest) XXX_Marshal added in v0.0.16

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

func (*ResumeRelayRequest) XXX_Merge added in v0.0.16

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

func (*ResumeRelayRequest) XXX_Size added in v0.0.16

func (m *ResumeRelayRequest) XXX_Size() int

func (*ResumeRelayRequest) XXX_Unmarshal added in v0.0.16

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

type ResumeRelayResponse added in v0.0.16

type ResumeRelayResponse struct {
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ResumeRelayResponse) Descriptor added in v0.0.16

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

func (*ResumeRelayResponse) GetStatus added in v0.0.16

func (m *ResumeRelayResponse) GetStatus() *common.Status

func (*ResumeRelayResponse) ProtoMessage added in v0.0.16

func (*ResumeRelayResponse) ProtoMessage()

func (*ResumeRelayResponse) Reset added in v0.0.16

func (m *ResumeRelayResponse) Reset()

func (*ResumeRelayResponse) String added in v0.0.16

func (m *ResumeRelayResponse) String() string

func (*ResumeRelayResponse) XXX_DiscardUnknown added in v0.0.16

func (m *ResumeRelayResponse) XXX_DiscardUnknown()

func (*ResumeRelayResponse) XXX_Marshal added in v0.0.16

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

func (*ResumeRelayResponse) XXX_Merge added in v0.0.16

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

func (*ResumeRelayResponse) XXX_Size added in v0.0.16

func (m *ResumeRelayResponse) XXX_Size() int

func (*ResumeRelayResponse) XXX_Unmarshal added in v0.0.16

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

type Schema added in v0.0.26

type Schema struct {
	Id    string            `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name  string            `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Type  encoding.Type     `protobuf:"varint,3,opt,name=type,proto3,enum=protos.encoding.Type" json:"type,omitempty"`
	Files map[string]string `` /* 151-byte string literal not displayed */
	// Protobuf only, root message name
	RootType string `protobuf:"bytes,5,opt,name=root_type,json=rootType,proto3" json:"root_type,omitempty"`
	// Protobuf only, root message descriptor
	MessageDescriptor    []byte   `protobuf:"bytes,6,opt,name=message_descriptor,json=messageDescriptor,proto3" json:"message_descriptor,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Schema) Descriptor added in v0.0.26

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

func (*Schema) GetFiles added in v0.0.29

func (m *Schema) GetFiles() map[string]string

func (*Schema) GetId added in v0.0.26

func (m *Schema) GetId() string

func (*Schema) GetMessageDescriptor added in v0.0.26

func (m *Schema) GetMessageDescriptor() []byte

func (*Schema) GetName added in v0.0.26

func (m *Schema) GetName() string

func (*Schema) GetRootType added in v0.0.26

func (m *Schema) GetRootType() string

func (*Schema) GetType added in v0.0.26

func (m *Schema) GetType() encoding.Type

func (*Schema) ProtoMessage added in v0.0.26

func (*Schema) ProtoMessage()

func (*Schema) Reset added in v0.0.26

func (m *Schema) Reset()

func (*Schema) String added in v0.0.26

func (m *Schema) String() string

func (*Schema) XXX_DiscardUnknown added in v0.0.26

func (m *Schema) XXX_DiscardUnknown()

func (*Schema) XXX_Marshal added in v0.0.26

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

func (*Schema) XXX_Merge added in v0.0.26

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

func (*Schema) XXX_Size added in v0.0.26

func (m *Schema) XXX_Size() int

func (*Schema) XXX_Unmarshal added in v0.0.26

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

type ServerConfig added in v0.0.38

type ServerConfig struct {
	// @gotags: kong:"help='Unique ID that identifies this plumber node',env='PLUMBER_SERVER_NODE_ID',required"
	NodeId string `` /* 175-byte string literal not displayed */
	// @gotags: kong:"help='ID of the plumber cluster (has to be the same across all nodes)',env='PLUMBER_SERVER_CLUSTER_ID',required"
	ClusterId string `` /* 207-byte string literal not displayed */
	// @gotags: kong:"help='Host:port that the gRPC server will bind to',env='PLUMBER_SERVER_GRPC_LISTEN_ADDRESS',default=127.0.0.1:9000"
	GrpcListenAddress string `` /* 236-byte string literal not displayed */
	// @gotags: kong:"help='All gRPC requests require this auth token to be set',env='PLUMBER_SERVER_AUTH_TOKEN',required"
	AuthToken string `` /* 195-byte string literal not displayed */
	// @gotags: kong:"help='InitialCluster should contain comma separated list of key=value pairs of host:port entries for ALL peers in the cluster. (Example: server1=http://192.168.1.10:2380,server2=http://192.168.1.11:2380,server3=http://192.168.1.12:2380). IMPORTANT! The list should include the address of _this_ instance.',env='PLUMBER_SERVER_INITIAL_CLUSTER',required"
	InitialCluster string `` /* 462-byte string literal not displayed */
	// @gotags: kong:"help='Address of _this_ plumber instance etcd server interface. Example: http://local-ip:2380',env='PLUMBER_SERVER_ADVERTISE_PEER_URL'"
	AdvertisePeerUrl string `` /* 253-byte string literal not displayed */
	// @gotags: kong:"help='Address of _this_ plumber instance etcd client interface. Example: http://local-ip:2379',env='PLUMBER_SERVER_ADVERTISE_CLIENT_URL',required"
	AdvertiseClientUrl string `` /* 270-byte string literal not displayed */
	// @gotags: kong:"help='Address that _this_ plumber instance etcd server should listen on. Example: http://local-ip:2380',env='PLUMBER_SERVER_LISTENER_PEER_URL'"
	ListenerPeerUrl string `` /* 258-byte string literal not displayed */
	// @gotags: kong:"help='Address that _this_ plumber instance etcd client should listen on. Example: http://local-ip:2379',env='PLUMBER_SERVER_LISTENER_CLIENT_URL'"
	ListenerClientUrl string `` /* 266-byte string literal not displayed */
	// @gotags: kong:"help='Secret token that ALL cluster members should use/share. If this token does not match on one of the plumber instances, this node will NOT be able to join the cluster.',env='PLUMBER_SERVER_PEER_TOKEN'"
	PeerToken            string   `` /* 301-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ServerConfig) Descriptor added in v0.0.38

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

func (*ServerConfig) GetAdvertiseClientUrl added in v0.0.38

func (m *ServerConfig) GetAdvertiseClientUrl() string

func (*ServerConfig) GetAdvertisePeerUrl added in v0.0.38

func (m *ServerConfig) GetAdvertisePeerUrl() string

func (*ServerConfig) GetAuthToken added in v0.0.38

func (m *ServerConfig) GetAuthToken() string

func (*ServerConfig) GetClusterId added in v0.0.40

func (m *ServerConfig) GetClusterId() string

func (*ServerConfig) GetGrpcListenAddress added in v0.0.38

func (m *ServerConfig) GetGrpcListenAddress() string

func (*ServerConfig) GetInitialCluster added in v0.0.38

func (m *ServerConfig) GetInitialCluster() string

func (*ServerConfig) GetListenerClientUrl added in v0.0.38

func (m *ServerConfig) GetListenerClientUrl() string

func (*ServerConfig) GetListenerPeerUrl added in v0.0.38

func (m *ServerConfig) GetListenerPeerUrl() string

func (*ServerConfig) GetNodeId added in v0.0.38

func (m *ServerConfig) GetNodeId() string

func (*ServerConfig) GetPeerToken added in v0.0.38

func (m *ServerConfig) GetPeerToken() string

func (*ServerConfig) ProtoMessage added in v0.0.38

func (*ServerConfig) ProtoMessage()

func (*ServerConfig) Reset added in v0.0.38

func (m *ServerConfig) Reset()

func (*ServerConfig) String added in v0.0.38

func (m *ServerConfig) String() string

func (*ServerConfig) XXX_DiscardUnknown added in v0.0.38

func (m *ServerConfig) XXX_DiscardUnknown()

func (*ServerConfig) XXX_Marshal added in v0.0.38

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

func (*ServerConfig) XXX_Merge added in v0.0.38

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

func (*ServerConfig) XXX_Size added in v0.0.38

func (m *ServerConfig) XXX_Size() int

func (*ServerConfig) XXX_Unmarshal added in v0.0.38

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

type Service added in v0.0.27

type Service struct {
	Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	RepoUrl              string   `protobuf:"bytes,3,opt,name=repo_url,json=repoUrl,proto3" json:"repo_url,omitempty"`
	Notes                string   `protobuf:"bytes,4,opt,name=notes,proto3" json:"notes,omitempty"`
	OwnerId              string   `protobuf:"bytes,5,opt,name=owner_id,json=ownerId,proto3" json:"owner_id,omitempty"`
	UsedSchemas          []string `protobuf:"bytes,6,rep,name=used_schemas,json=usedSchemas,proto3" json:"used_schemas,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Service) Descriptor added in v0.0.27

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

func (*Service) GetId added in v0.0.27

func (m *Service) GetId() string

func (*Service) GetName added in v0.0.27

func (m *Service) GetName() string

func (*Service) GetNotes added in v0.0.27

func (m *Service) GetNotes() string

func (*Service) GetOwnerId added in v0.0.27

func (m *Service) GetOwnerId() string

func (*Service) GetRepoUrl added in v0.0.27

func (m *Service) GetRepoUrl() string

func (*Service) GetUsedSchemas added in v0.0.27

func (m *Service) GetUsedSchemas() []string

func (*Service) ProtoMessage added in v0.0.27

func (*Service) ProtoMessage()

func (*Service) Reset added in v0.0.27

func (m *Service) Reset()

func (*Service) String added in v0.0.27

func (m *Service) String() string

func (*Service) XXX_DiscardUnknown added in v0.0.27

func (m *Service) XXX_DiscardUnknown()

func (*Service) XXX_Marshal added in v0.0.27

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

func (*Service) XXX_Merge added in v0.0.27

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

func (*Service) XXX_Size added in v0.0.27

func (m *Service) XXX_Size() int

func (*Service) XXX_Unmarshal added in v0.0.27

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

type StartGithubAuthRequest added in v0.0.25

type StartGithubAuthRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*StartGithubAuthRequest) Descriptor added in v0.0.25

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

func (*StartGithubAuthRequest) GetAuth added in v0.0.25

func (m *StartGithubAuthRequest) GetAuth() *common.Auth

func (*StartGithubAuthRequest) ProtoMessage added in v0.0.25

func (*StartGithubAuthRequest) ProtoMessage()

func (*StartGithubAuthRequest) Reset added in v0.0.25

func (m *StartGithubAuthRequest) Reset()

func (*StartGithubAuthRequest) String added in v0.0.25

func (m *StartGithubAuthRequest) String() string

func (*StartGithubAuthRequest) XXX_DiscardUnknown added in v0.0.25

func (m *StartGithubAuthRequest) XXX_DiscardUnknown()

func (*StartGithubAuthRequest) XXX_Marshal added in v0.0.25

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

func (*StartGithubAuthRequest) XXX_Merge added in v0.0.25

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

func (*StartGithubAuthRequest) XXX_Size added in v0.0.25

func (m *StartGithubAuthRequest) XXX_Size() int

func (*StartGithubAuthRequest) XXX_Unmarshal added in v0.0.25

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

type StartGithubAuthResponse added in v0.0.25

type StartGithubAuthResponse struct {
	// Authorization code that the user needs to enter on github's website
	Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
	// URL that the user needs to visit to enter the code
	VerificationUrl string `protobuf:"bytes,2,opt,name=verification_url,json=verificationUrl,proto3" json:"verification_url,omitempty"`
	// Time deadline by which the user must enter the code before a new one must
	// be generated
	EnterBefore          string   `protobuf:"bytes,3,opt,name=enter_before,json=enterBefore,proto3" json:"enter_before,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*StartGithubAuthResponse) Descriptor added in v0.0.25

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

func (*StartGithubAuthResponse) GetCode added in v0.0.25

func (m *StartGithubAuthResponse) GetCode() string

func (*StartGithubAuthResponse) GetEnterBefore added in v0.0.25

func (m *StartGithubAuthResponse) GetEnterBefore() string

func (*StartGithubAuthResponse) GetVerificationUrl added in v0.0.25

func (m *StartGithubAuthResponse) GetVerificationUrl() string

func (*StartGithubAuthResponse) ProtoMessage added in v0.0.25

func (*StartGithubAuthResponse) ProtoMessage()

func (*StartGithubAuthResponse) Reset added in v0.0.25

func (m *StartGithubAuthResponse) Reset()

func (*StartGithubAuthResponse) String added in v0.0.25

func (m *StartGithubAuthResponse) String() string

func (*StartGithubAuthResponse) XXX_DiscardUnknown added in v0.0.25

func (m *StartGithubAuthResponse) XXX_DiscardUnknown()

func (*StartGithubAuthResponse) XXX_Marshal added in v0.0.25

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

func (*StartGithubAuthResponse) XXX_Merge added in v0.0.25

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

func (*StartGithubAuthResponse) XXX_Size added in v0.0.25

func (m *StartGithubAuthResponse) XXX_Size() int

func (*StartGithubAuthResponse) XXX_Unmarshal added in v0.0.25

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

type StartReadRequest

type StartReadRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	ReadId               string       `protobuf:"bytes,1,opt,name=read_id,json=readId,proto3" json:"read_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*StartReadRequest) Descriptor

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

func (*StartReadRequest) GetAuth

func (m *StartReadRequest) GetAuth() *common.Auth

func (*StartReadRequest) GetReadId added in v0.0.20

func (m *StartReadRequest) GetReadId() string

func (*StartReadRequest) ProtoMessage

func (*StartReadRequest) ProtoMessage()

func (*StartReadRequest) Reset

func (m *StartReadRequest) Reset()

func (*StartReadRequest) String

func (m *StartReadRequest) String() string

func (*StartReadRequest) XXX_DiscardUnknown

func (m *StartReadRequest) XXX_DiscardUnknown()

func (*StartReadRequest) XXX_Marshal

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

func (*StartReadRequest) XXX_Merge

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

func (*StartReadRequest) XXX_Size

func (m *StartReadRequest) XXX_Size() int

func (*StartReadRequest) XXX_Unmarshal

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

type StartReadResponse

type StartReadResponse struct {
	Records              []*records.ReadRecord `protobuf:"bytes,1,rep,name=records,proto3" json:"records,omitempty"`
	Status               *common.Status        `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*StartReadResponse) Descriptor

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

func (*StartReadResponse) GetRecords added in v0.0.33

func (m *StartReadResponse) GetRecords() []*records.ReadRecord

func (*StartReadResponse) GetStatus

func (m *StartReadResponse) GetStatus() *common.Status

func (*StartReadResponse) ProtoMessage

func (*StartReadResponse) ProtoMessage()

func (*StartReadResponse) Reset

func (m *StartReadResponse) Reset()

func (*StartReadResponse) String

func (m *StartReadResponse) String() string

func (*StartReadResponse) XXX_DiscardUnknown

func (m *StartReadResponse) XXX_DiscardUnknown()

func (*StartReadResponse) XXX_Marshal

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

func (*StartReadResponse) XXX_Merge

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

func (*StartReadResponse) XXX_Size

func (m *StartReadResponse) XXX_Size() int

func (*StartReadResponse) XXX_Unmarshal

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

type StopReadRequest

type StopReadRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	ReadId               string       `protobuf:"bytes,1,opt,name=read_id,json=readId,proto3" json:"read_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*StopReadRequest) Descriptor

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

func (*StopReadRequest) GetAuth

func (m *StopReadRequest) GetAuth() *common.Auth

func (*StopReadRequest) GetReadId

func (m *StopReadRequest) GetReadId() string

func (*StopReadRequest) ProtoMessage

func (*StopReadRequest) ProtoMessage()

func (*StopReadRequest) Reset

func (m *StopReadRequest) Reset()

func (*StopReadRequest) String

func (m *StopReadRequest) String() string

func (*StopReadRequest) XXX_DiscardUnknown

func (m *StopReadRequest) XXX_DiscardUnknown()

func (*StopReadRequest) XXX_Marshal

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

func (*StopReadRequest) XXX_Merge

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

func (*StopReadRequest) XXX_Size

func (m *StopReadRequest) XXX_Size() int

func (*StopReadRequest) XXX_Unmarshal

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

type StopReadResponse

type StopReadResponse struct {
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*StopReadResponse) Descriptor

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

func (*StopReadResponse) GetStatus

func (m *StopReadResponse) GetStatus() *common.Status

func (*StopReadResponse) ProtoMessage

func (*StopReadResponse) ProtoMessage()

func (*StopReadResponse) Reset

func (m *StopReadResponse) Reset()

func (*StopReadResponse) String

func (m *StopReadResponse) String() string

func (*StopReadResponse) XXX_DiscardUnknown

func (m *StopReadResponse) XXX_DiscardUnknown()

func (*StopReadResponse) XXX_Marshal

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

func (*StopReadResponse) XXX_Merge

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

func (*StopReadResponse) XXX_Size

func (m *StopReadResponse) XXX_Size() int

func (*StopReadResponse) XXX_Unmarshal

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

type StopRelayRequest

type StopRelayRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	RelayId              string       `protobuf:"bytes,1,opt,name=relay_id,json=relayId,proto3" json:"relay_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

Temporarily stop/pause a relay

func (*StopRelayRequest) Descriptor

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

func (*StopRelayRequest) GetAuth

func (m *StopRelayRequest) GetAuth() *common.Auth

func (*StopRelayRequest) GetRelayId

func (m *StopRelayRequest) GetRelayId() string

func (*StopRelayRequest) ProtoMessage

func (*StopRelayRequest) ProtoMessage()

func (*StopRelayRequest) Reset

func (m *StopRelayRequest) Reset()

func (*StopRelayRequest) String

func (m *StopRelayRequest) String() string

func (*StopRelayRequest) XXX_DiscardUnknown

func (m *StopRelayRequest) XXX_DiscardUnknown()

func (*StopRelayRequest) XXX_Marshal

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

func (*StopRelayRequest) XXX_Merge

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

func (*StopRelayRequest) XXX_Size

func (m *StopRelayRequest) XXX_Size() int

func (*StopRelayRequest) XXX_Unmarshal

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

type StopRelayResponse

type StopRelayResponse struct {
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*StopRelayResponse) Descriptor

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

func (*StopRelayResponse) GetStatus

func (m *StopRelayResponse) GetStatus() *common.Status

func (*StopRelayResponse) ProtoMessage

func (*StopRelayResponse) ProtoMessage()

func (*StopRelayResponse) Reset

func (m *StopRelayResponse) Reset()

func (*StopRelayResponse) String

func (m *StopRelayResponse) String() string

func (*StopRelayResponse) XXX_DiscardUnknown

func (m *StopRelayResponse) XXX_DiscardUnknown()

func (*StopRelayResponse) XXX_Marshal

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

func (*StopRelayResponse) XXX_Merge

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

func (*StopRelayResponse) XXX_Size

func (m *StopRelayResponse) XXX_Size() int

func (*StopRelayResponse) XXX_Unmarshal

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

type TestConnectionRequest

type TestConnectionRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth      `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	Config               *ConnectionConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*TestConnectionRequest) Descriptor

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

func (*TestConnectionRequest) GetAuth

func (m *TestConnectionRequest) GetAuth() *common.Auth

func (*TestConnectionRequest) GetConfig added in v0.0.35

func (m *TestConnectionRequest) GetConfig() *ConnectionConfig

func (*TestConnectionRequest) ProtoMessage

func (*TestConnectionRequest) ProtoMessage()

func (*TestConnectionRequest) Reset

func (m *TestConnectionRequest) Reset()

func (*TestConnectionRequest) String

func (m *TestConnectionRequest) String() string

func (*TestConnectionRequest) XXX_DiscardUnknown

func (m *TestConnectionRequest) XXX_DiscardUnknown()

func (*TestConnectionRequest) XXX_Marshal

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

func (*TestConnectionRequest) XXX_Merge

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

func (*TestConnectionRequest) XXX_Size

func (m *TestConnectionRequest) XXX_Size() int

func (*TestConnectionRequest) XXX_Unmarshal

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

type TestConnectionResponse

type TestConnectionResponse struct {
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*TestConnectionResponse) Descriptor

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

func (*TestConnectionResponse) GetStatus

func (m *TestConnectionResponse) GetStatus() *common.Status

func (*TestConnectionResponse) ProtoMessage

func (*TestConnectionResponse) ProtoMessage()

func (*TestConnectionResponse) Reset

func (m *TestConnectionResponse) Reset()

func (*TestConnectionResponse) String

func (m *TestConnectionResponse) String() string

func (*TestConnectionResponse) XXX_DiscardUnknown

func (m *TestConnectionResponse) XXX_DiscardUnknown()

func (*TestConnectionResponse) XXX_Marshal

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

func (*TestConnectionResponse) XXX_Merge

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

func (*TestConnectionResponse) XXX_Size

func (m *TestConnectionResponse) XXX_Size() int

func (*TestConnectionResponse) XXX_Unmarshal

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

type UnimplementedGithubServerServer added in v0.0.41

type UnimplementedGithubServerServer struct {
}

UnimplementedGithubServerServer can be embedded to have forward compatible implementations.

func (*UnimplementedGithubServerServer) Connect added in v0.0.41

type UnimplementedPlumberServerServer

type UnimplementedPlumberServerServer struct {
}

UnimplementedPlumberServerServer can be embedded to have forward compatible implementations.

func (*UnimplementedPlumberServerServer) CreateConnection

func (*UnimplementedPlumberServerServer) CreateRead added in v0.0.20

func (*UnimplementedPlumberServerServer) CreateRelay

func (*UnimplementedPlumberServerServer) CreateService added in v0.0.27

func (*UnimplementedPlumberServerServer) DeleteConnection

func (*UnimplementedPlumberServerServer) DeleteRead added in v0.0.20

func (*UnimplementedPlumberServerServer) DeleteRelay

func (*UnimplementedPlumberServerServer) DeleteSchema added in v0.0.26

func (*UnimplementedPlumberServerServer) DeleteService added in v0.0.27

func (*UnimplementedPlumberServerServer) GetAllConnections

func (*UnimplementedPlumberServerServer) GetAllReads added in v0.0.18

func (*UnimplementedPlumberServerServer) GetAllRelays added in v0.0.17

func (*UnimplementedPlumberServerServer) GetAllSchemas added in v0.0.26

func (*UnimplementedPlumberServerServer) GetAllServices added in v0.0.27

func (*UnimplementedPlumberServerServer) GetConnection added in v0.0.3

func (*UnimplementedPlumberServerServer) GetGithubEvents added in v0.0.40

func (*UnimplementedPlumberServerServer) GetSchema added in v0.0.26

func (*UnimplementedPlumberServerServer) GetServerConfig added in v0.0.40

func (*UnimplementedPlumberServerServer) GetService added in v0.0.27

func (*UnimplementedPlumberServerServer) ImportGithub added in v0.0.26

func (*UnimplementedPlumberServerServer) ImportLocal added in v0.0.26

func (*UnimplementedPlumberServerServer) IsGithubAuth added in v0.0.25

func (*UnimplementedPlumberServerServer) PollGithubAuth added in v0.0.25

func (*UnimplementedPlumberServerServer) ResumeRead added in v0.0.20

func (*UnimplementedPlumberServerServer) ResumeRelay added in v0.0.16

func (*UnimplementedPlumberServerServer) StartGithubAuth added in v0.0.25

func (*UnimplementedPlumberServerServer) StartRead

func (*UnimplementedPlumberServerServer) StopRead

func (*UnimplementedPlumberServerServer) StopRelay

func (*UnimplementedPlumberServerServer) TestConnection

func (*UnimplementedPlumberServerServer) UpdateConnection

func (*UnimplementedPlumberServerServer) UpdateRelay

func (*UnimplementedPlumberServerServer) UpdateService added in v0.0.27

func (*UnimplementedPlumberServerServer) Write

type UpdateConnectionRequest

type UpdateConnectionRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth      `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	ConnectionId         string            `protobuf:"bytes,1,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty"`
	Config               *ConnectionConfig `protobuf:"bytes,2,opt,name=config,proto3" json:"config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*UpdateConnectionRequest) Descriptor

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

func (*UpdateConnectionRequest) GetAuth

func (m *UpdateConnectionRequest) GetAuth() *common.Auth

func (*UpdateConnectionRequest) GetConfig added in v0.0.35

func (m *UpdateConnectionRequest) GetConfig() *ConnectionConfig

func (*UpdateConnectionRequest) GetConnectionId

func (m *UpdateConnectionRequest) GetConnectionId() string

func (*UpdateConnectionRequest) ProtoMessage

func (*UpdateConnectionRequest) ProtoMessage()

func (*UpdateConnectionRequest) Reset

func (m *UpdateConnectionRequest) Reset()

func (*UpdateConnectionRequest) String

func (m *UpdateConnectionRequest) String() string

func (*UpdateConnectionRequest) XXX_DiscardUnknown

func (m *UpdateConnectionRequest) XXX_DiscardUnknown()

func (*UpdateConnectionRequest) XXX_Marshal

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

func (*UpdateConnectionRequest) XXX_Merge

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

func (*UpdateConnectionRequest) XXX_Size

func (m *UpdateConnectionRequest) XXX_Size() int

func (*UpdateConnectionRequest) XXX_Unmarshal

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

type UpdateConnectionResponse

type UpdateConnectionResponse struct {
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*UpdateConnectionResponse) Descriptor

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

func (*UpdateConnectionResponse) GetStatus

func (m *UpdateConnectionResponse) GetStatus() *common.Status

func (*UpdateConnectionResponse) ProtoMessage

func (*UpdateConnectionResponse) ProtoMessage()

func (*UpdateConnectionResponse) Reset

func (m *UpdateConnectionResponse) Reset()

func (*UpdateConnectionResponse) String

func (m *UpdateConnectionResponse) String() string

func (*UpdateConnectionResponse) XXX_DiscardUnknown

func (m *UpdateConnectionResponse) XXX_DiscardUnknown()

func (*UpdateConnectionResponse) XXX_Marshal

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

func (*UpdateConnectionResponse) XXX_Merge

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

func (*UpdateConnectionResponse) XXX_Size

func (m *UpdateConnectionResponse) XXX_Size() int

func (*UpdateConnectionResponse) XXX_Unmarshal

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

type UpdateRelayRequest

type UpdateRelayRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	RelayId              string       `protobuf:"bytes,1,opt,name=relay_id,json=relayId,proto3" json:"relay_id,omitempty"`
	Config               *RelayConfig `protobuf:"bytes,2,opt,name=config,proto3" json:"config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

WARNING: Any in-progress relay will be interrupted/restarted

func (*UpdateRelayRequest) Descriptor

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

func (*UpdateRelayRequest) GetAuth

func (m *UpdateRelayRequest) GetAuth() *common.Auth

func (*UpdateRelayRequest) GetConfig added in v0.0.34

func (m *UpdateRelayRequest) GetConfig() *RelayConfig

func (*UpdateRelayRequest) GetRelayId

func (m *UpdateRelayRequest) GetRelayId() string

func (*UpdateRelayRequest) ProtoMessage

func (*UpdateRelayRequest) ProtoMessage()

func (*UpdateRelayRequest) Reset

func (m *UpdateRelayRequest) Reset()

func (*UpdateRelayRequest) String

func (m *UpdateRelayRequest) String() string

func (*UpdateRelayRequest) XXX_DiscardUnknown

func (m *UpdateRelayRequest) XXX_DiscardUnknown()

func (*UpdateRelayRequest) XXX_Marshal

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

func (*UpdateRelayRequest) XXX_Merge

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

func (*UpdateRelayRequest) XXX_Size

func (m *UpdateRelayRequest) XXX_Size() int

func (*UpdateRelayRequest) XXX_Unmarshal

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

type UpdateRelayResponse

type UpdateRelayResponse struct {
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*UpdateRelayResponse) Descriptor

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

func (*UpdateRelayResponse) GetStatus

func (m *UpdateRelayResponse) GetStatus() *common.Status

func (*UpdateRelayResponse) ProtoMessage

func (*UpdateRelayResponse) ProtoMessage()

func (*UpdateRelayResponse) Reset

func (m *UpdateRelayResponse) Reset()

func (*UpdateRelayResponse) String

func (m *UpdateRelayResponse) String() string

func (*UpdateRelayResponse) XXX_DiscardUnknown

func (m *UpdateRelayResponse) XXX_DiscardUnknown()

func (*UpdateRelayResponse) XXX_Marshal

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

func (*UpdateRelayResponse) XXX_Merge

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

func (*UpdateRelayResponse) XXX_Size

func (m *UpdateRelayResponse) XXX_Size() int

func (*UpdateRelayResponse) XXX_Unmarshal

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

type UpdateServiceRequest added in v0.0.27

type UpdateServiceRequest struct {
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	Service              *Service     `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*UpdateServiceRequest) Descriptor added in v0.0.27

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

func (*UpdateServiceRequest) GetAuth added in v0.0.27

func (m *UpdateServiceRequest) GetAuth() *common.Auth

func (*UpdateServiceRequest) GetService added in v0.0.27

func (m *UpdateServiceRequest) GetService() *Service

func (*UpdateServiceRequest) ProtoMessage added in v0.0.27

func (*UpdateServiceRequest) ProtoMessage()

func (*UpdateServiceRequest) Reset added in v0.0.27

func (m *UpdateServiceRequest) Reset()

func (*UpdateServiceRequest) String added in v0.0.27

func (m *UpdateServiceRequest) String() string

func (*UpdateServiceRequest) XXX_DiscardUnknown added in v0.0.27

func (m *UpdateServiceRequest) XXX_DiscardUnknown()

func (*UpdateServiceRequest) XXX_Marshal added in v0.0.27

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

func (*UpdateServiceRequest) XXX_Merge added in v0.0.27

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

func (*UpdateServiceRequest) XXX_Size added in v0.0.27

func (m *UpdateServiceRequest) XXX_Size() int

func (*UpdateServiceRequest) XXX_Unmarshal added in v0.0.27

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

type UpdateServiceResponse added in v0.0.27

type UpdateServiceResponse struct {
	Service              *Service       `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*UpdateServiceResponse) Descriptor added in v0.0.27

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

func (*UpdateServiceResponse) GetService added in v0.0.27

func (m *UpdateServiceResponse) GetService() *Service

func (*UpdateServiceResponse) GetStatus added in v0.0.27

func (m *UpdateServiceResponse) GetStatus() *common.Status

func (*UpdateServiceResponse) ProtoMessage added in v0.0.27

func (*UpdateServiceResponse) ProtoMessage()

func (*UpdateServiceResponse) Reset added in v0.0.27

func (m *UpdateServiceResponse) Reset()

func (*UpdateServiceResponse) String added in v0.0.27

func (m *UpdateServiceResponse) String() string

func (*UpdateServiceResponse) XXX_DiscardUnknown added in v0.0.27

func (m *UpdateServiceResponse) XXX_DiscardUnknown()

func (*UpdateServiceResponse) XXX_Marshal added in v0.0.27

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

func (*UpdateServiceResponse) XXX_Merge added in v0.0.27

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

func (*UpdateServiceResponse) XXX_Size added in v0.0.27

func (m *UpdateServiceResponse) XXX_Size() int

func (*UpdateServiceResponse) XXX_Unmarshal added in v0.0.27

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

type WriteCLIConfig added in v0.0.38

type WriteCLIConfig struct {
	// @gotags: kong:"help='Write data from input file',existingfile,xor=input"
	InputFile            string   `` /* 152-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*WriteCLIConfig) Descriptor added in v0.0.38

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

func (*WriteCLIConfig) GetInputFile added in v0.0.38

func (m *WriteCLIConfig) GetInputFile() string

func (*WriteCLIConfig) ProtoMessage added in v0.0.38

func (*WriteCLIConfig) ProtoMessage()

func (*WriteCLIConfig) Reset added in v0.0.38

func (m *WriteCLIConfig) Reset()

func (*WriteCLIConfig) String added in v0.0.38

func (m *WriteCLIConfig) String() string

func (*WriteCLIConfig) XXX_DiscardUnknown added in v0.0.38

func (m *WriteCLIConfig) XXX_DiscardUnknown()

func (*WriteCLIConfig) XXX_Marshal added in v0.0.38

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

func (*WriteCLIConfig) XXX_Merge added in v0.0.38

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

func (*WriteCLIConfig) XXX_Size added in v0.0.38

func (m *WriteCLIConfig) XXX_Size() int

func (*WriteCLIConfig) XXX_Unmarshal added in v0.0.38

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

type WriteConfig added in v0.0.38

type WriteConfig 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:"-"`
	// Specifying encoding options will cause the _value_ of the record to get
	// encoded and set in WriteRecord.encoded.
	// @gotags: kong:"embed,group=encode"
	EncodeOptions *encoding.EncodeOptions `` /* 126-byte string literal not displayed */
	// This will be passed directly to the backend to perform the write.
	// The opts must include the actual payload that should be written, any
	// backend & write-specific opts. Desktop can omit conn - it will be
	// auto-filled out in CLI mode.
	// @gotags: kong:"embed"
	WriteOpts *WriteOpts `protobuf:"bytes,3,opt,name=write_opts,json=writeOpts,proto3" json:"write_opts,omitempty" kong:"embed"`
	// Optional; CLI-specific and non-backend-specific options
	// @gotags: kong:"embed"
	XCliConfig           *WriteCLIConfig `protobuf:"bytes,4,opt,name=_cli_config,json=CliConfig,proto3" json:"_cli_config,omitempty" kong:"embed"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

WriteConfig is used by both CLI and server to facilitate a write request. It is the responsibility of the handler (CLI or server) to read EncodeOptions, CLI config, etc. and update the *WriteOpts accordingly. Ie. If CLI passes a file, the CLI handler should read the file and set it in *WriteOpts.WriteRecord.

func (*WriteConfig) Descriptor added in v0.0.38

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

func (*WriteConfig) GetConnectionId added in v0.0.38

func (m *WriteConfig) GetConnectionId() string

func (*WriteConfig) GetEncodeOptions added in v0.0.38

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

func (*WriteConfig) GetWriteOpts added in v0.0.46

func (m *WriteConfig) GetWriteOpts() *WriteOpts

func (*WriteConfig) GetXCliConfig added in v0.0.38

func (m *WriteConfig) GetXCliConfig() *WriteCLIConfig

func (*WriteConfig) ProtoMessage added in v0.0.38

func (*WriteConfig) ProtoMessage()

func (*WriteConfig) Reset added in v0.0.38

func (m *WriteConfig) Reset()

func (*WriteConfig) String added in v0.0.38

func (m *WriteConfig) String() string

func (*WriteConfig) XXX_DiscardUnknown added in v0.0.38

func (m *WriteConfig) XXX_DiscardUnknown()

func (*WriteConfig) XXX_Marshal added in v0.0.38

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

func (*WriteConfig) XXX_Merge added in v0.0.38

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

func (*WriteConfig) XXX_Size added in v0.0.38

func (m *WriteConfig) XXX_Size() int

func (*WriteConfig) XXX_Unmarshal added in v0.0.38

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

type WriteOpts added in v0.0.46

type WriteOpts struct {
	// @gotags: kong:"embed"
	Record *records.WriteRecord `protobuf:"bytes,1,opt,name=record,proto3" json:"record,omitempty" kong:"embed"`
	// @gotags: kong:"cmd,help='Apache Kafka'"
	Kafka *WriteOptsKafka `protobuf:"bytes,100,opt,name=kafka,proto3" json:"kafka,omitempty" kong:"cmd,help='Apache Kafka'"`
	// @gotags: kong:"cmd,help='Apache ActiveMQ'"
	Activemq *WriteOptsActiveMQ `protobuf:"bytes,101,opt,name=activemq,proto3" json:"activemq,omitempty" kong:"cmd,help='Apache ActiveMQ'"`
	// @gotags: kong:"cmd,help='AWS Simple Queue System'"
	Awssqs *WriteOptsAWSSQS `protobuf:"bytes,102,opt,name=awssqs,proto3" json:"awssqs,omitempty" kong:"cmd,help='AWS Simple Queue System'"`
	// @gotags: kong:"cmd,help='AWS Simple Notification System'"
	Awssns *WriteOptsAWSSNS `protobuf:"bytes,103,opt,name=awssns,proto3" json:"awssns,omitempty" kong:"cmd,help='AWS Simple Notification System'"`
	// @gotags: kong:"cmd,help='NATS'"
	Nats *WriteOptsNats `protobuf:"bytes,104,opt,name=nats,proto3" json:"nats,omitempty" kong:"cmd,help='NATS'"`
	// @gotags: kong:"cmd,help='NATS Streaming'"
	NatsStreaming *WriteOptsNatsStreaming `` /* 135-byte string literal not displayed */
	// @gotags: kong:"cmd,help='NSQ'"
	Nsq *WriteOptsNSQ `protobuf:"bytes,106,opt,name=nsq,proto3" json:"nsq,omitempty" kong:"cmd,help='NSQ'"`
	// @gotags: kong:"cmd,help='Apache Pulsar'"
	Pulsar *WriteOptsPulsar `protobuf:"bytes,107,opt,name=pulsar,proto3" json:"pulsar,omitempty" kong:"cmd,help='Apache Pulsar'"`
	// @gotags: kong:"cmd,help='RabbitMQ'"
	Rabbit *WriteOptsRabbit `protobuf:"bytes,108,opt,name=rabbit,proto3" json:"rabbit,omitempty" kong:"cmd,help='RabbitMQ'"`
	// @gotags: kong:"cmd,help='RabbitMQ Streams'"
	RabbitStreams *WriteOptsRabbitStreams `` /* 137-byte string literal not displayed */
	// @gotags: kong:"cmd,help='MQTT'"
	Mqtt *WriteOptsMQTT `protobuf:"bytes,110,opt,name=mqtt,proto3" json:"mqtt,omitempty" kong:"cmd,help='MQTT'"`
	// @gotags: kong:"cmd,help='Azure Service Bus'"
	AzureServiceBus *WriteOptsAzureServiceBus `` /* 146-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Azure Event Hub'"
	AzureEventHub *WriteOptsAzureEventHub `` /* 138-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Google Cloud Platform Pub/Sub'"
	GcpPubsub *WriteOptsGCPPubSub `` /* 138-byte string literal not displayed */
	// @gotags: kong:"cmd,help='KubeMQ Queue'"
	KubemqQueue *WriteOptsKubeMQQueue `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis PubSub'"
	RedisPubsub *WriteOptsRedisPubSub `` /* 127-byte string literal not displayed */
	// @gotags: kong:"cmd,help='Redis Streams'"
	RedisStreams         *WriteOptsRedisStreams `` /* 131-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}               `json:"-"`
	XXX_unrecognized     []byte                 `json:"-"`
	XXX_sizecache        int32                  `json:"-"`
}

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

func (*WriteOpts) Descriptor added in v0.0.46

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

func (*WriteOpts) GetActivemq added in v0.0.46

func (m *WriteOpts) GetActivemq() *WriteOptsActiveMQ

func (*WriteOpts) GetAwssns added in v0.0.46

func (m *WriteOpts) GetAwssns() *WriteOptsAWSSNS

func (*WriteOpts) GetAwssqs added in v0.0.46

func (m *WriteOpts) GetAwssqs() *WriteOptsAWSSQS

func (*WriteOpts) GetAzureEventHub added in v0.0.46

func (m *WriteOpts) GetAzureEventHub() *WriteOptsAzureEventHub

func (*WriteOpts) GetAzureServiceBus added in v0.0.46

func (m *WriteOpts) GetAzureServiceBus() *WriteOptsAzureServiceBus

func (*WriteOpts) GetGcpPubsub added in v0.0.46

func (m *WriteOpts) GetGcpPubsub() *WriteOptsGCPPubSub

func (*WriteOpts) GetKafka added in v0.0.46

func (m *WriteOpts) GetKafka() *WriteOptsKafka

func (*WriteOpts) GetKubemqQueue added in v0.0.46

func (m *WriteOpts) GetKubemqQueue() *WriteOptsKubeMQQueue

func (*WriteOpts) GetMqtt added in v0.0.46

func (m *WriteOpts) GetMqtt() *WriteOptsMQTT

func (*WriteOpts) GetNats added in v0.0.46

func (m *WriteOpts) GetNats() *WriteOptsNats

func (*WriteOpts) GetNatsStreaming added in v0.0.46

func (m *WriteOpts) GetNatsStreaming() *WriteOptsNatsStreaming

func (*WriteOpts) GetNsq added in v0.0.46

func (m *WriteOpts) GetNsq() *WriteOptsNSQ

func (*WriteOpts) GetPulsar added in v0.0.46

func (m *WriteOpts) GetPulsar() *WriteOptsPulsar

func (*WriteOpts) GetRabbit added in v0.0.46

func (m *WriteOpts) GetRabbit() *WriteOptsRabbit

func (*WriteOpts) GetRabbitStreams added in v0.0.46

func (m *WriteOpts) GetRabbitStreams() *WriteOptsRabbitStreams

func (*WriteOpts) GetRecord added in v0.0.46

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

func (*WriteOpts) GetRedisPubsub added in v0.0.46

func (m *WriteOpts) GetRedisPubsub() *WriteOptsRedisPubSub

func (*WriteOpts) GetRedisStreams added in v0.0.46

func (m *WriteOpts) GetRedisStreams() *WriteOptsRedisStreams

func (*WriteOpts) ProtoMessage added in v0.0.46

func (*WriteOpts) ProtoMessage()

func (*WriteOpts) Reset added in v0.0.46

func (m *WriteOpts) Reset()

func (*WriteOpts) String added in v0.0.46

func (m *WriteOpts) String() string

func (*WriteOpts) XXX_DiscardUnknown added in v0.0.46

func (m *WriteOpts) XXX_DiscardUnknown()

func (*WriteOpts) XXX_Marshal added in v0.0.46

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

func (*WriteOpts) XXX_Merge added in v0.0.46

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

func (*WriteOpts) XXX_Size added in v0.0.46

func (m *WriteOpts) XXX_Size() int

func (*WriteOpts) XXX_Unmarshal added in v0.0.46

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

type WriteOptsAWSSNS added in v0.0.46

type WriteOptsAWSSNS 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.AWSSNSWriteOpts `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 (*WriteOptsAWSSNS) Descriptor added in v0.0.46

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

func (*WriteOptsAWSSNS) GetArgs added in v0.0.46

func (m *WriteOptsAWSSNS) GetArgs() *args.AWSSNSWriteOpts

func (*WriteOptsAWSSNS) GetXConn added in v0.0.46

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

func (*WriteOptsAWSSNS) ProtoMessage added in v0.0.46

func (*WriteOptsAWSSNS) ProtoMessage()

func (*WriteOptsAWSSNS) Reset added in v0.0.46

func (m *WriteOptsAWSSNS) Reset()

func (*WriteOptsAWSSNS) String added in v0.0.46

func (m *WriteOptsAWSSNS) String() string

func (*WriteOptsAWSSNS) XXX_DiscardUnknown added in v0.0.46

func (m *WriteOptsAWSSNS) XXX_DiscardUnknown()

func (*WriteOptsAWSSNS) XXX_Marshal added in v0.0.46

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

func (*WriteOptsAWSSNS) XXX_Merge added in v0.0.46

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

func (*WriteOptsAWSSNS) XXX_Size added in v0.0.46

func (m *WriteOptsAWSSNS) XXX_Size() int

func (*WriteOptsAWSSNS) XXX_Unmarshal added in v0.0.46

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

type WriteOptsAWSSQS added in v0.0.46

type WriteOptsAWSSQS 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.AWSSQSWriteOpts `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 (*WriteOptsAWSSQS) Descriptor added in v0.0.46

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

func (*WriteOptsAWSSQS) GetArgs added in v0.0.46

func (m *WriteOptsAWSSQS) GetArgs() *args.AWSSQSWriteOpts

func (*WriteOptsAWSSQS) GetXConn added in v0.0.46

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

func (*WriteOptsAWSSQS) ProtoMessage added in v0.0.46

func (*WriteOptsAWSSQS) ProtoMessage()

func (*WriteOptsAWSSQS) Reset added in v0.0.46

func (m *WriteOptsAWSSQS) Reset()

func (*WriteOptsAWSSQS) String added in v0.0.46

func (m *WriteOptsAWSSQS) String() string

func (*WriteOptsAWSSQS) XXX_DiscardUnknown added in v0.0.46

func (m *WriteOptsAWSSQS) XXX_DiscardUnknown()

func (*WriteOptsAWSSQS) XXX_Marshal added in v0.0.46

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

func (*WriteOptsAWSSQS) XXX_Merge added in v0.0.46

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

func (*WriteOptsAWSSQS) XXX_Size added in v0.0.46

func (m *WriteOptsAWSSQS) XXX_Size() int

func (*WriteOptsAWSSQS) XXX_Unmarshal added in v0.0.46

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

type WriteOptsActiveMQ added in v0.0.46

type WriteOptsActiveMQ 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.ActiveMQWriteOpts `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 (*WriteOptsActiveMQ) Descriptor added in v0.0.46

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

func (*WriteOptsActiveMQ) GetArgs added in v0.0.46

func (*WriteOptsActiveMQ) GetXConn added in v0.0.46

func (m *WriteOptsActiveMQ) GetXConn() *args.ActiveMQConn

func (*WriteOptsActiveMQ) ProtoMessage added in v0.0.46

func (*WriteOptsActiveMQ) ProtoMessage()

func (*WriteOptsActiveMQ) Reset added in v0.0.46

func (m *WriteOptsActiveMQ) Reset()

func (*WriteOptsActiveMQ) String added in v0.0.46

func (m *WriteOptsActiveMQ) String() string

func (*WriteOptsActiveMQ) XXX_DiscardUnknown added in v0.0.46

func (m *WriteOptsActiveMQ) XXX_DiscardUnknown()

func (*WriteOptsActiveMQ) XXX_Marshal added in v0.0.46

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

func (*WriteOptsActiveMQ) XXX_Merge added in v0.0.46

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

func (*WriteOptsActiveMQ) XXX_Size added in v0.0.46

func (m *WriteOptsActiveMQ) XXX_Size() int

func (*WriteOptsActiveMQ) XXX_Unmarshal added in v0.0.46

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

type WriteOptsAzureEventHub added in v0.0.46

type WriteOptsAzureEventHub 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.AzureEventHubWriteOpts `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 (*WriteOptsAzureEventHub) Descriptor added in v0.0.46

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

func (*WriteOptsAzureEventHub) GetArgs added in v0.0.46

func (*WriteOptsAzureEventHub) GetXConn added in v0.0.46

func (*WriteOptsAzureEventHub) ProtoMessage added in v0.0.46

func (*WriteOptsAzureEventHub) ProtoMessage()

func (*WriteOptsAzureEventHub) Reset added in v0.0.46

func (m *WriteOptsAzureEventHub) Reset()

func (*WriteOptsAzureEventHub) String added in v0.0.46

func (m *WriteOptsAzureEventHub) String() string

func (*WriteOptsAzureEventHub) XXX_DiscardUnknown added in v0.0.46

func (m *WriteOptsAzureEventHub) XXX_DiscardUnknown()

func (*WriteOptsAzureEventHub) XXX_Marshal added in v0.0.46

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

func (*WriteOptsAzureEventHub) XXX_Merge added in v0.0.46

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

func (*WriteOptsAzureEventHub) XXX_Size added in v0.0.46

func (m *WriteOptsAzureEventHub) XXX_Size() int

func (*WriteOptsAzureEventHub) XXX_Unmarshal added in v0.0.46

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

type WriteOptsAzureServiceBus added in v0.0.46

type WriteOptsAzureServiceBus 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.AzureServiceBusWriteOpts `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 (*WriteOptsAzureServiceBus) Descriptor added in v0.0.46

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

func (*WriteOptsAzureServiceBus) GetArgs added in v0.0.46

func (*WriteOptsAzureServiceBus) GetXConn added in v0.0.46

func (*WriteOptsAzureServiceBus) ProtoMessage added in v0.0.46

func (*WriteOptsAzureServiceBus) ProtoMessage()

func (*WriteOptsAzureServiceBus) Reset added in v0.0.46

func (m *WriteOptsAzureServiceBus) Reset()

func (*WriteOptsAzureServiceBus) String added in v0.0.46

func (m *WriteOptsAzureServiceBus) String() string

func (*WriteOptsAzureServiceBus) XXX_DiscardUnknown added in v0.0.46

func (m *WriteOptsAzureServiceBus) XXX_DiscardUnknown()

func (*WriteOptsAzureServiceBus) XXX_Marshal added in v0.0.46

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

func (*WriteOptsAzureServiceBus) XXX_Merge added in v0.0.46

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

func (*WriteOptsAzureServiceBus) XXX_Size added in v0.0.46

func (m *WriteOptsAzureServiceBus) XXX_Size() int

func (*WriteOptsAzureServiceBus) XXX_Unmarshal added in v0.0.46

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

type WriteOptsGCPPubSub added in v0.0.46

type WriteOptsGCPPubSub 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.GCPPubSubWriteOpts `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 (*WriteOptsGCPPubSub) Descriptor added in v0.0.46

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

func (*WriteOptsGCPPubSub) GetArgs added in v0.0.46

func (*WriteOptsGCPPubSub) GetXConn added in v0.0.46

func (m *WriteOptsGCPPubSub) GetXConn() *args.GCPPubSubConn

func (*WriteOptsGCPPubSub) ProtoMessage added in v0.0.46

func (*WriteOptsGCPPubSub) ProtoMessage()

func (*WriteOptsGCPPubSub) Reset added in v0.0.46

func (m *WriteOptsGCPPubSub) Reset()

func (*WriteOptsGCPPubSub) String added in v0.0.46

func (m *WriteOptsGCPPubSub) String() string

func (*WriteOptsGCPPubSub) XXX_DiscardUnknown added in v0.0.46

func (m *WriteOptsGCPPubSub) XXX_DiscardUnknown()

func (*WriteOptsGCPPubSub) XXX_Marshal added in v0.0.46

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

func (*WriteOptsGCPPubSub) XXX_Merge added in v0.0.46

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

func (*WriteOptsGCPPubSub) XXX_Size added in v0.0.46

func (m *WriteOptsGCPPubSub) XXX_Size() int

func (*WriteOptsGCPPubSub) XXX_Unmarshal added in v0.0.46

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

type WriteOptsKafka added in v0.0.46

type WriteOptsKafka 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.KafkaWriteOpts `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 (*WriteOptsKafka) Descriptor added in v0.0.46

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

func (*WriteOptsKafka) GetArgs added in v0.0.46

func (m *WriteOptsKafka) GetArgs() *args.KafkaWriteOpts

func (*WriteOptsKafka) GetXConn added in v0.0.46

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

func (*WriteOptsKafka) ProtoMessage added in v0.0.46

func (*WriteOptsKafka) ProtoMessage()

func (*WriteOptsKafka) Reset added in v0.0.46

func (m *WriteOptsKafka) Reset()

func (*WriteOptsKafka) String added in v0.0.46

func (m *WriteOptsKafka) String() string

func (*WriteOptsKafka) XXX_DiscardUnknown added in v0.0.46

func (m *WriteOptsKafka) XXX_DiscardUnknown()

func (*WriteOptsKafka) XXX_Marshal added in v0.0.46

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

func (*WriteOptsKafka) XXX_Merge added in v0.0.46

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

func (*WriteOptsKafka) XXX_Size added in v0.0.46

func (m *WriteOptsKafka) XXX_Size() int

func (*WriteOptsKafka) XXX_Unmarshal added in v0.0.46

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

type WriteOptsKubeMQQueue added in v0.0.46

type WriteOptsKubeMQQueue 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.KubeMQQueueWriteOpts `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 (*WriteOptsKubeMQQueue) Descriptor added in v0.0.46

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

func (*WriteOptsKubeMQQueue) GetArgs added in v0.0.46

func (*WriteOptsKubeMQQueue) GetXConn added in v0.0.46

func (m *WriteOptsKubeMQQueue) GetXConn() *args.KubeMQQueueConn

func (*WriteOptsKubeMQQueue) ProtoMessage added in v0.0.46

func (*WriteOptsKubeMQQueue) ProtoMessage()

func (*WriteOptsKubeMQQueue) Reset added in v0.0.46

func (m *WriteOptsKubeMQQueue) Reset()

func (*WriteOptsKubeMQQueue) String added in v0.0.46

func (m *WriteOptsKubeMQQueue) String() string

func (*WriteOptsKubeMQQueue) XXX_DiscardUnknown added in v0.0.46

func (m *WriteOptsKubeMQQueue) XXX_DiscardUnknown()

func (*WriteOptsKubeMQQueue) XXX_Marshal added in v0.0.46

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

func (*WriteOptsKubeMQQueue) XXX_Merge added in v0.0.46

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

func (*WriteOptsKubeMQQueue) XXX_Size added in v0.0.46

func (m *WriteOptsKubeMQQueue) XXX_Size() int

func (*WriteOptsKubeMQQueue) XXX_Unmarshal added in v0.0.46

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

type WriteOptsMQTT added in v0.0.46

type WriteOptsMQTT 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.MQTTWriteOpts `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 (*WriteOptsMQTT) Descriptor added in v0.0.46

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

func (*WriteOptsMQTT) GetArgs added in v0.0.46

func (m *WriteOptsMQTT) GetArgs() *args.MQTTWriteOpts

func (*WriteOptsMQTT) GetXConn added in v0.0.46

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

func (*WriteOptsMQTT) ProtoMessage added in v0.0.46

func (*WriteOptsMQTT) ProtoMessage()

func (*WriteOptsMQTT) Reset added in v0.0.46

func (m *WriteOptsMQTT) Reset()

func (*WriteOptsMQTT) String added in v0.0.46

func (m *WriteOptsMQTT) String() string

func (*WriteOptsMQTT) XXX_DiscardUnknown added in v0.0.46

func (m *WriteOptsMQTT) XXX_DiscardUnknown()

func (*WriteOptsMQTT) XXX_Marshal added in v0.0.46

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

func (*WriteOptsMQTT) XXX_Merge added in v0.0.46

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

func (*WriteOptsMQTT) XXX_Size added in v0.0.46

func (m *WriteOptsMQTT) XXX_Size() int

func (*WriteOptsMQTT) XXX_Unmarshal added in v0.0.46

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

type WriteOptsNSQ added in v0.0.46

type WriteOptsNSQ 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.NSQWriteOpts `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 (*WriteOptsNSQ) Descriptor added in v0.0.46

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

func (*WriteOptsNSQ) GetArgs added in v0.0.46

func (m *WriteOptsNSQ) GetArgs() *args.NSQWriteOpts

func (*WriteOptsNSQ) GetXConn added in v0.0.46

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

func (*WriteOptsNSQ) ProtoMessage added in v0.0.46

func (*WriteOptsNSQ) ProtoMessage()

func (*WriteOptsNSQ) Reset added in v0.0.46

func (m *WriteOptsNSQ) Reset()

func (*WriteOptsNSQ) String added in v0.0.46

func (m *WriteOptsNSQ) String() string

func (*WriteOptsNSQ) XXX_DiscardUnknown added in v0.0.46

func (m *WriteOptsNSQ) XXX_DiscardUnknown()

func (*WriteOptsNSQ) XXX_Marshal added in v0.0.46

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

func (*WriteOptsNSQ) XXX_Merge added in v0.0.46

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

func (*WriteOptsNSQ) XXX_Size added in v0.0.46

func (m *WriteOptsNSQ) XXX_Size() int

func (*WriteOptsNSQ) XXX_Unmarshal added in v0.0.46

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

type WriteOptsNats added in v0.0.46

type WriteOptsNats 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.NatsWriteOpts `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 (*WriteOptsNats) Descriptor added in v0.0.46

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

func (*WriteOptsNats) GetArgs added in v0.0.46

func (m *WriteOptsNats) GetArgs() *args.NatsWriteOpts

func (*WriteOptsNats) GetXConn added in v0.0.46

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

func (*WriteOptsNats) ProtoMessage added in v0.0.46

func (*WriteOptsNats) ProtoMessage()

func (*WriteOptsNats) Reset added in v0.0.46

func (m *WriteOptsNats) Reset()

func (*WriteOptsNats) String added in v0.0.46

func (m *WriteOptsNats) String() string

func (*WriteOptsNats) XXX_DiscardUnknown added in v0.0.46

func (m *WriteOptsNats) XXX_DiscardUnknown()

func (*WriteOptsNats) XXX_Marshal added in v0.0.46

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

func (*WriteOptsNats) XXX_Merge added in v0.0.46

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

func (*WriteOptsNats) XXX_Size added in v0.0.46

func (m *WriteOptsNats) XXX_Size() int

func (*WriteOptsNats) XXX_Unmarshal added in v0.0.46

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

type WriteOptsNatsStreaming added in v0.0.46

type WriteOptsNatsStreaming 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.NatsStreamingWriteOpts `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 (*WriteOptsNatsStreaming) Descriptor added in v0.0.46

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

func (*WriteOptsNatsStreaming) GetArgs added in v0.0.46

func (*WriteOptsNatsStreaming) GetXConn added in v0.0.46

func (*WriteOptsNatsStreaming) ProtoMessage added in v0.0.46

func (*WriteOptsNatsStreaming) ProtoMessage()

func (*WriteOptsNatsStreaming) Reset added in v0.0.46

func (m *WriteOptsNatsStreaming) Reset()

func (*WriteOptsNatsStreaming) String added in v0.0.46

func (m *WriteOptsNatsStreaming) String() string

func (*WriteOptsNatsStreaming) XXX_DiscardUnknown added in v0.0.46

func (m *WriteOptsNatsStreaming) XXX_DiscardUnknown()

func (*WriteOptsNatsStreaming) XXX_Marshal added in v0.0.46

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

func (*WriteOptsNatsStreaming) XXX_Merge added in v0.0.46

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

func (*WriteOptsNatsStreaming) XXX_Size added in v0.0.46

func (m *WriteOptsNatsStreaming) XXX_Size() int

func (*WriteOptsNatsStreaming) XXX_Unmarshal added in v0.0.46

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

type WriteOptsPulsar added in v0.0.46

type WriteOptsPulsar 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.PulsarWriteOpts `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 (*WriteOptsPulsar) Descriptor added in v0.0.46

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

func (*WriteOptsPulsar) GetArgs added in v0.0.46

func (m *WriteOptsPulsar) GetArgs() *args.PulsarWriteOpts

func (*WriteOptsPulsar) GetXConn added in v0.0.46

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

func (*WriteOptsPulsar) ProtoMessage added in v0.0.46

func (*WriteOptsPulsar) ProtoMessage()

func (*WriteOptsPulsar) Reset added in v0.0.46

func (m *WriteOptsPulsar) Reset()

func (*WriteOptsPulsar) String added in v0.0.46

func (m *WriteOptsPulsar) String() string

func (*WriteOptsPulsar) XXX_DiscardUnknown added in v0.0.46

func (m *WriteOptsPulsar) XXX_DiscardUnknown()

func (*WriteOptsPulsar) XXX_Marshal added in v0.0.46

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

func (*WriteOptsPulsar) XXX_Merge added in v0.0.46

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

func (*WriteOptsPulsar) XXX_Size added in v0.0.46

func (m *WriteOptsPulsar) XXX_Size() int

func (*WriteOptsPulsar) XXX_Unmarshal added in v0.0.46

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

type WriteOptsRabbit added in v0.0.46

type WriteOptsRabbit 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.RabbitWriteOpts `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 (*WriteOptsRabbit) Descriptor added in v0.0.46

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

func (*WriteOptsRabbit) GetArgs added in v0.0.46

func (m *WriteOptsRabbit) GetArgs() *args.RabbitWriteOpts

func (*WriteOptsRabbit) GetXConn added in v0.0.46

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

func (*WriteOptsRabbit) ProtoMessage added in v0.0.46

func (*WriteOptsRabbit) ProtoMessage()

func (*WriteOptsRabbit) Reset added in v0.0.46

func (m *WriteOptsRabbit) Reset()

func (*WriteOptsRabbit) String added in v0.0.46

func (m *WriteOptsRabbit) String() string

func (*WriteOptsRabbit) XXX_DiscardUnknown added in v0.0.46

func (m *WriteOptsRabbit) XXX_DiscardUnknown()

func (*WriteOptsRabbit) XXX_Marshal added in v0.0.46

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

func (*WriteOptsRabbit) XXX_Merge added in v0.0.46

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

func (*WriteOptsRabbit) XXX_Size added in v0.0.46

func (m *WriteOptsRabbit) XXX_Size() int

func (*WriteOptsRabbit) XXX_Unmarshal added in v0.0.46

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

type WriteOptsRabbitStreams added in v0.0.46

type WriteOptsRabbitStreams 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.RabbitStreamsWriteOpts `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 (*WriteOptsRabbitStreams) Descriptor added in v0.0.46

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

func (*WriteOptsRabbitStreams) GetArgs added in v0.0.46

func (*WriteOptsRabbitStreams) GetXConn added in v0.0.46

func (*WriteOptsRabbitStreams) ProtoMessage added in v0.0.46

func (*WriteOptsRabbitStreams) ProtoMessage()

func (*WriteOptsRabbitStreams) Reset added in v0.0.46

func (m *WriteOptsRabbitStreams) Reset()

func (*WriteOptsRabbitStreams) String added in v0.0.46

func (m *WriteOptsRabbitStreams) String() string

func (*WriteOptsRabbitStreams) XXX_DiscardUnknown added in v0.0.46

func (m *WriteOptsRabbitStreams) XXX_DiscardUnknown()

func (*WriteOptsRabbitStreams) XXX_Marshal added in v0.0.46

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

func (*WriteOptsRabbitStreams) XXX_Merge added in v0.0.46

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

func (*WriteOptsRabbitStreams) XXX_Size added in v0.0.46

func (m *WriteOptsRabbitStreams) XXX_Size() int

func (*WriteOptsRabbitStreams) XXX_Unmarshal added in v0.0.46

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

type WriteOptsRedisPubSub added in v0.0.46

type WriteOptsRedisPubSub 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.RedisPubSubWriteOpts `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 (*WriteOptsRedisPubSub) Descriptor added in v0.0.46

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

func (*WriteOptsRedisPubSub) GetArgs added in v0.0.46

func (*WriteOptsRedisPubSub) GetXConn added in v0.0.46

func (m *WriteOptsRedisPubSub) GetXConn() *args.RedisPubSubConn

func (*WriteOptsRedisPubSub) ProtoMessage added in v0.0.46

func (*WriteOptsRedisPubSub) ProtoMessage()

func (*WriteOptsRedisPubSub) Reset added in v0.0.46

func (m *WriteOptsRedisPubSub) Reset()

func (*WriteOptsRedisPubSub) String added in v0.0.46

func (m *WriteOptsRedisPubSub) String() string

func (*WriteOptsRedisPubSub) XXX_DiscardUnknown added in v0.0.46

func (m *WriteOptsRedisPubSub) XXX_DiscardUnknown()

func (*WriteOptsRedisPubSub) XXX_Marshal added in v0.0.46

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

func (*WriteOptsRedisPubSub) XXX_Merge added in v0.0.46

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

func (*WriteOptsRedisPubSub) XXX_Size added in v0.0.46

func (m *WriteOptsRedisPubSub) XXX_Size() int

func (*WriteOptsRedisPubSub) XXX_Unmarshal added in v0.0.46

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

type WriteOptsRedisStreams added in v0.0.46

type WriteOptsRedisStreams 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.RedisStreamsWriteOpts `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 (*WriteOptsRedisStreams) Descriptor added in v0.0.46

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

func (*WriteOptsRedisStreams) GetArgs added in v0.0.46

func (*WriteOptsRedisStreams) GetXConn added in v0.0.46

func (*WriteOptsRedisStreams) ProtoMessage added in v0.0.46

func (*WriteOptsRedisStreams) ProtoMessage()

func (*WriteOptsRedisStreams) Reset added in v0.0.46

func (m *WriteOptsRedisStreams) Reset()

func (*WriteOptsRedisStreams) String added in v0.0.46

func (m *WriteOptsRedisStreams) String() string

func (*WriteOptsRedisStreams) XXX_DiscardUnknown added in v0.0.46

func (m *WriteOptsRedisStreams) XXX_DiscardUnknown()

func (*WriteOptsRedisStreams) XXX_Marshal added in v0.0.46

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

func (*WriteOptsRedisStreams) XXX_Merge added in v0.0.46

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

func (*WriteOptsRedisStreams) XXX_Size added in v0.0.46

func (m *WriteOptsRedisStreams) XXX_Size() int

func (*WriteOptsRedisStreams) XXX_Unmarshal added in v0.0.46

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

type WriteRequest

type WriteRequest struct {
	// Every gRPC request must have a valid auth config
	Auth                 *common.Auth `protobuf:"bytes,9999,opt,name=auth,proto3" json:"auth,omitempty"`
	Config               *WriteConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*WriteRequest) Descriptor

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

func (*WriteRequest) GetAuth

func (m *WriteRequest) GetAuth() *common.Auth

func (*WriteRequest) GetConfig added in v0.0.38

func (m *WriteRequest) GetConfig() *WriteConfig

func (*WriteRequest) ProtoMessage

func (*WriteRequest) ProtoMessage()

func (*WriteRequest) Reset

func (m *WriteRequest) Reset()

func (*WriteRequest) String

func (m *WriteRequest) String() string

func (*WriteRequest) XXX_DiscardUnknown

func (m *WriteRequest) XXX_DiscardUnknown()

func (*WriteRequest) XXX_Marshal

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

func (*WriteRequest) XXX_Merge

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

func (*WriteRequest) XXX_Size

func (m *WriteRequest) XXX_Size() int

func (*WriteRequest) XXX_Unmarshal

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

type WriteResponse

type WriteResponse struct {
	Status               *common.Status `protobuf:"bytes,1000,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*WriteResponse) Descriptor

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

func (*WriteResponse) GetStatus

func (m *WriteResponse) GetStatus() *common.Status

func (*WriteResponse) ProtoMessage

func (*WriteResponse) ProtoMessage()

func (*WriteResponse) Reset

func (m *WriteResponse) Reset()

func (*WriteResponse) String

func (m *WriteResponse) String() string

func (*WriteResponse) XXX_DiscardUnknown

func (m *WriteResponse) XXX_DiscardUnknown()

func (*WriteResponse) XXX_Marshal

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

func (*WriteResponse) XXX_Merge

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

func (*WriteResponse) XXX_Size

func (m *WriteResponse) XXX_Size() int

func (*WriteResponse) XXX_Unmarshal

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

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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