fdb

package
v1.27.0 Latest Latest
Warning

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

Go to latest
Published: Apr 3, 2024 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Overview

Package fdb defines the RPC interface for the sansshell FDB actions.

Index

Constants

View Source
const (
	Conf_Read_FullMethodName   = "/Fdb.Conf/Read"
	Conf_Write_FullMethodName  = "/Fdb.Conf/Write"
	Conf_Delete_FullMethodName = "/Fdb.Conf/Delete"
)
View Source
const (
	FDBMove_FDBMoveDataCopy_FullMethodName = "/Fdb.FDBMove/FDBMoveDataCopy"
	FDBMove_FDBMoveDataWait_FullMethodName = "/Fdb.FDBMove/FDBMoveDataWait"
)
View Source
const (
	CLI_FDBCLI_FullMethodName = "/Fdb.CLI/FDBCLI"
)
View Source
const (
	Server_FDBServer_FullMethodName = "/Fdb.Server/FDBServer"
)

Variables

View Source
var CLI_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "Fdb.CLI",
	HandlerType: (*CLIServer)(nil),
	Methods:     []grpc.MethodDesc{},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "FDBCLI",
			Handler:       _CLI_FDBCLI_Handler,
			ServerStreams: true,
		},
	},
	Metadata: "fdb.proto",
}

CLI_ServiceDesc is the grpc.ServiceDesc for CLI service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var Conf_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "Fdb.Conf",
	HandlerType: (*ConfServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Read",
			Handler:    _Conf_Read_Handler,
		},
		{
			MethodName: "Write",
			Handler:    _Conf_Write_Handler,
		},
		{
			MethodName: "Delete",
			Handler:    _Conf_Delete_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "fdb.proto",
}

Conf_ServiceDesc is the grpc.ServiceDesc for Conf service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var FDBMove_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "Fdb.FDBMove",
	HandlerType: (*FDBMoveServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "FDBMoveDataCopy",
			Handler:    _FDBMove_FDBMoveDataCopy_Handler,
		},
	},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "FDBMoveDataWait",
			Handler:       _FDBMove_FDBMoveDataWait_Handler,
			ServerStreams: true,
		},
	},
	Metadata: "fdb.proto",
}

FDBMove_ServiceDesc is the grpc.ServiceDesc for FDBMove service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var Server_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "Fdb.Server",
	HandlerType: (*ServerServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "FDBServer",
			Handler:    _Server_FDBServer_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "fdb.proto",
}

Server_ServiceDesc is the grpc.ServiceDesc for Server service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

Functions

func RegisterCLIServer

func RegisterCLIServer(s grpc.ServiceRegistrar, srv CLIServer)

func RegisterConfServer

func RegisterConfServer(s grpc.ServiceRegistrar, srv ConfServer)

func RegisterFDBMoveServer added in v1.23.5

func RegisterFDBMoveServer(s grpc.ServiceRegistrar, srv FDBMoveServer)

func RegisterServerServer added in v1.20.6

func RegisterServerServer(s grpc.ServiceRegistrar, srv ServerServer)

Types

type CLIClient

type CLIClient interface {
	FDBCLI(ctx context.Context, in *FDBCLIRequest, opts ...grpc.CallOption) (CLI_FDBCLIClient, error)
}

CLIClient is the client API for CLI service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewCLIClient

func NewCLIClient(cc grpc.ClientConnInterface) CLIClient

type CLIClientProxy

type CLIClientProxy interface {
	CLIClient
	FDBCLIOneMany(ctx context.Context, in *FDBCLIRequest, opts ...grpc.CallOption) (CLI_FDBCLIClientProxy, error)
}

CLIClientProxy is the superset of CLIClient which additionally includes the OneMany proxy methods

func NewCLIClientProxy

func NewCLIClientProxy(cc *proxy.Conn) CLIClientProxy

NewCLIClientProxy creates a CLIClientProxy for use in proxied connections. NOTE: This takes a proxy.Conn instead of a generic ClientConnInterface as the methods here are only valid in proxy.Conn contexts.

type CLIServer

type CLIServer interface {
	FDBCLI(*FDBCLIRequest, CLI_FDBCLIServer) error
}

CLIServer is the server API for CLI service. All implementations should embed UnimplementedCLIServer for forward compatibility

type CLI_FDBCLIClient

type CLI_FDBCLIClient interface {
	Recv() (*FDBCLIResponse, error)
	grpc.ClientStream
}

type CLI_FDBCLIClientProxy

type CLI_FDBCLIClientProxy interface {
	Recv() ([]*FDBCLIManyResponse, error)
	grpc.ClientStream
}

type CLI_FDBCLIServer

type CLI_FDBCLIServer interface {
	Send(*FDBCLIResponse) error
	grpc.ServerStream
}

type ConfClient

type ConfClient interface {
	// Read a configuration value from a section in FDB config file.
	Read(ctx context.Context, in *ReadRequest, opts ...grpc.CallOption) (*FdbConfResponse, error)
	// Write updates a configuration value in a section of FDB config file.
	Write(ctx context.Context, in *WriteRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// Delete a section value based on a key
	Delete(ctx context.Context, in *DeleteRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
}

ConfClient is the client API for Conf service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewConfClient

func NewConfClient(cc grpc.ClientConnInterface) ConfClient

type ConfClientProxy

type ConfClientProxy interface {
	ConfClient
	ReadOneMany(ctx context.Context, in *ReadRequest, opts ...grpc.CallOption) (<-chan *ReadManyResponse, error)
	WriteOneMany(ctx context.Context, in *WriteRequest, opts ...grpc.CallOption) (<-chan *WriteManyResponse, error)
	DeleteOneMany(ctx context.Context, in *DeleteRequest, opts ...grpc.CallOption) (<-chan *DeleteManyResponse, error)
}

ConfClientProxy is the superset of ConfClient which additionally includes the OneMany proxy methods

func NewConfClientProxy

func NewConfClientProxy(cc *proxy.Conn) ConfClientProxy

NewConfClientProxy creates a ConfClientProxy for use in proxied connections. NOTE: This takes a proxy.Conn instead of a generic ClientConnInterface as the methods here are only valid in proxy.Conn contexts.

type ConfServer

type ConfServer interface {
	// Read a configuration value from a section in FDB config file.
	Read(context.Context, *ReadRequest) (*FdbConfResponse, error)
	// Write updates a configuration value in a section of FDB config file.
	Write(context.Context, *WriteRequest) (*emptypb.Empty, error)
	// Delete a section value based on a key
	Delete(context.Context, *DeleteRequest) (*emptypb.Empty, error)
}

ConfServer is the server API for Conf service. All implementations should embed UnimplementedConfServer for forward compatibility

type DeleteManyResponse

type DeleteManyResponse struct {
	Target string
	// As targets can be duplicated this is the index into the slice passed to proxy.Conn.
	Index int
	Resp  *emptypb.Empty
	Error error
}

DeleteManyResponse encapsulates a proxy data packet. It includes the target, index, response and possible error returned.

type DeleteRequest

type DeleteRequest struct {
	Location *Location `protobuf:"bytes,1,opt,name=location,proto3" json:"location,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteRequest) Descriptor deprecated

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

Deprecated: Use DeleteRequest.ProtoReflect.Descriptor instead.

func (*DeleteRequest) GetLocation

func (x *DeleteRequest) GetLocation() *Location

func (*DeleteRequest) ProtoMessage

func (*DeleteRequest) ProtoMessage()

func (*DeleteRequest) ProtoReflect

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

func (*DeleteRequest) Reset

func (x *DeleteRequest) Reset()

func (*DeleteRequest) String

func (x *DeleteRequest) String() string

type FDBCLIAdvanceversion

type FDBCLIAdvanceversion struct {
	Version int64 `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIAdvanceversion) Descriptor deprecated

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

Deprecated: Use FDBCLIAdvanceversion.ProtoReflect.Descriptor instead.

func (*FDBCLIAdvanceversion) GetVersion

func (x *FDBCLIAdvanceversion) GetVersion() int64

func (*FDBCLIAdvanceversion) ProtoMessage

func (*FDBCLIAdvanceversion) ProtoMessage()

func (*FDBCLIAdvanceversion) ProtoReflect

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

func (*FDBCLIAdvanceversion) Reset

func (x *FDBCLIAdvanceversion) Reset()

func (*FDBCLIAdvanceversion) String

func (x *FDBCLIAdvanceversion) String() string

type FDBCLIBegin added in v1.8.0

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

func (*FDBCLIBegin) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIBegin.ProtoReflect.Descriptor instead.

func (*FDBCLIBegin) ProtoMessage added in v1.8.0

func (*FDBCLIBegin) ProtoMessage()

func (*FDBCLIBegin) ProtoReflect added in v1.8.0

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

func (*FDBCLIBegin) Reset added in v1.8.0

func (x *FDBCLIBegin) Reset()

func (*FDBCLIBegin) String added in v1.8.0

func (x *FDBCLIBegin) String() string

type FDBCLIBlobrange added in v1.8.0

type FDBCLIBlobrange struct {

	// Types that are assignable to Request:
	//
	//	*FDBCLIBlobrange_Start
	//	*FDBCLIBlobrange_Stop
	Request isFDBCLIBlobrange_Request `protobuf_oneof:"request"`
	// contains filtered or unexported fields
}

func (*FDBCLIBlobrange) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIBlobrange.ProtoReflect.Descriptor instead.

func (*FDBCLIBlobrange) GetRequest added in v1.8.0

func (m *FDBCLIBlobrange) GetRequest() isFDBCLIBlobrange_Request

func (*FDBCLIBlobrange) GetStart added in v1.8.0

func (x *FDBCLIBlobrange) GetStart() *FDBCLIBlobrangeStart

func (*FDBCLIBlobrange) GetStop added in v1.8.0

func (x *FDBCLIBlobrange) GetStop() *FDBCLIBlobrangeStop

func (*FDBCLIBlobrange) ProtoMessage added in v1.8.0

func (*FDBCLIBlobrange) ProtoMessage()

func (*FDBCLIBlobrange) ProtoReflect added in v1.8.0

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

func (*FDBCLIBlobrange) Reset added in v1.8.0

func (x *FDBCLIBlobrange) Reset()

func (*FDBCLIBlobrange) String added in v1.8.0

func (x *FDBCLIBlobrange) String() string

type FDBCLIBlobrangeStart added in v1.8.0

type FDBCLIBlobrangeStart struct {
	BeginKey string `protobuf:"bytes,1,opt,name=begin_key,json=beginKey,proto3" json:"begin_key,omitempty"`
	EndKey   string `protobuf:"bytes,2,opt,name=end_key,json=endKey,proto3" json:"end_key,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIBlobrangeStart) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIBlobrangeStart.ProtoReflect.Descriptor instead.

func (*FDBCLIBlobrangeStart) GetBeginKey added in v1.8.0

func (x *FDBCLIBlobrangeStart) GetBeginKey() string

func (*FDBCLIBlobrangeStart) GetEndKey added in v1.8.0

func (x *FDBCLIBlobrangeStart) GetEndKey() string

func (*FDBCLIBlobrangeStart) ProtoMessage added in v1.8.0

func (*FDBCLIBlobrangeStart) ProtoMessage()

func (*FDBCLIBlobrangeStart) ProtoReflect added in v1.8.0

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

func (*FDBCLIBlobrangeStart) Reset added in v1.8.0

func (x *FDBCLIBlobrangeStart) Reset()

func (*FDBCLIBlobrangeStart) String added in v1.8.0

func (x *FDBCLIBlobrangeStart) String() string

type FDBCLIBlobrangeStop added in v1.8.0

type FDBCLIBlobrangeStop struct {
	BeginKey string `protobuf:"bytes,1,opt,name=begin_key,json=beginKey,proto3" json:"begin_key,omitempty"`
	EndKey   string `protobuf:"bytes,2,opt,name=end_key,json=endKey,proto3" json:"end_key,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIBlobrangeStop) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIBlobrangeStop.ProtoReflect.Descriptor instead.

func (*FDBCLIBlobrangeStop) GetBeginKey added in v1.8.0

func (x *FDBCLIBlobrangeStop) GetBeginKey() string

func (*FDBCLIBlobrangeStop) GetEndKey added in v1.8.0

func (x *FDBCLIBlobrangeStop) GetEndKey() string

func (*FDBCLIBlobrangeStop) ProtoMessage added in v1.8.0

func (*FDBCLIBlobrangeStop) ProtoMessage()

func (*FDBCLIBlobrangeStop) ProtoReflect added in v1.8.0

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

func (*FDBCLIBlobrangeStop) Reset added in v1.8.0

func (x *FDBCLIBlobrangeStop) Reset()

func (*FDBCLIBlobrangeStop) String added in v1.8.0

func (x *FDBCLIBlobrangeStop) String() string

type FDBCLIBlobrange_Start added in v1.8.0

type FDBCLIBlobrange_Start struct {
	Start *FDBCLIBlobrangeStart `protobuf:"bytes,1,opt,name=start,proto3,oneof"`
}

type FDBCLIBlobrange_Stop added in v1.8.0

type FDBCLIBlobrange_Stop struct {
	Stop *FDBCLIBlobrangeStop `protobuf:"bytes,2,opt,name=stop,proto3,oneof"`
}

type FDBCLICacheRange added in v1.8.0

type FDBCLICacheRange struct {

	// Types that are assignable to Request:
	//
	//	*FDBCLICacheRange_Set
	//	*FDBCLICacheRange_Clear
	Request isFDBCLICacheRange_Request `protobuf_oneof:"request"`
	// contains filtered or unexported fields
}

func (*FDBCLICacheRange) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLICacheRange.ProtoReflect.Descriptor instead.

func (*FDBCLICacheRange) GetClear added in v1.8.0

func (x *FDBCLICacheRange) GetClear() *FDBCLICacheRangeClear

func (*FDBCLICacheRange) GetRequest added in v1.8.0

func (m *FDBCLICacheRange) GetRequest() isFDBCLICacheRange_Request

func (*FDBCLICacheRange) GetSet added in v1.8.0

func (*FDBCLICacheRange) ProtoMessage added in v1.8.0

func (*FDBCLICacheRange) ProtoMessage()

func (*FDBCLICacheRange) ProtoReflect added in v1.8.0

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

func (*FDBCLICacheRange) Reset added in v1.8.0

func (x *FDBCLICacheRange) Reset()

func (*FDBCLICacheRange) String added in v1.8.0

func (x *FDBCLICacheRange) String() string

type FDBCLICacheRangeClear added in v1.8.0

type FDBCLICacheRangeClear struct {
	BeginKey string `protobuf:"bytes,1,opt,name=begin_key,json=beginKey,proto3" json:"begin_key,omitempty"`
	EndKey   string `protobuf:"bytes,2,opt,name=end_key,json=endKey,proto3" json:"end_key,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLICacheRangeClear) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLICacheRangeClear.ProtoReflect.Descriptor instead.

func (*FDBCLICacheRangeClear) GetBeginKey added in v1.8.0

func (x *FDBCLICacheRangeClear) GetBeginKey() string

func (*FDBCLICacheRangeClear) GetEndKey added in v1.8.0

func (x *FDBCLICacheRangeClear) GetEndKey() string

func (*FDBCLICacheRangeClear) ProtoMessage added in v1.8.0

func (*FDBCLICacheRangeClear) ProtoMessage()

func (*FDBCLICacheRangeClear) ProtoReflect added in v1.8.0

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

func (*FDBCLICacheRangeClear) Reset added in v1.8.0

func (x *FDBCLICacheRangeClear) Reset()

func (*FDBCLICacheRangeClear) String added in v1.8.0

func (x *FDBCLICacheRangeClear) String() string

type FDBCLICacheRangeSet added in v1.8.0

type FDBCLICacheRangeSet struct {
	BeginKey string `protobuf:"bytes,1,opt,name=begin_key,json=beginKey,proto3" json:"begin_key,omitempty"`
	EndKey   string `protobuf:"bytes,2,opt,name=end_key,json=endKey,proto3" json:"end_key,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLICacheRangeSet) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLICacheRangeSet.ProtoReflect.Descriptor instead.

func (*FDBCLICacheRangeSet) GetBeginKey added in v1.8.0

func (x *FDBCLICacheRangeSet) GetBeginKey() string

func (*FDBCLICacheRangeSet) GetEndKey added in v1.8.0

func (x *FDBCLICacheRangeSet) GetEndKey() string

func (*FDBCLICacheRangeSet) ProtoMessage added in v1.8.0

func (*FDBCLICacheRangeSet) ProtoMessage()

func (*FDBCLICacheRangeSet) ProtoReflect added in v1.8.0

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

func (*FDBCLICacheRangeSet) Reset added in v1.8.0

func (x *FDBCLICacheRangeSet) Reset()

func (*FDBCLICacheRangeSet) String added in v1.8.0

func (x *FDBCLICacheRangeSet) String() string

type FDBCLICacheRange_Clear added in v1.8.0

type FDBCLICacheRange_Clear struct {
	Clear *FDBCLICacheRangeClear `protobuf:"bytes,2,opt,name=clear,proto3,oneof"`
}

type FDBCLICacheRange_Set added in v1.8.0

type FDBCLICacheRange_Set struct {
	Set *FDBCLICacheRangeSet `protobuf:"bytes,1,opt,name=set,proto3,oneof"`
}

type FDBCLIChangefeed added in v1.8.0

type FDBCLIChangefeed struct {

	// Types that are assignable to Request:
	//
	//	*FDBCLIChangefeed_List
	//	*FDBCLIChangefeed_Register
	//	*FDBCLIChangefeed_Stop
	//	*FDBCLIChangefeed_Destroy
	//	*FDBCLIChangefeed_Stream
	//	*FDBCLIChangefeed_Pop
	Request isFDBCLIChangefeed_Request `protobuf_oneof:"request"`
	// contains filtered or unexported fields
}

func (*FDBCLIChangefeed) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIChangefeed.ProtoReflect.Descriptor instead.

func (*FDBCLIChangefeed) GetDestroy added in v1.8.0

func (x *FDBCLIChangefeed) GetDestroy() *FDBCLIChangefeedDestroy

func (*FDBCLIChangefeed) GetList added in v1.8.0

func (x *FDBCLIChangefeed) GetList() *FDBCLIChangefeedList

func (*FDBCLIChangefeed) GetPop added in v1.8.0

func (*FDBCLIChangefeed) GetRegister added in v1.8.0

func (x *FDBCLIChangefeed) GetRegister() *FDBCLIChangefeedRegister

func (*FDBCLIChangefeed) GetRequest added in v1.8.0

func (m *FDBCLIChangefeed) GetRequest() isFDBCLIChangefeed_Request

func (*FDBCLIChangefeed) GetStop added in v1.8.0

func (x *FDBCLIChangefeed) GetStop() *FDBCLIChangefeedStop

func (*FDBCLIChangefeed) GetStream added in v1.8.0

func (x *FDBCLIChangefeed) GetStream() *FDBCLIChangefeedStream

func (*FDBCLIChangefeed) ProtoMessage added in v1.8.0

func (*FDBCLIChangefeed) ProtoMessage()

func (*FDBCLIChangefeed) ProtoReflect added in v1.8.0

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

func (*FDBCLIChangefeed) Reset added in v1.8.0

func (x *FDBCLIChangefeed) Reset()

func (*FDBCLIChangefeed) String added in v1.8.0

func (x *FDBCLIChangefeed) String() string

type FDBCLIChangefeedDestroy added in v1.8.0

type FDBCLIChangefeedDestroy struct {
	RangeId string `protobuf:"bytes,1,opt,name=range_id,json=rangeId,proto3" json:"range_id,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIChangefeedDestroy) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIChangefeedDestroy.ProtoReflect.Descriptor instead.

func (*FDBCLIChangefeedDestroy) GetRangeId added in v1.8.0

func (x *FDBCLIChangefeedDestroy) GetRangeId() string

func (*FDBCLIChangefeedDestroy) ProtoMessage added in v1.8.0

func (*FDBCLIChangefeedDestroy) ProtoMessage()

func (*FDBCLIChangefeedDestroy) ProtoReflect added in v1.8.0

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

func (*FDBCLIChangefeedDestroy) Reset added in v1.8.0

func (x *FDBCLIChangefeedDestroy) Reset()

func (*FDBCLIChangefeedDestroy) String added in v1.8.0

func (x *FDBCLIChangefeedDestroy) String() string

type FDBCLIChangefeedList added in v1.8.0

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

func (*FDBCLIChangefeedList) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIChangefeedList.ProtoReflect.Descriptor instead.

func (*FDBCLIChangefeedList) ProtoMessage added in v1.8.0

func (*FDBCLIChangefeedList) ProtoMessage()

func (*FDBCLIChangefeedList) ProtoReflect added in v1.8.0

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

func (*FDBCLIChangefeedList) Reset added in v1.8.0

func (x *FDBCLIChangefeedList) Reset()

func (*FDBCLIChangefeedList) String added in v1.8.0

func (x *FDBCLIChangefeedList) String() string

type FDBCLIChangefeedRegister added in v1.8.0

type FDBCLIChangefeedRegister struct {
	RangeId string `protobuf:"bytes,1,opt,name=range_id,json=rangeId,proto3" json:"range_id,omitempty"`
	Begin   string `protobuf:"bytes,2,opt,name=begin,proto3" json:"begin,omitempty"`
	End     string `protobuf:"bytes,3,opt,name=end,proto3" json:"end,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIChangefeedRegister) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIChangefeedRegister.ProtoReflect.Descriptor instead.

func (*FDBCLIChangefeedRegister) GetBegin added in v1.8.0

func (x *FDBCLIChangefeedRegister) GetBegin() string

func (*FDBCLIChangefeedRegister) GetEnd added in v1.8.0

func (x *FDBCLIChangefeedRegister) GetEnd() string

func (*FDBCLIChangefeedRegister) GetRangeId added in v1.8.0

func (x *FDBCLIChangefeedRegister) GetRangeId() string

func (*FDBCLIChangefeedRegister) ProtoMessage added in v1.8.0

func (*FDBCLIChangefeedRegister) ProtoMessage()

func (*FDBCLIChangefeedRegister) ProtoReflect added in v1.8.0

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

func (*FDBCLIChangefeedRegister) Reset added in v1.8.0

func (x *FDBCLIChangefeedRegister) Reset()

func (*FDBCLIChangefeedRegister) String added in v1.8.0

func (x *FDBCLIChangefeedRegister) String() string

type FDBCLIChangefeedStop added in v1.8.0

type FDBCLIChangefeedStop struct {
	RangeId string `protobuf:"bytes,1,opt,name=range_id,json=rangeId,proto3" json:"range_id,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIChangefeedStop) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIChangefeedStop.ProtoReflect.Descriptor instead.

func (*FDBCLIChangefeedStop) GetRangeId added in v1.8.0

func (x *FDBCLIChangefeedStop) GetRangeId() string

func (*FDBCLIChangefeedStop) ProtoMessage added in v1.8.0

func (*FDBCLIChangefeedStop) ProtoMessage()

func (*FDBCLIChangefeedStop) ProtoReflect added in v1.8.0

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

func (*FDBCLIChangefeedStop) Reset added in v1.8.0

func (x *FDBCLIChangefeedStop) Reset()

func (*FDBCLIChangefeedStop) String added in v1.8.0

func (x *FDBCLIChangefeedStop) String() string

type FDBCLIChangefeedStream added in v1.8.0

type FDBCLIChangefeedStream struct {
	RangeId string `protobuf:"bytes,1,opt,name=range_id,json=rangeId,proto3" json:"range_id,omitempty"`
	// Either begin only is set or begin+end. Can't just set end.
	//
	// Types that are assignable to Type:
	//
	//	*FDBCLIChangefeedStream_NoVersion
	//	*FDBCLIChangefeedStream_StartVersion
	//	*FDBCLIChangefeedStream_StartEndVersion
	Type isFDBCLIChangefeedStream_Type `protobuf_oneof:"type"`
	// contains filtered or unexported fields
}

func (*FDBCLIChangefeedStream) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIChangefeedStream.ProtoReflect.Descriptor instead.

func (*FDBCLIChangefeedStream) GetNoVersion added in v1.8.0

func (*FDBCLIChangefeedStream) GetRangeId added in v1.8.0

func (x *FDBCLIChangefeedStream) GetRangeId() string

func (*FDBCLIChangefeedStream) GetStartEndVersion added in v1.8.0

func (*FDBCLIChangefeedStream) GetStartVersion added in v1.8.0

func (*FDBCLIChangefeedStream) GetType added in v1.8.0

func (m *FDBCLIChangefeedStream) GetType() isFDBCLIChangefeedStream_Type

func (*FDBCLIChangefeedStream) ProtoMessage added in v1.8.0

func (*FDBCLIChangefeedStream) ProtoMessage()

func (*FDBCLIChangefeedStream) ProtoReflect added in v1.8.0

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

func (*FDBCLIChangefeedStream) Reset added in v1.8.0

func (x *FDBCLIChangefeedStream) Reset()

func (*FDBCLIChangefeedStream) String added in v1.8.0

func (x *FDBCLIChangefeedStream) String() string

type FDBCLIChangefeedStreamNoVersion added in v1.8.0

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

func (*FDBCLIChangefeedStreamNoVersion) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIChangefeedStreamNoVersion.ProtoReflect.Descriptor instead.

func (*FDBCLIChangefeedStreamNoVersion) ProtoMessage added in v1.8.0

func (*FDBCLIChangefeedStreamNoVersion) ProtoMessage()

func (*FDBCLIChangefeedStreamNoVersion) ProtoReflect added in v1.8.0

func (*FDBCLIChangefeedStreamNoVersion) Reset added in v1.8.0

func (*FDBCLIChangefeedStreamNoVersion) String added in v1.8.0

type FDBCLIChangefeedStreamPop added in v1.8.0

type FDBCLIChangefeedStreamPop struct {
	RangeId string `protobuf:"bytes,1,opt,name=range_id,json=rangeId,proto3" json:"range_id,omitempty"`
	Version int64  `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIChangefeedStreamPop) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIChangefeedStreamPop.ProtoReflect.Descriptor instead.

func (*FDBCLIChangefeedStreamPop) GetRangeId added in v1.8.0

func (x *FDBCLIChangefeedStreamPop) GetRangeId() string

func (*FDBCLIChangefeedStreamPop) GetVersion added in v1.8.0

func (x *FDBCLIChangefeedStreamPop) GetVersion() int64

func (*FDBCLIChangefeedStreamPop) ProtoMessage added in v1.8.0

func (*FDBCLIChangefeedStreamPop) ProtoMessage()

func (*FDBCLIChangefeedStreamPop) ProtoReflect added in v1.8.0

func (*FDBCLIChangefeedStreamPop) Reset added in v1.8.0

func (x *FDBCLIChangefeedStreamPop) Reset()

func (*FDBCLIChangefeedStreamPop) String added in v1.8.0

func (x *FDBCLIChangefeedStreamPop) String() string

type FDBCLIChangefeedStreamStartEndVersion added in v1.8.0

type FDBCLIChangefeedStreamStartEndVersion struct {
	StartVersion int64 `protobuf:"varint,1,opt,name=start_version,json=startVersion,proto3" json:"start_version,omitempty"`
	EndVersion   int64 `protobuf:"varint,2,opt,name=end_version,json=endVersion,proto3" json:"end_version,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIChangefeedStreamStartEndVersion) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIChangefeedStreamStartEndVersion.ProtoReflect.Descriptor instead.

func (*FDBCLIChangefeedStreamStartEndVersion) GetEndVersion added in v1.8.0

func (x *FDBCLIChangefeedStreamStartEndVersion) GetEndVersion() int64

func (*FDBCLIChangefeedStreamStartEndVersion) GetStartVersion added in v1.8.0

func (x *FDBCLIChangefeedStreamStartEndVersion) GetStartVersion() int64

func (*FDBCLIChangefeedStreamStartEndVersion) ProtoMessage added in v1.8.0

func (*FDBCLIChangefeedStreamStartEndVersion) ProtoMessage()

func (*FDBCLIChangefeedStreamStartEndVersion) ProtoReflect added in v1.8.0

func (*FDBCLIChangefeedStreamStartEndVersion) Reset added in v1.8.0

func (*FDBCLIChangefeedStreamStartEndVersion) String added in v1.8.0

type FDBCLIChangefeedStreamStartVersion added in v1.8.0

type FDBCLIChangefeedStreamStartVersion struct {
	StartVersion int64 `protobuf:"varint,1,opt,name=start_version,json=startVersion,proto3" json:"start_version,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIChangefeedStreamStartVersion) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIChangefeedStreamStartVersion.ProtoReflect.Descriptor instead.

func (*FDBCLIChangefeedStreamStartVersion) GetStartVersion added in v1.8.0

func (x *FDBCLIChangefeedStreamStartVersion) GetStartVersion() int64

func (*FDBCLIChangefeedStreamStartVersion) ProtoMessage added in v1.8.0

func (*FDBCLIChangefeedStreamStartVersion) ProtoMessage()

func (*FDBCLIChangefeedStreamStartVersion) ProtoReflect added in v1.8.0

func (*FDBCLIChangefeedStreamStartVersion) Reset added in v1.8.0

func (*FDBCLIChangefeedStreamStartVersion) String added in v1.8.0

type FDBCLIChangefeedStream_NoVersion added in v1.8.0

type FDBCLIChangefeedStream_NoVersion struct {
	NoVersion *FDBCLIChangefeedStreamNoVersion `protobuf:"bytes,2,opt,name=no_version,json=noVersion,proto3,oneof"`
}

type FDBCLIChangefeedStream_StartEndVersion added in v1.8.0

type FDBCLIChangefeedStream_StartEndVersion struct {
	StartEndVersion *FDBCLIChangefeedStreamStartEndVersion `protobuf:"bytes,4,opt,name=start_end_version,json=startEndVersion,proto3,oneof"`
}

type FDBCLIChangefeedStream_StartVersion added in v1.8.0

type FDBCLIChangefeedStream_StartVersion struct {
	StartVersion *FDBCLIChangefeedStreamStartVersion `protobuf:"bytes,3,opt,name=start_version,json=startVersion,proto3,oneof"`
}

type FDBCLIChangefeed_Destroy added in v1.8.0

type FDBCLIChangefeed_Destroy struct {
	Destroy *FDBCLIChangefeedDestroy `protobuf:"bytes,4,opt,name=destroy,proto3,oneof"`
}

type FDBCLIChangefeed_List added in v1.8.0

type FDBCLIChangefeed_List struct {
	List *FDBCLIChangefeedList `protobuf:"bytes,1,opt,name=list,proto3,oneof"`
}

type FDBCLIChangefeed_Pop added in v1.8.0

type FDBCLIChangefeed_Pop struct {
	Pop *FDBCLIChangefeedStreamPop `protobuf:"bytes,6,opt,name=pop,proto3,oneof"`
}

type FDBCLIChangefeed_Register added in v1.8.0

type FDBCLIChangefeed_Register struct {
	Register *FDBCLIChangefeedRegister `protobuf:"bytes,2,opt,name=register,proto3,oneof"`
}

type FDBCLIChangefeed_Stop added in v1.8.0

type FDBCLIChangefeed_Stop struct {
	Stop *FDBCLIChangefeedStop `protobuf:"bytes,3,opt,name=stop,proto3,oneof"`
}

type FDBCLIChangefeed_Stream added in v1.8.0

type FDBCLIChangefeed_Stream struct {
	Stream *FDBCLIChangefeedStream `protobuf:"bytes,5,opt,name=stream,proto3,oneof"`
}

type FDBCLIClear

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

func (*FDBCLIClear) Descriptor deprecated

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

Deprecated: Use FDBCLIClear.ProtoReflect.Descriptor instead.

func (*FDBCLIClear) GetKey

func (x *FDBCLIClear) GetKey() string

func (*FDBCLIClear) ProtoMessage

func (*FDBCLIClear) ProtoMessage()

func (*FDBCLIClear) ProtoReflect

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

func (*FDBCLIClear) Reset

func (x *FDBCLIClear) Reset()

func (*FDBCLIClear) String

func (x *FDBCLIClear) String() string

type FDBCLIClearrange

type FDBCLIClearrange struct {
	BeginKey string `protobuf:"bytes,1,opt,name=begin_key,json=beginKey,proto3" json:"begin_key,omitempty"`
	EndKey   string `protobuf:"bytes,2,opt,name=end_key,json=endKey,proto3" json:"end_key,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIClearrange) Descriptor deprecated

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

Deprecated: Use FDBCLIClearrange.ProtoReflect.Descriptor instead.

func (*FDBCLIClearrange) GetBeginKey

func (x *FDBCLIClearrange) GetBeginKey() string

func (*FDBCLIClearrange) GetEndKey

func (x *FDBCLIClearrange) GetEndKey() string

func (*FDBCLIClearrange) ProtoMessage

func (*FDBCLIClearrange) ProtoMessage()

func (*FDBCLIClearrange) ProtoReflect

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

func (*FDBCLIClearrange) Reset

func (x *FDBCLIClearrange) Reset()

func (*FDBCLIClearrange) String

func (x *FDBCLIClearrange) String() string

type FDBCLICommand

type FDBCLICommand struct {

	// Types that are assignable to Command:
	//
	//	*FDBCLICommand_Advanceversion
	//	*FDBCLICommand_Begin
	//	*FDBCLICommand_Blobrange
	//	*FDBCLICommand_CacheRange
	//	*FDBCLICommand_Changefeed
	//	*FDBCLICommand_Clear
	//	*FDBCLICommand_Clearrange
	//	*FDBCLICommand_Commit
	//	*FDBCLICommand_Configure
	//	*FDBCLICommand_Consistencycheck
	//	*FDBCLICommand_Coordinators
	//	*FDBCLICommand_Createtenant
	//	*FDBCLICommand_Datadistribution
	//	*FDBCLICommand_Defaulttenant
	//	*FDBCLICommand_Deletetenant
	//	*FDBCLICommand_Exclude
	//	*FDBCLICommand_ExpensiveDataCheck
	//	*FDBCLICommand_Fileconfigure
	//	*FDBCLICommand_ForceRecoveryWithDataLoss
	//	*FDBCLICommand_Get
	//	*FDBCLICommand_Getrange
	//	*FDBCLICommand_Getrangekeys
	//	*FDBCLICommand_Gettenant
	//	*FDBCLICommand_Getversion
	//	*FDBCLICommand_Help
	//	*FDBCLICommand_Include
	//	*FDBCLICommand_Kill
	//	*FDBCLICommand_Listtenants
	//	*FDBCLICommand_Lock
	//	*FDBCLICommand_Maintenance
	//	*FDBCLICommand_Option
	//	*FDBCLICommand_Profile
	//	*FDBCLICommand_Set
	//	*FDBCLICommand_Setclass
	//	*FDBCLICommand_Snapshot
	//	*FDBCLICommand_Sleep
	//	*FDBCLICommand_Status
	//	*FDBCLICommand_Suspend
	//	*FDBCLICommand_TenantEmergencyMove
	//	*FDBCLICommand_Throttle
	//	*FDBCLICommand_Triggerddteaminfolog
	//	*FDBCLICommand_Tssq
	//	*FDBCLICommand_Unlock
	//	*FDBCLICommand_Usetenant
	//	*FDBCLICommand_Writemode
	//	*FDBCLICommand_Versionepoch
	//	*FDBCLICommand_Waitconnected
	//	*FDBCLICommand_Waitopen
	//	*FDBCLICommand_Unknown
	Command isFDBCLICommand_Command `protobuf_oneof:"command"`
	// contains filtered or unexported fields
}

FDBCLICommand defines all of the fdbcli commands supported. Certain items are excluded that don't make sense in a non-interactive session such as reset or rollback. This message is broken out separately for ease of use since it has gotten so large. NEXT: 50

func (*FDBCLICommand) Descriptor deprecated

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

Deprecated: Use FDBCLICommand.ProtoReflect.Descriptor instead.

func (*FDBCLICommand) GetAdvanceversion

func (x *FDBCLICommand) GetAdvanceversion() *FDBCLIAdvanceversion

func (*FDBCLICommand) GetBegin added in v1.8.0

func (x *FDBCLICommand) GetBegin() *FDBCLIBegin

func (*FDBCLICommand) GetBlobrange added in v1.8.0

func (x *FDBCLICommand) GetBlobrange() *FDBCLIBlobrange

func (*FDBCLICommand) GetCacheRange added in v1.8.0

func (x *FDBCLICommand) GetCacheRange() *FDBCLICacheRange

func (*FDBCLICommand) GetChangefeed added in v1.8.0

func (x *FDBCLICommand) GetChangefeed() *FDBCLIChangefeed

func (*FDBCLICommand) GetClear

func (x *FDBCLICommand) GetClear() *FDBCLIClear

func (*FDBCLICommand) GetClearrange

func (x *FDBCLICommand) GetClearrange() *FDBCLIClearrange

func (*FDBCLICommand) GetCommand

func (m *FDBCLICommand) GetCommand() isFDBCLICommand_Command

func (*FDBCLICommand) GetCommit added in v1.8.0

func (x *FDBCLICommand) GetCommit() *FDBCLICommit

func (*FDBCLICommand) GetConfigure

func (x *FDBCLICommand) GetConfigure() *FDBCLIConfigure

func (*FDBCLICommand) GetConsistencycheck

func (x *FDBCLICommand) GetConsistencycheck() *FDBCLIConsistencycheck

func (*FDBCLICommand) GetCoordinators

func (x *FDBCLICommand) GetCoordinators() *FDBCLICoordinators

func (*FDBCLICommand) GetCreatetenant

func (x *FDBCLICommand) GetCreatetenant() *FDBCLICreatetenant

func (*FDBCLICommand) GetDatadistribution added in v1.8.0

func (x *FDBCLICommand) GetDatadistribution() *FDBCLIDatadistribution

func (*FDBCLICommand) GetDefaulttenant

func (x *FDBCLICommand) GetDefaulttenant() *FDBCLIDefaulttenant

func (*FDBCLICommand) GetDeletetenant

func (x *FDBCLICommand) GetDeletetenant() *FDBCLIDeletetenant

func (*FDBCLICommand) GetExclude

func (x *FDBCLICommand) GetExclude() *FDBCLIExclude

func (*FDBCLICommand) GetExpensiveDataCheck added in v1.8.0

func (x *FDBCLICommand) GetExpensiveDataCheck() *FDBCLIExpensiveDataCheck

func (*FDBCLICommand) GetFileconfigure

func (x *FDBCLICommand) GetFileconfigure() *FDBCLIFileconfigure

func (*FDBCLICommand) GetForceRecoveryWithDataLoss

func (x *FDBCLICommand) GetForceRecoveryWithDataLoss() *FDBCLIForceRecoveryWithDataLoss

func (*FDBCLICommand) GetGet

func (x *FDBCLICommand) GetGet() *FDBCLIGet

func (*FDBCLICommand) GetGetrange

func (x *FDBCLICommand) GetGetrange() *FDBCLIGetrange

func (*FDBCLICommand) GetGetrangekeys

func (x *FDBCLICommand) GetGetrangekeys() *FDBCLIGetrangekeys

func (*FDBCLICommand) GetGettenant

func (x *FDBCLICommand) GetGettenant() *FDBCLIGettenant

func (*FDBCLICommand) GetGetversion

func (x *FDBCLICommand) GetGetversion() *FDBCLIGetversion

func (*FDBCLICommand) GetHelp

func (x *FDBCLICommand) GetHelp() *FDBCLIHelp

func (*FDBCLICommand) GetInclude

func (x *FDBCLICommand) GetInclude() *FDBCLIInclude

func (*FDBCLICommand) GetKill

func (x *FDBCLICommand) GetKill() *FDBCLIKill

func (*FDBCLICommand) GetListtenants

func (x *FDBCLICommand) GetListtenants() *FDBCLIListtenants

func (*FDBCLICommand) GetLock

func (x *FDBCLICommand) GetLock() *FDBCLILock

func (*FDBCLICommand) GetMaintenance

func (x *FDBCLICommand) GetMaintenance() *FDBCLIMaintenance

func (*FDBCLICommand) GetOption

func (x *FDBCLICommand) GetOption() *FDBCLIOption

func (*FDBCLICommand) GetProfile

func (x *FDBCLICommand) GetProfile() *FDBCLIProfile

func (*FDBCLICommand) GetSet

func (x *FDBCLICommand) GetSet() *FDBCLISet

func (*FDBCLICommand) GetSetclass

func (x *FDBCLICommand) GetSetclass() *FDBCLISetclass

func (*FDBCLICommand) GetSleep

func (x *FDBCLICommand) GetSleep() *FDBCLISleep

func (*FDBCLICommand) GetSnapshot added in v1.8.0

func (x *FDBCLICommand) GetSnapshot() *FDBCLISnapshot

func (*FDBCLICommand) GetStatus

func (x *FDBCLICommand) GetStatus() *FDBCLIStatus

func (*FDBCLICommand) GetSuspend added in v1.8.0

func (x *FDBCLICommand) GetSuspend() *FDBCLISuspend

func (*FDBCLICommand) GetTenantEmergencyMove added in v1.23.5

func (x *FDBCLICommand) GetTenantEmergencyMove() *FDBCLITenantEmergencyMove

func (*FDBCLICommand) GetThrottle

func (x *FDBCLICommand) GetThrottle() *FDBCLIThrottle

func (*FDBCLICommand) GetTriggerddteaminfolog

func (x *FDBCLICommand) GetTriggerddteaminfolog() *FDBCLITriggerddteaminfolog

func (*FDBCLICommand) GetTssq

func (x *FDBCLICommand) GetTssq() *FDBCLITssq

func (*FDBCLICommand) GetUnknown

func (x *FDBCLICommand) GetUnknown() *FDBCLIUnknownAction

func (*FDBCLICommand) GetUnlock

func (x *FDBCLICommand) GetUnlock() *FDBCLIUnlock

func (*FDBCLICommand) GetUsetenant

func (x *FDBCLICommand) GetUsetenant() *FDBCLIUsetenant

func (*FDBCLICommand) GetVersionepoch added in v1.8.0

func (x *FDBCLICommand) GetVersionepoch() *FDBCLIVersionepoch

func (*FDBCLICommand) GetWaitconnected added in v1.8.0

func (x *FDBCLICommand) GetWaitconnected() *FDBCLIWaitconnected

func (*FDBCLICommand) GetWaitopen added in v1.8.0

func (x *FDBCLICommand) GetWaitopen() *FDBCLIWaitopen

func (*FDBCLICommand) GetWritemode

func (x *FDBCLICommand) GetWritemode() *FDBCLIWritemode

func (*FDBCLICommand) ProtoMessage

func (*FDBCLICommand) ProtoMessage()

func (*FDBCLICommand) ProtoReflect

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

func (*FDBCLICommand) Reset

func (x *FDBCLICommand) Reset()

func (*FDBCLICommand) String

func (x *FDBCLICommand) String() string

type FDBCLICommand_Advanceversion

type FDBCLICommand_Advanceversion struct {
	// Does not include begin, commit, exit, help, reset, or rollback.
	Advanceversion *FDBCLIAdvanceversion `protobuf:"bytes,1,opt,name=advanceversion,proto3,oneof"`
}

type FDBCLICommand_Begin added in v1.8.0

type FDBCLICommand_Begin struct {
	Begin *FDBCLIBegin `protobuf:"bytes,47,opt,name=begin,proto3,oneof"`
}

type FDBCLICommand_Blobrange added in v1.8.0

type FDBCLICommand_Blobrange struct {
	Blobrange *FDBCLIBlobrange `protobuf:"bytes,41,opt,name=blobrange,proto3,oneof"`
}

type FDBCLICommand_CacheRange added in v1.8.0

type FDBCLICommand_CacheRange struct {
	CacheRange *FDBCLICacheRange `protobuf:"bytes,46,opt,name=cache_range,json=cacheRange,proto3,oneof"`
}

type FDBCLICommand_Changefeed added in v1.8.0

type FDBCLICommand_Changefeed struct {
	Changefeed *FDBCLIChangefeed `protobuf:"bytes,40,opt,name=changefeed,proto3,oneof"`
}

type FDBCLICommand_Clear

type FDBCLICommand_Clear struct {
	Clear *FDBCLIClear `protobuf:"bytes,2,opt,name=clear,proto3,oneof"`
}

type FDBCLICommand_Clearrange

type FDBCLICommand_Clearrange struct {
	Clearrange *FDBCLIClearrange `protobuf:"bytes,3,opt,name=clearrange,proto3,oneof"`
}

type FDBCLICommand_Commit added in v1.8.0

type FDBCLICommand_Commit struct {
	Commit *FDBCLICommit `protobuf:"bytes,48,opt,name=commit,proto3,oneof"`
}

type FDBCLICommand_Configure

type FDBCLICommand_Configure struct {
	Configure *FDBCLIConfigure `protobuf:"bytes,4,opt,name=configure,proto3,oneof"`
}

type FDBCLICommand_Consistencycheck

type FDBCLICommand_Consistencycheck struct {
	Consistencycheck *FDBCLIConsistencycheck `protobuf:"bytes,5,opt,name=consistencycheck,proto3,oneof"`
}

type FDBCLICommand_Coordinators

type FDBCLICommand_Coordinators struct {
	Coordinators *FDBCLICoordinators `protobuf:"bytes,6,opt,name=coordinators,proto3,oneof"`
}

type FDBCLICommand_Createtenant

type FDBCLICommand_Createtenant struct {
	Createtenant *FDBCLICreatetenant `protobuf:"bytes,29,opt,name=createtenant,proto3,oneof"`
}

type FDBCLICommand_Datadistribution added in v1.8.0

type FDBCLICommand_Datadistribution struct {
	Datadistribution *FDBCLIDatadistribution `protobuf:"bytes,45,opt,name=datadistribution,proto3,oneof"`
}

type FDBCLICommand_Defaulttenant

type FDBCLICommand_Defaulttenant struct {
	Defaulttenant *FDBCLIDefaulttenant `protobuf:"bytes,30,opt,name=defaulttenant,proto3,oneof"`
}

type FDBCLICommand_Deletetenant

type FDBCLICommand_Deletetenant struct {
	Deletetenant *FDBCLIDeletetenant `protobuf:"bytes,31,opt,name=deletetenant,proto3,oneof"`
}

type FDBCLICommand_Exclude

type FDBCLICommand_Exclude struct {
	Exclude *FDBCLIExclude `protobuf:"bytes,7,opt,name=exclude,proto3,oneof"`
}

type FDBCLICommand_ExpensiveDataCheck added in v1.8.0

type FDBCLICommand_ExpensiveDataCheck struct {
	ExpensiveDataCheck *FDBCLIExpensiveDataCheck `protobuf:"bytes,44,opt,name=expensive_data_check,json=expensiveDataCheck,proto3,oneof"`
}

type FDBCLICommand_Fileconfigure

type FDBCLICommand_Fileconfigure struct {
	Fileconfigure *FDBCLIFileconfigure `protobuf:"bytes,8,opt,name=fileconfigure,proto3,oneof"`
}

type FDBCLICommand_ForceRecoveryWithDataLoss

type FDBCLICommand_ForceRecoveryWithDataLoss struct {
	ForceRecoveryWithDataLoss *FDBCLIForceRecoveryWithDataLoss `protobuf:"bytes,9,opt,name=force_recovery_with_data_loss,json=forceRecoveryWithDataLoss,proto3,oneof"`
}

type FDBCLICommand_Get

type FDBCLICommand_Get struct {
	Get *FDBCLIGet `protobuf:"bytes,10,opt,name=get,proto3,oneof"`
}

type FDBCLICommand_Getrange

type FDBCLICommand_Getrange struct {
	Getrange *FDBCLIGetrange `protobuf:"bytes,11,opt,name=getrange,proto3,oneof"`
}

type FDBCLICommand_Getrangekeys

type FDBCLICommand_Getrangekeys struct {
	Getrangekeys *FDBCLIGetrangekeys `protobuf:"bytes,12,opt,name=getrangekeys,proto3,oneof"`
}

type FDBCLICommand_Gettenant

type FDBCLICommand_Gettenant struct {
	Gettenant *FDBCLIGettenant `protobuf:"bytes,33,opt,name=gettenant,proto3,oneof"`
}

type FDBCLICommand_Getversion

type FDBCLICommand_Getversion struct {
	Getversion *FDBCLIGetversion `protobuf:"bytes,13,opt,name=getversion,proto3,oneof"`
}

type FDBCLICommand_Help

type FDBCLICommand_Help struct {
	Help *FDBCLIHelp `protobuf:"bytes,32,opt,name=help,proto3,oneof"`
}

type FDBCLICommand_Include

type FDBCLICommand_Include struct {
	Include *FDBCLIInclude `protobuf:"bytes,14,opt,name=include,proto3,oneof"`
}

type FDBCLICommand_Kill

type FDBCLICommand_Kill struct {
	Kill *FDBCLIKill `protobuf:"bytes,15,opt,name=kill,proto3,oneof"`
}

type FDBCLICommand_Listtenants

type FDBCLICommand_Listtenants struct {
	Listtenants *FDBCLIListtenants `protobuf:"bytes,36,opt,name=listtenants,proto3,oneof"`
}

type FDBCLICommand_Lock

type FDBCLICommand_Lock struct {
	Lock *FDBCLILock `protobuf:"bytes,16,opt,name=lock,proto3,oneof"`
}

type FDBCLICommand_Maintenance

type FDBCLICommand_Maintenance struct {
	Maintenance *FDBCLIMaintenance `protobuf:"bytes,17,opt,name=maintenance,proto3,oneof"`
}

type FDBCLICommand_Option

type FDBCLICommand_Option struct {
	Option *FDBCLIOption `protobuf:"bytes,18,opt,name=option,proto3,oneof"`
}

type FDBCLICommand_Profile

type FDBCLICommand_Profile struct {
	Profile *FDBCLIProfile `protobuf:"bytes,19,opt,name=profile,proto3,oneof"`
}

type FDBCLICommand_Set

type FDBCLICommand_Set struct {
	Set *FDBCLISet `protobuf:"bytes,20,opt,name=set,proto3,oneof"`
}

type FDBCLICommand_Setclass

type FDBCLICommand_Setclass struct {
	Setclass *FDBCLISetclass `protobuf:"bytes,21,opt,name=setclass,proto3,oneof"`
}

type FDBCLICommand_Sleep

type FDBCLICommand_Sleep struct {
	Sleep *FDBCLISleep `protobuf:"bytes,22,opt,name=sleep,proto3,oneof"`
}

type FDBCLICommand_Snapshot added in v1.8.0

type FDBCLICommand_Snapshot struct {
	Snapshot *FDBCLISnapshot `protobuf:"bytes,39,opt,name=snapshot,proto3,oneof"`
}

type FDBCLICommand_Status

type FDBCLICommand_Status struct {
	Status *FDBCLIStatus `protobuf:"bytes,23,opt,name=status,proto3,oneof"`
}

type FDBCLICommand_Suspend added in v1.8.0

type FDBCLICommand_Suspend struct {
	Suspend *FDBCLISuspend `protobuf:"bytes,43,opt,name=suspend,proto3,oneof"`
}

type FDBCLICommand_TenantEmergencyMove added in v1.23.5

type FDBCLICommand_TenantEmergencyMove struct {
	TenantEmergencyMove *FDBCLITenantEmergencyMove `protobuf:"bytes,49,opt,name=tenant_emergency_move,json=tenantEmergencyMove,proto3,oneof"`
}

type FDBCLICommand_Throttle

type FDBCLICommand_Throttle struct {
	Throttle *FDBCLIThrottle `protobuf:"bytes,24,opt,name=throttle,proto3,oneof"`
}

type FDBCLICommand_Triggerddteaminfolog

type FDBCLICommand_Triggerddteaminfolog struct {
	Triggerddteaminfolog *FDBCLITriggerddteaminfolog `protobuf:"bytes,25,opt,name=triggerddteaminfolog,proto3,oneof"`
}

type FDBCLICommand_Tssq

type FDBCLICommand_Tssq struct {
	Tssq *FDBCLITssq `protobuf:"bytes,35,opt,name=tssq,proto3,oneof"`
}

type FDBCLICommand_Unknown

type FDBCLICommand_Unknown struct {
	// This one isn't used but defined so tests can trigger the unknown type
	// check.
	Unknown *FDBCLIUnknownAction `protobuf:"bytes,28,opt,name=unknown,proto3,oneof"`
}

type FDBCLICommand_Unlock

type FDBCLICommand_Unlock struct {
	Unlock *FDBCLIUnlock `protobuf:"bytes,26,opt,name=unlock,proto3,oneof"`
}

type FDBCLICommand_Usetenant

type FDBCLICommand_Usetenant struct {
	Usetenant *FDBCLIUsetenant `protobuf:"bytes,34,opt,name=usetenant,proto3,oneof"`
}

type FDBCLICommand_Versionepoch added in v1.8.0

type FDBCLICommand_Versionepoch struct {
	Versionepoch *FDBCLIVersionepoch `protobuf:"bytes,42,opt,name=versionepoch,proto3,oneof"`
}

type FDBCLICommand_Waitconnected added in v1.8.0

type FDBCLICommand_Waitconnected struct {
	Waitconnected *FDBCLIWaitconnected `protobuf:"bytes,37,opt,name=waitconnected,proto3,oneof"`
}

type FDBCLICommand_Waitopen added in v1.8.0

type FDBCLICommand_Waitopen struct {
	Waitopen *FDBCLIWaitopen `protobuf:"bytes,38,opt,name=waitopen,proto3,oneof"`
}

type FDBCLICommand_Writemode

type FDBCLICommand_Writemode struct {
	Writemode *FDBCLIWritemode `protobuf:"bytes,27,opt,name=writemode,proto3,oneof"`
}

type FDBCLICommit added in v1.8.0

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

func (*FDBCLICommit) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLICommit.ProtoReflect.Descriptor instead.

func (*FDBCLICommit) ProtoMessage added in v1.8.0

func (*FDBCLICommit) ProtoMessage()

func (*FDBCLICommit) ProtoReflect added in v1.8.0

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

func (*FDBCLICommit) Reset added in v1.8.0

func (x *FDBCLICommit) Reset()

func (*FDBCLICommit) String added in v1.8.0

func (x *FDBCLICommit) String() string

type FDBCLIConfigure

type FDBCLIConfigure struct {
	NewOrTss                       *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=new_or_tss,json=newOrTss,proto3" json:"new_or_tss,omitempty"`
	RedundancyMode                 *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=redundancy_mode,json=redundancyMode,proto3" json:"redundancy_mode,omitempty"`
	StorageEngine                  *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=storage_engine,json=storageEngine,proto3" json:"storage_engine,omitempty"`
	GrvProxies                     *wrapperspb.UInt32Value `protobuf:"bytes,4,opt,name=grv_proxies,json=grvProxies,proto3" json:"grv_proxies,omitempty"`
	CommitProxies                  *wrapperspb.UInt32Value `protobuf:"bytes,5,opt,name=commit_proxies,json=commitProxies,proto3" json:"commit_proxies,omitempty"`
	Resolvers                      *wrapperspb.UInt32Value `protobuf:"bytes,6,opt,name=resolvers,proto3" json:"resolvers,omitempty"`
	Logs                           *wrapperspb.UInt32Value `protobuf:"bytes,7,opt,name=logs,proto3" json:"logs,omitempty"`
	Count                          *wrapperspb.UInt32Value `protobuf:"bytes,8,opt,name=count,proto3" json:"count,omitempty"`
	PerpetualStorageWiggle         *wrapperspb.UInt32Value `` /* 129-byte string literal not displayed */
	PerpetualStorageWiggleLocality *wrapperspb.StringValue `` /* 156-byte string literal not displayed */
	StorageMigrationType           *wrapperspb.StringValue `protobuf:"bytes,11,opt,name=storage_migration_type,json=storageMigrationType,proto3" json:"storage_migration_type,omitempty"`
	TenantMode                     *wrapperspb.StringValue `protobuf:"bytes,12,opt,name=tenant_mode,json=tenantMode,proto3" json:"tenant_mode,omitempty"`
	// contains filtered or unexported fields
}

See https://apple.github.io/foundationdb/command-line-interface.html#configure for possible values for options.

func (*FDBCLIConfigure) Descriptor deprecated

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

Deprecated: Use FDBCLIConfigure.ProtoReflect.Descriptor instead.

func (*FDBCLIConfigure) GetCommitProxies

func (x *FDBCLIConfigure) GetCommitProxies() *wrapperspb.UInt32Value

func (*FDBCLIConfigure) GetCount

func (x *FDBCLIConfigure) GetCount() *wrapperspb.UInt32Value

func (*FDBCLIConfigure) GetGrvProxies

func (x *FDBCLIConfigure) GetGrvProxies() *wrapperspb.UInt32Value

func (*FDBCLIConfigure) GetLogs

func (x *FDBCLIConfigure) GetLogs() *wrapperspb.UInt32Value

func (*FDBCLIConfigure) GetNewOrTss

func (x *FDBCLIConfigure) GetNewOrTss() *wrapperspb.StringValue

func (*FDBCLIConfigure) GetPerpetualStorageWiggle

func (x *FDBCLIConfigure) GetPerpetualStorageWiggle() *wrapperspb.UInt32Value

func (*FDBCLIConfigure) GetPerpetualStorageWiggleLocality

func (x *FDBCLIConfigure) GetPerpetualStorageWiggleLocality() *wrapperspb.StringValue

func (*FDBCLIConfigure) GetRedundancyMode

func (x *FDBCLIConfigure) GetRedundancyMode() *wrapperspb.StringValue

func (*FDBCLIConfigure) GetResolvers

func (x *FDBCLIConfigure) GetResolvers() *wrapperspb.UInt32Value

func (*FDBCLIConfigure) GetStorageEngine

func (x *FDBCLIConfigure) GetStorageEngine() *wrapperspb.StringValue

func (*FDBCLIConfigure) GetStorageMigrationType

func (x *FDBCLIConfigure) GetStorageMigrationType() *wrapperspb.StringValue

func (*FDBCLIConfigure) GetTenantMode

func (x *FDBCLIConfigure) GetTenantMode() *wrapperspb.StringValue

func (*FDBCLIConfigure) ProtoMessage

func (*FDBCLIConfigure) ProtoMessage()

func (*FDBCLIConfigure) ProtoReflect

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

func (*FDBCLIConfigure) Reset

func (x *FDBCLIConfigure) Reset()

func (*FDBCLIConfigure) String

func (x *FDBCLIConfigure) String() string

type FDBCLIConsistencycheck

type FDBCLIConsistencycheck struct {
	Mode *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=mode,proto3" json:"mode,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIConsistencycheck) Descriptor deprecated

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

Deprecated: Use FDBCLIConsistencycheck.ProtoReflect.Descriptor instead.

func (*FDBCLIConsistencycheck) GetMode

func (*FDBCLIConsistencycheck) ProtoMessage

func (*FDBCLIConsistencycheck) ProtoMessage()

func (*FDBCLIConsistencycheck) ProtoReflect

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

func (*FDBCLIConsistencycheck) Reset

func (x *FDBCLIConsistencycheck) Reset()

func (*FDBCLIConsistencycheck) String

func (x *FDBCLIConsistencycheck) String() string

type FDBCLICoordinators

type FDBCLICoordinators struct {

	// Types that are assignable to Request:
	//
	//	*FDBCLICoordinators_Auto
	//	*FDBCLICoordinators_Addresses
	Request     isFDBCLICoordinators_Request `protobuf_oneof:"request"`
	Description *wrapperspb.StringValue      `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLICoordinators) Descriptor deprecated

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

Deprecated: Use FDBCLICoordinators.ProtoReflect.Descriptor instead.

func (*FDBCLICoordinators) GetAddresses

func (*FDBCLICoordinators) GetAuto

func (*FDBCLICoordinators) GetDescription

func (x *FDBCLICoordinators) GetDescription() *wrapperspb.StringValue

func (*FDBCLICoordinators) GetRequest

func (m *FDBCLICoordinators) GetRequest() isFDBCLICoordinators_Request

func (*FDBCLICoordinators) ProtoMessage

func (*FDBCLICoordinators) ProtoMessage()

func (*FDBCLICoordinators) ProtoReflect

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

func (*FDBCLICoordinators) Reset

func (x *FDBCLICoordinators) Reset()

func (*FDBCLICoordinators) String

func (x *FDBCLICoordinators) String() string

type FDBCLICoordinatorsAddresses

type FDBCLICoordinatorsAddresses struct {
	Addresses []string `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLICoordinatorsAddresses) Descriptor deprecated

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

Deprecated: Use FDBCLICoordinatorsAddresses.ProtoReflect.Descriptor instead.

func (*FDBCLICoordinatorsAddresses) GetAddresses

func (x *FDBCLICoordinatorsAddresses) GetAddresses() []string

func (*FDBCLICoordinatorsAddresses) ProtoMessage

func (*FDBCLICoordinatorsAddresses) ProtoMessage()

func (*FDBCLICoordinatorsAddresses) ProtoReflect

func (*FDBCLICoordinatorsAddresses) Reset

func (x *FDBCLICoordinatorsAddresses) Reset()

func (*FDBCLICoordinatorsAddresses) String

func (x *FDBCLICoordinatorsAddresses) String() string

type FDBCLICoordinatorsAuto

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

func (*FDBCLICoordinatorsAuto) Descriptor deprecated

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

Deprecated: Use FDBCLICoordinatorsAuto.ProtoReflect.Descriptor instead.

func (*FDBCLICoordinatorsAuto) ProtoMessage

func (*FDBCLICoordinatorsAuto) ProtoMessage()

func (*FDBCLICoordinatorsAuto) ProtoReflect

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

func (*FDBCLICoordinatorsAuto) Reset

func (x *FDBCLICoordinatorsAuto) Reset()

func (*FDBCLICoordinatorsAuto) String

func (x *FDBCLICoordinatorsAuto) String() string

type FDBCLICoordinators_Addresses

type FDBCLICoordinators_Addresses struct {
	Addresses *FDBCLICoordinatorsAddresses `protobuf:"bytes,2,opt,name=addresses,proto3,oneof"`
}

type FDBCLICoordinators_Auto

type FDBCLICoordinators_Auto struct {
	Auto *FDBCLICoordinatorsAuto `protobuf:"bytes,1,opt,name=auto,proto3,oneof"`
}

type FDBCLICreatetenant

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

func (*FDBCLICreatetenant) Descriptor deprecated

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

Deprecated: Use FDBCLICreatetenant.ProtoReflect.Descriptor instead.

func (*FDBCLICreatetenant) GetName

func (x *FDBCLICreatetenant) GetName() string

func (*FDBCLICreatetenant) ProtoMessage

func (*FDBCLICreatetenant) ProtoMessage()

func (*FDBCLICreatetenant) ProtoReflect

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

func (*FDBCLICreatetenant) Reset

func (x *FDBCLICreatetenant) Reset()

func (*FDBCLICreatetenant) String

func (x *FDBCLICreatetenant) String() string

type FDBCLIDatadistribution added in v1.8.0

type FDBCLIDatadistribution struct {

	// Types that are assignable to Request:
	//
	//	*FDBCLIDatadistribution_On
	//	*FDBCLIDatadistribution_Off
	//	*FDBCLIDatadistribution_Enable
	//	*FDBCLIDatadistribution_Disable
	Request isFDBCLIDatadistribution_Request `protobuf_oneof:"request"`
	// contains filtered or unexported fields
}

func (*FDBCLIDatadistribution) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIDatadistribution.ProtoReflect.Descriptor instead.

func (*FDBCLIDatadistribution) GetDisable added in v1.8.0

func (*FDBCLIDatadistribution) GetEnable added in v1.8.0

func (*FDBCLIDatadistribution) GetOff added in v1.8.0

func (*FDBCLIDatadistribution) GetOn added in v1.8.0

func (*FDBCLIDatadistribution) GetRequest added in v1.8.0

func (m *FDBCLIDatadistribution) GetRequest() isFDBCLIDatadistribution_Request

func (*FDBCLIDatadistribution) ProtoMessage added in v1.8.0

func (*FDBCLIDatadistribution) ProtoMessage()

func (*FDBCLIDatadistribution) ProtoReflect added in v1.8.0

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

func (*FDBCLIDatadistribution) Reset added in v1.8.0

func (x *FDBCLIDatadistribution) Reset()

func (*FDBCLIDatadistribution) String added in v1.8.0

func (x *FDBCLIDatadistribution) String() string

type FDBCLIDatadistributionDisable added in v1.8.0

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

func (*FDBCLIDatadistributionDisable) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIDatadistributionDisable.ProtoReflect.Descriptor instead.

func (*FDBCLIDatadistributionDisable) GetOption added in v1.8.0

func (x *FDBCLIDatadistributionDisable) GetOption() string

func (*FDBCLIDatadistributionDisable) ProtoMessage added in v1.8.0

func (*FDBCLIDatadistributionDisable) ProtoMessage()

func (*FDBCLIDatadistributionDisable) ProtoReflect added in v1.8.0

func (*FDBCLIDatadistributionDisable) Reset added in v1.8.0

func (x *FDBCLIDatadistributionDisable) Reset()

func (*FDBCLIDatadistributionDisable) String added in v1.8.0

type FDBCLIDatadistributionEnable added in v1.8.0

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

func (*FDBCLIDatadistributionEnable) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIDatadistributionEnable.ProtoReflect.Descriptor instead.

func (*FDBCLIDatadistributionEnable) GetOption added in v1.8.0

func (x *FDBCLIDatadistributionEnable) GetOption() string

func (*FDBCLIDatadistributionEnable) ProtoMessage added in v1.8.0

func (*FDBCLIDatadistributionEnable) ProtoMessage()

func (*FDBCLIDatadistributionEnable) ProtoReflect added in v1.8.0

func (*FDBCLIDatadistributionEnable) Reset added in v1.8.0

func (x *FDBCLIDatadistributionEnable) Reset()

func (*FDBCLIDatadistributionEnable) String added in v1.8.0

type FDBCLIDatadistributionOff added in v1.8.0

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

func (*FDBCLIDatadistributionOff) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIDatadistributionOff.ProtoReflect.Descriptor instead.

func (*FDBCLIDatadistributionOff) ProtoMessage added in v1.8.0

func (*FDBCLIDatadistributionOff) ProtoMessage()

func (*FDBCLIDatadistributionOff) ProtoReflect added in v1.8.0

func (*FDBCLIDatadistributionOff) Reset added in v1.8.0

func (x *FDBCLIDatadistributionOff) Reset()

func (*FDBCLIDatadistributionOff) String added in v1.8.0

func (x *FDBCLIDatadistributionOff) String() string

type FDBCLIDatadistributionOn added in v1.8.0

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

func (*FDBCLIDatadistributionOn) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIDatadistributionOn.ProtoReflect.Descriptor instead.

func (*FDBCLIDatadistributionOn) ProtoMessage added in v1.8.0

func (*FDBCLIDatadistributionOn) ProtoMessage()

func (*FDBCLIDatadistributionOn) ProtoReflect added in v1.8.0

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

func (*FDBCLIDatadistributionOn) Reset added in v1.8.0

func (x *FDBCLIDatadistributionOn) Reset()

func (*FDBCLIDatadistributionOn) String added in v1.8.0

func (x *FDBCLIDatadistributionOn) String() string

type FDBCLIDatadistribution_Disable added in v1.8.0

type FDBCLIDatadistribution_Disable struct {
	Disable *FDBCLIDatadistributionDisable `protobuf:"bytes,4,opt,name=disable,proto3,oneof"`
}

type FDBCLIDatadistribution_Enable added in v1.8.0

type FDBCLIDatadistribution_Enable struct {
	Enable *FDBCLIDatadistributionEnable `protobuf:"bytes,3,opt,name=enable,proto3,oneof"`
}

type FDBCLIDatadistribution_Off added in v1.8.0

type FDBCLIDatadistribution_Off struct {
	Off *FDBCLIDatadistributionOff `protobuf:"bytes,2,opt,name=off,proto3,oneof"`
}

type FDBCLIDatadistribution_On added in v1.8.0

type FDBCLIDatadistribution_On struct {
	On *FDBCLIDatadistributionOn `protobuf:"bytes,1,opt,name=on,proto3,oneof"`
}

type FDBCLIDefaulttenant

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

func (*FDBCLIDefaulttenant) Descriptor deprecated

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

Deprecated: Use FDBCLIDefaulttenant.ProtoReflect.Descriptor instead.

func (*FDBCLIDefaulttenant) ProtoMessage

func (*FDBCLIDefaulttenant) ProtoMessage()

func (*FDBCLIDefaulttenant) ProtoReflect

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

func (*FDBCLIDefaulttenant) Reset

func (x *FDBCLIDefaulttenant) Reset()

func (*FDBCLIDefaulttenant) String

func (x *FDBCLIDefaulttenant) String() string

type FDBCLIDeletetenant

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

func (*FDBCLIDeletetenant) Descriptor deprecated

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

Deprecated: Use FDBCLIDeletetenant.ProtoReflect.Descriptor instead.

func (*FDBCLIDeletetenant) GetName

func (x *FDBCLIDeletetenant) GetName() string

func (*FDBCLIDeletetenant) ProtoMessage

func (*FDBCLIDeletetenant) ProtoMessage()

func (*FDBCLIDeletetenant) ProtoReflect

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

func (*FDBCLIDeletetenant) Reset

func (x *FDBCLIDeletetenant) Reset()

func (*FDBCLIDeletetenant) String

func (x *FDBCLIDeletetenant) String() string

type FDBCLIExclude

type FDBCLIExclude struct {
	Failed    *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=failed,proto3" json:"failed,omitempty"`
	Addresses []string              `protobuf:"bytes,2,rep,name=addresses,proto3" json:"addresses,omitempty"`
	NoWait    *wrapperspb.BoolValue `protobuf:"bytes,3,opt,name=no_wait,json=noWait,proto3" json:"no_wait,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIExclude) Descriptor deprecated

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

Deprecated: Use FDBCLIExclude.ProtoReflect.Descriptor instead.

func (*FDBCLIExclude) GetAddresses

func (x *FDBCLIExclude) GetAddresses() []string

func (*FDBCLIExclude) GetFailed

func (x *FDBCLIExclude) GetFailed() *wrapperspb.BoolValue

func (*FDBCLIExclude) GetNoWait added in v1.22.0

func (x *FDBCLIExclude) GetNoWait() *wrapperspb.BoolValue

func (*FDBCLIExclude) ProtoMessage

func (*FDBCLIExclude) ProtoMessage()

func (*FDBCLIExclude) ProtoReflect

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

func (*FDBCLIExclude) Reset

func (x *FDBCLIExclude) Reset()

func (*FDBCLIExclude) String

func (x *FDBCLIExclude) String() string

type FDBCLIExpensiveDataCheck added in v1.8.0

type FDBCLIExpensiveDataCheck struct {

	// Types that are assignable to Request:
	//
	//	*FDBCLIExpensiveDataCheck_Init
	//	*FDBCLIExpensiveDataCheck_List
	//	*FDBCLIExpensiveDataCheck_All
	//	*FDBCLIExpensiveDataCheck_Check
	Request isFDBCLIExpensiveDataCheck_Request `protobuf_oneof:"request"`
	// contains filtered or unexported fields
}

func (*FDBCLIExpensiveDataCheck) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIExpensiveDataCheck.ProtoReflect.Descriptor instead.

func (*FDBCLIExpensiveDataCheck) GetAll added in v1.8.0

func (*FDBCLIExpensiveDataCheck) GetCheck added in v1.8.0

func (*FDBCLIExpensiveDataCheck) GetInit added in v1.8.0

func (*FDBCLIExpensiveDataCheck) GetList added in v1.8.0

func (*FDBCLIExpensiveDataCheck) GetRequest added in v1.8.0

func (m *FDBCLIExpensiveDataCheck) GetRequest() isFDBCLIExpensiveDataCheck_Request

func (*FDBCLIExpensiveDataCheck) ProtoMessage added in v1.8.0

func (*FDBCLIExpensiveDataCheck) ProtoMessage()

func (*FDBCLIExpensiveDataCheck) ProtoReflect added in v1.8.0

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

func (*FDBCLIExpensiveDataCheck) Reset added in v1.8.0

func (x *FDBCLIExpensiveDataCheck) Reset()

func (*FDBCLIExpensiveDataCheck) String added in v1.8.0

func (x *FDBCLIExpensiveDataCheck) String() string

type FDBCLIExpensiveDataCheckAll added in v1.8.0

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

func (*FDBCLIExpensiveDataCheckAll) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIExpensiveDataCheckAll.ProtoReflect.Descriptor instead.

func (*FDBCLIExpensiveDataCheckAll) ProtoMessage added in v1.8.0

func (*FDBCLIExpensiveDataCheckAll) ProtoMessage()

func (*FDBCLIExpensiveDataCheckAll) ProtoReflect added in v1.8.0

func (*FDBCLIExpensiveDataCheckAll) Reset added in v1.8.0

func (x *FDBCLIExpensiveDataCheckAll) Reset()

func (*FDBCLIExpensiveDataCheckAll) String added in v1.8.0

func (x *FDBCLIExpensiveDataCheckAll) String() string

type FDBCLIExpensiveDataCheckCheck added in v1.8.0

type FDBCLIExpensiveDataCheckCheck struct {
	Addresses []string `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIExpensiveDataCheckCheck) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIExpensiveDataCheckCheck.ProtoReflect.Descriptor instead.

func (*FDBCLIExpensiveDataCheckCheck) GetAddresses added in v1.8.0

func (x *FDBCLIExpensiveDataCheckCheck) GetAddresses() []string

func (*FDBCLIExpensiveDataCheckCheck) ProtoMessage added in v1.8.0

func (*FDBCLIExpensiveDataCheckCheck) ProtoMessage()

func (*FDBCLIExpensiveDataCheckCheck) ProtoReflect added in v1.8.0

func (*FDBCLIExpensiveDataCheckCheck) Reset added in v1.8.0

func (x *FDBCLIExpensiveDataCheckCheck) Reset()

func (*FDBCLIExpensiveDataCheckCheck) String added in v1.8.0

type FDBCLIExpensiveDataCheckInit added in v1.8.0

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

func (*FDBCLIExpensiveDataCheckInit) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIExpensiveDataCheckInit.ProtoReflect.Descriptor instead.

func (*FDBCLIExpensiveDataCheckInit) ProtoMessage added in v1.8.0

func (*FDBCLIExpensiveDataCheckInit) ProtoMessage()

func (*FDBCLIExpensiveDataCheckInit) ProtoReflect added in v1.8.0

func (*FDBCLIExpensiveDataCheckInit) Reset added in v1.8.0

func (x *FDBCLIExpensiveDataCheckInit) Reset()

func (*FDBCLIExpensiveDataCheckInit) String added in v1.8.0

type FDBCLIExpensiveDataCheckList added in v1.8.0

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

func (*FDBCLIExpensiveDataCheckList) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIExpensiveDataCheckList.ProtoReflect.Descriptor instead.

func (*FDBCLIExpensiveDataCheckList) ProtoMessage added in v1.8.0

func (*FDBCLIExpensiveDataCheckList) ProtoMessage()

func (*FDBCLIExpensiveDataCheckList) ProtoReflect added in v1.8.0

func (*FDBCLIExpensiveDataCheckList) Reset added in v1.8.0

func (x *FDBCLIExpensiveDataCheckList) Reset()

func (*FDBCLIExpensiveDataCheckList) String added in v1.8.0

type FDBCLIExpensiveDataCheck_All added in v1.8.0

type FDBCLIExpensiveDataCheck_All struct {
	All *FDBCLIExpensiveDataCheckAll `protobuf:"bytes,3,opt,name=all,proto3,oneof"`
}

type FDBCLIExpensiveDataCheck_Check added in v1.8.0

type FDBCLIExpensiveDataCheck_Check struct {
	Check *FDBCLIExpensiveDataCheckCheck `protobuf:"bytes,4,opt,name=check,proto3,oneof"`
}

type FDBCLIExpensiveDataCheck_Init added in v1.8.0

type FDBCLIExpensiveDataCheck_Init struct {
	Init *FDBCLIExpensiveDataCheckInit `protobuf:"bytes,1,opt,name=init,proto3,oneof"`
}

type FDBCLIExpensiveDataCheck_List added in v1.8.0

type FDBCLIExpensiveDataCheck_List struct {
	List *FDBCLIExpensiveDataCheckList `protobuf:"bytes,2,opt,name=list,proto3,oneof"`
}

type FDBCLIFileconfigure

type FDBCLIFileconfigure struct {
	New  *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=new,proto3" json:"new,omitempty"`
	File string                `protobuf:"bytes,2,opt,name=file,proto3" json:"file,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIFileconfigure) Descriptor deprecated

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

Deprecated: Use FDBCLIFileconfigure.ProtoReflect.Descriptor instead.

func (*FDBCLIFileconfigure) GetFile

func (x *FDBCLIFileconfigure) GetFile() string

func (*FDBCLIFileconfigure) GetNew

func (*FDBCLIFileconfigure) ProtoMessage

func (*FDBCLIFileconfigure) ProtoMessage()

func (*FDBCLIFileconfigure) ProtoReflect

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

func (*FDBCLIFileconfigure) Reset

func (x *FDBCLIFileconfigure) Reset()

func (*FDBCLIFileconfigure) String

func (x *FDBCLIFileconfigure) String() string

type FDBCLIForceRecoveryWithDataLoss

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

func (*FDBCLIForceRecoveryWithDataLoss) Descriptor deprecated

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

Deprecated: Use FDBCLIForceRecoveryWithDataLoss.ProtoReflect.Descriptor instead.

func (*FDBCLIForceRecoveryWithDataLoss) GetDcid

func (*FDBCLIForceRecoveryWithDataLoss) ProtoMessage

func (*FDBCLIForceRecoveryWithDataLoss) ProtoMessage()

func (*FDBCLIForceRecoveryWithDataLoss) ProtoReflect

func (*FDBCLIForceRecoveryWithDataLoss) Reset

func (*FDBCLIForceRecoveryWithDataLoss) String

type FDBCLIGet

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

func (*FDBCLIGet) Descriptor deprecated

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

Deprecated: Use FDBCLIGet.ProtoReflect.Descriptor instead.

func (*FDBCLIGet) GetKey

func (x *FDBCLIGet) GetKey() string

func (*FDBCLIGet) ProtoMessage

func (*FDBCLIGet) ProtoMessage()

func (*FDBCLIGet) ProtoReflect

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

func (*FDBCLIGet) Reset

func (x *FDBCLIGet) Reset()

func (*FDBCLIGet) String

func (x *FDBCLIGet) String() string

type FDBCLIGetrange

type FDBCLIGetrange struct {
	BeginKey string                  `protobuf:"bytes,1,opt,name=begin_key,json=beginKey,proto3" json:"begin_key,omitempty"`
	EndKey   *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=end_key,json=endKey,proto3" json:"end_key,omitempty"`
	Limit    *wrapperspb.UInt32Value `protobuf:"bytes,3,opt,name=limit,proto3" json:"limit,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIGetrange) Descriptor deprecated

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

Deprecated: Use FDBCLIGetrange.ProtoReflect.Descriptor instead.

func (*FDBCLIGetrange) GetBeginKey

func (x *FDBCLIGetrange) GetBeginKey() string

func (*FDBCLIGetrange) GetEndKey

func (x *FDBCLIGetrange) GetEndKey() *wrapperspb.StringValue

func (*FDBCLIGetrange) GetLimit

func (x *FDBCLIGetrange) GetLimit() *wrapperspb.UInt32Value

func (*FDBCLIGetrange) ProtoMessage

func (*FDBCLIGetrange) ProtoMessage()

func (*FDBCLIGetrange) ProtoReflect

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

func (*FDBCLIGetrange) Reset

func (x *FDBCLIGetrange) Reset()

func (*FDBCLIGetrange) String

func (x *FDBCLIGetrange) String() string

type FDBCLIGetrangekeys

type FDBCLIGetrangekeys struct {
	BeginKey string                  `protobuf:"bytes,1,opt,name=begin_key,json=beginKey,proto3" json:"begin_key,omitempty"`
	EndKey   *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=end_key,json=endKey,proto3" json:"end_key,omitempty"`
	Limit    *wrapperspb.UInt32Value `protobuf:"bytes,3,opt,name=limit,proto3" json:"limit,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIGetrangekeys) Descriptor deprecated

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

Deprecated: Use FDBCLIGetrangekeys.ProtoReflect.Descriptor instead.

func (*FDBCLIGetrangekeys) GetBeginKey

func (x *FDBCLIGetrangekeys) GetBeginKey() string

func (*FDBCLIGetrangekeys) GetEndKey

func (x *FDBCLIGetrangekeys) GetEndKey() *wrapperspb.StringValue

func (*FDBCLIGetrangekeys) GetLimit

func (x *FDBCLIGetrangekeys) GetLimit() *wrapperspb.UInt32Value

func (*FDBCLIGetrangekeys) ProtoMessage

func (*FDBCLIGetrangekeys) ProtoMessage()

func (*FDBCLIGetrangekeys) ProtoReflect

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

func (*FDBCLIGetrangekeys) Reset

func (x *FDBCLIGetrangekeys) Reset()

func (*FDBCLIGetrangekeys) String

func (x *FDBCLIGetrangekeys) String() string

type FDBCLIGettenant

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

func (*FDBCLIGettenant) Descriptor deprecated

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

Deprecated: Use FDBCLIGettenant.ProtoReflect.Descriptor instead.

func (*FDBCLIGettenant) GetName

func (x *FDBCLIGettenant) GetName() string

func (*FDBCLIGettenant) ProtoMessage

func (*FDBCLIGettenant) ProtoMessage()

func (*FDBCLIGettenant) ProtoReflect

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

func (*FDBCLIGettenant) Reset

func (x *FDBCLIGettenant) Reset()

func (*FDBCLIGettenant) String

func (x *FDBCLIGettenant) String() string

type FDBCLIGetversion

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

func (*FDBCLIGetversion) Descriptor deprecated

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

Deprecated: Use FDBCLIGetversion.ProtoReflect.Descriptor instead.

func (*FDBCLIGetversion) ProtoMessage

func (*FDBCLIGetversion) ProtoMessage()

func (*FDBCLIGetversion) ProtoReflect

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

func (*FDBCLIGetversion) Reset

func (x *FDBCLIGetversion) Reset()

func (*FDBCLIGetversion) String

func (x *FDBCLIGetversion) String() string

type FDBCLIHelp

type FDBCLIHelp struct {
	Options []string `protobuf:"bytes,1,rep,name=options,proto3" json:"options,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIHelp) Descriptor deprecated

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

Deprecated: Use FDBCLIHelp.ProtoReflect.Descriptor instead.

func (*FDBCLIHelp) GetOptions

func (x *FDBCLIHelp) GetOptions() []string

func (*FDBCLIHelp) ProtoMessage

func (*FDBCLIHelp) ProtoMessage()

func (*FDBCLIHelp) ProtoReflect

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

func (*FDBCLIHelp) Reset

func (x *FDBCLIHelp) Reset()

func (*FDBCLIHelp) String

func (x *FDBCLIHelp) String() string

type FDBCLIInclude

type FDBCLIInclude struct {
	Failed *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=failed,proto3" json:"failed,omitempty"`
	// Types that are assignable to Request:
	//
	//	*FDBCLIInclude_All
	//	*FDBCLIInclude_Addresses
	Request isFDBCLIInclude_Request `protobuf_oneof:"request"`
	// contains filtered or unexported fields
}

func (*FDBCLIInclude) Descriptor deprecated

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

Deprecated: Use FDBCLIInclude.ProtoReflect.Descriptor instead.

func (*FDBCLIInclude) GetAddresses

func (x *FDBCLIInclude) GetAddresses() *FDBCLIIncludeAddresses

func (*FDBCLIInclude) GetAll

func (x *FDBCLIInclude) GetAll() bool

func (*FDBCLIInclude) GetFailed

func (x *FDBCLIInclude) GetFailed() *wrapperspb.BoolValue

func (*FDBCLIInclude) GetRequest

func (m *FDBCLIInclude) GetRequest() isFDBCLIInclude_Request

func (*FDBCLIInclude) ProtoMessage

func (*FDBCLIInclude) ProtoMessage()

func (*FDBCLIInclude) ProtoReflect

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

func (*FDBCLIInclude) Reset

func (x *FDBCLIInclude) Reset()

func (*FDBCLIInclude) String

func (x *FDBCLIInclude) String() string

type FDBCLIIncludeAddresses

type FDBCLIIncludeAddresses struct {
	Addresses []string `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIIncludeAddresses) Descriptor deprecated

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

Deprecated: Use FDBCLIIncludeAddresses.ProtoReflect.Descriptor instead.

func (*FDBCLIIncludeAddresses) GetAddresses

func (x *FDBCLIIncludeAddresses) GetAddresses() []string

func (*FDBCLIIncludeAddresses) ProtoMessage

func (*FDBCLIIncludeAddresses) ProtoMessage()

func (*FDBCLIIncludeAddresses) ProtoReflect

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

func (*FDBCLIIncludeAddresses) Reset

func (x *FDBCLIIncludeAddresses) Reset()

func (*FDBCLIIncludeAddresses) String

func (x *FDBCLIIncludeAddresses) String() string

type FDBCLIInclude_Addresses

type FDBCLIInclude_Addresses struct {
	Addresses *FDBCLIIncludeAddresses `protobuf:"bytes,3,opt,name=addresses,proto3,oneof"`
}

type FDBCLIInclude_All

type FDBCLIInclude_All struct {
	All bool `protobuf:"varint,2,opt,name=all,proto3,oneof"`
}

type FDBCLIKill

type FDBCLIKill struct {

	// Types that are assignable to Request:
	//
	//	*FDBCLIKill_Init
	//	*FDBCLIKill_List
	//	*FDBCLIKill_All
	//	*FDBCLIKill_Targets
	Request isFDBCLIKill_Request `protobuf_oneof:"request"`
	// Duration to sleep after sending the kill command.
	//
	// fdbcli may return before message is actually sent.
	// See https://github.com/apple/foundationdb/pull/9526
	Sleep *durationpb.Duration `protobuf:"bytes,5,opt,name=sleep,proto3" json:"sleep,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIKill) Descriptor deprecated

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

Deprecated: Use FDBCLIKill.ProtoReflect.Descriptor instead.

func (*FDBCLIKill) GetAll added in v1.8.0

func (x *FDBCLIKill) GetAll() *FDBCLIKillAll

func (*FDBCLIKill) GetInit added in v1.8.0

func (x *FDBCLIKill) GetInit() *FDBCLIKillInit

func (*FDBCLIKill) GetList added in v1.8.0

func (x *FDBCLIKill) GetList() *FDBCLIKillList

func (*FDBCLIKill) GetRequest added in v1.8.0

func (m *FDBCLIKill) GetRequest() isFDBCLIKill_Request

func (*FDBCLIKill) GetSleep added in v1.20.1

func (x *FDBCLIKill) GetSleep() *durationpb.Duration

func (*FDBCLIKill) GetTargets added in v1.8.0

func (x *FDBCLIKill) GetTargets() *FDBCLIKillTargets

func (*FDBCLIKill) ProtoMessage

func (*FDBCLIKill) ProtoMessage()

func (*FDBCLIKill) ProtoReflect

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

func (*FDBCLIKill) Reset

func (x *FDBCLIKill) Reset()

func (*FDBCLIKill) String

func (x *FDBCLIKill) String() string

type FDBCLIKillAll added in v1.8.0

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

func (*FDBCLIKillAll) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIKillAll.ProtoReflect.Descriptor instead.

func (*FDBCLIKillAll) ProtoMessage added in v1.8.0

func (*FDBCLIKillAll) ProtoMessage()

func (*FDBCLIKillAll) ProtoReflect added in v1.8.0

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

func (*FDBCLIKillAll) Reset added in v1.8.0

func (x *FDBCLIKillAll) Reset()

func (*FDBCLIKillAll) String added in v1.8.0

func (x *FDBCLIKillAll) String() string

type FDBCLIKillInit added in v1.8.0

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

func (*FDBCLIKillInit) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIKillInit.ProtoReflect.Descriptor instead.

func (*FDBCLIKillInit) ProtoMessage added in v1.8.0

func (*FDBCLIKillInit) ProtoMessage()

func (*FDBCLIKillInit) ProtoReflect added in v1.8.0

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

func (*FDBCLIKillInit) Reset added in v1.8.0

func (x *FDBCLIKillInit) Reset()

func (*FDBCLIKillInit) String added in v1.8.0

func (x *FDBCLIKillInit) String() string

type FDBCLIKillList added in v1.8.0

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

func (*FDBCLIKillList) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIKillList.ProtoReflect.Descriptor instead.

func (*FDBCLIKillList) ProtoMessage added in v1.8.0

func (*FDBCLIKillList) ProtoMessage()

func (*FDBCLIKillList) ProtoReflect added in v1.8.0

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

func (*FDBCLIKillList) Reset added in v1.8.0

func (x *FDBCLIKillList) Reset()

func (*FDBCLIKillList) String added in v1.8.0

func (x *FDBCLIKillList) String() string

type FDBCLIKillTargets added in v1.8.0

type FDBCLIKillTargets struct {
	Addresses []string `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIKillTargets) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIKillTargets.ProtoReflect.Descriptor instead.

func (*FDBCLIKillTargets) GetAddresses added in v1.8.0

func (x *FDBCLIKillTargets) GetAddresses() []string

func (*FDBCLIKillTargets) ProtoMessage added in v1.8.0

func (*FDBCLIKillTargets) ProtoMessage()

func (*FDBCLIKillTargets) ProtoReflect added in v1.8.0

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

func (*FDBCLIKillTargets) Reset added in v1.8.0

func (x *FDBCLIKillTargets) Reset()

func (*FDBCLIKillTargets) String added in v1.8.0

func (x *FDBCLIKillTargets) String() string

type FDBCLIKill_All added in v1.8.0

type FDBCLIKill_All struct {
	All *FDBCLIKillAll `protobuf:"bytes,3,opt,name=all,proto3,oneof"`
}

type FDBCLIKill_Init added in v1.8.0

type FDBCLIKill_Init struct {
	Init *FDBCLIKillInit `protobuf:"bytes,1,opt,name=init,proto3,oneof"`
}

type FDBCLIKill_List added in v1.8.0

type FDBCLIKill_List struct {
	List *FDBCLIKillList `protobuf:"bytes,2,opt,name=list,proto3,oneof"`
}

type FDBCLIKill_Targets added in v1.8.0

type FDBCLIKill_Targets struct {
	Targets *FDBCLIKillTargets `protobuf:"bytes,4,opt,name=targets,proto3,oneof"`
}

type FDBCLIListtenants

type FDBCLIListtenants struct {
	Begin *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=begin,proto3" json:"begin,omitempty"`
	End   *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=end,proto3" json:"end,omitempty"`
	Limit *wrapperspb.UInt32Value `protobuf:"bytes,3,opt,name=limit,proto3" json:"limit,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIListtenants) Descriptor deprecated

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

Deprecated: Use FDBCLIListtenants.ProtoReflect.Descriptor instead.

func (*FDBCLIListtenants) GetBegin

func (x *FDBCLIListtenants) GetBegin() *wrapperspb.StringValue

func (*FDBCLIListtenants) GetEnd

func (*FDBCLIListtenants) GetLimit

func (x *FDBCLIListtenants) GetLimit() *wrapperspb.UInt32Value

func (*FDBCLIListtenants) ProtoMessage

func (*FDBCLIListtenants) ProtoMessage()

func (*FDBCLIListtenants) ProtoReflect

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

func (*FDBCLIListtenants) Reset

func (x *FDBCLIListtenants) Reset()

func (*FDBCLIListtenants) String

func (x *FDBCLIListtenants) String() string

type FDBCLILock

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

func (*FDBCLILock) Descriptor deprecated

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

Deprecated: Use FDBCLILock.ProtoReflect.Descriptor instead.

func (*FDBCLILock) ProtoMessage

func (*FDBCLILock) ProtoMessage()

func (*FDBCLILock) ProtoReflect

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

func (*FDBCLILock) Reset

func (x *FDBCLILock) Reset()

func (*FDBCLILock) String

func (x *FDBCLILock) String() string

type FDBCLIMaintenance

type FDBCLIMaintenance struct {

	// Types that are assignable to Request:
	//
	//	*FDBCLIMaintenance_Status
	//	*FDBCLIMaintenance_On
	//	*FDBCLIMaintenance_Off
	Request isFDBCLIMaintenance_Request `protobuf_oneof:"request"`
	// contains filtered or unexported fields
}

func (*FDBCLIMaintenance) Descriptor deprecated

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

Deprecated: Use FDBCLIMaintenance.ProtoReflect.Descriptor instead.

func (*FDBCLIMaintenance) GetOff

func (*FDBCLIMaintenance) GetOn

func (*FDBCLIMaintenance) GetRequest

func (m *FDBCLIMaintenance) GetRequest() isFDBCLIMaintenance_Request

func (*FDBCLIMaintenance) GetStatus

func (*FDBCLIMaintenance) ProtoMessage

func (*FDBCLIMaintenance) ProtoMessage()

func (*FDBCLIMaintenance) ProtoReflect

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

func (*FDBCLIMaintenance) Reset

func (x *FDBCLIMaintenance) Reset()

func (*FDBCLIMaintenance) String

func (x *FDBCLIMaintenance) String() string

type FDBCLIMaintenanceOff

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

func (*FDBCLIMaintenanceOff) Descriptor deprecated

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

Deprecated: Use FDBCLIMaintenanceOff.ProtoReflect.Descriptor instead.

func (*FDBCLIMaintenanceOff) ProtoMessage

func (*FDBCLIMaintenanceOff) ProtoMessage()

func (*FDBCLIMaintenanceOff) ProtoReflect

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

func (*FDBCLIMaintenanceOff) Reset

func (x *FDBCLIMaintenanceOff) Reset()

func (*FDBCLIMaintenanceOff) String

func (x *FDBCLIMaintenanceOff) String() string

type FDBCLIMaintenanceOn

type FDBCLIMaintenanceOn struct {
	Zoneid  string `protobuf:"bytes,1,opt,name=zoneid,proto3" json:"zoneid,omitempty"`
	Seconds uint32 `protobuf:"varint,2,opt,name=seconds,proto3" json:"seconds,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIMaintenanceOn) Descriptor deprecated

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

Deprecated: Use FDBCLIMaintenanceOn.ProtoReflect.Descriptor instead.

func (*FDBCLIMaintenanceOn) GetSeconds

func (x *FDBCLIMaintenanceOn) GetSeconds() uint32

func (*FDBCLIMaintenanceOn) GetZoneid

func (x *FDBCLIMaintenanceOn) GetZoneid() string

func (*FDBCLIMaintenanceOn) ProtoMessage

func (*FDBCLIMaintenanceOn) ProtoMessage()

func (*FDBCLIMaintenanceOn) ProtoReflect

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

func (*FDBCLIMaintenanceOn) Reset

func (x *FDBCLIMaintenanceOn) Reset()

func (*FDBCLIMaintenanceOn) String

func (x *FDBCLIMaintenanceOn) String() string

type FDBCLIMaintenanceStatus

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

func (*FDBCLIMaintenanceStatus) Descriptor deprecated

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

Deprecated: Use FDBCLIMaintenanceStatus.ProtoReflect.Descriptor instead.

func (*FDBCLIMaintenanceStatus) ProtoMessage

func (*FDBCLIMaintenanceStatus) ProtoMessage()

func (*FDBCLIMaintenanceStatus) ProtoReflect

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

func (*FDBCLIMaintenanceStatus) Reset

func (x *FDBCLIMaintenanceStatus) Reset()

func (*FDBCLIMaintenanceStatus) String

func (x *FDBCLIMaintenanceStatus) String() string

type FDBCLIMaintenance_Off

type FDBCLIMaintenance_Off struct {
	Off *FDBCLIMaintenanceOff `protobuf:"bytes,3,opt,name=off,proto3,oneof"`
}

type FDBCLIMaintenance_On

type FDBCLIMaintenance_On struct {
	On *FDBCLIMaintenanceOn `protobuf:"bytes,2,opt,name=on,proto3,oneof"`
}

type FDBCLIMaintenance_Status

type FDBCLIMaintenance_Status struct {
	Status *FDBCLIMaintenanceStatus `protobuf:"bytes,1,opt,name=status,proto3,oneof"`
}

type FDBCLIManyResponse

type FDBCLIManyResponse struct {
	Target string
	// As targets can be duplicated this is the index into the slice passed to proxy.Conn.
	Index int
	Resp  *FDBCLIResponse
	Error error
}

FDBCLIManyResponse encapsulates a proxy data packet. It includes the target, index, response and possible error returned.

type FDBCLIOption

type FDBCLIOption struct {

	// Types that are assignable to Request:
	//
	//	*FDBCLIOption_Blank
	//	*FDBCLIOption_Arg
	Request isFDBCLIOption_Request `protobuf_oneof:"request"`
	// contains filtered or unexported fields
}

func (*FDBCLIOption) Descriptor deprecated

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

Deprecated: Use FDBCLIOption.ProtoReflect.Descriptor instead.

func (*FDBCLIOption) GetArg

func (x *FDBCLIOption) GetArg() *FDBCLIOptionArg

func (*FDBCLIOption) GetBlank

func (x *FDBCLIOption) GetBlank() *FDBCLIOptionBlank

func (*FDBCLIOption) GetRequest

func (m *FDBCLIOption) GetRequest() isFDBCLIOption_Request

func (*FDBCLIOption) ProtoMessage

func (*FDBCLIOption) ProtoMessage()

func (*FDBCLIOption) ProtoReflect

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

func (*FDBCLIOption) Reset

func (x *FDBCLIOption) Reset()

func (*FDBCLIOption) String

func (x *FDBCLIOption) String() string

type FDBCLIOptionArg

type FDBCLIOptionArg struct {
	State  string                  `protobuf:"bytes,1,opt,name=state,proto3" json:"state,omitempty"`
	Option string                  `protobuf:"bytes,2,opt,name=option,proto3" json:"option,omitempty"`
	Arg    *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=arg,proto3" json:"arg,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIOptionArg) Descriptor deprecated

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

Deprecated: Use FDBCLIOptionArg.ProtoReflect.Descriptor instead.

func (*FDBCLIOptionArg) GetArg

func (x *FDBCLIOptionArg) GetArg() *wrapperspb.StringValue

func (*FDBCLIOptionArg) GetOption

func (x *FDBCLIOptionArg) GetOption() string

func (*FDBCLIOptionArg) GetState

func (x *FDBCLIOptionArg) GetState() string

func (*FDBCLIOptionArg) ProtoMessage

func (*FDBCLIOptionArg) ProtoMessage()

func (*FDBCLIOptionArg) ProtoReflect

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

func (*FDBCLIOptionArg) Reset

func (x *FDBCLIOptionArg) Reset()

func (*FDBCLIOptionArg) String

func (x *FDBCLIOptionArg) String() string

type FDBCLIOptionBlank

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

func (*FDBCLIOptionBlank) Descriptor deprecated

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

Deprecated: Use FDBCLIOptionBlank.ProtoReflect.Descriptor instead.

func (*FDBCLIOptionBlank) ProtoMessage

func (*FDBCLIOptionBlank) ProtoMessage()

func (*FDBCLIOptionBlank) ProtoReflect

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

func (*FDBCLIOptionBlank) Reset

func (x *FDBCLIOptionBlank) Reset()

func (*FDBCLIOptionBlank) String

func (x *FDBCLIOptionBlank) String() string

type FDBCLIOption_Arg

type FDBCLIOption_Arg struct {
	Arg *FDBCLIOptionArg `protobuf:"bytes,2,opt,name=arg,proto3,oneof"`
}

type FDBCLIOption_Blank

type FDBCLIOption_Blank struct {
	Blank *FDBCLIOptionBlank `protobuf:"bytes,1,opt,name=blank,proto3,oneof"`
}

type FDBCLIProfile

type FDBCLIProfile struct {

	// Types that are assignable to Request:
	//
	//	*FDBCLIProfile_Client
	//	*FDBCLIProfile_List
	//	*FDBCLIProfile_Flow
	//	*FDBCLIProfile_Heap
	Request isFDBCLIProfile_Request `protobuf_oneof:"request"`
	// contains filtered or unexported fields
}

func (*FDBCLIProfile) Descriptor deprecated

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

Deprecated: Use FDBCLIProfile.ProtoReflect.Descriptor instead.

func (*FDBCLIProfile) GetClient

func (x *FDBCLIProfile) GetClient() *FDBCLIProfileActionClient

func (*FDBCLIProfile) GetFlow

func (x *FDBCLIProfile) GetFlow() *FDBCLIProfileActionFlow

func (*FDBCLIProfile) GetHeap

func (x *FDBCLIProfile) GetHeap() *FDBCLIProfileActionHeap

func (*FDBCLIProfile) GetList

func (x *FDBCLIProfile) GetList() *FDBCLIProfileActionList

func (*FDBCLIProfile) GetRequest

func (m *FDBCLIProfile) GetRequest() isFDBCLIProfile_Request

func (*FDBCLIProfile) ProtoMessage

func (*FDBCLIProfile) ProtoMessage()

func (*FDBCLIProfile) ProtoReflect

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

func (*FDBCLIProfile) Reset

func (x *FDBCLIProfile) Reset()

func (*FDBCLIProfile) String

func (x *FDBCLIProfile) String() string

type FDBCLIProfileActionClient

type FDBCLIProfileActionClient struct {

	// Types that are assignable to Request:
	//
	//	*FDBCLIProfileActionClient_Get
	//	*FDBCLIProfileActionClient_Set
	Request isFDBCLIProfileActionClient_Request `protobuf_oneof:"request"`
	// contains filtered or unexported fields
}

func (*FDBCLIProfileActionClient) Descriptor deprecated

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

Deprecated: Use FDBCLIProfileActionClient.ProtoReflect.Descriptor instead.

func (*FDBCLIProfileActionClient) GetGet

func (*FDBCLIProfileActionClient) GetRequest

func (m *FDBCLIProfileActionClient) GetRequest() isFDBCLIProfileActionClient_Request

func (*FDBCLIProfileActionClient) GetSet

func (*FDBCLIProfileActionClient) ProtoMessage

func (*FDBCLIProfileActionClient) ProtoMessage()

func (*FDBCLIProfileActionClient) ProtoReflect

func (*FDBCLIProfileActionClient) Reset

func (x *FDBCLIProfileActionClient) Reset()

func (*FDBCLIProfileActionClient) String

func (x *FDBCLIProfileActionClient) String() string

type FDBCLIProfileActionClientDefault

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

func (*FDBCLIProfileActionClientDefault) Descriptor deprecated

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

Deprecated: Use FDBCLIProfileActionClientDefault.ProtoReflect.Descriptor instead.

func (*FDBCLIProfileActionClientDefault) ProtoMessage

func (*FDBCLIProfileActionClientDefault) ProtoMessage()

func (*FDBCLIProfileActionClientDefault) ProtoReflect

func (*FDBCLIProfileActionClientDefault) Reset

func (*FDBCLIProfileActionClientDefault) String

type FDBCLIProfileActionClientGet

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

func (*FDBCLIProfileActionClientGet) Descriptor deprecated

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

Deprecated: Use FDBCLIProfileActionClientGet.ProtoReflect.Descriptor instead.

func (*FDBCLIProfileActionClientGet) ProtoMessage

func (*FDBCLIProfileActionClientGet) ProtoMessage()

func (*FDBCLIProfileActionClientGet) ProtoReflect

func (*FDBCLIProfileActionClientGet) Reset

func (x *FDBCLIProfileActionClientGet) Reset()

func (*FDBCLIProfileActionClientGet) String

type FDBCLIProfileActionClientSet

type FDBCLIProfileActionClientSet struct {

	// Types that are assignable to Rate:
	//
	//	*FDBCLIProfileActionClientSet_DefaultRate
	//	*FDBCLIProfileActionClientSet_ValueRate
	Rate isFDBCLIProfileActionClientSet_Rate `protobuf_oneof:"rate"`
	// Types that are assignable to Size:
	//
	//	*FDBCLIProfileActionClientSet_DefaultSize
	//	*FDBCLIProfileActionClientSet_ValueSize
	Size isFDBCLIProfileActionClientSet_Size `protobuf_oneof:"size"`
	// contains filtered or unexported fields
}

func (*FDBCLIProfileActionClientSet) Descriptor deprecated

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

Deprecated: Use FDBCLIProfileActionClientSet.ProtoReflect.Descriptor instead.

func (*FDBCLIProfileActionClientSet) GetDefaultRate

func (*FDBCLIProfileActionClientSet) GetDefaultSize

func (*FDBCLIProfileActionClientSet) GetRate

func (m *FDBCLIProfileActionClientSet) GetRate() isFDBCLIProfileActionClientSet_Rate

func (*FDBCLIProfileActionClientSet) GetSize

func (m *FDBCLIProfileActionClientSet) GetSize() isFDBCLIProfileActionClientSet_Size

func (*FDBCLIProfileActionClientSet) GetValueRate

func (x *FDBCLIProfileActionClientSet) GetValueRate() float64

func (*FDBCLIProfileActionClientSet) GetValueSize

func (x *FDBCLIProfileActionClientSet) GetValueSize() uint64

func (*FDBCLIProfileActionClientSet) ProtoMessage

func (*FDBCLIProfileActionClientSet) ProtoMessage()

func (*FDBCLIProfileActionClientSet) ProtoReflect

func (*FDBCLIProfileActionClientSet) Reset

func (x *FDBCLIProfileActionClientSet) Reset()

func (*FDBCLIProfileActionClientSet) String

type FDBCLIProfileActionClientSet_DefaultRate

type FDBCLIProfileActionClientSet_DefaultRate struct {
	DefaultRate *FDBCLIProfileActionClientDefault `protobuf:"bytes,1,opt,name=default_rate,json=defaultRate,proto3,oneof"`
}

type FDBCLIProfileActionClientSet_DefaultSize

type FDBCLIProfileActionClientSet_DefaultSize struct {
	DefaultSize *FDBCLIProfileActionClientDefault `protobuf:"bytes,3,opt,name=default_size,json=defaultSize,proto3,oneof"`
}

type FDBCLIProfileActionClientSet_ValueRate

type FDBCLIProfileActionClientSet_ValueRate struct {
	ValueRate float64 `protobuf:"fixed64,2,opt,name=value_rate,json=valueRate,proto3,oneof"`
}

type FDBCLIProfileActionClientSet_ValueSize

type FDBCLIProfileActionClientSet_ValueSize struct {
	ValueSize uint64 `protobuf:"varint,4,opt,name=value_size,json=valueSize,proto3,oneof"`
}

type FDBCLIProfileActionClient_Get

type FDBCLIProfileActionClient_Get struct {
	Get *FDBCLIProfileActionClientGet `protobuf:"bytes,1,opt,name=get,proto3,oneof"`
}

type FDBCLIProfileActionClient_Set

type FDBCLIProfileActionClient_Set struct {
	Set *FDBCLIProfileActionClientSet `protobuf:"bytes,2,opt,name=set,proto3,oneof"`
}

type FDBCLIProfileActionFlow

type FDBCLIProfileActionFlow struct {
	Duration uint32 `protobuf:"varint,1,opt,name=duration,proto3" json:"duration,omitempty"`
	// Client should simulate file. Internally
	// handled and returned in a Log below.
	Processes []string `protobuf:"bytes,2,rep,name=processes,proto3" json:"processes,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIProfileActionFlow) Descriptor deprecated

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

Deprecated: Use FDBCLIProfileActionFlow.ProtoReflect.Descriptor instead.

func (*FDBCLIProfileActionFlow) GetDuration

func (x *FDBCLIProfileActionFlow) GetDuration() uint32

func (*FDBCLIProfileActionFlow) GetProcesses

func (x *FDBCLIProfileActionFlow) GetProcesses() []string

func (*FDBCLIProfileActionFlow) ProtoMessage

func (*FDBCLIProfileActionFlow) ProtoMessage()

func (*FDBCLIProfileActionFlow) ProtoReflect

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

func (*FDBCLIProfileActionFlow) Reset

func (x *FDBCLIProfileActionFlow) Reset()

func (*FDBCLIProfileActionFlow) String

func (x *FDBCLIProfileActionFlow) String() string

type FDBCLIProfileActionHeap

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

func (*FDBCLIProfileActionHeap) Descriptor deprecated

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

Deprecated: Use FDBCLIProfileActionHeap.ProtoReflect.Descriptor instead.

func (*FDBCLIProfileActionHeap) GetProcess

func (x *FDBCLIProfileActionHeap) GetProcess() string

func (*FDBCLIProfileActionHeap) ProtoMessage

func (*FDBCLIProfileActionHeap) ProtoMessage()

func (*FDBCLIProfileActionHeap) ProtoReflect

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

func (*FDBCLIProfileActionHeap) Reset

func (x *FDBCLIProfileActionHeap) Reset()

func (*FDBCLIProfileActionHeap) String

func (x *FDBCLIProfileActionHeap) String() string

type FDBCLIProfileActionList

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

func (*FDBCLIProfileActionList) Descriptor deprecated

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

Deprecated: Use FDBCLIProfileActionList.ProtoReflect.Descriptor instead.

func (*FDBCLIProfileActionList) ProtoMessage

func (*FDBCLIProfileActionList) ProtoMessage()

func (*FDBCLIProfileActionList) ProtoReflect

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

func (*FDBCLIProfileActionList) Reset

func (x *FDBCLIProfileActionList) Reset()

func (*FDBCLIProfileActionList) String

func (x *FDBCLIProfileActionList) String() string

type FDBCLIProfile_Client

type FDBCLIProfile_Client struct {
	Client *FDBCLIProfileActionClient `protobuf:"bytes,1,opt,name=client,proto3,oneof"`
}

type FDBCLIProfile_Flow

type FDBCLIProfile_Flow struct {
	Flow *FDBCLIProfileActionFlow `protobuf:"bytes,3,opt,name=flow,proto3,oneof"`
}

type FDBCLIProfile_Heap

type FDBCLIProfile_Heap struct {
	Heap *FDBCLIProfileActionHeap `protobuf:"bytes,4,opt,name=heap,proto3,oneof"`
}

type FDBCLIProfile_List

type FDBCLIProfile_List struct {
	List *FDBCLIProfileActionList `protobuf:"bytes,2,opt,name=list,proto3,oneof"`
}

type FDBCLIRequest

type FDBCLIRequest struct {

	// NOTE: Doesn't include status-from-json as that just prints a status
	//
	//	from a given json file which would require uploading and seems
	//	unneeded today.
	//
	// Maps to -C|--cluster-file
	Config *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`
	// Maps to –-log (if set implies --log-dir which is handled automatically)
	Log *wrapperspb.BoolValue `protobuf:"bytes,2,opt,name=log,proto3" json:"log,omitempty"`
	// Maps to –-trace-format
	TraceFormat *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=trace_format,json=traceFormat,proto3" json:"trace_format,omitempty"`
	// Maps to –-tls_certificate_file
	TlsCertificateFile *wrapperspb.StringValue `protobuf:"bytes,4,opt,name=tls_certificate_file,json=tlsCertificateFile,proto3" json:"tls_certificate_file,omitempty"`
	// Maps to –-tls_ca_file
	TlsCaFile *wrapperspb.StringValue `protobuf:"bytes,5,opt,name=tls_ca_file,json=tlsCaFile,proto3" json:"tls_ca_file,omitempty"`
	// Maps to –-tls_key_file
	TlsKeyFile *wrapperspb.StringValue `protobuf:"bytes,6,opt,name=tls_key_file,json=tlsKeyFile,proto3" json:"tls_key_file,omitempty"`
	// Maps to –-tls_password
	TlsPassword *wrapperspb.StringValue `protobuf:"bytes,7,opt,name=tls_password,json=tlsPassword,proto3" json:"tls_password,omitempty"`
	// Maps to –-tls_verify_peers
	TlsVerifyPeers *wrapperspb.StringValue `protobuf:"bytes,8,opt,name=tls_verify_peers,json=tlsVerifyPeers,proto3" json:"tls_verify_peers,omitempty"`
	// Maps to –-debug-tls
	DebugTls *wrapperspb.BoolValue `protobuf:"bytes,9,opt,name=debug_tls,json=debugTls,proto3" json:"debug_tls,omitempty"`
	// Maps to -v|--version
	Version *wrapperspb.BoolValue `protobuf:"bytes,10,opt,name=version,proto3" json:"version,omitempty"`
	// Maps to --log-group
	LogGroup *wrapperspb.StringValue `protobuf:"bytes,14,opt,name=log_group,json=logGroup,proto3" json:"log_group,omitempty"`
	// Maps to --no-status
	NoStatus *wrapperspb.BoolValue `protobuf:"bytes,15,opt,name=no_status,json=noStatus,proto3" json:"no_status,omitempty"`
	// Maps to --memory
	Memory *wrapperspb.StringValue `protobuf:"bytes,16,opt,name=memory,proto3" json:"memory,omitempty"`
	// Maps to --build-flags
	BuildFlags *wrapperspb.BoolValue `protobuf:"bytes,17,opt,name=build_flags,json=buildFlags,proto3" json:"build_flags,omitempty"`
	// Maps to --timeout
	Timeout *wrapperspb.Int32Value `protobuf:"bytes,18,opt,name=timeout,proto3" json:"timeout,omitempty"`
	// Maps to --knob_<knob_name>=<knob_value>
	// Provide a comma-separated list in the form "<knob_name1>=<knob_value1>,<knob_name2>=<knob_value2>, ..."
	Knobs    *wrapperspb.StringValue `protobuf:"bytes,21,opt,name=knobs,proto3" json:"knobs,omitempty"`
	Commands []*FDBCLICommand        `protobuf:"bytes,19,rep,name=commands,proto3" json:"commands,omitempty"`
	// contains filtered or unexported fields
}

FDBCLIRequest defines the fdbcli command(s) to run. This will replicate fdbcli --exec "command(s)" (where N commands are separated by ;) NEXT: 20

func (*FDBCLIRequest) Descriptor deprecated

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

Deprecated: Use FDBCLIRequest.ProtoReflect.Descriptor instead.

func (*FDBCLIRequest) GetBuildFlags

func (x *FDBCLIRequest) GetBuildFlags() *wrapperspb.BoolValue

func (*FDBCLIRequest) GetCommands added in v1.8.0

func (x *FDBCLIRequest) GetCommands() []*FDBCLICommand

func (*FDBCLIRequest) GetConfig

func (x *FDBCLIRequest) GetConfig() *wrapperspb.StringValue

func (*FDBCLIRequest) GetDebugTls

func (x *FDBCLIRequest) GetDebugTls() *wrapperspb.BoolValue

func (*FDBCLIRequest) GetKnobs added in v1.24.0

func (x *FDBCLIRequest) GetKnobs() *wrapperspb.StringValue

func (*FDBCLIRequest) GetLog

func (x *FDBCLIRequest) GetLog() *wrapperspb.BoolValue

func (*FDBCLIRequest) GetLogGroup

func (x *FDBCLIRequest) GetLogGroup() *wrapperspb.StringValue

func (*FDBCLIRequest) GetMemory

func (x *FDBCLIRequest) GetMemory() *wrapperspb.StringValue

func (*FDBCLIRequest) GetNoStatus

func (x *FDBCLIRequest) GetNoStatus() *wrapperspb.BoolValue

func (*FDBCLIRequest) GetTimeout

func (x *FDBCLIRequest) GetTimeout() *wrapperspb.Int32Value

func (*FDBCLIRequest) GetTlsCaFile

func (x *FDBCLIRequest) GetTlsCaFile() *wrapperspb.StringValue

func (*FDBCLIRequest) GetTlsCertificateFile

func (x *FDBCLIRequest) GetTlsCertificateFile() *wrapperspb.StringValue

func (*FDBCLIRequest) GetTlsKeyFile

func (x *FDBCLIRequest) GetTlsKeyFile() *wrapperspb.StringValue

func (*FDBCLIRequest) GetTlsPassword

func (x *FDBCLIRequest) GetTlsPassword() *wrapperspb.StringValue

func (*FDBCLIRequest) GetTlsVerifyPeers

func (x *FDBCLIRequest) GetTlsVerifyPeers() *wrapperspb.StringValue

func (*FDBCLIRequest) GetTraceFormat

func (x *FDBCLIRequest) GetTraceFormat() *wrapperspb.StringValue

func (*FDBCLIRequest) GetVersion

func (x *FDBCLIRequest) GetVersion() *wrapperspb.BoolValue

func (*FDBCLIRequest) ProtoMessage

func (*FDBCLIRequest) ProtoMessage()

func (*FDBCLIRequest) ProtoReflect

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

func (*FDBCLIRequest) Reset

func (x *FDBCLIRequest) Reset()

func (*FDBCLIRequest) String

func (x *FDBCLIRequest) String() string

type FDBCLIResponse

type FDBCLIResponse struct {

	// Types that are assignable to Response:
	//
	//	*FDBCLIResponse_Output
	//	*FDBCLIResponse_Log
	Response isFDBCLIResponse_Response `protobuf_oneof:"response"`
	// contains filtered or unexported fields
}

func (*FDBCLIResponse) Descriptor deprecated

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

Deprecated: Use FDBCLIResponse.ProtoReflect.Descriptor instead.

func (*FDBCLIResponse) GetLog

func (x *FDBCLIResponse) GetLog() *Log

func (*FDBCLIResponse) GetOutput

func (x *FDBCLIResponse) GetOutput() *FDBCLIResponseOutput

func (*FDBCLIResponse) GetResponse

func (m *FDBCLIResponse) GetResponse() isFDBCLIResponse_Response

func (*FDBCLIResponse) ProtoMessage

func (*FDBCLIResponse) ProtoMessage()

func (*FDBCLIResponse) ProtoReflect

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

func (*FDBCLIResponse) Reset

func (x *FDBCLIResponse) Reset()

func (*FDBCLIResponse) String

func (x *FDBCLIResponse) String() string

type FDBCLIResponseOutput

type FDBCLIResponseOutput struct {
	Stdout  []byte `protobuf:"bytes,1,opt,name=stdout,proto3" json:"stdout,omitempty"`
	Stderr  []byte `protobuf:"bytes,2,opt,name=stderr,proto3" json:"stderr,omitempty"`
	RetCode int32  `protobuf:"varint,3,opt,name=retCode,proto3" json:"retCode,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIResponseOutput) Descriptor deprecated

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

Deprecated: Use FDBCLIResponseOutput.ProtoReflect.Descriptor instead.

func (*FDBCLIResponseOutput) GetRetCode

func (x *FDBCLIResponseOutput) GetRetCode() int32

func (*FDBCLIResponseOutput) GetStderr

func (x *FDBCLIResponseOutput) GetStderr() []byte

func (*FDBCLIResponseOutput) GetStdout

func (x *FDBCLIResponseOutput) GetStdout() []byte

func (*FDBCLIResponseOutput) ProtoMessage

func (*FDBCLIResponseOutput) ProtoMessage()

func (*FDBCLIResponseOutput) ProtoReflect

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

func (*FDBCLIResponseOutput) Reset

func (x *FDBCLIResponseOutput) Reset()

func (*FDBCLIResponseOutput) String

func (x *FDBCLIResponseOutput) String() string

type FDBCLIResponse_Log

type FDBCLIResponse_Log struct {
	// Log will steam back any logfiles generated sequentially.
	// When filename changes a new log has begun and the previous completed.
	Log *Log `protobuf:"bytes,2,opt,name=log,proto3,oneof"`
}

type FDBCLIResponse_Output

type FDBCLIResponse_Output struct {
	Output *FDBCLIResponseOutput `protobuf:"bytes,1,opt,name=output,proto3,oneof"`
}

type FDBCLISet

type FDBCLISet struct {
	Key   string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLISet) Descriptor deprecated

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

Deprecated: Use FDBCLISet.ProtoReflect.Descriptor instead.

func (*FDBCLISet) GetKey

func (x *FDBCLISet) GetKey() string

func (*FDBCLISet) GetValue

func (x *FDBCLISet) GetValue() string

func (*FDBCLISet) ProtoMessage

func (*FDBCLISet) ProtoMessage()

func (*FDBCLISet) ProtoReflect

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

func (*FDBCLISet) Reset

func (x *FDBCLISet) Reset()

func (*FDBCLISet) String

func (x *FDBCLISet) String() string

type FDBCLISetclass

type FDBCLISetclass struct {

	// Types that are assignable to Request:
	//
	//	*FDBCLISetclass_List
	//	*FDBCLISetclass_Arg
	Request isFDBCLISetclass_Request `protobuf_oneof:"request"`
	// contains filtered or unexported fields
}

func (*FDBCLISetclass) Descriptor deprecated

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

Deprecated: Use FDBCLISetclass.ProtoReflect.Descriptor instead.

func (*FDBCLISetclass) GetArg

func (x *FDBCLISetclass) GetArg() *FDBCLISetclassArg

func (*FDBCLISetclass) GetList

func (x *FDBCLISetclass) GetList() *FDBCLISetclassList

func (*FDBCLISetclass) GetRequest

func (m *FDBCLISetclass) GetRequest() isFDBCLISetclass_Request

func (*FDBCLISetclass) ProtoMessage

func (*FDBCLISetclass) ProtoMessage()

func (*FDBCLISetclass) ProtoReflect

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

func (*FDBCLISetclass) Reset

func (x *FDBCLISetclass) Reset()

func (*FDBCLISetclass) String

func (x *FDBCLISetclass) String() string

type FDBCLISetclassArg

type FDBCLISetclassArg struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Class   string `protobuf:"bytes,2,opt,name=class,proto3" json:"class,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLISetclassArg) Descriptor deprecated

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

Deprecated: Use FDBCLISetclassArg.ProtoReflect.Descriptor instead.

func (*FDBCLISetclassArg) GetAddress

func (x *FDBCLISetclassArg) GetAddress() string

func (*FDBCLISetclassArg) GetClass

func (x *FDBCLISetclassArg) GetClass() string

func (*FDBCLISetclassArg) ProtoMessage

func (*FDBCLISetclassArg) ProtoMessage()

func (*FDBCLISetclassArg) ProtoReflect

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

func (*FDBCLISetclassArg) Reset

func (x *FDBCLISetclassArg) Reset()

func (*FDBCLISetclassArg) String

func (x *FDBCLISetclassArg) String() string

type FDBCLISetclassList

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

Use this message to indicate no arguments to setclass

func (*FDBCLISetclassList) Descriptor deprecated

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

Deprecated: Use FDBCLISetclassList.ProtoReflect.Descriptor instead.

func (*FDBCLISetclassList) ProtoMessage

func (*FDBCLISetclassList) ProtoMessage()

func (*FDBCLISetclassList) ProtoReflect

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

func (*FDBCLISetclassList) Reset

func (x *FDBCLISetclassList) Reset()

func (*FDBCLISetclassList) String

func (x *FDBCLISetclassList) String() string

type FDBCLISetclass_Arg

type FDBCLISetclass_Arg struct {
	Arg *FDBCLISetclassArg `protobuf:"bytes,2,opt,name=arg,proto3,oneof"`
}

type FDBCLISetclass_List

type FDBCLISetclass_List struct {
	List *FDBCLISetclassList `protobuf:"bytes,1,opt,name=list,proto3,oneof"`
}

type FDBCLISleep

type FDBCLISleep struct {
	Seconds uint32 `protobuf:"varint,1,opt,name=seconds,proto3" json:"seconds,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLISleep) Descriptor deprecated

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

Deprecated: Use FDBCLISleep.ProtoReflect.Descriptor instead.

func (*FDBCLISleep) GetSeconds

func (x *FDBCLISleep) GetSeconds() uint32

func (*FDBCLISleep) ProtoMessage

func (*FDBCLISleep) ProtoMessage()

func (*FDBCLISleep) ProtoReflect

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

func (*FDBCLISleep) Reset

func (x *FDBCLISleep) Reset()

func (*FDBCLISleep) String

func (x *FDBCLISleep) String() string

type FDBCLISnapshot added in v1.8.0

type FDBCLISnapshot struct {
	Command string   `protobuf:"bytes,1,opt,name=command,proto3" json:"command,omitempty"`
	Options []string `protobuf:"bytes,2,rep,name=options,proto3" json:"options,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLISnapshot) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLISnapshot.ProtoReflect.Descriptor instead.

func (*FDBCLISnapshot) GetCommand added in v1.8.0

func (x *FDBCLISnapshot) GetCommand() string

func (*FDBCLISnapshot) GetOptions added in v1.8.0

func (x *FDBCLISnapshot) GetOptions() []string

func (*FDBCLISnapshot) ProtoMessage added in v1.8.0

func (*FDBCLISnapshot) ProtoMessage()

func (*FDBCLISnapshot) ProtoReflect added in v1.8.0

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

func (*FDBCLISnapshot) Reset added in v1.8.0

func (x *FDBCLISnapshot) Reset()

func (*FDBCLISnapshot) String added in v1.8.0

func (x *FDBCLISnapshot) String() string

type FDBCLIStatus

type FDBCLIStatus struct {
	Style *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=style,proto3" json:"style,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIStatus) Descriptor deprecated

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

Deprecated: Use FDBCLIStatus.ProtoReflect.Descriptor instead.

func (*FDBCLIStatus) GetStyle

func (x *FDBCLIStatus) GetStyle() *wrapperspb.StringValue

func (*FDBCLIStatus) ProtoMessage

func (*FDBCLIStatus) ProtoMessage()

func (*FDBCLIStatus) ProtoReflect

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

func (*FDBCLIStatus) Reset

func (x *FDBCLIStatus) Reset()

func (*FDBCLIStatus) String

func (x *FDBCLIStatus) String() string

type FDBCLISuspend added in v1.8.0

type FDBCLISuspend struct {

	// Types that are assignable to Request:
	//
	//	*FDBCLISuspend_Init
	//	*FDBCLISuspend_Suspend
	Request isFDBCLISuspend_Request `protobuf_oneof:"request"`
	// contains filtered or unexported fields
}

func (*FDBCLISuspend) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLISuspend.ProtoReflect.Descriptor instead.

func (*FDBCLISuspend) GetInit added in v1.8.0

func (x *FDBCLISuspend) GetInit() *FDBCLISuspendInit

func (*FDBCLISuspend) GetRequest added in v1.8.0

func (m *FDBCLISuspend) GetRequest() isFDBCLISuspend_Request

func (*FDBCLISuspend) GetSuspend added in v1.8.0

func (x *FDBCLISuspend) GetSuspend() *FDBCLISuspendSuspend

func (*FDBCLISuspend) ProtoMessage added in v1.8.0

func (*FDBCLISuspend) ProtoMessage()

func (*FDBCLISuspend) ProtoReflect added in v1.8.0

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

func (*FDBCLISuspend) Reset added in v1.8.0

func (x *FDBCLISuspend) Reset()

func (*FDBCLISuspend) String added in v1.8.0

func (x *FDBCLISuspend) String() string

type FDBCLISuspendInit added in v1.8.0

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

func (*FDBCLISuspendInit) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLISuspendInit.ProtoReflect.Descriptor instead.

func (*FDBCLISuspendInit) ProtoMessage added in v1.8.0

func (*FDBCLISuspendInit) ProtoMessage()

func (*FDBCLISuspendInit) ProtoReflect added in v1.8.0

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

func (*FDBCLISuspendInit) Reset added in v1.8.0

func (x *FDBCLISuspendInit) Reset()

func (*FDBCLISuspendInit) String added in v1.8.0

func (x *FDBCLISuspendInit) String() string

type FDBCLISuspendSuspend added in v1.8.0

type FDBCLISuspendSuspend struct {
	Seconds   float64  `protobuf:"fixed64,1,opt,name=seconds,proto3" json:"seconds,omitempty"`
	Addresses []string `protobuf:"bytes,2,rep,name=addresses,proto3" json:"addresses,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLISuspendSuspend) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLISuspendSuspend.ProtoReflect.Descriptor instead.

func (*FDBCLISuspendSuspend) GetAddresses added in v1.8.0

func (x *FDBCLISuspendSuspend) GetAddresses() []string

func (*FDBCLISuspendSuspend) GetSeconds added in v1.8.0

func (x *FDBCLISuspendSuspend) GetSeconds() float64

func (*FDBCLISuspendSuspend) ProtoMessage added in v1.8.0

func (*FDBCLISuspendSuspend) ProtoMessage()

func (*FDBCLISuspendSuspend) ProtoReflect added in v1.8.0

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

func (*FDBCLISuspendSuspend) Reset added in v1.8.0

func (x *FDBCLISuspendSuspend) Reset()

func (*FDBCLISuspendSuspend) String added in v1.8.0

func (x *FDBCLISuspendSuspend) String() string

type FDBCLISuspend_Init added in v1.8.0

type FDBCLISuspend_Init struct {
	Init *FDBCLISuspendInit `protobuf:"bytes,1,opt,name=init,proto3,oneof"`
}

type FDBCLISuspend_Suspend added in v1.8.0

type FDBCLISuspend_Suspend struct {
	Suspend *FDBCLISuspendSuspend `protobuf:"bytes,2,opt,name=suspend,proto3,oneof"`
}

type FDBCLITenantEmergencyMove added in v1.23.5

type FDBCLITenantEmergencyMove struct {

	// Types that are assignable to Request:
	//
	//	*FDBCLITenantEmergencyMove_Start
	//	*FDBCLITenantEmergencyMove_Switch
	//	*FDBCLITenantEmergencyMove_Finish
	//	*FDBCLITenantEmergencyMove_Abort
	//	*FDBCLITenantEmergencyMove_Status
	Request isFDBCLITenantEmergencyMove_Request `protobuf_oneof:"request"`
	// contains filtered or unexported fields
}

func (*FDBCLITenantEmergencyMove) Descriptor deprecated added in v1.23.5

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

Deprecated: Use FDBCLITenantEmergencyMove.ProtoReflect.Descriptor instead.

func (*FDBCLITenantEmergencyMove) GetAbort added in v1.23.5

func (*FDBCLITenantEmergencyMove) GetFinish added in v1.23.5

func (*FDBCLITenantEmergencyMove) GetRequest added in v1.23.5

func (m *FDBCLITenantEmergencyMove) GetRequest() isFDBCLITenantEmergencyMove_Request

func (*FDBCLITenantEmergencyMove) GetStart added in v1.23.5

func (*FDBCLITenantEmergencyMove) GetStatus added in v1.23.5

func (*FDBCLITenantEmergencyMove) GetSwitch added in v1.23.5

func (*FDBCLITenantEmergencyMove) ProtoMessage added in v1.23.5

func (*FDBCLITenantEmergencyMove) ProtoMessage()

func (*FDBCLITenantEmergencyMove) ProtoReflect added in v1.23.5

func (*FDBCLITenantEmergencyMove) Reset added in v1.23.5

func (x *FDBCLITenantEmergencyMove) Reset()

func (*FDBCLITenantEmergencyMove) String added in v1.23.5

func (x *FDBCLITenantEmergencyMove) String() string

type FDBCLITenantEmergencyMoveAbort added in v1.23.5

type FDBCLITenantEmergencyMoveAbort struct {
	TenantGroup        string `protobuf:"bytes,1,opt,name=tenant_group,json=tenantGroup,proto3" json:"tenant_group,omitempty"`
	SourceCluster      string `protobuf:"bytes,2,opt,name=source_cluster,json=sourceCluster,proto3" json:"source_cluster,omitempty"`
	DestinationCluster string `protobuf:"bytes,3,opt,name=destination_cluster,json=destinationCluster,proto3" json:"destination_cluster,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLITenantEmergencyMoveAbort) Descriptor deprecated added in v1.23.5

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

Deprecated: Use FDBCLITenantEmergencyMoveAbort.ProtoReflect.Descriptor instead.

func (*FDBCLITenantEmergencyMoveAbort) GetDestinationCluster added in v1.23.5

func (x *FDBCLITenantEmergencyMoveAbort) GetDestinationCluster() string

func (*FDBCLITenantEmergencyMoveAbort) GetSourceCluster added in v1.23.5

func (x *FDBCLITenantEmergencyMoveAbort) GetSourceCluster() string

func (*FDBCLITenantEmergencyMoveAbort) GetTenantGroup added in v1.23.5

func (x *FDBCLITenantEmergencyMoveAbort) GetTenantGroup() string

func (*FDBCLITenantEmergencyMoveAbort) ProtoMessage added in v1.23.5

func (*FDBCLITenantEmergencyMoveAbort) ProtoMessage()

func (*FDBCLITenantEmergencyMoveAbort) ProtoReflect added in v1.23.5

func (*FDBCLITenantEmergencyMoveAbort) Reset added in v1.23.5

func (x *FDBCLITenantEmergencyMoveAbort) Reset()

func (*FDBCLITenantEmergencyMoveAbort) String added in v1.23.5

type FDBCLITenantEmergencyMoveFinish added in v1.23.5

type FDBCLITenantEmergencyMoveFinish struct {
	TenantGroup        string `protobuf:"bytes,1,opt,name=tenant_group,json=tenantGroup,proto3" json:"tenant_group,omitempty"`
	SourceCluster      string `protobuf:"bytes,2,opt,name=source_cluster,json=sourceCluster,proto3" json:"source_cluster,omitempty"`
	DestinationCluster string `protobuf:"bytes,3,opt,name=destination_cluster,json=destinationCluster,proto3" json:"destination_cluster,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLITenantEmergencyMoveFinish) Descriptor deprecated added in v1.23.5

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

Deprecated: Use FDBCLITenantEmergencyMoveFinish.ProtoReflect.Descriptor instead.

func (*FDBCLITenantEmergencyMoveFinish) GetDestinationCluster added in v1.23.5

func (x *FDBCLITenantEmergencyMoveFinish) GetDestinationCluster() string

func (*FDBCLITenantEmergencyMoveFinish) GetSourceCluster added in v1.23.5

func (x *FDBCLITenantEmergencyMoveFinish) GetSourceCluster() string

func (*FDBCLITenantEmergencyMoveFinish) GetTenantGroup added in v1.23.5

func (x *FDBCLITenantEmergencyMoveFinish) GetTenantGroup() string

func (*FDBCLITenantEmergencyMoveFinish) ProtoMessage added in v1.23.5

func (*FDBCLITenantEmergencyMoveFinish) ProtoMessage()

func (*FDBCLITenantEmergencyMoveFinish) ProtoReflect added in v1.23.5

func (*FDBCLITenantEmergencyMoveFinish) Reset added in v1.23.5

func (*FDBCLITenantEmergencyMoveFinish) String added in v1.23.5

type FDBCLITenantEmergencyMoveStart added in v1.23.5

type FDBCLITenantEmergencyMoveStart struct {
	TenantGroup        string `protobuf:"bytes,1,opt,name=tenant_group,json=tenantGroup,proto3" json:"tenant_group,omitempty"`
	SourceCluster      string `protobuf:"bytes,2,opt,name=source_cluster,json=sourceCluster,proto3" json:"source_cluster,omitempty"`
	DestinationCluster string `protobuf:"bytes,3,opt,name=destination_cluster,json=destinationCluster,proto3" json:"destination_cluster,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLITenantEmergencyMoveStart) Descriptor deprecated added in v1.23.5

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

Deprecated: Use FDBCLITenantEmergencyMoveStart.ProtoReflect.Descriptor instead.

func (*FDBCLITenantEmergencyMoveStart) GetDestinationCluster added in v1.23.5

func (x *FDBCLITenantEmergencyMoveStart) GetDestinationCluster() string

func (*FDBCLITenantEmergencyMoveStart) GetSourceCluster added in v1.23.5

func (x *FDBCLITenantEmergencyMoveStart) GetSourceCluster() string

func (*FDBCLITenantEmergencyMoveStart) GetTenantGroup added in v1.23.5

func (x *FDBCLITenantEmergencyMoveStart) GetTenantGroup() string

func (*FDBCLITenantEmergencyMoveStart) ProtoMessage added in v1.23.5

func (*FDBCLITenantEmergencyMoveStart) ProtoMessage()

func (*FDBCLITenantEmergencyMoveStart) ProtoReflect added in v1.23.5

func (*FDBCLITenantEmergencyMoveStart) Reset added in v1.23.5

func (x *FDBCLITenantEmergencyMoveStart) Reset()

func (*FDBCLITenantEmergencyMoveStart) String added in v1.23.5

type FDBCLITenantEmergencyMoveStatus added in v1.23.5

type FDBCLITenantEmergencyMoveStatus struct {
	TenantGroup string `protobuf:"bytes,1,opt,name=tenant_group,json=tenantGroup,proto3" json:"tenant_group,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLITenantEmergencyMoveStatus) Descriptor deprecated added in v1.23.5

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

Deprecated: Use FDBCLITenantEmergencyMoveStatus.ProtoReflect.Descriptor instead.

func (*FDBCLITenantEmergencyMoveStatus) GetTenantGroup added in v1.23.5

func (x *FDBCLITenantEmergencyMoveStatus) GetTenantGroup() string

func (*FDBCLITenantEmergencyMoveStatus) ProtoMessage added in v1.23.5

func (*FDBCLITenantEmergencyMoveStatus) ProtoMessage()

func (*FDBCLITenantEmergencyMoveStatus) ProtoReflect added in v1.23.5

func (*FDBCLITenantEmergencyMoveStatus) Reset added in v1.23.5

func (*FDBCLITenantEmergencyMoveStatus) String added in v1.23.5

type FDBCLITenantEmergencyMoveSwitch added in v1.23.5

type FDBCLITenantEmergencyMoveSwitch struct {
	TenantGroup        string `protobuf:"bytes,1,opt,name=tenant_group,json=tenantGroup,proto3" json:"tenant_group,omitempty"`
	SourceCluster      string `protobuf:"bytes,2,opt,name=source_cluster,json=sourceCluster,proto3" json:"source_cluster,omitempty"`
	DestinationCluster string `protobuf:"bytes,3,opt,name=destination_cluster,json=destinationCluster,proto3" json:"destination_cluster,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLITenantEmergencyMoveSwitch) Descriptor deprecated added in v1.23.5

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

Deprecated: Use FDBCLITenantEmergencyMoveSwitch.ProtoReflect.Descriptor instead.

func (*FDBCLITenantEmergencyMoveSwitch) GetDestinationCluster added in v1.23.5

func (x *FDBCLITenantEmergencyMoveSwitch) GetDestinationCluster() string

func (*FDBCLITenantEmergencyMoveSwitch) GetSourceCluster added in v1.23.5

func (x *FDBCLITenantEmergencyMoveSwitch) GetSourceCluster() string

func (*FDBCLITenantEmergencyMoveSwitch) GetTenantGroup added in v1.23.5

func (x *FDBCLITenantEmergencyMoveSwitch) GetTenantGroup() string

func (*FDBCLITenantEmergencyMoveSwitch) ProtoMessage added in v1.23.5

func (*FDBCLITenantEmergencyMoveSwitch) ProtoMessage()

func (*FDBCLITenantEmergencyMoveSwitch) ProtoReflect added in v1.23.5

func (*FDBCLITenantEmergencyMoveSwitch) Reset added in v1.23.5

func (*FDBCLITenantEmergencyMoveSwitch) String added in v1.23.5

type FDBCLITenantEmergencyMove_Abort added in v1.23.5

type FDBCLITenantEmergencyMove_Abort struct {
	Abort *FDBCLITenantEmergencyMoveAbort `protobuf:"bytes,4,opt,name=abort,proto3,oneof"`
}

type FDBCLITenantEmergencyMove_Finish added in v1.23.5

type FDBCLITenantEmergencyMove_Finish struct {
	Finish *FDBCLITenantEmergencyMoveFinish `protobuf:"bytes,3,opt,name=finish,proto3,oneof"`
}

type FDBCLITenantEmergencyMove_Start added in v1.23.5

type FDBCLITenantEmergencyMove_Start struct {
	Start *FDBCLITenantEmergencyMoveStart `protobuf:"bytes,1,opt,name=start,proto3,oneof"`
}

type FDBCLITenantEmergencyMove_Status added in v1.23.5

type FDBCLITenantEmergencyMove_Status struct {
	Status *FDBCLITenantEmergencyMoveStatus `protobuf:"bytes,5,opt,name=status,proto3,oneof"`
}

type FDBCLITenantEmergencyMove_Switch added in v1.23.5

type FDBCLITenantEmergencyMove_Switch struct {
	Switch *FDBCLITenantEmergencyMoveSwitch `protobuf:"bytes,2,opt,name=switch,proto3,oneof"`
}

type FDBCLIThrottle

type FDBCLIThrottle struct {

	// Types that are assignable to Request:
	//
	//	*FDBCLIThrottle_On
	//	*FDBCLIThrottle_Off
	//	*FDBCLIThrottle_Enable
	//	*FDBCLIThrottle_Disable
	//	*FDBCLIThrottle_List
	Request isFDBCLIThrottle_Request `protobuf_oneof:"request"`
	// contains filtered or unexported fields
}

func (*FDBCLIThrottle) Descriptor deprecated

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

Deprecated: Use FDBCLIThrottle.ProtoReflect.Descriptor instead.

func (*FDBCLIThrottle) GetDisable

func (*FDBCLIThrottle) GetEnable

func (*FDBCLIThrottle) GetList

func (*FDBCLIThrottle) GetOff

func (*FDBCLIThrottle) GetOn

func (*FDBCLIThrottle) GetRequest

func (m *FDBCLIThrottle) GetRequest() isFDBCLIThrottle_Request

func (*FDBCLIThrottle) ProtoMessage

func (*FDBCLIThrottle) ProtoMessage()

func (*FDBCLIThrottle) ProtoReflect

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

func (*FDBCLIThrottle) Reset

func (x *FDBCLIThrottle) Reset()

func (*FDBCLIThrottle) String

func (x *FDBCLIThrottle) String() string

type FDBCLIThrottleActionDisable

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

func (*FDBCLIThrottleActionDisable) Descriptor deprecated

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

Deprecated: Use FDBCLIThrottleActionDisable.ProtoReflect.Descriptor instead.

func (*FDBCLIThrottleActionDisable) ProtoMessage

func (*FDBCLIThrottleActionDisable) ProtoMessage()

func (*FDBCLIThrottleActionDisable) ProtoReflect

func (*FDBCLIThrottleActionDisable) Reset

func (x *FDBCLIThrottleActionDisable) Reset()

func (*FDBCLIThrottleActionDisable) String

func (x *FDBCLIThrottleActionDisable) String() string

type FDBCLIThrottleActionEnable

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

func (*FDBCLIThrottleActionEnable) Descriptor deprecated

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

Deprecated: Use FDBCLIThrottleActionEnable.ProtoReflect.Descriptor instead.

func (*FDBCLIThrottleActionEnable) ProtoMessage

func (*FDBCLIThrottleActionEnable) ProtoMessage()

func (*FDBCLIThrottleActionEnable) ProtoReflect

func (*FDBCLIThrottleActionEnable) Reset

func (x *FDBCLIThrottleActionEnable) Reset()

func (*FDBCLIThrottleActionEnable) String

func (x *FDBCLIThrottleActionEnable) String() string

type FDBCLIThrottleActionList

type FDBCLIThrottleActionList struct {
	Type  *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Limit *wrapperspb.UInt32Value `protobuf:"bytes,2,opt,name=limit,proto3" json:"limit,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIThrottleActionList) Descriptor deprecated

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

Deprecated: Use FDBCLIThrottleActionList.ProtoReflect.Descriptor instead.

func (*FDBCLIThrottleActionList) GetLimit

func (*FDBCLIThrottleActionList) GetType

func (*FDBCLIThrottleActionList) ProtoMessage

func (*FDBCLIThrottleActionList) ProtoMessage()

func (*FDBCLIThrottleActionList) ProtoReflect

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

func (*FDBCLIThrottleActionList) Reset

func (x *FDBCLIThrottleActionList) Reset()

func (*FDBCLIThrottleActionList) String

func (x *FDBCLIThrottleActionList) String() string

type FDBCLIThrottleActionOff

type FDBCLIThrottleActionOff struct {
	Type     *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Tag      *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=tag,proto3" json:"tag,omitempty"`
	Priority *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=priority,proto3" json:"priority,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIThrottleActionOff) Descriptor deprecated

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

Deprecated: Use FDBCLIThrottleActionOff.ProtoReflect.Descriptor instead.

func (*FDBCLIThrottleActionOff) GetPriority

func (*FDBCLIThrottleActionOff) GetTag

func (*FDBCLIThrottleActionOff) GetType

func (*FDBCLIThrottleActionOff) ProtoMessage

func (*FDBCLIThrottleActionOff) ProtoMessage()

func (*FDBCLIThrottleActionOff) ProtoReflect

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

func (*FDBCLIThrottleActionOff) Reset

func (x *FDBCLIThrottleActionOff) Reset()

func (*FDBCLIThrottleActionOff) String

func (x *FDBCLIThrottleActionOff) String() string

type FDBCLIThrottleActionOn

type FDBCLIThrottleActionOn struct {
	Tag      string                  `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
	Rate     *wrapperspb.UInt32Value `protobuf:"bytes,2,opt,name=rate,proto3" json:"rate,omitempty"`
	Duration *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=duration,proto3" json:"duration,omitempty"`
	Priority *wrapperspb.StringValue `protobuf:"bytes,4,opt,name=priority,proto3" json:"priority,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIThrottleActionOn) Descriptor deprecated

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

Deprecated: Use FDBCLIThrottleActionOn.ProtoReflect.Descriptor instead.

func (*FDBCLIThrottleActionOn) GetDuration

func (x *FDBCLIThrottleActionOn) GetDuration() *wrapperspb.StringValue

func (*FDBCLIThrottleActionOn) GetPriority

func (x *FDBCLIThrottleActionOn) GetPriority() *wrapperspb.StringValue

func (*FDBCLIThrottleActionOn) GetRate

func (*FDBCLIThrottleActionOn) GetTag

func (x *FDBCLIThrottleActionOn) GetTag() string

func (*FDBCLIThrottleActionOn) ProtoMessage

func (*FDBCLIThrottleActionOn) ProtoMessage()

func (*FDBCLIThrottleActionOn) ProtoReflect

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

func (*FDBCLIThrottleActionOn) Reset

func (x *FDBCLIThrottleActionOn) Reset()

func (*FDBCLIThrottleActionOn) String

func (x *FDBCLIThrottleActionOn) String() string

type FDBCLIThrottle_Disable

type FDBCLIThrottle_Disable struct {
	Disable *FDBCLIThrottleActionDisable `protobuf:"bytes,4,opt,name=disable,proto3,oneof"`
}

type FDBCLIThrottle_Enable

type FDBCLIThrottle_Enable struct {
	Enable *FDBCLIThrottleActionEnable `protobuf:"bytes,3,opt,name=enable,proto3,oneof"`
}

type FDBCLIThrottle_List

type FDBCLIThrottle_List struct {
	List *FDBCLIThrottleActionList `protobuf:"bytes,5,opt,name=list,proto3,oneof"`
}

type FDBCLIThrottle_Off

type FDBCLIThrottle_Off struct {
	Off *FDBCLIThrottleActionOff `protobuf:"bytes,2,opt,name=off,proto3,oneof"`
}

type FDBCLIThrottle_On

type FDBCLIThrottle_On struct {
	On *FDBCLIThrottleActionOn `protobuf:"bytes,1,opt,name=on,proto3,oneof"`
}

type FDBCLITriggerddteaminfolog

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

func (*FDBCLITriggerddteaminfolog) Descriptor deprecated

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

Deprecated: Use FDBCLITriggerddteaminfolog.ProtoReflect.Descriptor instead.

func (*FDBCLITriggerddteaminfolog) ProtoMessage

func (*FDBCLITriggerddteaminfolog) ProtoMessage()

func (*FDBCLITriggerddteaminfolog) ProtoReflect

func (*FDBCLITriggerddteaminfolog) Reset

func (x *FDBCLITriggerddteaminfolog) Reset()

func (*FDBCLITriggerddteaminfolog) String

func (x *FDBCLITriggerddteaminfolog) String() string

type FDBCLITssq

type FDBCLITssq struct {

	// Types that are assignable to Request:
	//
	//	*FDBCLITssq_Start
	//	*FDBCLITssq_Stop
	//	*FDBCLITssq_List
	Request isFDBCLITssq_Request `protobuf_oneof:"request"`
	// contains filtered or unexported fields
}

func (*FDBCLITssq) Descriptor deprecated

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

Deprecated: Use FDBCLITssq.ProtoReflect.Descriptor instead.

func (*FDBCLITssq) GetList

func (x *FDBCLITssq) GetList() *FDBCLITssqList

func (*FDBCLITssq) GetRequest

func (m *FDBCLITssq) GetRequest() isFDBCLITssq_Request

func (*FDBCLITssq) GetStart

func (x *FDBCLITssq) GetStart() *FDBCLITssqStart

func (*FDBCLITssq) GetStop

func (x *FDBCLITssq) GetStop() *FDBCLITssqStop

func (*FDBCLITssq) ProtoMessage

func (*FDBCLITssq) ProtoMessage()

func (*FDBCLITssq) ProtoReflect

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

func (*FDBCLITssq) Reset

func (x *FDBCLITssq) Reset()

func (*FDBCLITssq) String

func (x *FDBCLITssq) String() string

type FDBCLITssqList

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

func (*FDBCLITssqList) Descriptor deprecated

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

Deprecated: Use FDBCLITssqList.ProtoReflect.Descriptor instead.

func (*FDBCLITssqList) ProtoMessage

func (*FDBCLITssqList) ProtoMessage()

func (*FDBCLITssqList) ProtoReflect

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

func (*FDBCLITssqList) Reset

func (x *FDBCLITssqList) Reset()

func (*FDBCLITssqList) String

func (x *FDBCLITssqList) String() string

type FDBCLITssqStart

type FDBCLITssqStart struct {
	StorageUid string `protobuf:"bytes,1,opt,name=storage_uid,json=storageUid,proto3" json:"storage_uid,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLITssqStart) Descriptor deprecated

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

Deprecated: Use FDBCLITssqStart.ProtoReflect.Descriptor instead.

func (*FDBCLITssqStart) GetStorageUid

func (x *FDBCLITssqStart) GetStorageUid() string

func (*FDBCLITssqStart) ProtoMessage

func (*FDBCLITssqStart) ProtoMessage()

func (*FDBCLITssqStart) ProtoReflect

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

func (*FDBCLITssqStart) Reset

func (x *FDBCLITssqStart) Reset()

func (*FDBCLITssqStart) String

func (x *FDBCLITssqStart) String() string

type FDBCLITssqStop

type FDBCLITssqStop struct {
	StorageUid string `protobuf:"bytes,1,opt,name=storage_uid,json=storageUid,proto3" json:"storage_uid,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLITssqStop) Descriptor deprecated

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

Deprecated: Use FDBCLITssqStop.ProtoReflect.Descriptor instead.

func (*FDBCLITssqStop) GetStorageUid

func (x *FDBCLITssqStop) GetStorageUid() string

func (*FDBCLITssqStop) ProtoMessage

func (*FDBCLITssqStop) ProtoMessage()

func (*FDBCLITssqStop) ProtoReflect

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

func (*FDBCLITssqStop) Reset

func (x *FDBCLITssqStop) Reset()

func (*FDBCLITssqStop) String

func (x *FDBCLITssqStop) String() string

type FDBCLITssq_List

type FDBCLITssq_List struct {
	List *FDBCLITssqList `protobuf:"bytes,3,opt,name=list,proto3,oneof"`
}

type FDBCLITssq_Start

type FDBCLITssq_Start struct {
	Start *FDBCLITssqStart `protobuf:"bytes,1,opt,name=start,proto3,oneof"`
}

type FDBCLITssq_Stop

type FDBCLITssq_Stop struct {
	Stop *FDBCLITssqStop `protobuf:"bytes,2,opt,name=stop,proto3,oneof"`
}

type FDBCLIUnknownAction

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

func (*FDBCLIUnknownAction) Descriptor deprecated

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

Deprecated: Use FDBCLIUnknownAction.ProtoReflect.Descriptor instead.

func (*FDBCLIUnknownAction) ProtoMessage

func (*FDBCLIUnknownAction) ProtoMessage()

func (*FDBCLIUnknownAction) ProtoReflect

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

func (*FDBCLIUnknownAction) Reset

func (x *FDBCLIUnknownAction) Reset()

func (*FDBCLIUnknownAction) String

func (x *FDBCLIUnknownAction) String() string

type FDBCLIUnlock

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

func (*FDBCLIUnlock) Descriptor deprecated

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

Deprecated: Use FDBCLIUnlock.ProtoReflect.Descriptor instead.

func (*FDBCLIUnlock) GetUid

func (x *FDBCLIUnlock) GetUid() string

func (*FDBCLIUnlock) ProtoMessage

func (*FDBCLIUnlock) ProtoMessage()

func (*FDBCLIUnlock) ProtoReflect

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

func (*FDBCLIUnlock) Reset

func (x *FDBCLIUnlock) Reset()

func (*FDBCLIUnlock) String

func (x *FDBCLIUnlock) String() string

type FDBCLIUsetenant

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

func (*FDBCLIUsetenant) Descriptor deprecated

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

Deprecated: Use FDBCLIUsetenant.ProtoReflect.Descriptor instead.

func (*FDBCLIUsetenant) GetName

func (x *FDBCLIUsetenant) GetName() string

func (*FDBCLIUsetenant) ProtoMessage

func (*FDBCLIUsetenant) ProtoMessage()

func (*FDBCLIUsetenant) ProtoReflect

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

func (*FDBCLIUsetenant) Reset

func (x *FDBCLIUsetenant) Reset()

func (*FDBCLIUsetenant) String

func (x *FDBCLIUsetenant) String() string

type FDBCLIVersionepoch added in v1.8.0

type FDBCLIVersionepoch struct {

	// Types that are assignable to Request:
	//
	//	*FDBCLIVersionepoch_Info
	//	*FDBCLIVersionepoch_Get
	//	*FDBCLIVersionepoch_Disable
	//	*FDBCLIVersionepoch_Enable
	//	*FDBCLIVersionepoch_Commit
	//	*FDBCLIVersionepoch_Set
	Request isFDBCLIVersionepoch_Request `protobuf_oneof:"request"`
	// contains filtered or unexported fields
}

func (*FDBCLIVersionepoch) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIVersionepoch.ProtoReflect.Descriptor instead.

func (*FDBCLIVersionepoch) GetCommit added in v1.8.0

func (*FDBCLIVersionepoch) GetDisable added in v1.8.0

func (*FDBCLIVersionepoch) GetEnable added in v1.8.0

func (*FDBCLIVersionepoch) GetGet added in v1.8.0

func (*FDBCLIVersionepoch) GetInfo added in v1.8.0

func (*FDBCLIVersionepoch) GetRequest added in v1.8.0

func (m *FDBCLIVersionepoch) GetRequest() isFDBCLIVersionepoch_Request

func (*FDBCLIVersionepoch) GetSet added in v1.8.0

func (*FDBCLIVersionepoch) ProtoMessage added in v1.8.0

func (*FDBCLIVersionepoch) ProtoMessage()

func (*FDBCLIVersionepoch) ProtoReflect added in v1.8.0

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

func (*FDBCLIVersionepoch) Reset added in v1.8.0

func (x *FDBCLIVersionepoch) Reset()

func (*FDBCLIVersionepoch) String added in v1.8.0

func (x *FDBCLIVersionepoch) String() string

type FDBCLIVersionepochCommit added in v1.8.0

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

func (*FDBCLIVersionepochCommit) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIVersionepochCommit.ProtoReflect.Descriptor instead.

func (*FDBCLIVersionepochCommit) ProtoMessage added in v1.8.0

func (*FDBCLIVersionepochCommit) ProtoMessage()

func (*FDBCLIVersionepochCommit) ProtoReflect added in v1.8.0

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

func (*FDBCLIVersionepochCommit) Reset added in v1.8.0

func (x *FDBCLIVersionepochCommit) Reset()

func (*FDBCLIVersionepochCommit) String added in v1.8.0

func (x *FDBCLIVersionepochCommit) String() string

type FDBCLIVersionepochDisable added in v1.8.0

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

func (*FDBCLIVersionepochDisable) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIVersionepochDisable.ProtoReflect.Descriptor instead.

func (*FDBCLIVersionepochDisable) ProtoMessage added in v1.8.0

func (*FDBCLIVersionepochDisable) ProtoMessage()

func (*FDBCLIVersionepochDisable) ProtoReflect added in v1.8.0

func (*FDBCLIVersionepochDisable) Reset added in v1.8.0

func (x *FDBCLIVersionepochDisable) Reset()

func (*FDBCLIVersionepochDisable) String added in v1.8.0

func (x *FDBCLIVersionepochDisable) String() string

type FDBCLIVersionepochEnable added in v1.8.0

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

func (*FDBCLIVersionepochEnable) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIVersionepochEnable.ProtoReflect.Descriptor instead.

func (*FDBCLIVersionepochEnable) ProtoMessage added in v1.8.0

func (*FDBCLIVersionepochEnable) ProtoMessage()

func (*FDBCLIVersionepochEnable) ProtoReflect added in v1.8.0

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

func (*FDBCLIVersionepochEnable) Reset added in v1.8.0

func (x *FDBCLIVersionepochEnable) Reset()

func (*FDBCLIVersionepochEnable) String added in v1.8.0

func (x *FDBCLIVersionepochEnable) String() string

type FDBCLIVersionepochGet added in v1.8.0

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

func (*FDBCLIVersionepochGet) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIVersionepochGet.ProtoReflect.Descriptor instead.

func (*FDBCLIVersionepochGet) ProtoMessage added in v1.8.0

func (*FDBCLIVersionepochGet) ProtoMessage()

func (*FDBCLIVersionepochGet) ProtoReflect added in v1.8.0

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

func (*FDBCLIVersionepochGet) Reset added in v1.8.0

func (x *FDBCLIVersionepochGet) Reset()

func (*FDBCLIVersionepochGet) String added in v1.8.0

func (x *FDBCLIVersionepochGet) String() string

type FDBCLIVersionepochInfo added in v1.8.0

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

func (*FDBCLIVersionepochInfo) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIVersionepochInfo.ProtoReflect.Descriptor instead.

func (*FDBCLIVersionepochInfo) ProtoMessage added in v1.8.0

func (*FDBCLIVersionepochInfo) ProtoMessage()

func (*FDBCLIVersionepochInfo) ProtoReflect added in v1.8.0

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

func (*FDBCLIVersionepochInfo) Reset added in v1.8.0

func (x *FDBCLIVersionepochInfo) Reset()

func (*FDBCLIVersionepochInfo) String added in v1.8.0

func (x *FDBCLIVersionepochInfo) String() string

type FDBCLIVersionepochSet added in v1.8.0

type FDBCLIVersionepochSet struct {
	Epoch int64 `protobuf:"varint,1,opt,name=epoch,proto3" json:"epoch,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIVersionepochSet) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIVersionepochSet.ProtoReflect.Descriptor instead.

func (*FDBCLIVersionepochSet) GetEpoch added in v1.8.0

func (x *FDBCLIVersionepochSet) GetEpoch() int64

func (*FDBCLIVersionepochSet) ProtoMessage added in v1.8.0

func (*FDBCLIVersionepochSet) ProtoMessage()

func (*FDBCLIVersionepochSet) ProtoReflect added in v1.8.0

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

func (*FDBCLIVersionepochSet) Reset added in v1.8.0

func (x *FDBCLIVersionepochSet) Reset()

func (*FDBCLIVersionepochSet) String added in v1.8.0

func (x *FDBCLIVersionepochSet) String() string

type FDBCLIVersionepoch_Commit added in v1.8.0

type FDBCLIVersionepoch_Commit struct {
	Commit *FDBCLIVersionepochCommit `protobuf:"bytes,5,opt,name=commit,proto3,oneof"`
}

type FDBCLIVersionepoch_Disable added in v1.8.0

type FDBCLIVersionepoch_Disable struct {
	Disable *FDBCLIVersionepochDisable `protobuf:"bytes,3,opt,name=disable,proto3,oneof"`
}

type FDBCLIVersionepoch_Enable added in v1.8.0

type FDBCLIVersionepoch_Enable struct {
	Enable *FDBCLIVersionepochEnable `protobuf:"bytes,4,opt,name=enable,proto3,oneof"`
}

type FDBCLIVersionepoch_Get added in v1.8.0

type FDBCLIVersionepoch_Get struct {
	Get *FDBCLIVersionepochGet `protobuf:"bytes,2,opt,name=get,proto3,oneof"`
}

type FDBCLIVersionepoch_Info added in v1.8.0

type FDBCLIVersionepoch_Info struct {
	Info *FDBCLIVersionepochInfo `protobuf:"bytes,1,opt,name=info,proto3,oneof"`
}

type FDBCLIVersionepoch_Set added in v1.8.0

type FDBCLIVersionepoch_Set struct {
	Set *FDBCLIVersionepochSet `protobuf:"bytes,6,opt,name=set,proto3,oneof"`
}

type FDBCLIWaitconnected added in v1.8.0

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

func (*FDBCLIWaitconnected) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIWaitconnected.ProtoReflect.Descriptor instead.

func (*FDBCLIWaitconnected) ProtoMessage added in v1.8.0

func (*FDBCLIWaitconnected) ProtoMessage()

func (*FDBCLIWaitconnected) ProtoReflect added in v1.8.0

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

func (*FDBCLIWaitconnected) Reset added in v1.8.0

func (x *FDBCLIWaitconnected) Reset()

func (*FDBCLIWaitconnected) String added in v1.8.0

func (x *FDBCLIWaitconnected) String() string

type FDBCLIWaitopen added in v1.8.0

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

func (*FDBCLIWaitopen) Descriptor deprecated added in v1.8.0

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

Deprecated: Use FDBCLIWaitopen.ProtoReflect.Descriptor instead.

func (*FDBCLIWaitopen) ProtoMessage added in v1.8.0

func (*FDBCLIWaitopen) ProtoMessage()

func (*FDBCLIWaitopen) ProtoReflect added in v1.8.0

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

func (*FDBCLIWaitopen) Reset added in v1.8.0

func (x *FDBCLIWaitopen) Reset()

func (*FDBCLIWaitopen) String added in v1.8.0

func (x *FDBCLIWaitopen) String() string

type FDBCLIWritemode

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

func (*FDBCLIWritemode) Descriptor deprecated

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

Deprecated: Use FDBCLIWritemode.ProtoReflect.Descriptor instead.

func (*FDBCLIWritemode) GetMode

func (x *FDBCLIWritemode) GetMode() string

func (*FDBCLIWritemode) ProtoMessage

func (*FDBCLIWritemode) ProtoMessage()

func (*FDBCLIWritemode) ProtoReflect

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

func (*FDBCLIWritemode) Reset

func (x *FDBCLIWritemode) Reset()

func (*FDBCLIWritemode) String

func (x *FDBCLIWritemode) String() string

type FDBMoveClient added in v1.23.5

type FDBMoveClient interface {
	FDBMoveDataCopy(ctx context.Context, in *FDBMoveDataCopyRequest, opts ...grpc.CallOption) (*FDBMoveDataCopyResponse, error)
	FDBMoveDataWait(ctx context.Context, in *FDBMoveDataWaitRequest, opts ...grpc.CallOption) (FDBMove_FDBMoveDataWaitClient, error)
}

FDBMoveClient is the client API for FDBMove service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewFDBMoveClient added in v1.23.5

func NewFDBMoveClient(cc grpc.ClientConnInterface) FDBMoveClient

type FDBMoveClientProxy added in v1.23.5

type FDBMoveClientProxy interface {
	FDBMoveClient
	FDBMoveDataCopyOneMany(ctx context.Context, in *FDBMoveDataCopyRequest, opts ...grpc.CallOption) (<-chan *FDBMoveDataCopyManyResponse, error)
	FDBMoveDataWaitOneMany(ctx context.Context, in *FDBMoveDataWaitRequest, opts ...grpc.CallOption) (FDBMove_FDBMoveDataWaitClientProxy, error)
}

FDBMoveClientProxy is the superset of FDBMoveClient which additionally includes the OneMany proxy methods

func NewFDBMoveClientProxy added in v1.23.5

func NewFDBMoveClientProxy(cc *proxy.Conn) FDBMoveClientProxy

NewFDBMoveClientProxy creates a FDBMoveClientProxy for use in proxied connections. NOTE: This takes a proxy.Conn instead of a generic ClientConnInterface as the methods here are only valid in proxy.Conn contexts.

type FDBMoveDataCopyManyResponse added in v1.23.5

type FDBMoveDataCopyManyResponse struct {
	Target string
	// As targets can be duplicated this is the index into the slice passed to proxy.Conn.
	Index int
	Resp  *FDBMoveDataCopyResponse
	Error error
}

FDBMoveDataCopyManyResponse encapsulates a proxy data packet. It includes the target, index, response and possible error returned.

type FDBMoveDataCopyRequest added in v1.23.5

type FDBMoveDataCopyRequest struct {
	ClusterFile        string `protobuf:"bytes,1,opt,name=cluster_file,json=clusterFile,proto3" json:"cluster_file,omitempty"`
	TenantGroup        string `protobuf:"bytes,2,opt,name=tenant_group,json=tenantGroup,proto3" json:"tenant_group,omitempty"`
	SourceCluster      string `protobuf:"bytes,3,opt,name=source_cluster,json=sourceCluster,proto3" json:"source_cluster,omitempty"`
	DestinationCluster string `protobuf:"bytes,4,opt,name=destination_cluster,json=destinationCluster,proto3" json:"destination_cluster,omitempty"`
	NumProcs           int64  `protobuf:"varint,5,opt,name=num_procs,json=numProcs,proto3" json:"num_procs,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBMoveDataCopyRequest) Descriptor deprecated added in v1.23.5

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

Deprecated: Use FDBMoveDataCopyRequest.ProtoReflect.Descriptor instead.

func (*FDBMoveDataCopyRequest) GetClusterFile added in v1.23.5

func (x *FDBMoveDataCopyRequest) GetClusterFile() string

func (*FDBMoveDataCopyRequest) GetDestinationCluster added in v1.23.5

func (x *FDBMoveDataCopyRequest) GetDestinationCluster() string

func (*FDBMoveDataCopyRequest) GetNumProcs added in v1.23.5

func (x *FDBMoveDataCopyRequest) GetNumProcs() int64

func (*FDBMoveDataCopyRequest) GetSourceCluster added in v1.23.5

func (x *FDBMoveDataCopyRequest) GetSourceCluster() string

func (*FDBMoveDataCopyRequest) GetTenantGroup added in v1.23.5

func (x *FDBMoveDataCopyRequest) GetTenantGroup() string

func (*FDBMoveDataCopyRequest) ProtoMessage added in v1.23.5

func (*FDBMoveDataCopyRequest) ProtoMessage()

func (*FDBMoveDataCopyRequest) ProtoReflect added in v1.23.5

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

func (*FDBMoveDataCopyRequest) Reset added in v1.23.5

func (x *FDBMoveDataCopyRequest) Reset()

func (*FDBMoveDataCopyRequest) String added in v1.23.5

func (x *FDBMoveDataCopyRequest) String() string

type FDBMoveDataCopyResponse added in v1.23.5

type FDBMoveDataCopyResponse struct {
	Id       int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Existing bool  `protobuf:"varint,2,opt,name=existing,proto3" json:"existing,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBMoveDataCopyResponse) Descriptor deprecated added in v1.23.5

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

Deprecated: Use FDBMoveDataCopyResponse.ProtoReflect.Descriptor instead.

func (*FDBMoveDataCopyResponse) GetExisting added in v1.23.5

func (x *FDBMoveDataCopyResponse) GetExisting() bool

func (*FDBMoveDataCopyResponse) GetId added in v1.23.5

func (x *FDBMoveDataCopyResponse) GetId() int64

func (*FDBMoveDataCopyResponse) ProtoMessage added in v1.23.5

func (*FDBMoveDataCopyResponse) ProtoMessage()

func (*FDBMoveDataCopyResponse) ProtoReflect added in v1.23.5

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

func (*FDBMoveDataCopyResponse) Reset added in v1.23.5

func (x *FDBMoveDataCopyResponse) Reset()

func (*FDBMoveDataCopyResponse) String added in v1.23.5

func (x *FDBMoveDataCopyResponse) String() string

type FDBMoveDataWaitManyResponse added in v1.23.5

type FDBMoveDataWaitManyResponse struct {
	Target string
	// As targets can be duplicated this is the index into the slice passed to proxy.Conn.
	Index int
	Resp  *FDBMoveDataWaitResponse
	Error error
}

FDBMoveDataWaitManyResponse encapsulates a proxy data packet. It includes the target, index, response and possible error returned.

type FDBMoveDataWaitRequest added in v1.23.5

type FDBMoveDataWaitRequest struct {
	Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBMoveDataWaitRequest) Descriptor deprecated added in v1.23.5

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

Deprecated: Use FDBMoveDataWaitRequest.ProtoReflect.Descriptor instead.

func (*FDBMoveDataWaitRequest) GetId added in v1.23.5

func (x *FDBMoveDataWaitRequest) GetId() int64

func (*FDBMoveDataWaitRequest) ProtoMessage added in v1.23.5

func (*FDBMoveDataWaitRequest) ProtoMessage()

func (*FDBMoveDataWaitRequest) ProtoReflect added in v1.23.5

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

func (*FDBMoveDataWaitRequest) Reset added in v1.23.5

func (x *FDBMoveDataWaitRequest) Reset()

func (*FDBMoveDataWaitRequest) String added in v1.23.5

func (x *FDBMoveDataWaitRequest) String() string

type FDBMoveDataWaitResponse added in v1.23.5

type FDBMoveDataWaitResponse struct {
	Stdout  []byte `protobuf:"bytes,1,opt,name=stdout,proto3" json:"stdout,omitempty"`
	Stderr  []byte `protobuf:"bytes,2,opt,name=stderr,proto3" json:"stderr,omitempty"`
	RetCode int32  `protobuf:"varint,3,opt,name=retCode,proto3" json:"retCode,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBMoveDataWaitResponse) Descriptor deprecated added in v1.23.5

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

Deprecated: Use FDBMoveDataWaitResponse.ProtoReflect.Descriptor instead.

func (*FDBMoveDataWaitResponse) GetRetCode added in v1.23.5

func (x *FDBMoveDataWaitResponse) GetRetCode() int32

func (*FDBMoveDataWaitResponse) GetStderr added in v1.23.5

func (x *FDBMoveDataWaitResponse) GetStderr() []byte

func (*FDBMoveDataWaitResponse) GetStdout added in v1.23.5

func (x *FDBMoveDataWaitResponse) GetStdout() []byte

func (*FDBMoveDataWaitResponse) ProtoMessage added in v1.23.5

func (*FDBMoveDataWaitResponse) ProtoMessage()

func (*FDBMoveDataWaitResponse) ProtoReflect added in v1.23.5

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

func (*FDBMoveDataWaitResponse) Reset added in v1.23.5

func (x *FDBMoveDataWaitResponse) Reset()

func (*FDBMoveDataWaitResponse) String added in v1.23.5

func (x *FDBMoveDataWaitResponse) String() string

type FDBMoveServer added in v1.23.5

type FDBMoveServer interface {
	FDBMoveDataCopy(context.Context, *FDBMoveDataCopyRequest) (*FDBMoveDataCopyResponse, error)
	FDBMoveDataWait(*FDBMoveDataWaitRequest, FDBMove_FDBMoveDataWaitServer) error
}

FDBMoveServer is the server API for FDBMove service. All implementations should embed UnimplementedFDBMoveServer for forward compatibility

type FDBMove_FDBMoveDataWaitClient added in v1.23.5

type FDBMove_FDBMoveDataWaitClient interface {
	Recv() (*FDBMoveDataWaitResponse, error)
	grpc.ClientStream
}

type FDBMove_FDBMoveDataWaitClientProxy added in v1.23.5

type FDBMove_FDBMoveDataWaitClientProxy interface {
	Recv() ([]*FDBMoveDataWaitManyResponse, error)
	grpc.ClientStream
}

type FDBMove_FDBMoveDataWaitServer added in v1.23.5

type FDBMove_FDBMoveDataWaitServer interface {
	Send(*FDBMoveDataWaitResponse) error
	grpc.ServerStream
}

type FDBServerCommand added in v1.20.6

type FDBServerCommand struct {

	// Types that are assignable to Command:
	//
	//	*FDBServerCommand_Version
	//	*FDBServerCommand_Unknown
	Command isFDBServerCommand_Command `protobuf_oneof:"command"`
	// contains filtered or unexported fields
}

FDBServerCommand defines all of the fdbserver commands supported.

func (*FDBServerCommand) Descriptor deprecated added in v1.20.6

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

Deprecated: Use FDBServerCommand.ProtoReflect.Descriptor instead.

func (*FDBServerCommand) GetCommand added in v1.20.6

func (m *FDBServerCommand) GetCommand() isFDBServerCommand_Command

func (*FDBServerCommand) GetUnknown added in v1.20.6

func (x *FDBServerCommand) GetUnknown() *FDBServerUnknownAction

func (*FDBServerCommand) GetVersion added in v1.20.6

func (x *FDBServerCommand) GetVersion() *FDBServerVersion

func (*FDBServerCommand) ProtoMessage added in v1.20.6

func (*FDBServerCommand) ProtoMessage()

func (*FDBServerCommand) ProtoReflect added in v1.20.6

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

func (*FDBServerCommand) Reset added in v1.20.6

func (x *FDBServerCommand) Reset()

func (*FDBServerCommand) String added in v1.20.6

func (x *FDBServerCommand) String() string

type FDBServerCommand_Unknown added in v1.20.6

type FDBServerCommand_Unknown struct {
	// just for test purpose
	Unknown *FDBServerUnknownAction `protobuf:"bytes,2,opt,name=unknown,proto3,oneof"`
}

type FDBServerCommand_Version added in v1.20.6

type FDBServerCommand_Version struct {
	Version *FDBServerVersion `protobuf:"bytes,1,opt,name=version,proto3,oneof"`
}

type FDBServerManyResponse added in v1.20.6

type FDBServerManyResponse struct {
	Target string
	// As targets can be duplicated this is the index into the slice passed to proxy.Conn.
	Index int
	Resp  *FDBServerResponse
	Error error
}

FDBServerManyResponse encapsulates a proxy data packet. It includes the target, index, response and possible error returned.

type FDBServerRequest added in v1.20.6

type FDBServerRequest struct {
	Commands []*FDBServerCommand `protobuf:"bytes,1,rep,name=commands,proto3" json:"commands,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBServerRequest) Descriptor deprecated added in v1.20.6

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

Deprecated: Use FDBServerRequest.ProtoReflect.Descriptor instead.

func (*FDBServerRequest) GetCommands added in v1.20.6

func (x *FDBServerRequest) GetCommands() []*FDBServerCommand

func (*FDBServerRequest) ProtoMessage added in v1.20.6

func (*FDBServerRequest) ProtoMessage()

func (*FDBServerRequest) ProtoReflect added in v1.20.6

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

func (*FDBServerRequest) Reset added in v1.20.6

func (x *FDBServerRequest) Reset()

func (*FDBServerRequest) String added in v1.20.6

func (x *FDBServerRequest) String() string

type FDBServerResponse added in v1.20.6

type FDBServerResponse struct {
	Stdout  []byte `protobuf:"bytes,1,opt,name=stdout,proto3" json:"stdout,omitempty"`
	Stderr  []byte `protobuf:"bytes,2,opt,name=stderr,proto3" json:"stderr,omitempty"`
	RetCode int32  `protobuf:"varint,3,opt,name=retCode,proto3" json:"retCode,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBServerResponse) Descriptor deprecated added in v1.20.6

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

Deprecated: Use FDBServerResponse.ProtoReflect.Descriptor instead.

func (*FDBServerResponse) GetRetCode added in v1.20.6

func (x *FDBServerResponse) GetRetCode() int32

func (*FDBServerResponse) GetStderr added in v1.20.6

func (x *FDBServerResponse) GetStderr() []byte

func (*FDBServerResponse) GetStdout added in v1.20.6

func (x *FDBServerResponse) GetStdout() []byte

func (*FDBServerResponse) ProtoMessage added in v1.20.6

func (*FDBServerResponse) ProtoMessage()

func (*FDBServerResponse) ProtoReflect added in v1.20.6

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

func (*FDBServerResponse) Reset added in v1.20.6

func (x *FDBServerResponse) Reset()

func (*FDBServerResponse) String added in v1.20.6

func (x *FDBServerResponse) String() string

type FDBServerUnknownAction added in v1.20.6

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

func (*FDBServerUnknownAction) Descriptor deprecated added in v1.20.6

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

Deprecated: Use FDBServerUnknownAction.ProtoReflect.Descriptor instead.

func (*FDBServerUnknownAction) ProtoMessage added in v1.20.6

func (*FDBServerUnknownAction) ProtoMessage()

func (*FDBServerUnknownAction) ProtoReflect added in v1.20.6

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

func (*FDBServerUnknownAction) Reset added in v1.20.6

func (x *FDBServerUnknownAction) Reset()

func (*FDBServerUnknownAction) String added in v1.20.6

func (x *FDBServerUnknownAction) String() string

type FDBServerVersion added in v1.20.6

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

func (*FDBServerVersion) Descriptor deprecated added in v1.20.6

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

Deprecated: Use FDBServerVersion.ProtoReflect.Descriptor instead.

func (*FDBServerVersion) ProtoMessage added in v1.20.6

func (*FDBServerVersion) ProtoMessage()

func (*FDBServerVersion) ProtoReflect added in v1.20.6

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

func (*FDBServerVersion) Reset added in v1.20.6

func (x *FDBServerVersion) Reset()

func (*FDBServerVersion) String added in v1.20.6

func (x *FDBServerVersion) String() string

type FdbConfResponse

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

func (*FdbConfResponse) Descriptor deprecated

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

Deprecated: Use FdbConfResponse.ProtoReflect.Descriptor instead.

func (*FdbConfResponse) GetValue

func (x *FdbConfResponse) GetValue() string

func (*FdbConfResponse) ProtoMessage

func (*FdbConfResponse) ProtoMessage()

func (*FdbConfResponse) ProtoReflect

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

func (*FdbConfResponse) Reset

func (x *FdbConfResponse) Reset()

func (*FdbConfResponse) String

func (x *FdbConfResponse) String() string

type Location

type Location struct {
	File    string `protobuf:"bytes,1,opt,name=file,proto3" json:"file,omitempty"`
	Section string `protobuf:"bytes,2,opt,name=section,proto3" json:"section,omitempty"`
	Key     string `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
	// contains filtered or unexported fields
}

func (*Location) Descriptor deprecated

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

Deprecated: Use Location.ProtoReflect.Descriptor instead.

func (*Location) GetFile

func (x *Location) GetFile() string

func (*Location) GetKey

func (x *Location) GetKey() string

func (*Location) GetSection

func (x *Location) GetSection() string

func (*Location) ProtoMessage

func (*Location) ProtoMessage()

func (*Location) ProtoReflect

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

func (*Location) Reset

func (x *Location) Reset()

func (*Location) String

func (x *Location) String() string

type Log

type Log struct {
	Filename string `protobuf:"bytes,1,opt,name=filename,proto3" json:"filename,omitempty"`
	Contents []byte `protobuf:"bytes,2,opt,name=contents,proto3" json:"contents,omitempty"`
	// contains filtered or unexported fields
}

func (*Log) Descriptor deprecated

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

Deprecated: Use Log.ProtoReflect.Descriptor instead.

func (*Log) GetContents

func (x *Log) GetContents() []byte

func (*Log) GetFilename

func (x *Log) GetFilename() string

func (*Log) ProtoMessage

func (*Log) ProtoMessage()

func (*Log) ProtoReflect

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

func (*Log) Reset

func (x *Log) Reset()

func (*Log) String

func (x *Log) String() string

type ReadManyResponse

type ReadManyResponse struct {
	Target string
	// As targets can be duplicated this is the index into the slice passed to proxy.Conn.
	Index int
	Resp  *FdbConfResponse
	Error error
}

ReadManyResponse encapsulates a proxy data packet. It includes the target, index, response and possible error returned.

type ReadRequest

type ReadRequest struct {
	Location *Location `protobuf:"bytes,1,opt,name=location,proto3" json:"location,omitempty"`
	// contains filtered or unexported fields
}

func (*ReadRequest) Descriptor deprecated

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

Deprecated: Use ReadRequest.ProtoReflect.Descriptor instead.

func (*ReadRequest) GetLocation

func (x *ReadRequest) GetLocation() *Location

func (*ReadRequest) ProtoMessage

func (*ReadRequest) ProtoMessage()

func (*ReadRequest) ProtoReflect

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

func (*ReadRequest) Reset

func (x *ReadRequest) Reset()

func (*ReadRequest) String

func (x *ReadRequest) String() string

type ServerClient added in v1.20.6

type ServerClient interface {
	FDBServer(ctx context.Context, in *FDBServerRequest, opts ...grpc.CallOption) (*FDBServerResponse, error)
}

ServerClient is the client API for Server service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewServerClient added in v1.20.6

func NewServerClient(cc grpc.ClientConnInterface) ServerClient

type ServerClientProxy added in v1.20.6

type ServerClientProxy interface {
	ServerClient
	FDBServerOneMany(ctx context.Context, in *FDBServerRequest, opts ...grpc.CallOption) (<-chan *FDBServerManyResponse, error)
}

ServerClientProxy is the superset of ServerClient which additionally includes the OneMany proxy methods

func NewServerClientProxy added in v1.20.6

func NewServerClientProxy(cc *proxy.Conn) ServerClientProxy

NewServerClientProxy creates a ServerClientProxy for use in proxied connections. NOTE: This takes a proxy.Conn instead of a generic ClientConnInterface as the methods here are only valid in proxy.Conn contexts.

type ServerServer added in v1.20.6

type ServerServer interface {
	FDBServer(context.Context, *FDBServerRequest) (*FDBServerResponse, error)
}

ServerServer is the server API for Server service. All implementations should embed UnimplementedServerServer for forward compatibility

type UnimplementedCLIServer

type UnimplementedCLIServer struct {
}

UnimplementedCLIServer should be embedded to have forward compatible implementations.

func (UnimplementedCLIServer) FDBCLI

type UnimplementedConfServer

type UnimplementedConfServer struct {
}

UnimplementedConfServer should be embedded to have forward compatible implementations.

func (UnimplementedConfServer) Delete

func (UnimplementedConfServer) Read

func (UnimplementedConfServer) Write

type UnimplementedFDBMoveServer added in v1.23.5

type UnimplementedFDBMoveServer struct {
}

UnimplementedFDBMoveServer should be embedded to have forward compatible implementations.

func (UnimplementedFDBMoveServer) FDBMoveDataCopy added in v1.23.5

func (UnimplementedFDBMoveServer) FDBMoveDataWait added in v1.23.5

type UnimplementedServerServer added in v1.20.6

type UnimplementedServerServer struct {
}

UnimplementedServerServer should be embedded to have forward compatible implementations.

func (UnimplementedServerServer) FDBServer added in v1.20.6

type UnsafeCLIServer

type UnsafeCLIServer interface {
	// contains filtered or unexported methods
}

UnsafeCLIServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to CLIServer will result in compilation errors.

type UnsafeConfServer

type UnsafeConfServer interface {
	// contains filtered or unexported methods
}

UnsafeConfServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to ConfServer will result in compilation errors.

type UnsafeFDBMoveServer added in v1.23.5

type UnsafeFDBMoveServer interface {
	// contains filtered or unexported methods
}

UnsafeFDBMoveServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to FDBMoveServer will result in compilation errors.

type UnsafeServerServer added in v1.20.6

type UnsafeServerServer interface {
	// contains filtered or unexported methods
}

UnsafeServerServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to ServerServer will result in compilation errors.

type WriteManyResponse

type WriteManyResponse struct {
	Target string
	// As targets can be duplicated this is the index into the slice passed to proxy.Conn.
	Index int
	Resp  *emptypb.Empty
	Error error
}

WriteManyResponse encapsulates a proxy data packet. It includes the target, index, response and possible error returned.

type WriteRequest

type WriteRequest struct {
	Location *Location `protobuf:"bytes,1,opt,name=location,proto3" json:"location,omitempty"`
	Value    string    `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*WriteRequest) Descriptor deprecated

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

Deprecated: Use WriteRequest.ProtoReflect.Descriptor instead.

func (*WriteRequest) GetLocation

func (x *WriteRequest) GetLocation() *Location

func (*WriteRequest) GetValue

func (x *WriteRequest) GetValue() string

func (*WriteRequest) ProtoMessage

func (*WriteRequest) ProtoMessage()

func (*WriteRequest) ProtoReflect

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

func (*WriteRequest) Reset

func (x *WriteRequest) Reset()

func (*WriteRequest) String

func (x *WriteRequest) String() string

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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