fdb

package
v1.7.0 Latest Latest
Warning

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

Go to latest
Published: May 31, 2022 License: Apache-2.0 Imports: 13 Imported by: 0

Documentation

Overview

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

Index

Constants

This section is empty.

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)

Functions

func RegisterCLIServer

func RegisterCLIServer(s grpc.ServiceRegistrar, srv CLIServer)

func RegisterConfServer

func RegisterConfServer(s grpc.ServiceRegistrar, srv ConfServer)

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 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_Clear
	//	*FDBCLICommand_Clearrange
	//	*FDBCLICommand_Configure
	//	*FDBCLICommand_Consistencycheck
	//	*FDBCLICommand_Coordinators
	//	*FDBCLICommand_Createtenant
	//	*FDBCLICommand_Defaulttenant
	//	*FDBCLICommand_Deletetenant
	//	*FDBCLICommand_Exclude
	//	*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_Sleep
	//	*FDBCLICommand_Status
	//	*FDBCLICommand_Throttle
	//	*FDBCLICommand_Triggerddteaminfolog
	//	*FDBCLICommand_Unlock
	//	*FDBCLICommand_Usetenant
	//	*FDBCLICommand_Writemode
	//	*FDBCLICommand_Tssq
	//	*FDBCLICommand_Unknown
	Command isFDBCLICommand_Command `protobuf_oneof:"command"`
	// contains filtered or unexported fields
}

This is a top level message so it can be used for potential transaction support later.

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) 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) 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) GetDefaulttenant

func (x *FDBCLICommand) GetDefaulttenant() *FDBCLIDefaulttenant

func (*FDBCLICommand) GetDeletetenant

func (x *FDBCLICommand) GetDeletetenant() *FDBCLIDeletetenant

func (*FDBCLICommand) GetExclude

func (x *FDBCLICommand) GetExclude() *FDBCLIExclude

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) GetStatus

func (x *FDBCLICommand) GetStatus() *FDBCLIStatus

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) 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_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_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_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_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_Status

type FDBCLICommand_Status struct {
	Status *FDBCLIStatus `protobuf:"bytes,23,opt,name=status,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_Writemode

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

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 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"`
	// 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) 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 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 {

	// Will convert to –exec “kill; kill address...” internally.
	Addresses []string `protobuf:"bytes,1,rep,name=addresses,proto3" json:"addresses,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLIKill) Descriptor deprecated

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

Deprecated: Use FDBCLIKill.ProtoReflect.Descriptor instead.

func (*FDBCLIKill) GetAddresses

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

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 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"`
	// Types that are assignable to Request:
	//	*FDBCLIRequest_Command
	//	*FDBCLIRequest_Transaction
	//	*FDBCLIRequest_Unknown
	Request isFDBCLIRequest_Request `protobuf_oneof:"request"`
	// contains filtered or unexported fields
}

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) GetCommand

func (x *FDBCLIRequest) GetCommand() *FDBCLICommand

func (*FDBCLIRequest) GetConfig

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

func (*FDBCLIRequest) GetDebugTls

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

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) GetRequest

func (m *FDBCLIRequest) GetRequest() isFDBCLIRequest_Request

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) GetTransaction

func (x *FDBCLIRequest) GetTransaction() *FDBCLITransaction

func (*FDBCLIRequest) GetUnknown

func (x *FDBCLIRequest) GetUnknown() *FDBCLIUnknownAction

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 FDBCLIRequest_Command

type FDBCLIRequest_Command struct {
	Command *FDBCLICommand `protobuf:"bytes,11,opt,name=command,proto3,oneof"`
}

type FDBCLIRequest_Transaction

type FDBCLIRequest_Transaction struct {
	Transaction *FDBCLITransaction `protobuf:"bytes,12,opt,name=transaction,proto3,oneof"`
}

type FDBCLIRequest_Unknown

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

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 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 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 FDBCLITransaction

type FDBCLITransaction struct {

	// Has an implied begin prepended and commit appended.
	Commands []*FDBCLICommand `protobuf:"bytes,1,rep,name=commands,proto3" json:"commands,omitempty"`
	// contains filtered or unexported fields
}

func (*FDBCLITransaction) Descriptor deprecated

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

Deprecated: Use FDBCLITransaction.ProtoReflect.Descriptor instead.

func (*FDBCLITransaction) GetCommands

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

func (*FDBCLITransaction) ProtoMessage

func (*FDBCLITransaction) ProtoMessage()

func (*FDBCLITransaction) ProtoReflect

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

func (*FDBCLITransaction) Reset

func (x *FDBCLITransaction) Reset()

func (*FDBCLITransaction) String

func (x *FDBCLITransaction) String() string

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